Skip to content

Commit 04a50cf

Browse files
svaidystewartsmith
authored andcommitted
Update default stop-state-disable mask to cut only stop11
Stability improvements in microcode for stop4/stop5 are available in upstream hcode images. Stop4 and stop5 can be safely enabled by default. Use ~0xE0000000 to cut all but stop0,1,2 in case there are any issues with stop4/5. example: nvram -p ibm,skiboot --update-config opal-stop-state-disable-mask=0x1FFFFFFF Signed-off-by: Vaidyanathan Srinivasan <[email protected]> Signed-off-by: Stewart Smith <[email protected]>
1 parent 6790a94 commit 04a50cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hw/slw.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ void add_cpu_idle_state_properties(void)
851851
u64 *pm_ctrl_reg_val_buf;
852852
u64 *pm_ctrl_reg_mask_buf;
853853
u32 supported_states_mask;
854-
u32 opal_disabled_states_mask = ~0xE0000000; /* all but stop0,1,2 */
854+
u32 opal_disabled_states_mask = ~0xEC000000; /* all but stop11 */
855855
const char* nvram_disable_str;
856856
u32 nvram_disabled_states_mask = 0x00;
857857
u32 stop_levels;

0 commit comments

Comments
 (0)