Skip to content

Commit 4ce8f4c

Browse files
committed
platform/x86: x86-android-tablets: Fix Lenovo Yoga Tablet 2 830/1050 poweroff again
Commit 98f30d0 ("ACPI: power: Switch to sys-off handler API") switched the ACPI sleep code from directly setting the old global pm_power_off handler to using the new register_sys_off_handler() mechanism with a priority of SYS_OFF_PRIO_FIRMWARE. This is a problem in special cases where the old global pm_power_off handler later gets overwritten, such as the Lenovo Tab2 poweroff bugfix in x86-android-tablets. The old global pm_power_off handler gets run with a priority of SYS_OFF_PRIO_DEFAULT which is lower then SYS_OFF_PRIO_FIRMWARE, causing the troublesome ACPI poweroff (which freezes the system) to run first. Switch the registering of lenovo_yoga_tab2_830_1050_power_off over to register_sys_off_handler() with a priority of SYS_OFF_PRIO_FIRMWARE + 1 so that it will run before acpi_power_off() to fix this. Fixes: 98f30d0 ("ACPI: power: Switch to sys-off handler API") Cc: Dmitry Osipenko <dmitry.osipenko@collabora.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20220708131412.81078-2-hdegoede@redhat.com
1 parent 5d62261 commit 4ce8f4c

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

drivers/platform/x86/x86-android-tablets.c

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#include <linux/pinctrl/machine.h>
2828
#include <linux/platform_data/lp855x.h>
2929
#include <linux/platform_device.h>
30-
#include <linux/pm.h>
3130
#include <linux/power/bq24190_charger.h>
31+
#include <linux/reboot.h>
3232
#include <linux/rmi.h>
3333
#include <linux/serdev.h>
3434
#include <linux/spi/spi.h>
@@ -889,6 +889,7 @@ static const struct pinctrl_map lenovo_yoga_tab2_830_1050_codec_pinctrl_map =
889889
"INT33FC:02", "pmu_clk2_grp", "pmu_clk");
890890

891891
static struct pinctrl *lenovo_yoga_tab2_830_1050_codec_pinctrl;
892+
static struct sys_off_handler *lenovo_yoga_tab2_830_1050_sys_off_handler;
892893

893894
static int __init lenovo_yoga_tab2_830_1050_init_codec(void)
894895
{
@@ -933,9 +934,11 @@ static int __init lenovo_yoga_tab2_830_1050_init_codec(void)
933934
* followed by a normal 3 second press to recover. Avoid this by doing an EFI
934935
* poweroff instead.
935936
*/
936-
static void lenovo_yoga_tab2_830_1050_power_off(void)
937+
static int lenovo_yoga_tab2_830_1050_power_off(struct sys_off_data *data)
937938
{
938939
efi.reset_system(EFI_RESET_SHUTDOWN, EFI_SUCCESS, 0, NULL);
940+
941+
return NOTIFY_DONE;
939942
}
940943

941944
static int __init lenovo_yoga_tab2_830_1050_init(void)
@@ -950,13 +953,19 @@ static int __init lenovo_yoga_tab2_830_1050_init(void)
950953
if (ret)
951954
return ret;
952955

953-
pm_power_off = lenovo_yoga_tab2_830_1050_power_off;
956+
/* SYS_OFF_PRIO_FIRMWARE + 1 so that it runs before acpi_power_off */
957+
lenovo_yoga_tab2_830_1050_sys_off_handler =
958+
register_sys_off_handler(SYS_OFF_MODE_POWER_OFF, SYS_OFF_PRIO_FIRMWARE + 1,
959+
lenovo_yoga_tab2_830_1050_power_off, NULL);
960+
if (IS_ERR(lenovo_yoga_tab2_830_1050_sys_off_handler))
961+
return PTR_ERR(lenovo_yoga_tab2_830_1050_sys_off_handler);
962+
954963
return 0;
955964
}
956965

957966
static void lenovo_yoga_tab2_830_1050_exit(void)
958967
{
959-
pm_power_off = NULL; /* Just turn poweroff into halt on module unload */
968+
unregister_sys_off_handler(lenovo_yoga_tab2_830_1050_sys_off_handler);
960969

961970
if (lenovo_yoga_tab2_830_1050_codec_pinctrl) {
962971
pinctrl_put(lenovo_yoga_tab2_830_1050_codec_pinctrl);

0 commit comments

Comments
 (0)