Date: Wed, 7 Apr 2021 03:12:10 GMT From: Brandon Bergren <bdragon@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: a8b0d01fedbf - stable/13 - powerpc/pseries: Add new hypercall definition, H_REGISTER_PROC_TBL Message-ID: <202104070312.1373CAas036155@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by bdragon: URL: https://cgit.FreeBSD.org/src/commit/?id=a8b0d01fedbf5c73c796b5f2ce6256d552ea7f8c commit a8b0d01fedbf5c73c796b5f2ce6256d552ea7f8c Author: Justin Hibbits <jhibbits@FreeBSD.org> AuthorDate: 2020-08-16 16:01:49 +0000 Commit: Brandon Bergren <bdragon@FreeBSD.org> CommitDate: 2021-04-07 03:10:09 +0000 powerpc/pseries: Add new hypercall definition, H_REGISTER_PROC_TBL This will be used by the Radix MMU on pseries. (cherry picked from commit a5f07fa0c6b162964b414d00fab319fd13c61f57) --- sys/powerpc/pseries/phyp-hvcall.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/powerpc/pseries/phyp-hvcall.h b/sys/powerpc/pseries/phyp-hvcall.h index fdc6a774ce03..90f75807e56a 100644 --- a/sys/powerpc/pseries/phyp-hvcall.h +++ b/sys/powerpc/pseries/phyp-hvcall.h @@ -321,7 +321,9 @@ #define H_SET_MODE 0x31C /* Reserved ... */ #define H_GET_DMA_XLATES_L 0x324 -#define MAX_HCALL_OPCODE H_GET_DMA_XLATES_L +/* Reserved ... */ +#define H_REGISTER_PROC_TBL 0x37c +#define MAX_HCALL_OPCODE H_REGISTER_PROC_TBL int64_t phyp_hcall(uint64_t opcode, ...); int64_t phyp_pft_hcall(uint64_t opcode, uint64_t flags, uint64_t pteidx,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104070312.1373CAas036155>