diff options
-rw-r--r-- | arch/powerpc/include/asm/lppaca.h | 16 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/plpar_wrappers.h | 4 |
2 files changed, 5 insertions, 15 deletions
diff --git a/arch/powerpc/include/asm/lppaca.h b/arch/powerpc/include/asm/lppaca.h index a76254af0aaa..bc4e37552948 100644 --- a/arch/powerpc/include/asm/lppaca.h +++ b/arch/powerpc/include/asm/lppaca.h | |||
@@ -107,19 +107,9 @@ struct lppaca { | |||
107 | // pass the target SRR0/1 from SLIC to PLIC on a SetAsrAndRfid. | 107 | // pass the target SRR0/1 from SLIC to PLIC on a SetAsrAndRfid. |
108 | u64 saved_srr0; // Saved SRR0 x10-x17 | 108 | u64 saved_srr0; // Saved SRR0 x10-x17 |
109 | u64 saved_srr1; // Saved SRR1 x18-x1F | 109 | u64 saved_srr1; // Saved SRR1 x18-x1F |
110 | 110 | u64 reserved5[2]; /* x20-x2F */ | |
111 | // Used to pass parms from the OS to PLIC for SetAsrAndRfid | 111 | u8 cede_latency_hint; /* x30 */ |
112 | u64 saved_gpr3; // Saved GPR3 x20-x27 | 112 | u8 reserved[7]; /* x31-x37 */ |
113 | u64 saved_gpr4; // Saved GPR4 x28-x2F | ||
114 | union { | ||
115 | u64 saved_gpr5; /* Saved GPR5 x30-x37 */ | ||
116 | struct { | ||
117 | u8 cede_latency_hint; /* x30 */ | ||
118 | u8 reserved[7]; /* x31-x36 */ | ||
119 | } fields; | ||
120 | } gpr5_dword; | ||
121 | |||
122 | |||
123 | u8 dtl_enable_mask; // Dispatch Trace Log mask x38-x38 | 113 | u8 dtl_enable_mask; // Dispatch Trace Log mask x38-x38 |
124 | u8 donate_dedicated_cpu; // Donate dedicated CPU cycles x39-x39 | 114 | u8 donate_dedicated_cpu; // Donate dedicated CPU cycles x39-x39 |
125 | u8 fpregs_in_use; // FP regs in use x3A-x3A | 115 | u8 fpregs_in_use; // FP regs in use x3A-x3A |
diff --git a/arch/powerpc/platforms/pseries/plpar_wrappers.h b/arch/powerpc/platforms/pseries/plpar_wrappers.h index 342797fc0f9c..13e8cc43adf7 100644 --- a/arch/powerpc/platforms/pseries/plpar_wrappers.h +++ b/arch/powerpc/platforms/pseries/plpar_wrappers.h | |||
@@ -22,12 +22,12 @@ static inline long poll_pending(void) | |||
22 | 22 | ||
23 | static inline u8 get_cede_latency_hint(void) | 23 | static inline u8 get_cede_latency_hint(void) |
24 | { | 24 | { |
25 | return get_lppaca()->gpr5_dword.fields.cede_latency_hint; | 25 | return get_lppaca()->cede_latency_hint; |
26 | } | 26 | } |
27 | 27 | ||
28 | static inline void set_cede_latency_hint(u8 latency_hint) | 28 | static inline void set_cede_latency_hint(u8 latency_hint) |
29 | { | 29 | { |
30 | get_lppaca()->gpr5_dword.fields.cede_latency_hint = latency_hint; | 30 | get_lppaca()->cede_latency_hint = latency_hint; |
31 | } | 31 | } |
32 | 32 | ||
33 | static inline long cede_processor(void) | 33 | static inline long cede_processor(void) |