2 * Copyright (C) 2015 Red Hat Inc.
3 * Hans de Goede <hdegoede@redhat.com>
4 * Copyright (C) 2008 SuSE Linux Products GmbH
5 * Thomas Renninger <trenn@suse.de>
7 * May be copied or modified under the terms of the GNU General Public License
10 * After PCI devices are glued with ACPI devices
11 * acpi_get_pci_dev() can be called to identify ACPI graphics
12 * devices for which a real graphics card is plugged in
14 * Depending on whether ACPI graphics extensions (cmp. ACPI spec Appendix B)
15 * are available, video.ko should be used to handle the device.
17 * Otherwise vendor specific drivers like thinkpad_acpi, asus-laptop,
18 * sony_acpi,... can take care about backlight brightness.
20 * Backlight drivers can use acpi_video_get_backlight_type() to determine which
21 * driver should handle the backlight. RAW/GPU-driver backlight drivers must
22 * use the acpi_video_backlight_use_native() helper for this.
24 * If CONFIG_ACPI_VIDEO is neither set as "compiled in" (y) nor as a module (m)
25 * this file will not be compiled and acpi_video_get_backlight_type() will
26 * always return acpi_backlight_vendor.
29 #include <linux/export.h>
30 #include <linux/acpi.h>
31 #include <linux/apple-gmux.h>
32 #include <linux/backlight.h>
33 #include <linux/dmi.h>
34 #include <linux/module.h>
35 #include <linux/pci.h>
36 #include <linux/platform_data/x86/nvidia-wmi-ec-backlight.h>
37 #include <linux/pnp.h>
38 #include <linux/types.h>
39 #include <linux/workqueue.h>
40 #include <acpi/video.h>
42 static enum acpi_backlight_type acpi_backlight_cmdline
= acpi_backlight_undef
;
43 static enum acpi_backlight_type acpi_backlight_dmi
= acpi_backlight_undef
;
45 static void acpi_video_parse_cmdline(void)
47 if (!strcmp("vendor", acpi_video_backlight_string
))
48 acpi_backlight_cmdline
= acpi_backlight_vendor
;
49 if (!strcmp("video", acpi_video_backlight_string
))
50 acpi_backlight_cmdline
= acpi_backlight_video
;
51 if (!strcmp("native", acpi_video_backlight_string
))
52 acpi_backlight_cmdline
= acpi_backlight_native
;
53 if (!strcmp("nvidia_wmi_ec", acpi_video_backlight_string
))
54 acpi_backlight_cmdline
= acpi_backlight_nvidia_wmi_ec
;
55 if (!strcmp("apple_gmux", acpi_video_backlight_string
))
56 acpi_backlight_cmdline
= acpi_backlight_apple_gmux
;
57 if (!strcmp("dell_uart", acpi_video_backlight_string
))
58 acpi_backlight_cmdline
= acpi_backlight_dell_uart
;
59 if (!strcmp("none", acpi_video_backlight_string
))
60 acpi_backlight_cmdline
= acpi_backlight_none
;
64 find_video(acpi_handle handle
, u32 lvl
, void *context
, void **rv
)
66 struct acpi_device
*acpi_dev
= acpi_fetch_acpi_dev(handle
);
70 static const struct acpi_device_id video_ids
[] = {
75 if (acpi_dev
&& !acpi_match_device_ids(acpi_dev
, video_ids
)) {
76 dev
= acpi_get_pci_dev(handle
);
80 *cap
|= acpi_is_video_device(handle
);
85 /* This depends on ACPI_WMI which is X86 only */
87 static bool nvidia_wmi_ec_supported(void)
89 struct wmi_brightness_args args
= {
90 .mode
= WMI_BRIGHTNESS_MODE_GET
,
94 struct acpi_buffer buf
= { (acpi_size
)sizeof(args
), &args
};
97 status
= wmi_evaluate_method(WMI_BRIGHTNESS_GUID
, 0,
98 WMI_BRIGHTNESS_METHOD_SOURCE
, &buf
, &buf
);
99 if (ACPI_FAILURE(status
))
103 * If brightness is handled by the EC then nvidia-wmi-ec-backlight
104 * should be used, else the GPU driver(s) should be used.
106 return args
.ret
== WMI_BRIGHTNESS_SOURCE_EC
;
109 static bool nvidia_wmi_ec_supported(void)
115 /* Force to use vendor driver when the ACPI device is known to be
117 static int video_detect_force_vendor(const struct dmi_system_id
*d
)
119 acpi_backlight_dmi
= acpi_backlight_vendor
;
123 static int video_detect_force_video(const struct dmi_system_id
*d
)
125 acpi_backlight_dmi
= acpi_backlight_video
;
129 static int video_detect_force_native(const struct dmi_system_id
*d
)
131 acpi_backlight_dmi
= acpi_backlight_native
;
135 static int video_detect_portege_r100(const struct dmi_system_id
*d
)
138 /* Search for Trident CyberBlade XP4m32 to confirm Portégé R100 */
139 dev
= pci_get_device(PCI_VENDOR_ID_TRIDENT
, 0x2100, NULL
);
141 acpi_backlight_dmi
= acpi_backlight_vendor
;
145 static const struct dmi_system_id video_detect_dmi_table
[] = {
147 * Models which should use the vendor backlight interface,
148 * because of broken ACPI video backlight control.
151 /* https://bugzilla.redhat.com/show_bug.cgi?id=1128309 */
152 .callback
= video_detect_force_vendor
,
155 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
156 DMI_MATCH(DMI_PRODUCT_NAME
, "KAV80"),
160 .callback
= video_detect_force_vendor
,
163 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
164 DMI_MATCH(DMI_PRODUCT_NAME
, "UL30VT"),
168 .callback
= video_detect_force_vendor
,
171 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
172 DMI_MATCH(DMI_PRODUCT_NAME
, "UL30A"),
176 .callback
= video_detect_force_vendor
,
179 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
180 DMI_MATCH(DMI_PRODUCT_NAME
, "X55U"),
184 /* https://bugs.launchpad.net/bugs/1000146 */
185 .callback
= video_detect_force_vendor
,
188 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
189 DMI_MATCH(DMI_PRODUCT_NAME
, "X101CH"),
193 .callback
= video_detect_force_vendor
,
196 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
197 DMI_MATCH(DMI_PRODUCT_NAME
, "X401U"),
201 .callback
= video_detect_force_vendor
,
204 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
205 DMI_MATCH(DMI_PRODUCT_NAME
, "X501U"),
209 /* https://bugs.launchpad.net/bugs/1000146 */
210 .callback
= video_detect_force_vendor
,
213 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
214 DMI_MATCH(DMI_PRODUCT_NAME
, "1015CX"),
218 .callback
= video_detect_force_vendor
,
219 /* Samsung N150/N210/N220 */
221 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
222 DMI_MATCH(DMI_PRODUCT_NAME
, "N150/N210/N220"),
223 DMI_MATCH(DMI_BOARD_NAME
, "N150/N210/N220"),
227 .callback
= video_detect_force_vendor
,
228 /* Samsung NF110/NF210/NF310 */
230 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
231 DMI_MATCH(DMI_PRODUCT_NAME
, "NF110/NF210/NF310"),
232 DMI_MATCH(DMI_BOARD_NAME
, "NF110/NF210/NF310"),
236 .callback
= video_detect_force_vendor
,
239 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
240 DMI_MATCH(DMI_PRODUCT_NAME
, "NC210/NC110"),
241 DMI_MATCH(DMI_BOARD_NAME
, "NC210/NC110"),
246 * Models which should use the vendor backlight interface,
247 * because of broken native backlight control.
250 .callback
= video_detect_force_vendor
,
251 /* Sony Vaio PCG-FRV35 */
253 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
254 DMI_MATCH(DMI_PRODUCT_NAME
, "PCG-FRV35"),
258 .callback
= video_detect_force_vendor
,
259 /* Panasonic Toughbook CF-18 */
261 DMI_MATCH(DMI_SYS_VENDOR
, "Matsushita Electric Industrial"),
262 DMI_MATCH(DMI_PRODUCT_NAME
, "CF-18"),
267 * Toshiba models with Transflective display, these need to use
268 * the toshiba_acpi vendor driver for proper Transflective handling.
271 .callback
= video_detect_force_vendor
,
273 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
274 DMI_MATCH(DMI_PRODUCT_NAME
, "PORTEGE R500"),
278 .callback
= video_detect_force_vendor
,
280 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
281 DMI_MATCH(DMI_PRODUCT_NAME
, "PORTEGE R600"),
286 * Toshiba Portégé R100 has working both acpi_video and toshiba_acpi
287 * vendor driver. But none of them gets activated as it has a VGA with
288 * no kernel driver (Trident CyberBlade XP4m32).
289 * The DMI strings are generic so check for the VGA chip in callback.
292 .callback
= video_detect_portege_r100
,
294 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
295 DMI_MATCH(DMI_PRODUCT_NAME
, "Portable PC"),
296 DMI_MATCH(DMI_PRODUCT_VERSION
, "Version 1.0"),
297 DMI_MATCH(DMI_BOARD_NAME
, "Portable PC")
302 * Models which need acpi_video backlight control where the GPU drivers
303 * do not call acpi_video_register_backlight() because no internal panel
304 * is detected. Typically these are all-in-ones (monitors with builtin
305 * PC) where the panel connection shows up as regular DP instead of eDP.
308 .callback
= video_detect_force_video
,
311 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
312 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac14,1"),
316 .callback
= video_detect_force_video
,
319 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
320 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac14,2"),
325 * These models have a working acpi_video backlight control, and using
326 * native backlight causes a regression where backlight does not work
327 * when userspace is not handling brightness key events. Disable
328 * native_backlight on these to fix this:
329 * https://bugzilla.kernel.org/show_bug.cgi?id=81691
332 .callback
= video_detect_force_video
,
335 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
336 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad T420"),
340 .callback
= video_detect_force_video
,
343 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
344 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad T520"),
348 .callback
= video_detect_force_video
,
351 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
352 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad X201s"),
356 .callback
= video_detect_force_video
,
359 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
360 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad X201T"),
364 /* The native backlight controls do not work on some older machines */
366 /* https://bugs.freedesktop.org/show_bug.cgi?id=81515 */
367 .callback
= video_detect_force_video
,
368 /* HP ENVY 15 Notebook */
370 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
371 DMI_MATCH(DMI_PRODUCT_NAME
, "HP ENVY 15 Notebook PC"),
375 .callback
= video_detect_force_video
,
376 /* SAMSUNG 870Z5E/880Z5E/680Z5E */
378 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
379 DMI_MATCH(DMI_PRODUCT_NAME
, "870Z5E/880Z5E/680Z5E"),
383 .callback
= video_detect_force_video
,
384 /* SAMSUNG 370R4E/370R4V/370R5E/3570RE/370R5V */
386 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
387 DMI_MATCH(DMI_PRODUCT_NAME
,
388 "370R4E/370R4V/370R5E/3570RE/370R5V"),
392 /* https://bugzilla.redhat.com/show_bug.cgi?id=1186097 */
393 .callback
= video_detect_force_video
,
394 /* SAMSUNG 3570R/370R/470R/450R/510R/4450RV */
396 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
397 DMI_MATCH(DMI_PRODUCT_NAME
,
398 "3570R/370R/470R/450R/510R/4450RV"),
402 /* https://bugzilla.redhat.com/show_bug.cgi?id=1557060 */
403 .callback
= video_detect_force_video
,
406 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
407 DMI_MATCH(DMI_PRODUCT_NAME
, "670Z5E"),
411 /* https://bugzilla.redhat.com/show_bug.cgi?id=1094948 */
412 .callback
= video_detect_force_video
,
413 /* SAMSUNG 730U3E/740U3E */
415 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
416 DMI_MATCH(DMI_PRODUCT_NAME
, "730U3E/740U3E"),
420 /* https://bugs.freedesktop.org/show_bug.cgi?id=87286 */
421 .callback
= video_detect_force_video
,
422 /* SAMSUNG 900X3C/900X3D/900X3E/900X4C/900X4D */
424 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
425 DMI_MATCH(DMI_PRODUCT_NAME
,
426 "900X3C/900X3D/900X3E/900X4C/900X4D"),
430 /* https://bugzilla.redhat.com/show_bug.cgi?id=1272633 */
431 .callback
= video_detect_force_video
,
432 /* Dell XPS14 L421X */
434 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
435 DMI_MATCH(DMI_PRODUCT_NAME
, "XPS L421X"),
439 /* https://bugzilla.redhat.com/show_bug.cgi?id=1163574 */
440 .callback
= video_detect_force_video
,
441 /* Dell XPS15 L521X */
443 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
444 DMI_MATCH(DMI_PRODUCT_NAME
, "XPS L521X"),
448 /* https://bugzilla.kernel.org/show_bug.cgi?id=108971 */
449 .callback
= video_detect_force_video
,
450 /* SAMSUNG 530U4E/540U4E */
452 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
453 DMI_MATCH(DMI_PRODUCT_NAME
, "530U4E/540U4E"),
457 /* https://bugs.launchpad.net/bugs/1894667 */
458 .callback
= video_detect_force_video
,
459 /* HP 635 Notebook */
461 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
462 DMI_MATCH(DMI_PRODUCT_NAME
, "HP 635 Notebook PC"),
466 /* Non win8 machines which need native backlight nevertheless */
468 /* https://bugzilla.redhat.com/show_bug.cgi?id=1201530 */
469 .callback
= video_detect_force_native
,
470 /* Lenovo Ideapad S405 */
472 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
473 DMI_MATCH(DMI_BOARD_NAME
, "Lenovo IdeaPad S405"),
477 /* https://bugzilla.suse.com/show_bug.cgi?id=1208724 */
478 .callback
= video_detect_force_native
,
479 /* Lenovo Ideapad Z470 */
481 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
482 DMI_MATCH(DMI_PRODUCT_VERSION
, "IdeaPad Z470"),
486 /* https://bugzilla.redhat.com/show_bug.cgi?id=1187004 */
487 .callback
= video_detect_force_native
,
488 /* Lenovo Ideapad Z570 */
490 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
491 DMI_MATCH(DMI_PRODUCT_VERSION
, "Ideapad Z570"),
495 .callback
= video_detect_force_native
,
498 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
499 DMI_MATCH(DMI_PRODUCT_NAME
, "81FS"),
503 .callback
= video_detect_force_native
,
506 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
507 DMI_MATCH(DMI_PRODUCT_NAME
, "82BK"),
511 .callback
= video_detect_force_native
,
512 /* Lenovo Slim 7 16ARH7 */
514 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
515 DMI_MATCH(DMI_PRODUCT_NAME
, "82UX"),
519 .callback
= video_detect_force_native
,
520 /* Lenovo ThinkPad X131e (3371 AMD version) */
522 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
523 DMI_MATCH(DMI_PRODUCT_NAME
, "3371"),
527 .callback
= video_detect_force_native
,
530 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
531 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac11,3"),
535 /* https://gitlab.freedesktop.org/drm/amd/-/issues/1838 */
536 .callback
= video_detect_force_native
,
539 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
540 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac12,1"),
544 /* https://gitlab.freedesktop.org/drm/amd/-/issues/2753 */
545 .callback
= video_detect_force_native
,
548 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
549 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac12,2"),
553 .callback
= video_detect_force_native
,
554 /* Apple MacBook Air 7,2 */
556 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
557 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookAir7,2"),
561 .callback
= video_detect_force_native
,
562 /* Apple MacBook Air 9,1 */
564 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
565 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookAir9,1"),
569 .callback
= video_detect_force_native
,
570 /* Apple MacBook Pro 9,2 */
572 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
573 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro9,2"),
577 .callback
= video_detect_force_native
,
578 /* Apple MacBook Pro 11,2 */
580 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
581 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro11,2"),
585 /* https://bugzilla.redhat.com/show_bug.cgi?id=1217249 */
586 .callback
= video_detect_force_native
,
587 /* Apple MacBook Pro 12,1 */
589 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
590 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro12,1"),
594 .callback
= video_detect_force_native
,
595 /* Apple MacBook Pro 16,2 */
597 DMI_MATCH(DMI_SYS_VENDOR
, "Apple Inc."),
598 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro16,2"),
602 .callback
= video_detect_force_native
,
603 /* Dell Inspiron N4010 */
605 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
606 DMI_MATCH(DMI_PRODUCT_NAME
, "Inspiron N4010"),
610 .callback
= video_detect_force_native
,
611 /* Dell Vostro V131 */
613 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
614 DMI_MATCH(DMI_PRODUCT_NAME
, "Vostro V131"),
618 /* https://bugzilla.redhat.com/show_bug.cgi?id=1123661 */
619 .callback
= video_detect_force_native
,
620 /* Dell XPS 17 L702X */
622 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
623 DMI_MATCH(DMI_PRODUCT_NAME
, "Dell System XPS L702X"),
627 .callback
= video_detect_force_native
,
628 /* Dell Precision 7510 */
630 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
631 DMI_MATCH(DMI_PRODUCT_NAME
, "Precision 7510"),
635 .callback
= video_detect_force_native
,
636 /* Dell Studio 1569 */
638 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
639 DMI_MATCH(DMI_PRODUCT_NAME
, "Studio 1569"),
643 .callback
= video_detect_force_native
,
644 /* Acer Aspire 3830TG */
646 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
647 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 3830TG"),
651 .callback
= video_detect_force_native
,
652 /* Acer Aspire 4810T */
654 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
655 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 4810T"),
659 .callback
= video_detect_force_native
,
660 /* Acer Aspire 5738z */
662 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
663 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5738"),
664 DMI_MATCH(DMI_BOARD_NAME
, "JV50"),
668 /* https://bugzilla.redhat.com/show_bug.cgi?id=1012674 */
669 .callback
= video_detect_force_native
,
670 /* Acer Aspire 5741 */
672 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
673 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5741"),
677 /* https://bugzilla.kernel.org/show_bug.cgi?id=42993 */
678 .callback
= video_detect_force_native
,
679 /* Acer Aspire 5750 */
681 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
682 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5750"),
686 /* https://bugzilla.kernel.org/show_bug.cgi?id=42833 */
687 .callback
= video_detect_force_native
,
688 /* Acer Extensa 5235 */
690 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
691 DMI_MATCH(DMI_PRODUCT_NAME
, "Extensa 5235"),
695 .callback
= video_detect_force_native
,
696 /* Acer TravelMate 4750 */
698 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
699 DMI_MATCH(DMI_PRODUCT_NAME
, "TravelMate 4750"),
703 /* https://bugzilla.kernel.org/show_bug.cgi?id=207835 */
704 .callback
= video_detect_force_native
,
705 /* Acer TravelMate 5735Z */
707 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
708 DMI_MATCH(DMI_PRODUCT_NAME
, "TravelMate 5735Z"),
709 DMI_MATCH(DMI_BOARD_NAME
, "BA51_MV"),
713 /* https://bugzilla.kernel.org/show_bug.cgi?id=36322 */
714 .callback
= video_detect_force_native
,
715 /* Acer TravelMate 5760 */
717 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
718 DMI_MATCH(DMI_PRODUCT_NAME
, "TravelMate 5760"),
722 .callback
= video_detect_force_native
,
723 /* ASUSTeK COMPUTER INC. GA401 */
725 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
726 DMI_MATCH(DMI_PRODUCT_NAME
, "GA401"),
730 .callback
= video_detect_force_native
,
731 /* ASUSTeK COMPUTER INC. GA502 */
733 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
734 DMI_MATCH(DMI_PRODUCT_NAME
, "GA502"),
738 .callback
= video_detect_force_native
,
739 /* ASUSTeK COMPUTER INC. GA503 */
741 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
742 DMI_MATCH(DMI_PRODUCT_NAME
, "GA503"),
746 .callback
= video_detect_force_native
,
749 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK Computer Inc."),
750 DMI_MATCH(DMI_PRODUCT_NAME
, "U46E"),
754 .callback
= video_detect_force_native
,
757 DMI_MATCH(DMI_SYS_VENDOR
, "ASUSTeK COMPUTER INC."),
758 DMI_MATCH(DMI_PRODUCT_NAME
, "UX303UB"),
762 .callback
= video_detect_force_native
,
763 /* HP EliteBook 8460p */
765 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
766 DMI_MATCH(DMI_PRODUCT_NAME
, "HP EliteBook 8460p"),
770 .callback
= video_detect_force_native
,
771 /* HP Pavilion g6-1d80nr / B4U19UA */
773 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
774 DMI_MATCH(DMI_PRODUCT_NAME
, "HP Pavilion g6 Notebook PC"),
775 DMI_MATCH(DMI_PRODUCT_SKU
, "B4U19UA"),
779 .callback
= video_detect_force_native
,
782 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
783 DMI_MATCH(DMI_PRODUCT_NAME
, "N150P"),
784 DMI_MATCH(DMI_BOARD_NAME
, "N150P"),
788 .callback
= video_detect_force_native
,
789 /* Samsung N145P/N250P/N260P */
791 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
792 DMI_MATCH(DMI_PRODUCT_NAME
, "N145P/N250P/N260P"),
793 DMI_MATCH(DMI_BOARD_NAME
, "N145P/N250P/N260P"),
797 .callback
= video_detect_force_native
,
800 DMI_MATCH(DMI_SYS_VENDOR
, "SAMSUNG ELECTRONICS CO., LTD."),
801 DMI_MATCH(DMI_PRODUCT_NAME
, "N250P"),
802 DMI_MATCH(DMI_BOARD_NAME
, "N250P"),
806 /* https://bugzilla.kernel.org/show_bug.cgi?id=202401 */
807 .callback
= video_detect_force_native
,
808 /* Sony Vaio VPCEH3U1E */
810 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
811 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCEH3U1E"),
815 .callback
= video_detect_force_native
,
816 /* Sony Vaio VPCY11S1E */
818 DMI_MATCH(DMI_SYS_VENDOR
, "Sony Corporation"),
819 DMI_MATCH(DMI_PRODUCT_NAME
, "VPCY11S1E"),
824 * These Toshibas have a broken acpi-video interface for brightness
825 * control. They also have an issue where the panel is off after
826 * suspend until a special firmware call is made to turn it back
827 * on. This is handled by the toshiba_acpi kernel module, so that
828 * module must be enabled for these models to work correctly.
831 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
832 .callback
= video_detect_force_native
,
833 /* Toshiba Portégé R700 */
835 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
836 DMI_MATCH(DMI_PRODUCT_NAME
, "PORTEGE R700"),
840 /* Portégé: https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
841 /* Satellite: https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
842 .callback
= video_detect_force_native
,
843 /* Toshiba Satellite/Portégé R830 */
845 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
846 DMI_MATCH(DMI_PRODUCT_NAME
, "R830"),
850 .callback
= video_detect_force_native
,
851 /* Toshiba Satellite/Portégé Z830 */
853 DMI_MATCH(DMI_SYS_VENDOR
, "TOSHIBA"),
854 DMI_MATCH(DMI_PRODUCT_NAME
, "Z830"),
859 * Dell AIO (All in Ones) which advertise an UART attached backlight
860 * controller board in their ACPI tables (and may even have one), but
861 * which need native backlight control nevertheless.
864 /* https://github.com/zabbly/linux/issues/26 */
865 .callback
= video_detect_force_native
,
866 /* Dell OptiPlex 5480 AIO */
868 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
869 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 5480 AIO"),
873 /* https://bugzilla.redhat.com/show_bug.cgi?id=2303936 */
874 .callback
= video_detect_force_native
,
875 /* Dell OptiPlex 7760 AIO */
877 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
878 DMI_MATCH(DMI_PRODUCT_NAME
, "OptiPlex 7760 AIO"),
883 * Models which have nvidia-ec-wmi support, but should not use it.
884 * Note this indicates a likely firmware bug on these models and should
885 * be revisited if/when Linux gets support for dynamic mux mode.
888 .callback
= video_detect_force_native
,
891 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
892 DMI_MATCH(DMI_PRODUCT_NAME
, "Dell G15 5515"),
896 .callback
= video_detect_force_native
,
898 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
899 DMI_MATCH(DMI_PRODUCT_NAME
, "Vostro 15 3535"),
904 * x86 android tablets which directly control the backlight through
905 * an external backlight controller, typically TI's LP8557.
906 * The backlight is directly controlled by the lp855x driver on these.
907 * This setup means that neither i915's native nor acpi_video backlight
908 * control works. Add a "vendor" quirk to disable both. Note these
909 * devices do not use vendor control in the typical meaning of
910 * vendor specific SMBIOS or ACPI calls being used.
913 .callback
= video_detect_force_vendor
,
914 /* Lenovo Yoga Book X90F / X90L */
916 DMI_EXACT_MATCH(DMI_SYS_VENDOR
, "Intel Corporation"),
917 DMI_EXACT_MATCH(DMI_PRODUCT_NAME
, "CHERRYVIEW D1 PLATFORM"),
918 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION
, "YETI-11"),
922 .callback
= video_detect_force_vendor
,
924 * Lenovo Yoga Tablet 2 830F/L or 1050F/L (The 8" and 10"
925 * Lenovo Yoga Tablet 2 use the same mainboard)
928 DMI_MATCH(DMI_SYS_VENDOR
, "Intel Corp."),
929 DMI_MATCH(DMI_PRODUCT_NAME
, "VALLEYVIEW C0 PLATFORM"),
930 DMI_MATCH(DMI_BOARD_NAME
, "BYT-T FFD8"),
931 /* Partial match on beginning of BIOS version */
932 DMI_MATCH(DMI_BIOS_VERSION
, "BLADE_21"),
936 .callback
= video_detect_force_vendor
,
937 /* Lenovo Yoga Tab 3 Pro YT3-X90F */
939 DMI_MATCH(DMI_SYS_VENDOR
, "Intel Corporation"),
940 DMI_MATCH(DMI_PRODUCT_VERSION
, "Blade3-10A-001"),
944 .callback
= video_detect_force_vendor
,
945 /* Xiaomi Mi Pad 2 */
947 DMI_MATCH(DMI_SYS_VENDOR
, "Xiaomi Inc"),
948 DMI_MATCH(DMI_PRODUCT_NAME
, "Mipad2"),
954 static bool google_cros_ec_present(void)
956 return acpi_dev_found("GOOG0004") || acpi_dev_found("GOOG000C");
960 * Windows 8 and newer no longer use the ACPI video interface, so it often
961 * does not work. So on win8+ systems prefer native brightness control.
962 * Chromebooks should always prefer native backlight control.
964 static bool prefer_native_over_acpi_video(void)
966 return acpi_osi_is_win8() || google_cros_ec_present();
970 * Determine which type of backlight interface to use on this system,
971 * First check cmdline, then dmi quirks, then do autodetect.
973 enum acpi_backlight_type
__acpi_video_get_backlight_type(bool native
, bool *auto_detect
)
975 static DEFINE_MUTEX(init_mutex
);
976 static bool nvidia_wmi_ec_present
;
977 static bool apple_gmux_present
;
978 static bool dell_uart_present
;
979 static bool native_available
;
980 static bool init_done
;
981 static long video_caps
;
983 /* Parse cmdline, dmi and acpi only once */
984 mutex_lock(&init_mutex
);
986 acpi_video_parse_cmdline();
987 dmi_check_system(video_detect_dmi_table
);
988 acpi_walk_namespace(ACPI_TYPE_DEVICE
, ACPI_ROOT_OBJECT
,
989 ACPI_UINT32_MAX
, find_video
, NULL
,
991 nvidia_wmi_ec_present
= nvidia_wmi_ec_supported();
992 apple_gmux_present
= apple_gmux_detect(NULL
, NULL
);
993 dell_uart_present
= acpi_dev_present("DELL0501", NULL
, -1);
997 native_available
= true;
998 mutex_unlock(&init_mutex
);
1001 *auto_detect
= false;
1004 * The below heuristics / detection steps are in order of descending
1005 * presedence. The commandline takes presedence over anything else.
1007 if (acpi_backlight_cmdline
!= acpi_backlight_undef
)
1008 return acpi_backlight_cmdline
;
1010 /* DMI quirks override any autodetection. */
1011 if (acpi_backlight_dmi
!= acpi_backlight_undef
)
1012 return acpi_backlight_dmi
;
1015 *auto_detect
= true;
1017 /* Special cases such as nvidia_wmi_ec and apple gmux. */
1018 if (nvidia_wmi_ec_present
)
1019 return acpi_backlight_nvidia_wmi_ec
;
1021 if (apple_gmux_present
)
1022 return acpi_backlight_apple_gmux
;
1024 if (dell_uart_present
)
1025 return acpi_backlight_dell_uart
;
1027 /* Use ACPI video if available, except when native should be preferred. */
1028 if ((video_caps
& ACPI_VIDEO_BACKLIGHT
) &&
1029 !(native_available
&& prefer_native_over_acpi_video()))
1030 return acpi_backlight_video
;
1032 /* Use native if available */
1033 if (native_available
)
1034 return acpi_backlight_native
;
1037 * The vendor specific BIOS interfaces are only necessary for
1038 * laptops from before ~2008.
1040 * For laptops from ~2008 till ~2023 this point is never reached
1041 * because on those (video_caps & ACPI_VIDEO_BACKLIGHT) above is true.
1043 * Laptops from after ~2023 no longer support ACPI_VIDEO_BACKLIGHT,
1044 * if this point is reached on those, this likely means that
1045 * the GPU kms driver which sets native_available has not loaded yet.
1047 * Returning acpi_backlight_vendor in this case is known to sometimes
1048 * cause a non working vendor specific /sys/class/backlight device to
1051 * Return acpi_backlight_none on laptops with ACPI tables written
1052 * for Windows 8 (laptops from after ~2012) to avoid this problem.
1054 if (acpi_osi_is_win8())
1055 return acpi_backlight_none
;
1057 /* No ACPI video/native (old hw), use vendor specific fw methods. */
1058 return acpi_backlight_vendor
;
1060 EXPORT_SYMBOL(__acpi_video_get_backlight_type
);