1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * video.c - ACPI Video Driver
10 #define pr_fmt(fmt) "ACPI: video: " fmt
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/types.h>
16 #include <linux/list.h>
17 #include <linux/mutex.h>
18 #include <linux/input.h>
19 #include <linux/backlight.h>
20 #include <linux/thermal.h>
21 #include <linux/sort.h>
22 #include <linux/pci.h>
23 #include <linux/pci_ids.h>
24 #include <linux/slab.h>
25 #include <linux/dmi.h>
26 #include <linux/suspend.h>
27 #include <linux/acpi.h>
28 #include <acpi/video.h>
29 #include <linux/uaccess.h>
31 #define ACPI_VIDEO_BUS_NAME "Video Bus"
32 #define ACPI_VIDEO_DEVICE_NAME "Video Device"
34 #define MAX_NAME_LEN 20
36 MODULE_AUTHOR("Bruno Ducrot");
37 MODULE_DESCRIPTION("ACPI Video Driver");
38 MODULE_LICENSE("GPL");
40 static bool brightness_switch_enabled = true;
41 module_param(brightness_switch_enabled, bool, 0644);
44 * By default, we don't allow duplicate ACPI video bus devices
45 * under the same VGA controller
47 static bool allow_duplicates;
48 module_param(allow_duplicates, bool, 0644);
50 static int disable_backlight_sysfs_if = -1;
51 module_param(disable_backlight_sysfs_if, int, 0444);
53 #define REPORT_OUTPUT_KEY_EVENTS 0x01
54 #define REPORT_BRIGHTNESS_KEY_EVENTS 0x02
55 static int report_key_events = -1;
56 module_param(report_key_events, int, 0644);
57 MODULE_PARM_DESC(report_key_events,
58 "0: none, 1: output changes, 2: brightness changes, 3: all");
60 static int hw_changes_brightness = -1;
61 module_param(hw_changes_brightness, int, 0644);
62 MODULE_PARM_DESC(hw_changes_brightness,
63 "Set this to 1 on buggy hw which changes the brightness itself when "
64 "a hotkey is pressed: -1: auto, 0: normal 1: hw-changes-brightness");
67 * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be
68 * assumed even if not actually set.
70 static bool device_id_scheme = false;
71 module_param(device_id_scheme, bool, 0444);
73 static int only_lcd = -1;
74 module_param(only_lcd, int, 0444);
76 static int register_count;
77 static DEFINE_MUTEX(register_count_mutex);
78 static DEFINE_MUTEX(video_list_lock);
79 static LIST_HEAD(video_bus_head);
80 static int acpi_video_bus_add(struct acpi_device *device);
81 static int acpi_video_bus_remove(struct acpi_device *device);
82 static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
83 void acpi_video_detect_exit(void);
86 * Indices in the _BCL method response: the first two items are special,
87 * the rest are all supported levels.
89 * See page 575 of the ACPI spec 3.0
91 enum acpi_video_level_idx {
92 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
93 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
94 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
97 static const struct acpi_device_id video_device_ids[] = {
101 MODULE_DEVICE_TABLE(acpi, video_device_ids);
103 static struct acpi_driver acpi_video_bus = {
105 .class = ACPI_VIDEO_CLASS,
106 .ids = video_device_ids,
108 .add = acpi_video_bus_add,
109 .remove = acpi_video_bus_remove,
110 .notify = acpi_video_bus_notify,
114 struct acpi_video_bus_flags {
115 u8 multihead:1; /* can switch video heads */
116 u8 rom:1; /* can retrieve a video rom */
117 u8 post:1; /* can configure the head to */
121 struct acpi_video_bus_cap {
122 u8 _DOS:1; /* Enable/Disable output switching */
123 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
124 u8 _ROM:1; /* Get ROM Data */
125 u8 _GPD:1; /* Get POST Device */
126 u8 _SPD:1; /* Set POST Device */
127 u8 _VPO:1; /* Video POST Options */
131 struct acpi_video_device_attrib {
132 u32 display_index:4; /* A zero-based instance of the Display */
133 u32 display_port_attachment:4; /* This field differentiates the display type */
134 u32 display_type:4; /* Describe the specific type in use */
135 u32 vendor_specific:4; /* Chipset Vendor Specific */
136 u32 bios_can_detect:1; /* BIOS can detect the device */
137 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
139 u32 pipe_id:3; /* For VGA multiple-head devices. */
140 u32 reserved:10; /* Must be 0 */
143 * The device ID might not actually follow the scheme described by this
144 * struct acpi_video_device_attrib. If it does, then this bit
145 * device_id_scheme is set; otherwise, other fields should be ignored.
147 * (but also see the global flag device_id_scheme)
149 u32 device_id_scheme:1;
152 struct acpi_video_enumerated_device {
155 struct acpi_video_device_attrib attrib;
157 struct acpi_video_device *bind_info;
160 struct acpi_video_bus {
161 struct acpi_device *device;
162 bool backlight_registered;
164 struct acpi_video_enumerated_device *attached_array;
167 struct acpi_video_bus_cap cap;
168 struct acpi_video_bus_flags flags;
169 struct list_head video_device_list;
170 struct mutex device_list_lock; /* protects video_device_list */
171 struct list_head entry;
172 struct input_dev *input;
173 char phys[32]; /* for input device */
174 struct notifier_block pm_nb;
177 struct acpi_video_device_flags {
188 struct acpi_video_device_cap {
189 u8 _ADR:1; /* Return the unique ID */
190 u8 _BCL:1; /* Query list of brightness control levels supported */
191 u8 _BCM:1; /* Set the brightness level */
192 u8 _BQC:1; /* Get current brightness level */
193 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
194 u8 _DDC:1; /* Return the EDID for this device */
197 struct acpi_video_device {
198 unsigned long device_id;
199 struct acpi_video_device_flags flags;
200 struct acpi_video_device_cap cap;
201 struct list_head entry;
202 struct delayed_work switch_brightness_work;
203 int switch_brightness_event;
204 struct acpi_video_bus *video;
205 struct acpi_device *dev;
206 struct acpi_video_device_brightness *brightness;
207 struct backlight_device *backlight;
208 struct thermal_cooling_device *cooling_dev;
211 static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
212 static void acpi_video_device_rebind(struct acpi_video_bus *video);
213 static void acpi_video_device_bind(struct acpi_video_bus *video,
214 struct acpi_video_device *device);
215 static int acpi_video_device_enumerate(struct acpi_video_bus *video);
216 static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
218 static int acpi_video_device_lcd_get_level_current(
219 struct acpi_video_device *device,
220 unsigned long long *level, bool raw);
221 static int acpi_video_get_next_level(struct acpi_video_device *device,
222 u32 level_current, u32 event);
223 static void acpi_video_switch_brightness(struct work_struct *work);
225 /* backlight device sysfs support */
226 static int acpi_video_get_brightness(struct backlight_device *bd)
228 unsigned long long cur_level;
230 struct acpi_video_device *vd = bl_get_data(bd);
232 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
234 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
235 if (vd->brightness->levels[i] == cur_level)
236 return i - ACPI_VIDEO_FIRST_LEVEL;
241 static int acpi_video_set_brightness(struct backlight_device *bd)
243 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
244 struct acpi_video_device *vd = bl_get_data(bd);
246 cancel_delayed_work(&vd->switch_brightness_work);
247 return acpi_video_device_lcd_set_level(vd,
248 vd->brightness->levels[request_level]);
251 static const struct backlight_ops acpi_backlight_ops = {
252 .get_brightness = acpi_video_get_brightness,
253 .update_status = acpi_video_set_brightness,
256 /* thermal cooling device callbacks */
257 static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
258 unsigned long *state)
260 struct acpi_device *device = cooling_dev->devdata;
261 struct acpi_video_device *video = acpi_driver_data(device);
263 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
267 static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
268 unsigned long *state)
270 struct acpi_device *device = cooling_dev->devdata;
271 struct acpi_video_device *video = acpi_driver_data(device);
272 unsigned long long level;
275 if (acpi_video_device_lcd_get_level_current(video, &level, false))
277 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
279 if (level == video->brightness->levels[offset]) {
280 *state = video->brightness->count - offset - 1;
288 video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
290 struct acpi_device *device = cooling_dev->devdata;
291 struct acpi_video_device *video = acpi_driver_data(device);
294 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
297 state = video->brightness->count - state;
298 level = video->brightness->levels[state - 1];
299 return acpi_video_device_lcd_set_level(video, level);
302 static const struct thermal_cooling_device_ops video_cooling_ops = {
303 .get_max_state = video_get_max_state,
304 .get_cur_state = video_get_cur_state,
305 .set_cur_state = video_set_cur_state,
309 * --------------------------------------------------------------------------
311 * --------------------------------------------------------------------------
315 acpi_video_device_lcd_query_levels(acpi_handle handle,
316 union acpi_object **levels)
319 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
320 union acpi_object *obj;
325 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
326 if (ACPI_FAILURE(status))
328 obj = (union acpi_object *)buffer.pointer;
329 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
330 acpi_handle_info(handle, "Invalid _BCL data\n");
340 kfree(buffer.pointer);
346 acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
351 status = acpi_execute_simple_method(device->dev->handle,
353 if (ACPI_FAILURE(status)) {
354 acpi_handle_info(device->dev->handle, "_BCM evaluation failed\n");
358 device->brightness->curr = level;
359 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
361 if (level == device->brightness->levels[state]) {
362 if (device->backlight)
363 device->backlight->props.brightness =
364 state - ACPI_VIDEO_FIRST_LEVEL;
368 acpi_handle_info(device->dev->handle, "Current brightness invalid\n");
373 * For some buggy _BQC methods, we need to add a constant value to
374 * the _BQC return value to get the actual current brightness level
377 static int bqc_offset_aml_bug_workaround;
378 static int video_set_bqc_offset(const struct dmi_system_id *d)
380 bqc_offset_aml_bug_workaround = 9;
384 static int video_disable_backlight_sysfs_if(
385 const struct dmi_system_id *d)
387 if (disable_backlight_sysfs_if == -1)
388 disable_backlight_sysfs_if = 1;
392 static int video_set_device_id_scheme(const struct dmi_system_id *d)
394 device_id_scheme = true;
398 static int video_enable_only_lcd(const struct dmi_system_id *d)
404 static int video_set_report_key_events(const struct dmi_system_id *id)
406 if (report_key_events == -1)
407 report_key_events = (uintptr_t)id->driver_data;
411 static int video_hw_changes_brightness(
412 const struct dmi_system_id *d)
414 if (hw_changes_brightness == -1)
415 hw_changes_brightness = 1;
419 static const struct dmi_system_id video_dmi_table[] = {
421 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
424 .callback = video_set_bqc_offset,
425 .ident = "Acer Aspire 5720",
427 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
428 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
432 .callback = video_set_bqc_offset,
433 .ident = "Acer Aspire 5710Z",
435 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
436 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
440 .callback = video_set_bqc_offset,
441 .ident = "eMachines E510",
443 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
444 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
448 .callback = video_set_bqc_offset,
449 .ident = "Acer Aspire 5315",
451 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
452 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
456 .callback = video_set_bqc_offset,
457 .ident = "Acer Aspire 7720",
459 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
460 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
465 * Some machines have a broken acpi-video interface for brightness
466 * control, but still need an acpi_video_device_lcd_set_level() call
467 * on resume to turn the backlight power on. We Enable backlight
468 * control on these systems, but do not register a backlight sysfs
469 * as brightness control does not work.
472 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
473 .callback = video_disable_backlight_sysfs_if,
474 .ident = "Toshiba Portege R700",
476 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
477 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"),
481 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
482 .callback = video_disable_backlight_sysfs_if,
483 .ident = "Toshiba Portege R830",
485 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
486 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
490 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
491 .callback = video_disable_backlight_sysfs_if,
492 .ident = "Toshiba Satellite R830",
494 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
495 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"),
499 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
500 * but the IDs actually follow the Device ID Scheme.
503 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
504 .callback = video_set_device_id_scheme,
505 .ident = "ESPRIMO Mobile M9410",
507 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
508 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
512 * Some machines have multiple video output devices, but only the one
513 * that is the type of LCD can do the backlight control so we should not
514 * register backlight interface for other video output devices.
517 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
518 .callback = video_enable_only_lcd,
519 .ident = "ESPRIMO Mobile M9410",
521 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
522 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
526 * Some machines report wrong key events on the acpi-bus, suppress
527 * key event reporting on these. Note this is only intended to work
528 * around events which are plain wrong. In some cases we get double
529 * events, in this case acpi-video is considered the canonical source
530 * and the events from the other source should be filtered. E.g.
531 * by calling acpi_video_handles_brightness_key_presses() from the
532 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
535 .callback = video_set_report_key_events,
536 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
537 .ident = "Dell Vostro V131",
539 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
540 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
544 .callback = video_set_report_key_events,
545 .driver_data = (void *)((uintptr_t)REPORT_BRIGHTNESS_KEY_EVENTS),
546 .ident = "Dell Vostro 3350",
548 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
549 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"),
553 * Some machines change the brightness themselves when a brightness
554 * hotkey gets pressed, despite us telling them not to. In this case
555 * acpi_video_device_notify() should only call backlight_force_update(
556 * BACKLIGHT_UPDATE_HOTKEY) and not do anything else.
559 /* https://bugzilla.kernel.org/show_bug.cgi?id=204077 */
560 .callback = video_hw_changes_brightness,
561 .ident = "Packard Bell EasyNote MZ35",
563 DMI_MATCH(DMI_SYS_VENDOR, "Packard Bell"),
564 DMI_MATCH(DMI_PRODUCT_NAME, "EasyNote MZ35"),
570 static unsigned long long
571 acpi_video_bqc_value_to_level(struct acpi_video_device *device,
572 unsigned long long bqc_value)
574 unsigned long long level;
576 if (device->brightness->flags._BQC_use_index) {
578 * _BQC returns an index that doesn't account for the first 2
579 * items with special meaning (see enum acpi_video_level_idx),
580 * so we need to compensate for that by offsetting ourselves
582 if (device->brightness->flags._BCL_reversed)
583 bqc_value = device->brightness->count -
584 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
586 level = device->brightness->levels[bqc_value +
587 ACPI_VIDEO_FIRST_LEVEL];
592 level += bqc_offset_aml_bug_workaround;
598 acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
599 unsigned long long *level, bool raw)
601 acpi_status status = AE_OK;
604 if (device->cap._BQC || device->cap._BCQ) {
605 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
607 status = acpi_evaluate_integer(device->dev->handle, buf,
609 if (ACPI_SUCCESS(status)) {
612 * Caller has indicated he wants the raw
613 * value returned by _BQC, so don't furtherly
614 * mess with the value.
619 *level = acpi_video_bqc_value_to_level(device, *level);
621 for (i = ACPI_VIDEO_FIRST_LEVEL;
622 i < device->brightness->count; i++)
623 if (device->brightness->levels[i] == *level) {
624 device->brightness->curr = *level;
628 * BQC returned an invalid level.
631 acpi_handle_info(device->dev->handle,
632 "%s returned an invalid level", buf);
633 device->cap._BQC = device->cap._BCQ = 0;
637 * should we return an error or ignore this failure?
638 * dev->brightness->curr is a cached value which stores
639 * the correct current backlight level in most cases.
640 * ACPI video backlight still works w/ buggy _BQC.
641 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
643 acpi_handle_info(device->dev->handle,
644 "%s evaluation failed", buf);
645 device->cap._BQC = device->cap._BCQ = 0;
649 *level = device->brightness->curr;
654 acpi_video_device_EDID(struct acpi_video_device *device,
655 union acpi_object **edid, ssize_t length)
658 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
659 union acpi_object *obj;
660 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
661 struct acpi_object_list args = { 1, &arg0 };
669 arg0.integer.value = 1;
670 else if (length == 256)
671 arg0.integer.value = 2;
675 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
676 if (ACPI_FAILURE(status))
679 obj = buffer.pointer;
681 if (obj && obj->type == ACPI_TYPE_BUFFER)
684 acpi_handle_info(device->dev->handle, "Invalid _DDC data\n");
696 * video : video bus device pointer
698 * 0. The system BIOS should NOT automatically switch(toggle)
699 * the active display output.
700 * 1. The system BIOS should automatically switch (toggle) the
701 * active display output. No switch event.
702 * 2. The _DGS value should be locked.
703 * 3. The system BIOS should not automatically switch (toggle) the
704 * active display output, but instead generate the display switch
707 * 0. The system BIOS should automatically control the brightness level
709 * - the power changes from AC to DC (ACPI appendix B)
710 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
711 * 1. The system BIOS should NOT automatically control the brightness
712 * level of the LCD when:
713 * - the power changes from AC to DC (ACPI appendix B)
714 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
720 acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
724 if (!video->cap._DOS)
727 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
729 video->dos_setting = (lcd_flag << 2) | bios_flag;
730 status = acpi_execute_simple_method(video->device->handle, "_DOS",
731 (lcd_flag << 2) | bios_flag);
732 if (ACPI_FAILURE(status))
739 * Simple comparison function used to sort backlight levels.
743 acpi_video_cmp_level(const void *a, const void *b)
745 return *(int *)a - *(int *)b;
749 * Decides if _BQC/_BCQ for this system is usable
751 * We do this by changing the level first and then read out the current
752 * brightness level, if the value does not match, find out if it is using
753 * index. If not, clear the _BQC/_BCQ capability.
755 static int acpi_video_bqc_quirk(struct acpi_video_device *device,
756 int max_level, int current_level)
758 struct acpi_video_device_brightness *br = device->brightness;
760 unsigned long long level;
763 /* don't mess with existing known broken systems */
764 if (bqc_offset_aml_bug_workaround)
768 * Some systems always report current brightness level as maximum
769 * through _BQC, we need to test another value for them. However,
770 * there is a subtlety:
772 * If the _BCL package ordering is descending, the first level
773 * (br->levels[2]) is likely to be 0, and if the number of levels
774 * matches the number of steps, we might confuse a returned level to
779 * current_level = max_level = 100
781 * returned level = 100
783 * In this case 100 means the level, not the index, and _BCM failed.
784 * Still, if the _BCL package ordering is descending, the index of
785 * level 0 is also 100, so we assume _BQC is indexed, when it's not.
787 * This causes all _BQC calls to return bogus values causing weird
788 * behavior from the user's perspective. For example:
790 * xbacklight -set 10; xbacklight -set 20;
792 * would flash to 90% and then slowly down to the desired level (20).
794 * The solution is simple; test anything other than the first level
797 test_level = current_level == max_level
798 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
801 result = acpi_video_device_lcd_set_level(device, test_level);
805 result = acpi_video_device_lcd_get_level_current(device, &level, true);
809 if (level != test_level) {
810 /* buggy _BQC found, need to find out if it uses index */
811 if (level < br->count) {
812 if (br->flags._BCL_reversed)
813 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
814 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
815 br->flags._BQC_use_index = 1;
818 if (!br->flags._BQC_use_index)
819 device->cap._BQC = device->cap._BCQ = 0;
825 int acpi_video_get_levels(struct acpi_device *device,
826 struct acpi_video_device_brightness **dev_br,
829 union acpi_object *obj = NULL;
830 int i, max_level = 0, count = 0, level_ac_battery = 0;
831 union acpi_object *o;
832 struct acpi_video_device_brightness *br = NULL;
836 if (ACPI_FAILURE(acpi_video_device_lcd_query_levels(device->handle, &obj))) {
837 acpi_handle_debug(device->handle,
838 "Could not query available LCD brightness level\n");
843 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
848 br = kzalloc(sizeof(*br), GFP_KERNEL);
855 * Note that we have to reserve 2 extra items (ACPI_VIDEO_FIRST_LEVEL),
856 * in order to account for buggy BIOS which don't export the first two
857 * special levels (see below)
859 br->levels = kmalloc_array(obj->package.count + ACPI_VIDEO_FIRST_LEVEL,
867 for (i = 0; i < obj->package.count; i++) {
868 o = (union acpi_object *)&obj->package.elements[i];
869 if (o->type != ACPI_TYPE_INTEGER) {
870 acpi_handle_info(device->handle, "Invalid data\n");
873 value = (u32) o->integer.value;
874 /* Skip duplicate entries */
875 if (count > ACPI_VIDEO_FIRST_LEVEL
876 && br->levels[count - 1] == value)
879 br->levels[count] = value;
881 if (br->levels[count] > max_level)
882 max_level = br->levels[count];
887 * some buggy BIOS don't export the levels
888 * when machine is on AC/Battery in _BCL package.
889 * In this case, the first two elements in _BCL packages
890 * are also supported brightness levels that OS should take care of.
892 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
893 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
895 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
899 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
900 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
901 br->flags._BCL_no_ac_battery_levels = 1;
902 for (i = (count - 1 + level_ac_battery);
903 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
904 br->levels[i] = br->levels[i - level_ac_battery];
905 count += level_ac_battery;
906 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
907 acpi_handle_info(device->handle,
908 "Too many duplicates in _BCL package");
910 /* Check if the _BCL package is in a reversed order */
911 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
912 br->flags._BCL_reversed = 1;
913 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
914 count - ACPI_VIDEO_FIRST_LEVEL,
915 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
916 acpi_video_cmp_level, NULL);
917 } else if (max_level != br->levels[count - 1])
918 acpi_handle_info(device->handle,
919 "Found unordered _BCL package");
924 *pmax_level = max_level;
933 EXPORT_SYMBOL(acpi_video_get_levels);
937 * device : video output device (LCD, CRT, ..)
940 * Maximum brightness level
942 * Allocate and initialize device->brightness.
946 acpi_video_init_brightness(struct acpi_video_device *device)
948 int i, max_level = 0;
949 unsigned long long level, level_old;
950 struct acpi_video_device_brightness *br = NULL;
953 result = acpi_video_get_levels(device->dev, &br, &max_level);
956 device->brightness = br;
958 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
959 br->curr = level = max_level;
961 if (!device->cap._BQC)
964 result = acpi_video_device_lcd_get_level_current(device,
967 goto out_free_levels;
969 result = acpi_video_bqc_quirk(device, max_level, level_old);
971 goto out_free_levels;
973 * cap._BQC may get cleared due to _BQC is found to be broken
974 * in acpi_video_bqc_quirk, so check again here.
976 if (!device->cap._BQC)
979 level = acpi_video_bqc_value_to_level(device, level_old);
981 * On some buggy laptops, _BQC returns an uninitialized
982 * value when invoked for the first time, i.e.
983 * level_old is invalid (no matter whether it's a level
984 * or an index). Set the backlight to max_level in this case.
986 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
987 if (level == br->levels[i])
989 if (i == br->count || !level)
993 result = acpi_video_device_lcd_set_level(device, level);
995 goto out_free_levels;
997 acpi_handle_debug(device->dev->handle, "found %d brightness levels\n",
998 br->count - ACPI_VIDEO_FIRST_LEVEL);
1005 device->brightness = NULL;
1011 * device : video output device (LCD, CRT, ..)
1016 * Find out all required AML methods defined under the output
1020 static void acpi_video_device_find_cap(struct acpi_video_device *device)
1022 if (acpi_has_method(device->dev->handle, "_ADR"))
1023 device->cap._ADR = 1;
1024 if (acpi_has_method(device->dev->handle, "_BCL"))
1025 device->cap._BCL = 1;
1026 if (acpi_has_method(device->dev->handle, "_BCM"))
1027 device->cap._BCM = 1;
1028 if (acpi_has_method(device->dev->handle, "_BQC")) {
1029 device->cap._BQC = 1;
1030 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
1031 acpi_handle_info(device->dev->handle,
1032 "_BCQ is used instead of _BQC\n");
1033 device->cap._BCQ = 1;
1036 if (acpi_has_method(device->dev->handle, "_DDC"))
1037 device->cap._DDC = 1;
1042 * device : video output device (VGA)
1047 * Find out all required AML methods defined under the video bus device.
1050 static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
1052 if (acpi_has_method(video->device->handle, "_DOS"))
1053 video->cap._DOS = 1;
1054 if (acpi_has_method(video->device->handle, "_DOD"))
1055 video->cap._DOD = 1;
1056 if (acpi_has_method(video->device->handle, "_ROM"))
1057 video->cap._ROM = 1;
1058 if (acpi_has_method(video->device->handle, "_GPD"))
1059 video->cap._GPD = 1;
1060 if (acpi_has_method(video->device->handle, "_SPD"))
1061 video->cap._SPD = 1;
1062 if (acpi_has_method(video->device->handle, "_VPO"))
1063 video->cap._VPO = 1;
1067 * Check whether the video bus device has required AML method to
1068 * support the desired features
1071 static int acpi_video_bus_check(struct acpi_video_bus *video)
1073 acpi_status status = -ENOENT;
1074 struct pci_dev *dev;
1079 dev = acpi_get_pci_dev(video->device->handle);
1085 * Since there is no HID, CID and so on for VGA driver, we have
1086 * to check well known required nodes.
1089 /* Does this device support video switching? */
1090 if (video->cap._DOS || video->cap._DOD) {
1091 if (!video->cap._DOS) {
1092 pr_info(FW_BUG "ACPI(%s) defines _DOD but not _DOS\n",
1093 acpi_device_bid(video->device));
1095 video->flags.multihead = 1;
1099 /* Does this device support retrieving a video ROM? */
1100 if (video->cap._ROM) {
1101 video->flags.rom = 1;
1105 /* Does this device support configuring which video device to POST? */
1106 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
1107 video->flags.post = 1;
1115 * --------------------------------------------------------------------------
1117 * --------------------------------------------------------------------------
1120 /* device interface */
1121 static struct acpi_video_device_attrib *
1122 acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1124 struct acpi_video_enumerated_device *ids;
1127 for (i = 0; i < video->attached_count; i++) {
1128 ids = &video->attached_array[i];
1129 if ((ids->value.int_val & 0xffff) == device_id)
1130 return &ids->value.attrib;
1137 acpi_video_get_device_type(struct acpi_video_bus *video,
1138 unsigned long device_id)
1140 struct acpi_video_enumerated_device *ids;
1143 for (i = 0; i < video->attached_count; i++) {
1144 ids = &video->attached_array[i];
1145 if ((ids->value.int_val & 0xffff) == device_id)
1146 return ids->value.int_val;
1153 acpi_video_bus_get_one_device(struct acpi_device *device,
1154 struct acpi_video_bus *video)
1156 unsigned long long device_id;
1157 int status, device_type;
1158 struct acpi_video_device *data;
1159 struct acpi_video_device_attrib *attribute;
1162 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
1163 /* Some device omits _ADR, we skip them instead of fail */
1164 if (ACPI_FAILURE(status))
1167 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1171 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1172 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1173 device->driver_data = data;
1175 data->device_id = device_id;
1176 data->video = video;
1178 INIT_DELAYED_WORK(&data->switch_brightness_work,
1179 acpi_video_switch_brightness);
1181 attribute = acpi_video_get_device_attr(video, device_id);
1183 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
1184 switch (attribute->display_type) {
1185 case ACPI_VIDEO_DISPLAY_CRT:
1186 data->flags.crt = 1;
1188 case ACPI_VIDEO_DISPLAY_TV:
1189 data->flags.tvout = 1;
1191 case ACPI_VIDEO_DISPLAY_DVI:
1192 data->flags.dvi = 1;
1194 case ACPI_VIDEO_DISPLAY_LCD:
1195 data->flags.lcd = 1;
1198 data->flags.unknown = 1;
1201 if (attribute->bios_can_detect)
1202 data->flags.bios = 1;
1204 /* Check for legacy IDs */
1205 device_type = acpi_video_get_device_type(video, device_id);
1206 /* Ignore bits 16 and 18-20 */
1207 switch (device_type & 0xffe2ffff) {
1208 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1209 data->flags.crt = 1;
1211 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1212 data->flags.lcd = 1;
1214 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1215 data->flags.tvout = 1;
1218 data->flags.unknown = 1;
1222 acpi_video_device_bind(video, data);
1223 acpi_video_device_find_cap(data);
1225 mutex_lock(&video->device_list_lock);
1226 list_add_tail(&data->entry, &video->video_device_list);
1227 mutex_unlock(&video->device_list_lock);
1234 * video : video bus device
1239 * Enumerate the video device list of the video bus,
1240 * bind the ids with the corresponding video devices
1241 * under the video bus.
1244 static void acpi_video_device_rebind(struct acpi_video_bus *video)
1246 struct acpi_video_device *dev;
1248 mutex_lock(&video->device_list_lock);
1250 list_for_each_entry(dev, &video->video_device_list, entry)
1251 acpi_video_device_bind(video, dev);
1253 mutex_unlock(&video->device_list_lock);
1258 * video : video bus device
1259 * device : video output device under the video
1265 * Bind the ids with the corresponding video devices
1266 * under the video bus.
1270 acpi_video_device_bind(struct acpi_video_bus *video,
1271 struct acpi_video_device *device)
1273 struct acpi_video_enumerated_device *ids;
1276 for (i = 0; i < video->attached_count; i++) {
1277 ids = &video->attached_array[i];
1278 if (device->device_id == (ids->value.int_val & 0xffff)) {
1279 ids->bind_info = device;
1280 acpi_handle_debug(video->device->handle, "%s: %d\n",
1286 static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1288 struct acpi_video_bus *video = device->video;
1292 * If we have a broken _DOD or we have more than 8 output devices
1293 * under the graphics controller node that we can't proper deal with
1294 * in the operation region code currently, no need to test.
1296 if (!video->attached_count || video->child_count > 8)
1299 for (i = 0; i < video->attached_count; i++) {
1300 if ((video->attached_array[i].value.int_val & 0xfff) ==
1301 (device->device_id & 0xfff))
1310 * video : video bus device
1315 * Call _DOD to enumerate all devices attached to display adapter
1319 static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1324 struct acpi_video_enumerated_device *active_list;
1325 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1326 union acpi_object *dod = NULL;
1327 union acpi_object *obj;
1329 if (!video->cap._DOD)
1330 return AE_NOT_EXIST;
1332 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
1333 if (ACPI_FAILURE(status)) {
1334 acpi_handle_info(video->device->handle,
1335 "_DOD evaluation failed: %s\n",
1336 acpi_format_exception(status));
1340 dod = buffer.pointer;
1341 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
1342 acpi_handle_info(video->device->handle, "Invalid _DOD data\n");
1347 acpi_handle_debug(video->device->handle, "Found %d video heads in _DOD\n",
1348 dod->package.count);
1350 active_list = kcalloc(1 + dod->package.count,
1351 sizeof(struct acpi_video_enumerated_device),
1359 for (i = 0; i < dod->package.count; i++) {
1360 obj = &dod->package.elements[i];
1362 if (obj->type != ACPI_TYPE_INTEGER) {
1363 acpi_handle_info(video->device->handle,
1364 "Invalid _DOD data in element %d\n", i);
1368 active_list[count].value.int_val = obj->integer.value;
1369 active_list[count].bind_info = NULL;
1371 acpi_handle_debug(video->device->handle,
1372 "_DOD element[%d] = %d\n", i,
1373 (int)obj->integer.value);
1378 kfree(video->attached_array);
1380 video->attached_array = active_list;
1381 video->attached_count = count;
1384 kfree(buffer.pointer);
1389 acpi_video_get_next_level(struct acpi_video_device *device,
1390 u32 level_current, u32 event)
1392 int min, max, min_above, max_below, i, l, delta = 255;
1393 max = max_below = 0;
1394 min = min_above = 255;
1395 /* Find closest level to level_current */
1396 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
1397 l = device->brightness->levels[i];
1398 if (abs(l - level_current) < abs(delta)) {
1399 delta = l - level_current;
1404 /* Adjust level_current to closest available level */
1405 level_current += delta;
1406 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
1407 l = device->brightness->levels[i];
1412 if (l < min_above && l > level_current)
1414 if (l > max_below && l < level_current)
1419 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1420 return (level_current < max) ? min_above : min;
1421 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1422 return (level_current < max) ? min_above : max;
1423 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1424 return (level_current > min) ? max_below : min;
1425 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1426 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1429 return level_current;
1434 acpi_video_switch_brightness(struct work_struct *work)
1436 struct acpi_video_device *device = container_of(to_delayed_work(work),
1437 struct acpi_video_device, switch_brightness_work);
1438 unsigned long long level_current, level_next;
1439 int event = device->switch_brightness_event;
1440 int result = -EINVAL;
1442 /* no warning message if acpi_backlight=vendor or a quirk is used */
1443 if (!device->backlight)
1446 if (!device->brightness)
1449 result = acpi_video_device_lcd_get_level_current(device,
1455 level_next = acpi_video_get_next_level(device, level_current, event);
1457 result = acpi_video_device_lcd_set_level(device, level_next);
1460 backlight_force_update(device->backlight,
1461 BACKLIGHT_UPDATE_HOTKEY);
1465 acpi_handle_info(device->dev->handle,
1466 "Failed to switch brightness\n");
1469 int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1472 struct acpi_video_bus *video;
1473 struct acpi_video_device *video_device;
1474 union acpi_object *buffer = NULL;
1478 if (!device || !acpi_driver_data(device))
1481 video = acpi_driver_data(device);
1483 for (i = 0; i < video->attached_count; i++) {
1484 video_device = video->attached_array[i].bind_info;
1490 if (!video_device->cap._DDC)
1495 case ACPI_VIDEO_DISPLAY_CRT:
1496 if (!video_device->flags.crt)
1499 case ACPI_VIDEO_DISPLAY_TV:
1500 if (!video_device->flags.tvout)
1503 case ACPI_VIDEO_DISPLAY_DVI:
1504 if (!video_device->flags.dvi)
1507 case ACPI_VIDEO_DISPLAY_LCD:
1508 if (!video_device->flags.lcd)
1512 } else if (video_device->device_id != device_id) {
1516 status = acpi_video_device_EDID(video_device, &buffer, length);
1518 if (ACPI_FAILURE(status) || !buffer ||
1519 buffer->type != ACPI_TYPE_BUFFER) {
1521 status = acpi_video_device_EDID(video_device, &buffer,
1523 if (ACPI_FAILURE(status) || !buffer ||
1524 buffer->type != ACPI_TYPE_BUFFER) {
1529 *edid = buffer->buffer.pointer;
1535 EXPORT_SYMBOL(acpi_video_get_edid);
1538 acpi_video_bus_get_devices(struct acpi_video_bus *video,
1539 struct acpi_device *device)
1542 struct acpi_device *dev;
1545 * There are systems where video module known to work fine regardless
1546 * of broken _DOD and ignoring returned value here doesn't cause
1549 acpi_video_device_enumerate(video);
1551 list_for_each_entry(dev, &device->children, node) {
1553 status = acpi_video_bus_get_one_device(dev, video);
1555 dev_err(&dev->dev, "Can't attach device\n");
1558 video->child_count++;
1563 /* acpi_video interface */
1566 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1567 * perform any automatic brightness change on receiving a notification.
1569 static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
1571 return acpi_video_bus_DOS(video, 0,
1572 acpi_osi_is_win8() ? 1 : 0);
1575 static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
1577 return acpi_video_bus_DOS(video, 0,
1578 acpi_osi_is_win8() ? 0 : 1);
1581 static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
1583 struct acpi_video_bus *video = acpi_driver_data(device);
1584 struct input_dev *input;
1587 if (!video || !video->input)
1590 input = video->input;
1593 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
1594 * most likely via hotkey. */
1595 keycode = KEY_SWITCHVIDEOMODE;
1598 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
1600 acpi_video_device_enumerate(video);
1601 acpi_video_device_rebind(video);
1602 keycode = KEY_SWITCHVIDEOMODE;
1605 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
1606 keycode = KEY_SWITCHVIDEOMODE;
1608 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
1609 keycode = KEY_VIDEO_NEXT;
1611 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
1612 keycode = KEY_VIDEO_PREV;
1616 acpi_handle_debug(device->handle, "Unsupported event [0x%x]\n",
1621 if (acpi_notifier_call_chain(device, event, 0))
1622 /* Something vetoed the keypress. */
1625 if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) {
1626 input_report_key(input, keycode, 1);
1628 input_report_key(input, keycode, 0);
1633 static void brightness_switch_event(struct acpi_video_device *video_device,
1636 if (!brightness_switch_enabled)
1639 video_device->switch_brightness_event = event;
1640 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1643 static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
1645 struct acpi_video_device *video_device = data;
1646 struct acpi_device *device = NULL;
1647 struct acpi_video_bus *bus;
1648 struct input_dev *input;
1654 device = video_device->dev;
1655 bus = video_device->video;
1658 if (hw_changes_brightness > 0) {
1659 if (video_device->backlight)
1660 backlight_force_update(video_device->backlight,
1661 BACKLIGHT_UPDATE_HOTKEY);
1662 acpi_notifier_call_chain(device, event, 0);
1667 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
1668 brightness_switch_event(video_device, event);
1669 keycode = KEY_BRIGHTNESS_CYCLE;
1671 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
1672 brightness_switch_event(video_device, event);
1673 keycode = KEY_BRIGHTNESSUP;
1675 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
1676 brightness_switch_event(video_device, event);
1677 keycode = KEY_BRIGHTNESSDOWN;
1679 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
1680 brightness_switch_event(video_device, event);
1681 keycode = KEY_BRIGHTNESS_ZERO;
1683 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
1684 brightness_switch_event(video_device, event);
1685 keycode = KEY_DISPLAY_OFF;
1688 acpi_handle_debug(handle, "Unsupported event [0x%x]\n", event);
1692 acpi_notifier_call_chain(device, event, 0);
1694 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
1695 input_report_key(input, keycode, 1);
1697 input_report_key(input, keycode, 0);
1702 static int acpi_video_resume(struct notifier_block *nb,
1703 unsigned long val, void *ign)
1705 struct acpi_video_bus *video;
1706 struct acpi_video_device *video_device;
1710 case PM_HIBERNATION_PREPARE:
1711 case PM_SUSPEND_PREPARE:
1712 case PM_RESTORE_PREPARE:
1716 video = container_of(nb, struct acpi_video_bus, pm_nb);
1718 dev_info(&video->device->dev, "Restoring backlight state\n");
1720 for (i = 0; i < video->attached_count; i++) {
1721 video_device = video->attached_array[i].bind_info;
1722 if (video_device && video_device->brightness)
1723 acpi_video_device_lcd_set_level(video_device,
1724 video_device->brightness->curr);
1731 acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1732 void **return_value)
1734 struct acpi_device *device = context;
1735 struct acpi_device *sibling;
1738 if (handle == device->handle)
1739 return AE_CTRL_TERMINATE;
1741 result = acpi_bus_get_device(handle, &sibling);
1745 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1746 return AE_ALREADY_EXISTS;
1751 static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1753 struct backlight_properties props;
1754 struct pci_dev *pdev;
1755 acpi_handle acpi_parent;
1756 struct device *parent = NULL;
1761 result = acpi_video_init_brightness(device);
1765 if (disable_backlight_sysfs_if > 0)
1768 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1773 acpi_get_parent(device->dev->handle, &acpi_parent);
1775 pdev = acpi_get_pci_dev(acpi_parent);
1777 parent = &pdev->dev;
1781 memset(&props, 0, sizeof(struct backlight_properties));
1782 props.type = BACKLIGHT_FIRMWARE;
1783 props.max_brightness =
1784 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
1785 device->backlight = backlight_device_register(name,
1788 &acpi_backlight_ops,
1791 if (IS_ERR(device->backlight)) {
1792 device->backlight = NULL;
1797 * Save current brightness level in case we have to restore it
1798 * before acpi_video_device_lcd_set_level() is called next time.
1800 device->backlight->props.brightness =
1801 acpi_video_get_brightness(device->backlight);
1803 device->cooling_dev = thermal_cooling_device_register("LCD",
1804 device->dev, &video_cooling_ops);
1805 if (IS_ERR(device->cooling_dev)) {
1807 * Set cooling_dev to NULL so we don't crash trying to free it.
1808 * Also, why the hell we are returning early and not attempt to
1809 * register video output if cooling device registration failed?
1812 device->cooling_dev = NULL;
1816 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1817 device->cooling_dev->id);
1818 result = sysfs_create_link(&device->dev->dev.kobj,
1819 &device->cooling_dev->device.kobj,
1822 pr_info("sysfs link creation failed\n");
1824 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1825 &device->dev->dev.kobj, "device");
1827 pr_info("Reverse sysfs link creation failed\n");
1830 static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1832 struct acpi_video_device *dev;
1833 union acpi_object *levels;
1835 mutex_lock(&video->device_list_lock);
1836 list_for_each_entry(dev, &video->video_device_list, entry) {
1837 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
1840 mutex_unlock(&video->device_list_lock);
1843 static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1846 * Do not create backlight device for video output
1847 * device that is not in the enumerated list.
1849 if (!acpi_video_device_in_dod(dev)) {
1850 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1855 return dev->flags.lcd;
1859 static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1861 struct acpi_video_device *dev;
1863 if (video->backlight_registered)
1866 acpi_video_run_bcl_for_osi(video);
1868 if (acpi_video_get_backlight_type() != acpi_backlight_video)
1871 mutex_lock(&video->device_list_lock);
1872 list_for_each_entry(dev, &video->video_device_list, entry) {
1873 if (acpi_video_should_register_backlight(dev))
1874 acpi_video_dev_register_backlight(dev);
1876 mutex_unlock(&video->device_list_lock);
1878 video->backlight_registered = true;
1880 video->pm_nb.notifier_call = acpi_video_resume;
1881 video->pm_nb.priority = 0;
1882 return register_pm_notifier(&video->pm_nb);
1885 static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1887 if (device->backlight) {
1888 backlight_device_unregister(device->backlight);
1889 device->backlight = NULL;
1891 if (device->brightness) {
1892 kfree(device->brightness->levels);
1893 kfree(device->brightness);
1894 device->brightness = NULL;
1896 if (device->cooling_dev) {
1897 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1898 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1899 thermal_cooling_device_unregister(device->cooling_dev);
1900 device->cooling_dev = NULL;
1904 static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1906 struct acpi_video_device *dev;
1909 if (!video->backlight_registered)
1912 error = unregister_pm_notifier(&video->pm_nb);
1914 mutex_lock(&video->device_list_lock);
1915 list_for_each_entry(dev, &video->video_device_list, entry)
1916 acpi_video_dev_unregister_backlight(dev);
1917 mutex_unlock(&video->device_list_lock);
1919 video->backlight_registered = false;
1924 static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1927 struct acpi_device *adev = device->dev;
1929 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1930 acpi_video_device_notify, device);
1931 if (ACPI_FAILURE(status))
1932 dev_err(&adev->dev, "Error installing notify handler\n");
1934 device->flags.notify = 1;
1937 static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1939 struct input_dev *input;
1940 struct acpi_video_device *dev;
1943 video->input = input = input_allocate_device();
1949 error = acpi_video_bus_start_devices(video);
1951 goto err_free_input;
1953 snprintf(video->phys, sizeof(video->phys),
1954 "%s/video/input0", acpi_device_hid(video->device));
1956 input->name = acpi_device_name(video->device);
1957 input->phys = video->phys;
1958 input->id.bustype = BUS_HOST;
1959 input->id.product = 0x06;
1960 input->dev.parent = &video->device->dev;
1961 input->evbit[0] = BIT(EV_KEY);
1962 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1963 set_bit(KEY_VIDEO_NEXT, input->keybit);
1964 set_bit(KEY_VIDEO_PREV, input->keybit);
1965 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1966 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1967 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1968 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1969 set_bit(KEY_DISPLAY_OFF, input->keybit);
1971 error = input_register_device(input);
1975 mutex_lock(&video->device_list_lock);
1976 list_for_each_entry(dev, &video->video_device_list, entry)
1977 acpi_video_dev_add_notify_handler(dev);
1978 mutex_unlock(&video->device_list_lock);
1983 acpi_video_bus_stop_devices(video);
1985 input_free_device(input);
1986 video->input = NULL;
1991 static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1993 if (dev->flags.notify) {
1994 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1995 acpi_video_device_notify);
1996 dev->flags.notify = 0;
2000 static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
2002 struct acpi_video_device *dev;
2004 mutex_lock(&video->device_list_lock);
2005 list_for_each_entry(dev, &video->video_device_list, entry)
2006 acpi_video_dev_remove_notify_handler(dev);
2007 mutex_unlock(&video->device_list_lock);
2009 acpi_video_bus_stop_devices(video);
2010 input_unregister_device(video->input);
2011 video->input = NULL;
2014 static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
2016 struct acpi_video_device *dev, *next;
2018 mutex_lock(&video->device_list_lock);
2019 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
2020 list_del(&dev->entry);
2023 mutex_unlock(&video->device_list_lock);
2028 static int instance;
2030 static int acpi_video_bus_add(struct acpi_device *device)
2032 struct acpi_video_bus *video;
2036 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
2037 device->parent->handle, 1,
2038 acpi_video_bus_match, NULL,
2040 if (status == AE_ALREADY_EXISTS) {
2042 "Duplicate ACPI video bus devices for the"
2043 " same VGA controller, please try module "
2044 "parameter \"video.allow_duplicates=1\""
2045 "if the current driver doesn't work.\n");
2046 if (!allow_duplicates)
2050 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
2054 /* a hack to fix the duplicate name "VID" problem on T61 */
2055 if (!strcmp(device->pnp.bus_id, "VID")) {
2057 device->pnp.bus_id[3] = '0' + instance;
2060 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2061 if (!strcmp(device->pnp.bus_id, "VGA")) {
2063 device->pnp.bus_id[3] = '0' + instance;
2067 video->device = device;
2068 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2069 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
2070 device->driver_data = video;
2072 acpi_video_bus_find_cap(video);
2073 error = acpi_video_bus_check(video);
2075 goto err_free_video;
2077 mutex_init(&video->device_list_lock);
2078 INIT_LIST_HEAD(&video->video_device_list);
2080 error = acpi_video_bus_get_devices(video, device);
2084 pr_info("%s [%s] (multi-head: %s rom: %s post: %s)\n",
2085 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2086 video->flags.multihead ? "yes" : "no",
2087 video->flags.rom ? "yes" : "no",
2088 video->flags.post ? "yes" : "no");
2089 mutex_lock(&video_list_lock);
2090 list_add_tail(&video->entry, &video_bus_head);
2091 mutex_unlock(&video_list_lock);
2093 acpi_video_bus_register_backlight(video);
2094 acpi_video_bus_add_notify_handler(video);
2099 acpi_video_bus_put_devices(video);
2100 kfree(video->attached_array);
2103 device->driver_data = NULL;
2108 static int acpi_video_bus_remove(struct acpi_device *device)
2110 struct acpi_video_bus *video = NULL;
2113 if (!device || !acpi_driver_data(device))
2116 video = acpi_driver_data(device);
2118 acpi_video_bus_remove_notify_handler(video);
2119 acpi_video_bus_unregister_backlight(video);
2120 acpi_video_bus_put_devices(video);
2122 mutex_lock(&video_list_lock);
2123 list_del(&video->entry);
2124 mutex_unlock(&video_list_lock);
2126 kfree(video->attached_array);
2132 static int __init is_i740(struct pci_dev *dev)
2134 if (dev->device == 0x00D1)
2136 if (dev->device == 0x7000)
2141 static int __init intel_opregion_present(void)
2144 struct pci_dev *dev = NULL;
2147 for_each_pci_dev(dev) {
2148 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2150 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2152 /* We don't want to poke around undefined i740 registers */
2155 pci_read_config_dword(dev, 0xfc, &address);
2163 /* Check if the chassis-type indicates there is no builtin LCD panel */
2164 static bool dmi_is_desktop(void)
2166 const char *chassis_type;
2169 chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE);
2173 if (kstrtoul(chassis_type, 10, &type) != 0)
2177 case 0x03: /* Desktop */
2178 case 0x04: /* Low Profile Desktop */
2179 case 0x05: /* Pizza Box */
2180 case 0x06: /* Mini Tower */
2181 case 0x07: /* Tower */
2182 case 0x10: /* Lunch Box */
2183 case 0x11: /* Main Server Chassis */
2191 * We're seeing a lot of bogus backlight interfaces on newer machines
2192 * without a LCD such as desktops, servers and HDMI sticks. Checking the
2193 * lcd flag fixes this, enable this by default on any machines which are:
2194 * 1. Win8 ready (where we also prefer the native backlight driver, so
2195 * normally the acpi_video code should not register there anyways); *and*
2196 * 2.1 Report a desktop/server DMI chassis-type, or
2197 * 2.2 Are an ACPI-reduced-hardware platform (and thus won't use the EC for
2200 static bool should_check_lcd_flag(void)
2202 if (!acpi_osi_is_win8())
2205 if (dmi_is_desktop())
2208 if (acpi_reduced_hardware())
2214 int acpi_video_register(void)
2218 mutex_lock(®ister_count_mutex);
2219 if (register_count) {
2221 * if the function of acpi_video_register is already called,
2222 * don't register the acpi_video_bus again and return no error.
2228 only_lcd = should_check_lcd_flag();
2230 dmi_check_system(video_dmi_table);
2232 ret = acpi_bus_register_driver(&acpi_video_bus);
2237 * When the acpi_video_bus is loaded successfully, increase
2238 * the counter reference.
2243 mutex_unlock(®ister_count_mutex);
2246 EXPORT_SYMBOL(acpi_video_register);
2248 void acpi_video_unregister(void)
2250 mutex_lock(®ister_count_mutex);
2251 if (register_count) {
2252 acpi_bus_unregister_driver(&acpi_video_bus);
2255 mutex_unlock(®ister_count_mutex);
2257 EXPORT_SYMBOL(acpi_video_unregister);
2259 void acpi_video_unregister_backlight(void)
2261 struct acpi_video_bus *video;
2263 mutex_lock(®ister_count_mutex);
2264 if (register_count) {
2265 mutex_lock(&video_list_lock);
2266 list_for_each_entry(video, &video_bus_head, entry)
2267 acpi_video_bus_unregister_backlight(video);
2268 mutex_unlock(&video_list_lock);
2270 mutex_unlock(®ister_count_mutex);
2273 bool acpi_video_handles_brightness_key_presses(void)
2275 bool have_video_busses;
2277 mutex_lock(&video_list_lock);
2278 have_video_busses = !list_empty(&video_bus_head);
2279 mutex_unlock(&video_list_lock);
2281 return have_video_busses &&
2282 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
2284 EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2287 * This is kind of nasty. Hardware using Intel chipsets may require
2288 * the video opregion code to be run first in order to initialise
2289 * state before any ACPI video calls are made. To handle this we defer
2290 * registration of the video class until the opregion code has run.
2293 static int __init acpi_video_init(void)
2296 * Let the module load even if ACPI is disabled (e.g. due to
2297 * a broken BIOS) so that i915.ko can still be loaded on such
2298 * old systems without an AcpiOpRegion.
2300 * acpi_video_register() will report -ENODEV later as well due
2301 * to acpi_disabled when i915.ko tries to register itself afterwards.
2306 if (intel_opregion_present())
2309 return acpi_video_register();
2312 static void __exit acpi_video_exit(void)
2314 acpi_video_detect_exit();
2315 acpi_video_unregister();
2318 module_init(acpi_video_init);
2319 module_exit(acpi_video_exit);