aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/platform/x86/asus-wmi.c9
-rw-r--r--drivers/platform/x86/asus-wmi.h1
-rw-r--r--drivers/platform/x86/eeepc-wmi.c25
3 files changed, 34 insertions, 1 deletions
diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c
index 556cbb455ed2..486f836b79df 100644
--- a/drivers/platform/x86/asus-wmi.c
+++ b/drivers/platform/x86/asus-wmi.c
@@ -47,6 +47,9 @@
47#include <linux/thermal.h> 47#include <linux/thermal.h>
48#include <acpi/acpi_bus.h> 48#include <acpi/acpi_bus.h>
49#include <acpi/acpi_drivers.h> 49#include <acpi/acpi_drivers.h>
50#ifdef CONFIG_ACPI_VIDEO
51#include <acpi/video.h>
52#endif
50 53
51#include "asus-wmi.h" 54#include "asus-wmi.h"
52 55
@@ -1676,7 +1679,13 @@ static int asus_wmi_add(struct platform_device *pdev)
1676 if (err) 1679 if (err)
1677 goto fail_rfkill; 1680 goto fail_rfkill;
1678 1681
1682 if (asus->driver->quirks->wmi_backlight_power)
1683 acpi_video_dmi_promote_vendor();
1679 if (!acpi_video_backlight_support()) { 1684 if (!acpi_video_backlight_support()) {
1685#ifdef CONFIG_ACPI_VIDEO
1686 pr_info("Disabling ACPI video driver\n");
1687 acpi_video_unregister();
1688#endif
1680 err = asus_wmi_backlight_init(asus); 1689 err = asus_wmi_backlight_init(asus);
1681 if (err && err != -ENODEV) 1690 if (err && err != -ENODEV)
1682 goto fail_backlight; 1691 goto fail_backlight;
diff --git a/drivers/platform/x86/asus-wmi.h b/drivers/platform/x86/asus-wmi.h
index d43b66742004..9c1da8b81bea 100644
--- a/drivers/platform/x86/asus-wmi.h
+++ b/drivers/platform/x86/asus-wmi.h
@@ -39,6 +39,7 @@ struct quirk_entry {
39 bool hotplug_wireless; 39 bool hotplug_wireless;
40 bool scalar_panel_brightness; 40 bool scalar_panel_brightness;
41 bool store_backlight_power; 41 bool store_backlight_power;
42 bool wmi_backlight_power;
42 int wapf; 43 int wapf;
43}; 44};
44 45
diff --git a/drivers/platform/x86/eeepc-wmi.c b/drivers/platform/x86/eeepc-wmi.c
index 656761380342..5838332ea5bd 100644
--- a/drivers/platform/x86/eeepc-wmi.c
+++ b/drivers/platform/x86/eeepc-wmi.c
@@ -79,7 +79,7 @@ static const struct key_entry eeepc_wmi_keymap[] = {
79 { KE_KEY, 0xe1, { KEY_F14 } }, /* Change Resolution */ 79 { KE_KEY, 0xe1, { KEY_F14 } }, /* Change Resolution */
80 { KE_KEY, HOME_PRESS, { KEY_CONFIG } }, /* Home/Express gate key */ 80 { KE_KEY, HOME_PRESS, { KEY_CONFIG } }, /* Home/Express gate key */
81 { KE_KEY, 0xe8, { KEY_SCREENLOCK } }, 81 { KE_KEY, 0xe8, { KEY_SCREENLOCK } },
82 { KE_KEY, 0xe9, { KEY_BRIGHTNESS_ZERO } }, 82 { KE_KEY, 0xe9, { KEY_DISPLAYTOGGLE } },
83 { KE_KEY, 0xeb, { KEY_CAMERA_ZOOMOUT } }, 83 { KE_KEY, 0xeb, { KEY_CAMERA_ZOOMOUT } },
84 { KE_KEY, 0xec, { KEY_CAMERA_UP } }, 84 { KE_KEY, 0xec, { KEY_CAMERA_UP } },
85 { KE_KEY, 0xed, { KEY_CAMERA_DOWN } }, 85 { KE_KEY, 0xed, { KEY_CAMERA_DOWN } },
@@ -107,6 +107,11 @@ static struct quirk_entry quirk_asus_et2012_type3 = {
107 .store_backlight_power = true, 107 .store_backlight_power = true,
108}; 108};
109 109
110static struct quirk_entry quirk_asus_x101ch = {
111 /* We need this when ACPI function doesn't do this well */
112 .wmi_backlight_power = true,
113};
114
110static struct quirk_entry *quirks; 115static struct quirk_entry *quirks;
111 116
112static void et2012_quirks(void) 117static void et2012_quirks(void)
@@ -157,6 +162,24 @@ static struct dmi_system_id asus_quirks[] = {
157 }, 162 },
158 .driver_data = &quirk_asus_unknown, 163 .driver_data = &quirk_asus_unknown,
159 }, 164 },
165 {
166 .callback = dmi_matched,
167 .ident = "ASUSTeK Computer INC. X101CH",
168 .matches = {
169 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
170 DMI_MATCH(DMI_PRODUCT_NAME, "X101CH"),
171 },
172 .driver_data = &quirk_asus_x101ch,
173 },
174 {
175 .callback = dmi_matched,
176 .ident = "ASUSTeK Computer INC. 1015CX",
177 .matches = {
178 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
179 DMI_MATCH(DMI_PRODUCT_NAME, "1015CX"),
180 },
181 .driver_data = &quirk_asus_x101ch,
182 },
160 {}, 183 {},
161}; 184};
162 185