@@ -192,6 +192,21 @@ static int __init mem_sleep_default_setup(char *str)
break;
}
+ /*
+ * When the suspend_ops has been set, "mem_sleep_default=*" will
+ * be invalid, here to fix this situation.
+ */
+ if (suspend_ops) {
+ if (mem_sleep_default == PM_SUSPEND_TO_IDLE)
+ mem_sleep_current = PM_SUSPEND_TO_IDLE;
+ else if ((mem_sleep_default == PM_SUSPEND_STANDBY) &&
+ valid_state(PM_SUSPEND_STANDBY))
+ mem_sleep_current = PM_SUSPEND_STANDBY;
+ else if ((mem_sleep_default >= PM_SUSPEND_MEM) &&
+ valid_state(PM_SUSPEND_MEM))
+ mem_sleep_current = PM_SUSPEND_MEM;
+ }
+
return 1;
}
__setup("mem_sleep_default=", mem_sleep_default_setup);
On the arm64 platform, the psci driver is used by default to set the suspend_ops structure; but the psci_acpi_init() function is called before the command-line parameter "mem_sleep_default=" is specified; the user cannot set the desired suspend mode through the "mem_sleep_default=" parameter; In mem_sleep_default_setup(), judge whether suspend_ops is set, if it has been assigned, rewrite the value of mem_sleep_current variable; in order to complete the user setting; Signed-off-by: xiongxin <xiongxin@kylinos.cn>