diff options
author | Ondrej Zary <linux@rainbow-software.org> | 2012-12-11 16:18:05 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2012-12-11 17:55:16 -0500 |
commit | ad68652412276f68ad4fe3e1ecf5ee6880876783 (patch) | |
tree | 0a030db11ef21d5091215be914832ed54fdcb859 /drivers/input | |
parent | 29594404d7fe73cd80eaa4ee8c43dcc53970c60e (diff) |
x86, 8042: Enable A20 using KBC to fix S3 resume on some MSI laptops
Some MSI laptop BIOSes are broken - INT 15h code uses port 92h to enable A20
line but resume code assumes that KBC was used.
The laptop will not resume from S3 otherwise but powers off after a while
and then powers on again stuck with a blank screen.
Fix it by enabling A20 using KBC in i8042_platform_init for x86.
Fixes https://bugzilla.kernel.org/show_bug.cgi?id=12878
Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Rafael J. Wysocki <rjw@sisk.pl>
Cc: <stable@vger.kernel.org>
Link: http://lkml.kernel.org/r/201212112218.06551.linux@rainbow-software.org
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/serio/i8042-x86ia64io.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index d6cc77a53c7e..5f306f79da0c 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h | |||
@@ -921,6 +921,7 @@ static int __init i8042_platform_init(void) | |||
921 | int retval; | 921 | int retval; |
922 | 922 | ||
923 | #ifdef CONFIG_X86 | 923 | #ifdef CONFIG_X86 |
924 | u8 a20_on = 0xdf; | ||
924 | /* Just return if pre-detection shows no i8042 controller exist */ | 925 | /* Just return if pre-detection shows no i8042 controller exist */ |
925 | if (!x86_platform.i8042_detect()) | 926 | if (!x86_platform.i8042_detect()) |
926 | return -ENODEV; | 927 | return -ENODEV; |
@@ -960,6 +961,14 @@ static int __init i8042_platform_init(void) | |||
960 | 961 | ||
961 | if (dmi_check_system(i8042_dmi_dritek_table)) | 962 | if (dmi_check_system(i8042_dmi_dritek_table)) |
962 | i8042_dritek = true; | 963 | i8042_dritek = true; |
964 | |||
965 | /* | ||
966 | * A20 was already enabled during early kernel init. But some buggy | ||
967 | * BIOSes (in MSI Laptops) require A20 to be enabled using 8042 to | ||
968 | * resume from S3. So we do it here and hope that nothing breaks. | ||
969 | */ | ||
970 | i8042_command(&a20_on, 0x10d1); | ||
971 | i8042_command(NULL, 0x00ff); /* Null command for SMM firmware */ | ||
963 | #endif /* CONFIG_X86 */ | 972 | #endif /* CONFIG_X86 */ |
964 | 973 | ||
965 | return retval; | 974 | return retval; |