blob: d00c0f4f5defc7989a55dac10a1c6e31ba4d2656 [file] [log] [blame]
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001/*
Hans de Goede87521e12015-06-16 16:27:48 +02002 * Copyright (C) 2015 Red Hat Inc.
3 * Hans de Goede <hdegoede@redhat.com>
Thomas Renningerc3d6de62008-08-01 17:37:55 +02004 * Copyright (C) 2008 SuSE Linux Products GmbH
5 * Thomas Renninger <trenn@suse.de>
6 *
7 * May be copied or modified under the terms of the GNU General Public License
8 *
9 * video_detect.c:
Thomas Renningerc3d6de62008-08-01 17:37:55 +020010 * After PCI devices are glued with ACPI devices
Alexander Chiang1e4cffe2009-06-10 19:56:00 +000011 * acpi_get_pci_dev() can be called to identify ACPI graphics
Thomas Renningerc3d6de62008-08-01 17:37:55 +020012 * devices for which a real graphics card is plugged in
13 *
Thomas Renningerc3d6de62008-08-01 17:37:55 +020014 * Depending on whether ACPI graphics extensions (cmp. ACPI spec Appendix B)
15 * are available, video.ko should be used to handle the device.
16 *
Corentin Chary7ec48ce2011-12-15 08:27:37 +010017 * Otherwise vendor specific drivers like thinkpad_acpi, asus-laptop,
Zhang Rui677bd812010-12-06 15:04:21 +080018 * sony_acpi,... can take care about backlight brightness.
Thomas Renningerc3d6de62008-08-01 17:37:55 +020019 *
Hans de Goede87521e12015-06-16 16:27:48 +020020 * Backlight drivers can use acpi_video_get_backlight_type() to determine
21 * which driver should handle the backlight.
Thomas Renningerc3d6de62008-08-01 17:37:55 +020022 *
Hans de Goede87521e12015-06-16 16:27:48 +020023 * If CONFIG_ACPI_VIDEO is neither set as "compiled in" (y) nor as a module (m)
24 * this file will not be compiled and acpi_video_get_backlight_type() will
25 * always return acpi_backlight_vendor.
Thomas Renningerc3d6de62008-08-01 17:37:55 +020026 */
27
Paul Gortmaker214f2c92011-10-26 16:22:14 -040028#include <linux/export.h>
Thomas Renningerc3d6de62008-08-01 17:37:55 +020029#include <linux/acpi.h>
Hans de Goede87521e12015-06-16 16:27:48 +020030#include <linux/backlight.h>
Thomas Renningerc3d6de62008-08-01 17:37:55 +020031#include <linux/dmi.h>
Hans de Goede14ca7a472015-06-16 16:27:47 +020032#include <linux/module.h>
Alexander Chiang1e4cffe2009-06-10 19:56:00 +000033#include <linux/pci.h>
Hans de Goede87521e12015-06-16 16:27:48 +020034#include <linux/types.h>
35#include <acpi/video.h>
Thomas Renningerc3d6de62008-08-01 17:37:55 +020036
37ACPI_MODULE_NAME("video");
Thomas Renningerc3d6de62008-08-01 17:37:55 +020038#define _COMPONENT ACPI_VIDEO_COMPONENT
39
Hans de Goede87521e12015-06-16 16:27:48 +020040static enum acpi_backlight_type acpi_backlight_cmdline = acpi_backlight_undef;
41static enum acpi_backlight_type acpi_backlight_dmi = acpi_backlight_undef;
Thomas Renningerc3d6de62008-08-01 17:37:55 +020042
Hans de Goede14ca7a472015-06-16 16:27:47 +020043static void acpi_video_parse_cmdline(void)
44{
45 if (!strcmp("vendor", acpi_video_backlight_string))
Hans de Goede87521e12015-06-16 16:27:48 +020046 acpi_backlight_cmdline = acpi_backlight_vendor;
Hans de Goede14ca7a472015-06-16 16:27:47 +020047 if (!strcmp("video", acpi_video_backlight_string))
Hans de Goede87521e12015-06-16 16:27:48 +020048 acpi_backlight_cmdline = acpi_backlight_video;
49 if (!strcmp("native", acpi_video_backlight_string))
50 acpi_backlight_cmdline = acpi_backlight_native;
51 if (!strcmp("none", acpi_video_backlight_string))
52 acpi_backlight_cmdline = acpi_backlight_none;
Hans de Goede14ca7a472015-06-16 16:27:47 +020053}
54
Thomas Renningerc3d6de62008-08-01 17:37:55 +020055static acpi_status
Thomas Renningerc3d6de62008-08-01 17:37:55 +020056find_video(acpi_handle handle, u32 lvl, void *context, void **rv)
57{
58 long *cap = context;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +000059 struct pci_dev *dev;
Thomas Renningerc3d6de62008-08-01 17:37:55 +020060 struct acpi_device *acpi_dev;
61
Mathias Krause4a4f01a2015-06-13 14:26:59 +020062 static const struct acpi_device_id video_ids[] = {
Thomas Renningerc3d6de62008-08-01 17:37:55 +020063 {ACPI_VIDEO_HID, 0},
64 {"", 0},
65 };
66 if (acpi_bus_get_device(handle, &acpi_dev))
67 return AE_OK;
68
69 if (!acpi_match_device_ids(acpi_dev, video_ids)) {
Alexander Chiang1e4cffe2009-06-10 19:56:00 +000070 dev = acpi_get_pci_dev(handle);
Thomas Renningerc3d6de62008-08-01 17:37:55 +020071 if (!dev)
72 return AE_OK;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +000073 pci_dev_put(dev);
Toshi Kanid4e1a692013-03-04 21:30:41 +000074 *cap |= acpi_is_video_device(handle);
Thomas Renningerc3d6de62008-08-01 17:37:55 +020075 }
76 return AE_OK;
77}
78
Corentin Chary084940d2012-06-13 09:32:04 +020079/* Force to use vendor driver when the ACPI device is known to be
80 * buggy */
81static int video_detect_force_vendor(const struct dmi_system_id *d)
82{
Hans de Goede87521e12015-06-16 16:27:48 +020083 acpi_backlight_dmi = acpi_backlight_vendor;
Corentin Chary084940d2012-06-13 09:32:04 +020084 return 0;
85}
86
Mathias Krause4a4f01a2015-06-13 14:26:59 +020087static const struct dmi_system_id video_detect_dmi_table[] = {
Corentin Chary084940d2012-06-13 09:32:04 +020088 /* On Samsung X360, the BIOS will set a flag (VDRV) if generic
89 * ACPI backlight device is used. This flag will definitively break
90 * the backlight interface (even the vendor interface) untill next
91 * reboot. It's why we should prevent video.ko from being used here
92 * and we can't rely on a later call to acpi_video_unregister().
93 */
94 {
95 .callback = video_detect_force_vendor,
96 .ident = "X360",
97 .matches = {
98 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
99 DMI_MATCH(DMI_PRODUCT_NAME, "X360"),
100 DMI_MATCH(DMI_BOARD_NAME, "X360"),
101 },
102 },
Lan Tianyud0c2ce12012-11-30 13:02:50 +0100103 {
104 .callback = video_detect_force_vendor,
105 .ident = "Asus UL30VT",
106 .matches = {
107 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
108 DMI_MATCH(DMI_PRODUCT_NAME, "UL30VT"),
109 },
110 },
Bastian Trillerc8f6d832013-05-19 11:52:33 +0000111 {
112 .callback = video_detect_force_vendor,
113 .ident = "Asus UL30A",
114 .matches = {
115 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
116 DMI_MATCH(DMI_PRODUCT_NAME, "UL30A"),
117 },
118 },
Edward Lin08a56222014-06-20 16:13:42 +0800119 {
120 .callback = video_detect_force_vendor,
121 .ident = "Dell Inspiron 5737",
122 .matches = {
123 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
124 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 5737"),
125 },
126 },
Corentin Chary084940d2012-06-13 09:32:04 +0200127 { },
128};
129
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200130/*
Hans de Goede87521e12015-06-16 16:27:48 +0200131 * Determine which type of backlight interface to use on this system,
132 * First check cmdline, then dmi quirks, then do autodetect.
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200133 *
Hans de Goede87521e12015-06-16 16:27:48 +0200134 * The autodetect order is:
135 * 1) Is the acpi-video backlight interface supported ->
136 * no, use a vendor interface
137 * 2) Is this a win8 "ready" BIOS and do we have a native interface ->
138 * yes, use a native interface
139 * 3) Else use the acpi-video interface
140 *
141 * Arguably the native on win8 check should be done first, but that would
142 * be a behavior change, which may causes issues.
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200143 */
Hans de Goede87521e12015-06-16 16:27:48 +0200144enum acpi_backlight_type acpi_video_get_backlight_type(void)
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200145{
Hans de Goede87521e12015-06-16 16:27:48 +0200146 static DEFINE_MUTEX(init_mutex);
147 static bool init_done;
148 static long video_caps;
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200149
Hans de Goede87521e12015-06-16 16:27:48 +0200150 /* Parse cmdline, dmi and acpi only once */
151 mutex_lock(&init_mutex);
152 if (!init_done) {
153 acpi_video_parse_cmdline();
154 dmi_check_system(video_detect_dmi_table);
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200155 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Lin Ming22635762009-11-13 10:06:08 +0800156 ACPI_UINT32_MAX, find_video, NULL,
Hans de Goede87521e12015-06-16 16:27:48 +0200157 &video_caps, NULL);
158 init_done = true;
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200159 }
Hans de Goede87521e12015-06-16 16:27:48 +0200160 mutex_unlock(&init_mutex);
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200161
Hans de Goede87521e12015-06-16 16:27:48 +0200162 if (acpi_backlight_cmdline != acpi_backlight_undef)
163 return acpi_backlight_cmdline;
Corentin Charyf838eb52012-06-13 09:32:01 +0200164
Hans de Goede87521e12015-06-16 16:27:48 +0200165 if (acpi_backlight_dmi != acpi_backlight_undef)
166 return acpi_backlight_dmi;
167
168 if (!(video_caps & ACPI_VIDEO_BACKLIGHT))
169 return acpi_backlight_vendor;
170
171 if (acpi_osi_is_win8() && backlight_device_registered(BACKLIGHT_RAW))
172 return acpi_backlight_native;
173
174 return acpi_backlight_video;
175}
176EXPORT_SYMBOL(acpi_video_get_backlight_type);
177
178/*
179 * Set the preferred backlight interface type based on DMI info.
180 * This function allows DMI blacklists to be implemented by external
Corentin Charyf838eb52012-06-13 09:32:01 +0200181 * platform drivers instead of putting a big blacklist in video_detect.c
Hans de Goede87521e12015-06-16 16:27:48 +0200182 */
183void acpi_video_set_dmi_backlight_type(enum acpi_backlight_type type)
184{
185 acpi_backlight_dmi = type;
Hans de Goede5fd677b2015-06-16 16:27:49 +0200186 /* Remove acpi-video backlight interface if it is no longer desired */
187 if (acpi_video_get_backlight_type() != acpi_backlight_video)
188 acpi_video_unregister_backlight();
Hans de Goede87521e12015-06-16 16:27:48 +0200189}
190EXPORT_SYMBOL(acpi_video_set_dmi_backlight_type);
191
192/*
193 * Compatiblity function, this is going away as soon as all drivers are
194 * converted to acpi_video_set_dmi_backlight_type().
195 *
196 * Promote the vendor interface instead of the generic video module.
Corentin Charyf838eb52012-06-13 09:32:01 +0200197 * After calling this function you will probably want to call
198 * acpi_video_unregister() to make sure the video module is not loaded
199 */
200void acpi_video_dmi_promote_vendor(void)
201{
Hans de Goede87521e12015-06-16 16:27:48 +0200202 acpi_video_set_dmi_backlight_type(acpi_backlight_vendor);
Corentin Charyf838eb52012-06-13 09:32:01 +0200203}
204EXPORT_SYMBOL(acpi_video_dmi_promote_vendor);
205
Hans de Goede87521e12015-06-16 16:27:48 +0200206/*
207 * Compatiblity function, this is going away as soon as all drivers are
208 * converted to acpi_video_get_backlight_type().
209 *
210 * Returns true if video.ko can do backlight switching.
211 */
Corentin Charyf838eb52012-06-13 09:32:01 +0200212int acpi_video_backlight_support(void)
213{
Hans de Goede87521e12015-06-16 16:27:48 +0200214 /*
215 * This is done this way since vendor drivers call this to see
216 * if they should load, and we do not want them to load for both
217 * the acpi_backlight_video and acpi_backlight_native cases.
218 */
219 return acpi_video_get_backlight_type() != acpi_backlight_vendor;
Thomas Renningerc3d6de62008-08-01 17:37:55 +0200220}
221EXPORT_SYMBOL(acpi_video_backlight_support);