Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * blacklist.c |
| 4 | * |
| 5 | * Check to see if the given machine has a known bad ACPI BIOS |
| 6 | * or if the BIOS is too old. |
Lv Zheng | e5f660e | 2016-05-03 16:49:01 +0800 | [diff] [blame] | 7 | * Check given machine against acpi_rev_dmi_table[]. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * |
| 9 | * Copyright (C) 2004 Len Brown <len.brown@intel.com> |
| 10 | * Copyright (C) 2002 Andy Grover <andrew.grover@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/acpi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/dmi.h> |
| 17 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 18 | #include "internal.h" |
| 19 | |
Arnd Bergmann | b80d6a4 | 2019-07-10 15:05:43 +0200 | [diff] [blame] | 20 | #ifdef CONFIG_DMI |
Christoph Hellwig | 6faadbb | 2017-09-14 11:59:30 +0200 | [diff] [blame] | 21 | static const struct dmi_system_id acpi_rev_dmi_table[] __initconst; |
Arnd Bergmann | b80d6a4 | 2019-07-10 15:05:43 +0200 | [diff] [blame] | 22 | #endif |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | /* |
| 25 | * POLICY: If *anything* doesn't work, put it on the blacklist. |
| 26 | * If they are critical errors, mark it critical, and abort driver load. |
| 27 | */ |
Toshi Kani | 5aa5911 | 2017-08-23 16:54:43 -0600 | [diff] [blame] | 28 | static struct acpi_platform_list acpi_blacklist[] __initdata = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* Compaq Presario 1700 */ |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 30 | {"PTLTD ", " DSDT ", 0x06040000, ACPI_SIG_DSDT, less_than_or_equal, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 31 | "Multiple problems", 1}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | /* Sony FX120, FX140, FX150? */ |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 33 | {"SONY ", "U0 ", 0x20010313, ACPI_SIG_DSDT, less_than_or_equal, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 34 | "ACPI driver problem", 1}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | /* Compaq Presario 800, Insyde BIOS */ |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 36 | {"INT440", "SYSFexxx", 0x00001001, ACPI_SIG_DSDT, less_than_or_equal, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 37 | "Does not use _REG to protect EC OpRegions", 1}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* IBM 600E - _ADR should return 7, but it returns 1 */ |
Alexey Starikovskiy | ad71860a | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 39 | {"IBM ", "TP600E ", 0x00000105, ACPI_SIG_DSDT, less_than_or_equal, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 40 | "Incorrect _ADR", 1}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Toshi Kani | 5aa5911 | 2017-08-23 16:54:43 -0600 | [diff] [blame] | 42 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | }; |
| 44 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 45 | int __init acpi_blacklisted(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
Toshi Kani | 5aa5911 | 2017-08-23 16:54:43 -0600 | [diff] [blame] | 47 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | int blacklisted = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Toshi Kani | 5aa5911 | 2017-08-23 16:54:43 -0600 | [diff] [blame] | 50 | i = acpi_match_platform_list(acpi_blacklist); |
| 51 | if (i >= 0) { |
| 52 | pr_err(PREFIX "Vendor \"%6.6s\" System \"%8.8s\" Revision 0x%x has a known ACPI BIOS problem.\n", |
| 53 | acpi_blacklist[i].oem_id, |
| 54 | acpi_blacklist[i].oem_table_id, |
| 55 | acpi_blacklist[i].oem_revision); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Toshi Kani | 5aa5911 | 2017-08-23 16:54:43 -0600 | [diff] [blame] | 57 | pr_err(PREFIX "Reason: %s. This is a %s error\n", |
| 58 | acpi_blacklist[i].reason, |
| 59 | (acpi_blacklist[i].data ? |
| 60 | "non-recoverable" : "recoverable")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Toshi Kani | 5aa5911 | 2017-08-23 16:54:43 -0600 | [diff] [blame] | 62 | blacklisted = acpi_blacklist[i].data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Lv Zheng | e5f660e | 2016-05-03 16:49:01 +0800 | [diff] [blame] | 65 | (void)early_acpi_osi_init(); |
Arnd Bergmann | b80d6a4 | 2019-07-10 15:05:43 +0200 | [diff] [blame] | 66 | #ifdef CONFIG_DMI |
Lv Zheng | e5f660e | 2016-05-03 16:49:01 +0800 | [diff] [blame] | 67 | dmi_check_system(acpi_rev_dmi_table); |
Arnd Bergmann | b80d6a4 | 2019-07-10 15:05:43 +0200 | [diff] [blame] | 68 | #endif |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 69 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | return blacklisted; |
| 71 | } |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 72 | #ifdef CONFIG_DMI |
Rafael J. Wysocki | 18d78b6 | 2015-07-03 01:06:00 +0200 | [diff] [blame] | 73 | #ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE |
| 74 | static int __init dmi_enable_rev_override(const struct dmi_system_id *d) |
| 75 | { |
| 76 | printk(KERN_NOTICE PREFIX "DMI detected: %s (force ACPI _REV to 5)\n", |
| 77 | d->ident); |
| 78 | acpi_rev_override_setup(NULL); |
| 79 | return 0; |
| 80 | } |
| 81 | #endif |
Len Brown | a1bd4e35 | 2008-01-23 21:19:27 -0500 | [diff] [blame] | 82 | |
Christoph Hellwig | 6faadbb | 2017-09-14 11:59:30 +0200 | [diff] [blame] | 83 | static const struct dmi_system_id acpi_rev_dmi_table[] __initconst = { |
Rafael J. Wysocki | 18d78b6 | 2015-07-03 01:06:00 +0200 | [diff] [blame] | 84 | #ifdef CONFIG_ACPI_REV_OVERRIDE_POSSIBLE |
| 85 | /* |
| 86 | * DELL XPS 13 (2015) switches sound between HDA and I2S |
| 87 | * depending on the ACPI _REV callback. If userspace supports |
| 88 | * I2S sufficiently (or if you do not care about sound), you |
| 89 | * can safely disable this quirk. |
| 90 | */ |
| 91 | { |
| 92 | .callback = dmi_enable_rev_override, |
| 93 | .ident = "DELL XPS 13 (2015)", |
| 94 | .matches = { |
| 95 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 96 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS 13 9343"), |
| 97 | }, |
| 98 | }, |
Alex Hung | 9523b9b | 2016-10-28 11:54:04 -0700 | [diff] [blame] | 99 | { |
| 100 | .callback = dmi_enable_rev_override, |
| 101 | .ident = "DELL Precision 5520", |
| 102 | .matches = { |
| 103 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 104 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision 5520"), |
| 105 | }, |
| 106 | }, |
| 107 | { |
| 108 | .callback = dmi_enable_rev_override, |
| 109 | .ident = "DELL Precision 3520", |
| 110 | .matches = { |
| 111 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 112 | DMI_MATCH(DMI_PRODUCT_NAME, "Precision 3520"), |
| 113 | }, |
| 114 | }, |
Michael Pobega | 708f5dc | 2016-11-11 22:29:14 -0500 | [diff] [blame] | 115 | /* |
| 116 | * Resolves a quirk with the Dell Latitude 3350 that |
| 117 | * causes the ethernet adapter to not function. |
| 118 | */ |
| 119 | { |
| 120 | .callback = dmi_enable_rev_override, |
| 121 | .ident = "DELL Latitude 3350", |
| 122 | .matches = { |
| 123 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 124 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude 3350"), |
| 125 | }, |
| 126 | }, |
Kai Heng Feng | 2cff319 | 2017-04-12 16:12:45 +0800 | [diff] [blame] | 127 | { |
| 128 | .callback = dmi_enable_rev_override, |
| 129 | .ident = "DELL Inspiron 7537", |
| 130 | .matches = { |
| 131 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 132 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7537"), |
| 133 | }, |
| 134 | }, |
Rafael J. Wysocki | 18d78b6 | 2015-07-03 01:06:00 +0200 | [diff] [blame] | 135 | #endif |
Len Brown | d4b7dc4 | 2008-01-23 20:50:56 -0500 | [diff] [blame] | 136 | {} |
| 137 | }; |
| 138 | |
| 139 | #endif /* CONFIG_DMI */ |