diff options
author | Dave C Boutcher <sleddog@us.ibm.com> | 2006-01-12 16:05:35 -0600 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-13 20:56:38 +1100 |
commit | 43ccf202214067f12af5d7a6e144e18bb35553a9 (patch) | |
tree | 5b509f006c390348c9cfb6884acd5edd808e34b0 | |
parent | 9e1c72a4e465ceb2c4c6e2dfc0584a59bec5c2c9 (diff) | |
download | op-kernel-dev-43ccf202214067f12af5d7a6e144e18bb35553a9.zip op-kernel-dev-43ccf202214067f12af5d7a6e144e18bb35553a9.tar.gz |
[PATCH] powerpc: Add some more pSeries hypervisor call constants
Adds a few more hypervisor call constants.
Signed-off-by: Dave Boutcher <sleddog@us.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | include/asm-powerpc/hvcall.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-powerpc/hvcall.h b/include/asm-powerpc/hvcall.h index da7af5a..38ca9ad 100644 --- a/include/asm-powerpc/hvcall.h +++ b/include/asm-powerpc/hvcall.h @@ -6,7 +6,10 @@ #define H_Success 0 #define H_Busy 1 /* Hardware busy -- retry later */ +#define H_Closed 2 /* Resource closed */ #define H_Constrained 4 /* Resource request constrained to max allowed */ +#define H_InProgress 14 /* Kind of like busy */ +#define H_Continue 18 /* Returned from H_Join on success */ #define H_LongBusyStartRange 9900 /* Start of long busy range */ #define H_LongBusyOrder1msec 9900 /* Long busy, hint that 1msec is a good time to retry */ #define H_LongBusyOrder10msec 9901 /* Long busy, hint that 10msec is a good time to retry */ @@ -114,6 +117,8 @@ #define H_REGISTER_VTERM 0x154 #define H_FREE_VTERM 0x158 #define H_POLL_PENDING 0x1D8 +#define H_JOIN 0x298 +#define H_ENABLE_CRQ 0x2B0 #ifndef __ASSEMBLY__ |