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 #define REPORT_OUTPUT_KEY_EVENTS 0x01
51 #define REPORT_BRIGHTNESS_KEY_EVENTS 0x02
52 static int report_key_events = -1;
53 module_param(report_key_events, int, 0644);
54 MODULE_PARM_DESC(report_key_events,
55 "0: none, 1: output changes, 2: brightness changes, 3: all");
57 static int hw_changes_brightness = -1;
58 module_param(hw_changes_brightness, int, 0644);
59 MODULE_PARM_DESC(hw_changes_brightness,
60 "Set this to 1 on buggy hw which changes the brightness itself when "
61 "a hotkey is pressed: -1: auto, 0: normal 1: hw-changes-brightness");
64 * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be
65 * assumed even if not actually set.
67 static bool device_id_scheme = false;
68 module_param(device_id_scheme, bool, 0444);
70 static int only_lcd = -1;
71 module_param(only_lcd, int, 0444);
73 static int register_backlight_delay;
74 module_param(register_backlight_delay, int, 0444);
75 MODULE_PARM_DESC(register_backlight_delay,
76 "Delay in seconds before doing fallback (non GPU driver triggered) "
77 "backlight registration, set to 0 to disable.");
79 static bool may_report_brightness_keys;
80 static int register_count;
81 static DEFINE_MUTEX(register_count_mutex);
82 static DEFINE_MUTEX(video_list_lock);
83 static LIST_HEAD(video_bus_head);
84 static int acpi_video_bus_add(struct acpi_device *device);
85 static void acpi_video_bus_remove(struct acpi_device *device);
86 static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
87 static void acpi_video_bus_register_backlight_work(struct work_struct *ignored);
88 static DECLARE_DELAYED_WORK(video_bus_register_backlight_work,
89 acpi_video_bus_register_backlight_work);
92 * Indices in the _BCL method response: the first two items are special,
93 * the rest are all supported levels.
95 * See page 575 of the ACPI spec 3.0
97 enum acpi_video_level_idx {
98 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
99 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
100 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
103 static const struct acpi_device_id video_device_ids[] = {
107 MODULE_DEVICE_TABLE(acpi, video_device_ids);
109 static struct acpi_driver acpi_video_bus = {
111 .class = ACPI_VIDEO_CLASS,
112 .ids = video_device_ids,
114 .add = acpi_video_bus_add,
115 .remove = acpi_video_bus_remove,
116 .notify = acpi_video_bus_notify,
120 struct acpi_video_bus_flags {
121 u8 multihead:1; /* can switch video heads */
122 u8 rom:1; /* can retrieve a video rom */
123 u8 post:1; /* can configure the head to */
127 struct acpi_video_bus_cap {
128 u8 _DOS:1; /* Enable/Disable output switching */
129 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
130 u8 _ROM:1; /* Get ROM Data */
131 u8 _GPD:1; /* Get POST Device */
132 u8 _SPD:1; /* Set POST Device */
133 u8 _VPO:1; /* Video POST Options */
137 struct acpi_video_device_attrib {
138 u32 display_index:4; /* A zero-based instance of the Display */
139 u32 display_port_attachment:4; /* This field differentiates the display type */
140 u32 display_type:4; /* Describe the specific type in use */
141 u32 vendor_specific:4; /* Chipset Vendor Specific */
142 u32 bios_can_detect:1; /* BIOS can detect the device */
143 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
145 u32 pipe_id:3; /* For VGA multiple-head devices. */
146 u32 reserved:10; /* Must be 0 */
149 * The device ID might not actually follow the scheme described by this
150 * struct acpi_video_device_attrib. If it does, then this bit
151 * device_id_scheme is set; otherwise, other fields should be ignored.
153 * (but also see the global flag device_id_scheme)
155 u32 device_id_scheme:1;
158 struct acpi_video_enumerated_device {
161 struct acpi_video_device_attrib attrib;
163 struct acpi_video_device *bind_info;
166 struct acpi_video_bus {
167 struct acpi_device *device;
168 bool backlight_registered;
170 struct acpi_video_enumerated_device *attached_array;
173 struct acpi_video_bus_cap cap;
174 struct acpi_video_bus_flags flags;
175 struct list_head video_device_list;
176 struct mutex device_list_lock; /* protects video_device_list */
177 struct list_head entry;
178 struct input_dev *input;
179 char phys[32]; /* for input device */
180 struct notifier_block pm_nb;
183 struct acpi_video_device_flags {
194 struct acpi_video_device_cap {
195 u8 _ADR:1; /* Return the unique ID */
196 u8 _BCL:1; /* Query list of brightness control levels supported */
197 u8 _BCM:1; /* Set the brightness level */
198 u8 _BQC:1; /* Get current brightness level */
199 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
200 u8 _DDC:1; /* Return the EDID for this device */
203 struct acpi_video_device {
204 unsigned long device_id;
205 struct acpi_video_device_flags flags;
206 struct acpi_video_device_cap cap;
207 struct list_head entry;
208 struct delayed_work switch_brightness_work;
209 int switch_brightness_event;
210 struct acpi_video_bus *video;
211 struct acpi_device *dev;
212 struct acpi_video_device_brightness *brightness;
213 struct backlight_device *backlight;
214 struct thermal_cooling_device *cooling_dev;
217 static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
218 static void acpi_video_device_rebind(struct acpi_video_bus *video);
219 static void acpi_video_device_bind(struct acpi_video_bus *video,
220 struct acpi_video_device *device);
221 static int acpi_video_device_enumerate(struct acpi_video_bus *video);
222 static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
224 static int acpi_video_device_lcd_get_level_current(
225 struct acpi_video_device *device,
226 unsigned long long *level, bool raw);
227 static int acpi_video_get_next_level(struct acpi_video_device *device,
228 u32 level_current, u32 event);
229 static void acpi_video_switch_brightness(struct work_struct *work);
231 /* backlight device sysfs support */
232 static int acpi_video_get_brightness(struct backlight_device *bd)
234 unsigned long long cur_level;
236 struct acpi_video_device *vd = bl_get_data(bd);
238 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
240 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
241 if (vd->brightness->levels[i] == cur_level)
242 return i - ACPI_VIDEO_FIRST_LEVEL;
247 static int acpi_video_set_brightness(struct backlight_device *bd)
249 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
250 struct acpi_video_device *vd = bl_get_data(bd);
252 cancel_delayed_work(&vd->switch_brightness_work);
253 return acpi_video_device_lcd_set_level(vd,
254 vd->brightness->levels[request_level]);
257 static const struct backlight_ops acpi_backlight_ops = {
258 .get_brightness = acpi_video_get_brightness,
259 .update_status = acpi_video_set_brightness,
262 /* thermal cooling device callbacks */
263 static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
264 unsigned long *state)
266 struct acpi_device *device = cooling_dev->devdata;
267 struct acpi_video_device *video = acpi_driver_data(device);
269 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
273 static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
274 unsigned long *state)
276 struct acpi_device *device = cooling_dev->devdata;
277 struct acpi_video_device *video = acpi_driver_data(device);
278 unsigned long long level;
281 if (acpi_video_device_lcd_get_level_current(video, &level, false))
283 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
285 if (level == video->brightness->levels[offset]) {
286 *state = video->brightness->count - offset - 1;
294 video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
296 struct acpi_device *device = cooling_dev->devdata;
297 struct acpi_video_device *video = acpi_driver_data(device);
300 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
303 state = video->brightness->count - state;
304 level = video->brightness->levels[state - 1];
305 return acpi_video_device_lcd_set_level(video, level);
308 static const struct thermal_cooling_device_ops video_cooling_ops = {
309 .get_max_state = video_get_max_state,
310 .get_cur_state = video_get_cur_state,
311 .set_cur_state = video_set_cur_state,
315 * --------------------------------------------------------------------------
317 * --------------------------------------------------------------------------
321 acpi_video_device_lcd_query_levels(acpi_handle handle,
322 union acpi_object **levels)
325 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
326 union acpi_object *obj;
331 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
332 if (ACPI_FAILURE(status))
334 obj = (union acpi_object *)buffer.pointer;
335 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
336 acpi_handle_info(handle, "Invalid _BCL data\n");
346 kfree(buffer.pointer);
352 acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
357 status = acpi_execute_simple_method(device->dev->handle,
359 if (ACPI_FAILURE(status)) {
360 acpi_handle_info(device->dev->handle, "_BCM evaluation failed\n");
364 device->brightness->curr = level;
365 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
367 if (level == device->brightness->levels[state]) {
368 if (device->backlight)
369 device->backlight->props.brightness =
370 state - ACPI_VIDEO_FIRST_LEVEL;
374 acpi_handle_info(device->dev->handle, "Current brightness invalid\n");
379 * For some buggy _BQC methods, we need to add a constant value to
380 * the _BQC return value to get the actual current brightness level
383 static int bqc_offset_aml_bug_workaround;
384 static int video_set_bqc_offset(const struct dmi_system_id *d)
386 bqc_offset_aml_bug_workaround = 9;
390 static int video_set_device_id_scheme(const struct dmi_system_id *d)
392 device_id_scheme = true;
396 static int video_enable_only_lcd(const struct dmi_system_id *d)
402 static int video_set_report_key_events(const struct dmi_system_id *id)
404 if (report_key_events == -1)
405 report_key_events = (uintptr_t)id->driver_data;
409 static int video_hw_changes_brightness(
410 const struct dmi_system_id *d)
412 if (hw_changes_brightness == -1)
413 hw_changes_brightness = 1;
417 static const struct dmi_system_id video_dmi_table[] = {
419 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
422 .callback = video_set_bqc_offset,
423 .ident = "Acer Aspire 5720",
425 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
426 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
430 .callback = video_set_bqc_offset,
431 .ident = "Acer Aspire 5710Z",
433 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
434 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
438 .callback = video_set_bqc_offset,
439 .ident = "eMachines E510",
441 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
442 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
446 .callback = video_set_bqc_offset,
447 .ident = "Acer Aspire 5315",
449 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
450 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
454 .callback = video_set_bqc_offset,
455 .ident = "Acer Aspire 7720",
457 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
458 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
463 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
464 * but the IDs actually follow the Device ID Scheme.
467 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
468 .callback = video_set_device_id_scheme,
469 .ident = "ESPRIMO Mobile M9410",
471 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
472 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
476 * Some machines have multiple video output devices, but only the one
477 * that is the type of LCD can do the backlight control so we should not
478 * register backlight interface for other video output devices.
481 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
482 .callback = video_enable_only_lcd,
483 .ident = "ESPRIMO Mobile M9410",
485 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
486 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
490 * Some machines report wrong key events on the acpi-bus, suppress
491 * key event reporting on these. Note this is only intended to work
492 * around events which are plain wrong. In some cases we get double
493 * events, in this case acpi-video is considered the canonical source
494 * and the events from the other source should be filtered. E.g.
495 * by calling acpi_video_handles_brightness_key_presses() from the
496 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
499 .callback = video_set_report_key_events,
500 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
501 .ident = "Dell Vostro V131",
503 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
504 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
508 .callback = video_set_report_key_events,
509 .driver_data = (void *)((uintptr_t)REPORT_BRIGHTNESS_KEY_EVENTS),
510 .ident = "Dell Vostro 3350",
512 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
513 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"),
517 * Some machines change the brightness themselves when a brightness
518 * hotkey gets pressed, despite us telling them not to. In this case
519 * acpi_video_device_notify() should only call backlight_force_update(
520 * BACKLIGHT_UPDATE_HOTKEY) and not do anything else.
523 /* https://bugzilla.kernel.org/show_bug.cgi?id=204077 */
524 .callback = video_hw_changes_brightness,
525 .ident = "Packard Bell EasyNote MZ35",
527 DMI_MATCH(DMI_SYS_VENDOR, "Packard Bell"),
528 DMI_MATCH(DMI_PRODUCT_NAME, "EasyNote MZ35"),
534 static unsigned long long
535 acpi_video_bqc_value_to_level(struct acpi_video_device *device,
536 unsigned long long bqc_value)
538 unsigned long long level;
540 if (device->brightness->flags._BQC_use_index) {
542 * _BQC returns an index that doesn't account for the first 2
543 * items with special meaning (see enum acpi_video_level_idx),
544 * so we need to compensate for that by offsetting ourselves
546 if (device->brightness->flags._BCL_reversed)
547 bqc_value = device->brightness->count -
548 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
550 level = device->brightness->levels[bqc_value +
551 ACPI_VIDEO_FIRST_LEVEL];
556 level += bqc_offset_aml_bug_workaround;
562 acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
563 unsigned long long *level, bool raw)
565 acpi_status status = AE_OK;
568 if (device->cap._BQC || device->cap._BCQ) {
569 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
571 status = acpi_evaluate_integer(device->dev->handle, buf,
573 if (ACPI_SUCCESS(status)) {
576 * Caller has indicated he wants the raw
577 * value returned by _BQC, so don't furtherly
578 * mess with the value.
583 *level = acpi_video_bqc_value_to_level(device, *level);
585 for (i = ACPI_VIDEO_FIRST_LEVEL;
586 i < device->brightness->count; i++)
587 if (device->brightness->levels[i] == *level) {
588 device->brightness->curr = *level;
592 * BQC returned an invalid level.
595 acpi_handle_info(device->dev->handle,
596 "%s returned an invalid level", buf);
597 device->cap._BQC = device->cap._BCQ = 0;
601 * should we return an error or ignore this failure?
602 * dev->brightness->curr is a cached value which stores
603 * the correct current backlight level in most cases.
604 * ACPI video backlight still works w/ buggy _BQC.
605 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
607 acpi_handle_info(device->dev->handle,
608 "%s evaluation failed", buf);
609 device->cap._BQC = device->cap._BCQ = 0;
613 *level = device->brightness->curr;
618 acpi_video_device_EDID(struct acpi_video_device *device,
619 union acpi_object **edid, ssize_t length)
622 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
623 union acpi_object *obj;
624 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
625 struct acpi_object_list args = { 1, &arg0 };
633 arg0.integer.value = 1;
634 else if (length == 256)
635 arg0.integer.value = 2;
639 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
640 if (ACPI_FAILURE(status))
643 obj = buffer.pointer;
645 if (obj && obj->type == ACPI_TYPE_BUFFER)
648 acpi_handle_info(device->dev->handle, "Invalid _DDC data\n");
660 * video : video bus device pointer
662 * 0. The system BIOS should NOT automatically switch(toggle)
663 * the active display output.
664 * 1. The system BIOS should automatically switch (toggle) the
665 * active display output. No switch event.
666 * 2. The _DGS value should be locked.
667 * 3. The system BIOS should not automatically switch (toggle) the
668 * active display output, but instead generate the display switch
671 * 0. The system BIOS should automatically control the brightness level
673 * - the power changes from AC to DC (ACPI appendix B)
674 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
675 * 1. The system BIOS should NOT automatically control the brightness
676 * level of the LCD when:
677 * - the power changes from AC to DC (ACPI appendix B)
678 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
684 acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
688 if (!video->cap._DOS)
691 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
693 video->dos_setting = (lcd_flag << 2) | bios_flag;
694 status = acpi_execute_simple_method(video->device->handle, "_DOS",
695 (lcd_flag << 2) | bios_flag);
696 if (ACPI_FAILURE(status))
703 * Simple comparison function used to sort backlight levels.
707 acpi_video_cmp_level(const void *a, const void *b)
709 return *(int *)a - *(int *)b;
713 * Decides if _BQC/_BCQ for this system is usable
715 * We do this by changing the level first and then read out the current
716 * brightness level, if the value does not match, find out if it is using
717 * index. If not, clear the _BQC/_BCQ capability.
719 static int acpi_video_bqc_quirk(struct acpi_video_device *device,
720 int max_level, int current_level)
722 struct acpi_video_device_brightness *br = device->brightness;
724 unsigned long long level;
727 /* don't mess with existing known broken systems */
728 if (bqc_offset_aml_bug_workaround)
732 * Some systems always report current brightness level as maximum
733 * through _BQC, we need to test another value for them. However,
734 * there is a subtlety:
736 * If the _BCL package ordering is descending, the first level
737 * (br->levels[2]) is likely to be 0, and if the number of levels
738 * matches the number of steps, we might confuse a returned level to
743 * current_level = max_level = 100
745 * returned level = 100
747 * In this case 100 means the level, not the index, and _BCM failed.
748 * Still, if the _BCL package ordering is descending, the index of
749 * level 0 is also 100, so we assume _BQC is indexed, when it's not.
751 * This causes all _BQC calls to return bogus values causing weird
752 * behavior from the user's perspective. For example:
754 * xbacklight -set 10; xbacklight -set 20;
756 * would flash to 90% and then slowly down to the desired level (20).
758 * The solution is simple; test anything other than the first level
761 test_level = current_level == max_level
762 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
765 result = acpi_video_device_lcd_set_level(device, test_level);
769 result = acpi_video_device_lcd_get_level_current(device, &level, true);
773 if (level != test_level) {
774 /* buggy _BQC found, need to find out if it uses index */
775 if (level < br->count) {
776 if (br->flags._BCL_reversed)
777 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
778 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
779 br->flags._BQC_use_index = 1;
782 if (!br->flags._BQC_use_index)
783 device->cap._BQC = device->cap._BCQ = 0;
789 int acpi_video_get_levels(struct acpi_device *device,
790 struct acpi_video_device_brightness **dev_br,
793 union acpi_object *obj = NULL;
794 int i, max_level = 0, count = 0, level_ac_battery = 0;
795 union acpi_object *o;
796 struct acpi_video_device_brightness *br = NULL;
800 if (ACPI_FAILURE(acpi_video_device_lcd_query_levels(device->handle, &obj))) {
801 acpi_handle_debug(device->handle,
802 "Could not query available LCD brightness level\n");
807 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
812 br = kzalloc(sizeof(*br), GFP_KERNEL);
819 * Note that we have to reserve 2 extra items (ACPI_VIDEO_FIRST_LEVEL),
820 * in order to account for buggy BIOS which don't export the first two
821 * special levels (see below)
823 br->levels = kmalloc_array(obj->package.count + ACPI_VIDEO_FIRST_LEVEL,
831 for (i = 0; i < obj->package.count; i++) {
832 o = (union acpi_object *)&obj->package.elements[i];
833 if (o->type != ACPI_TYPE_INTEGER) {
834 acpi_handle_info(device->handle, "Invalid data\n");
837 value = (u32) o->integer.value;
838 /* Skip duplicate entries */
839 if (count > ACPI_VIDEO_FIRST_LEVEL
840 && br->levels[count - 1] == value)
843 br->levels[count] = value;
845 if (br->levels[count] > max_level)
846 max_level = br->levels[count];
851 * some buggy BIOS don't export the levels
852 * when machine is on AC/Battery in _BCL package.
853 * In this case, the first two elements in _BCL packages
854 * are also supported brightness levels that OS should take care of.
856 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
857 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
859 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
863 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
864 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
865 br->flags._BCL_no_ac_battery_levels = 1;
866 for (i = (count - 1 + level_ac_battery);
867 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
868 br->levels[i] = br->levels[i - level_ac_battery];
869 count += level_ac_battery;
870 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
871 acpi_handle_info(device->handle,
872 "Too many duplicates in _BCL package");
874 /* Check if the _BCL package is in a reversed order */
875 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
876 br->flags._BCL_reversed = 1;
877 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
878 count - ACPI_VIDEO_FIRST_LEVEL,
879 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
880 acpi_video_cmp_level, NULL);
881 } else if (max_level != br->levels[count - 1])
882 acpi_handle_info(device->handle,
883 "Found unordered _BCL package");
888 *pmax_level = max_level;
897 EXPORT_SYMBOL(acpi_video_get_levels);
901 * device : video output device (LCD, CRT, ..)
904 * Maximum brightness level
906 * Allocate and initialize device->brightness.
910 acpi_video_init_brightness(struct acpi_video_device *device)
912 int i, max_level = 0;
913 unsigned long long level, level_old;
914 struct acpi_video_device_brightness *br = NULL;
917 result = acpi_video_get_levels(device->dev, &br, &max_level);
920 device->brightness = br;
922 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
923 br->curr = level = max_level;
925 if (!device->cap._BQC)
928 result = acpi_video_device_lcd_get_level_current(device,
931 goto out_free_levels;
933 result = acpi_video_bqc_quirk(device, max_level, level_old);
935 goto out_free_levels;
937 * cap._BQC may get cleared due to _BQC is found to be broken
938 * in acpi_video_bqc_quirk, so check again here.
940 if (!device->cap._BQC)
943 level = acpi_video_bqc_value_to_level(device, level_old);
945 * On some buggy laptops, _BQC returns an uninitialized
946 * value when invoked for the first time, i.e.
947 * level_old is invalid (no matter whether it's a level
948 * or an index). Set the backlight to max_level in this case.
950 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
951 if (level == br->levels[i])
953 if (i == br->count || !level)
957 result = acpi_video_device_lcd_set_level(device, level);
959 goto out_free_levels;
961 acpi_handle_debug(device->dev->handle, "found %d brightness levels\n",
962 br->count - ACPI_VIDEO_FIRST_LEVEL);
969 device->brightness = NULL;
975 * device : video output device (LCD, CRT, ..)
980 * Find out all required AML methods defined under the output
984 static void acpi_video_device_find_cap(struct acpi_video_device *device)
986 if (acpi_has_method(device->dev->handle, "_ADR"))
987 device->cap._ADR = 1;
988 if (acpi_has_method(device->dev->handle, "_BCL"))
989 device->cap._BCL = 1;
990 if (acpi_has_method(device->dev->handle, "_BCM"))
991 device->cap._BCM = 1;
992 if (acpi_has_method(device->dev->handle, "_BQC")) {
993 device->cap._BQC = 1;
994 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
995 acpi_handle_info(device->dev->handle,
996 "_BCQ is used instead of _BQC\n");
997 device->cap._BCQ = 1;
1000 if (acpi_has_method(device->dev->handle, "_DDC"))
1001 device->cap._DDC = 1;
1006 * device : video output device (VGA)
1011 * Find out all required AML methods defined under the video bus device.
1014 static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
1016 if (acpi_has_method(video->device->handle, "_DOS"))
1017 video->cap._DOS = 1;
1018 if (acpi_has_method(video->device->handle, "_DOD"))
1019 video->cap._DOD = 1;
1020 if (acpi_has_method(video->device->handle, "_ROM"))
1021 video->cap._ROM = 1;
1022 if (acpi_has_method(video->device->handle, "_GPD"))
1023 video->cap._GPD = 1;
1024 if (acpi_has_method(video->device->handle, "_SPD"))
1025 video->cap._SPD = 1;
1026 if (acpi_has_method(video->device->handle, "_VPO"))
1027 video->cap._VPO = 1;
1031 * Check whether the video bus device has required AML method to
1032 * support the desired features
1035 static int acpi_video_bus_check(struct acpi_video_bus *video)
1037 acpi_status status = -ENOENT;
1038 struct pci_dev *dev;
1043 dev = acpi_get_pci_dev(video->device->handle);
1049 * Since there is no HID, CID and so on for VGA driver, we have
1050 * to check well known required nodes.
1053 /* Does this device support video switching? */
1054 if (video->cap._DOS || video->cap._DOD) {
1055 if (!video->cap._DOS) {
1056 pr_info(FW_BUG "ACPI(%s) defines _DOD but not _DOS\n",
1057 acpi_device_bid(video->device));
1059 video->flags.multihead = 1;
1063 /* Does this device support retrieving a video ROM? */
1064 if (video->cap._ROM) {
1065 video->flags.rom = 1;
1069 /* Does this device support configuring which video device to POST? */
1070 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
1071 video->flags.post = 1;
1079 * --------------------------------------------------------------------------
1081 * --------------------------------------------------------------------------
1084 /* device interface */
1085 static struct acpi_video_device_attrib *
1086 acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1088 struct acpi_video_enumerated_device *ids;
1091 for (i = 0; i < video->attached_count; i++) {
1092 ids = &video->attached_array[i];
1093 if ((ids->value.int_val & 0xffff) == device_id)
1094 return &ids->value.attrib;
1101 acpi_video_get_device_type(struct acpi_video_bus *video,
1102 unsigned long device_id)
1104 struct acpi_video_enumerated_device *ids;
1107 for (i = 0; i < video->attached_count; i++) {
1108 ids = &video->attached_array[i];
1109 if ((ids->value.int_val & 0xffff) == device_id)
1110 return ids->value.int_val;
1116 static int acpi_video_bus_get_one_device(struct acpi_device *device, void *arg)
1118 struct acpi_video_bus *video = arg;
1119 struct acpi_video_device_attrib *attribute;
1120 struct acpi_video_device *data;
1121 unsigned long long device_id;
1125 status = acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
1126 /* Skip devices without _ADR instead of failing. */
1127 if (ACPI_FAILURE(status))
1130 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1132 dev_dbg(&device->dev, "Cannot attach\n");
1136 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1137 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1138 device->driver_data = data;
1140 data->device_id = device_id;
1141 data->video = video;
1143 INIT_DELAYED_WORK(&data->switch_brightness_work,
1144 acpi_video_switch_brightness);
1146 attribute = acpi_video_get_device_attr(video, device_id);
1148 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
1149 switch (attribute->display_type) {
1150 case ACPI_VIDEO_DISPLAY_CRT:
1151 data->flags.crt = 1;
1153 case ACPI_VIDEO_DISPLAY_TV:
1154 data->flags.tvout = 1;
1156 case ACPI_VIDEO_DISPLAY_DVI:
1157 data->flags.dvi = 1;
1159 case ACPI_VIDEO_DISPLAY_LCD:
1160 data->flags.lcd = 1;
1163 data->flags.unknown = 1;
1166 if (attribute->bios_can_detect)
1167 data->flags.bios = 1;
1169 /* Check for legacy IDs */
1170 device_type = acpi_video_get_device_type(video, device_id);
1171 /* Ignore bits 16 and 18-20 */
1172 switch (device_type & 0xffe2ffff) {
1173 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1174 data->flags.crt = 1;
1176 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1177 data->flags.lcd = 1;
1179 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1180 data->flags.tvout = 1;
1183 data->flags.unknown = 1;
1187 acpi_video_device_bind(video, data);
1188 acpi_video_device_find_cap(data);
1190 if (data->cap._BCM && data->cap._BCL)
1191 may_report_brightness_keys = true;
1193 mutex_lock(&video->device_list_lock);
1194 list_add_tail(&data->entry, &video->video_device_list);
1195 mutex_unlock(&video->device_list_lock);
1198 video->child_count++;
1204 * video : video bus device
1209 * Enumerate the video device list of the video bus,
1210 * bind the ids with the corresponding video devices
1211 * under the video bus.
1214 static void acpi_video_device_rebind(struct acpi_video_bus *video)
1216 struct acpi_video_device *dev;
1218 mutex_lock(&video->device_list_lock);
1220 list_for_each_entry(dev, &video->video_device_list, entry)
1221 acpi_video_device_bind(video, dev);
1223 mutex_unlock(&video->device_list_lock);
1228 * video : video bus device
1229 * device : video output device under the video
1235 * Bind the ids with the corresponding video devices
1236 * under the video bus.
1240 acpi_video_device_bind(struct acpi_video_bus *video,
1241 struct acpi_video_device *device)
1243 struct acpi_video_enumerated_device *ids;
1246 for (i = 0; i < video->attached_count; i++) {
1247 ids = &video->attached_array[i];
1248 if (device->device_id == (ids->value.int_val & 0xffff)) {
1249 ids->bind_info = device;
1250 acpi_handle_debug(video->device->handle, "%s: %d\n",
1256 static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1258 struct acpi_video_bus *video = device->video;
1262 * If we have a broken _DOD or we have more than 8 output devices
1263 * under the graphics controller node that we can't proper deal with
1264 * in the operation region code currently, no need to test.
1266 if (!video->attached_count || video->child_count > 8)
1269 for (i = 0; i < video->attached_count; i++) {
1270 if ((video->attached_array[i].value.int_val & 0xfff) ==
1271 (device->device_id & 0xfff))
1280 * video : video bus device
1285 * Call _DOD to enumerate all devices attached to display adapter
1289 static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1294 struct acpi_video_enumerated_device *active_list;
1295 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1296 union acpi_object *dod = NULL;
1297 union acpi_object *obj;
1299 if (!video->cap._DOD)
1300 return AE_NOT_EXIST;
1302 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
1303 if (ACPI_FAILURE(status)) {
1304 acpi_handle_info(video->device->handle,
1305 "_DOD evaluation failed: %s\n",
1306 acpi_format_exception(status));
1310 dod = buffer.pointer;
1311 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
1312 acpi_handle_info(video->device->handle, "Invalid _DOD data\n");
1317 acpi_handle_debug(video->device->handle, "Found %d video heads in _DOD\n",
1318 dod->package.count);
1320 active_list = kcalloc(1 + dod->package.count,
1321 sizeof(struct acpi_video_enumerated_device),
1329 for (i = 0; i < dod->package.count; i++) {
1330 obj = &dod->package.elements[i];
1332 if (obj->type != ACPI_TYPE_INTEGER) {
1333 acpi_handle_info(video->device->handle,
1334 "Invalid _DOD data in element %d\n", i);
1338 active_list[count].value.int_val = obj->integer.value;
1339 active_list[count].bind_info = NULL;
1341 acpi_handle_debug(video->device->handle,
1342 "_DOD element[%d] = %d\n", i,
1343 (int)obj->integer.value);
1348 kfree(video->attached_array);
1350 video->attached_array = active_list;
1351 video->attached_count = count;
1354 kfree(buffer.pointer);
1359 acpi_video_get_next_level(struct acpi_video_device *device,
1360 u32 level_current, u32 event)
1362 int min, max, min_above, max_below, i, l, delta = 255;
1363 max = max_below = 0;
1364 min = min_above = 255;
1365 /* Find closest level to level_current */
1366 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
1367 l = device->brightness->levels[i];
1368 if (abs(l - level_current) < abs(delta)) {
1369 delta = l - level_current;
1374 /* Adjust level_current to closest available level */
1375 level_current += delta;
1376 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
1377 l = device->brightness->levels[i];
1382 if (l < min_above && l > level_current)
1384 if (l > max_below && l < level_current)
1389 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1390 return (level_current < max) ? min_above : min;
1391 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1392 return (level_current < max) ? min_above : max;
1393 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1394 return (level_current > min) ? max_below : min;
1395 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1396 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1399 return level_current;
1404 acpi_video_switch_brightness(struct work_struct *work)
1406 struct acpi_video_device *device = container_of(to_delayed_work(work),
1407 struct acpi_video_device, switch_brightness_work);
1408 unsigned long long level_current, level_next;
1409 int event = device->switch_brightness_event;
1410 int result = -EINVAL;
1412 /* no warning message if acpi_backlight=vendor or a quirk is used */
1413 if (!device->backlight)
1416 if (!device->brightness)
1419 result = acpi_video_device_lcd_get_level_current(device,
1425 level_next = acpi_video_get_next_level(device, level_current, event);
1427 result = acpi_video_device_lcd_set_level(device, level_next);
1430 backlight_force_update(device->backlight,
1431 BACKLIGHT_UPDATE_HOTKEY);
1435 acpi_handle_info(device->dev->handle,
1436 "Failed to switch brightness\n");
1439 int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1442 struct acpi_video_bus *video;
1443 struct acpi_video_device *video_device;
1444 union acpi_object *buffer = NULL;
1448 if (!device || !acpi_driver_data(device))
1451 video = acpi_driver_data(device);
1453 for (i = 0; i < video->attached_count; i++) {
1454 video_device = video->attached_array[i].bind_info;
1460 if (!video_device->cap._DDC)
1465 case ACPI_VIDEO_DISPLAY_CRT:
1466 if (!video_device->flags.crt)
1469 case ACPI_VIDEO_DISPLAY_TV:
1470 if (!video_device->flags.tvout)
1473 case ACPI_VIDEO_DISPLAY_DVI:
1474 if (!video_device->flags.dvi)
1477 case ACPI_VIDEO_DISPLAY_LCD:
1478 if (!video_device->flags.lcd)
1482 } else if (video_device->device_id != device_id) {
1486 status = acpi_video_device_EDID(video_device, &buffer, length);
1488 if (ACPI_FAILURE(status) || !buffer ||
1489 buffer->type != ACPI_TYPE_BUFFER) {
1491 status = acpi_video_device_EDID(video_device, &buffer,
1493 if (ACPI_FAILURE(status) || !buffer ||
1494 buffer->type != ACPI_TYPE_BUFFER) {
1499 *edid = buffer->buffer.pointer;
1505 EXPORT_SYMBOL(acpi_video_get_edid);
1508 acpi_video_bus_get_devices(struct acpi_video_bus *video,
1509 struct acpi_device *device)
1512 * There are systems where video module known to work fine regardless
1513 * of broken _DOD and ignoring returned value here doesn't cause
1516 acpi_video_device_enumerate(video);
1518 return acpi_dev_for_each_child(device, acpi_video_bus_get_one_device, video);
1521 /* acpi_video interface */
1524 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1525 * perform any automatic brightness change on receiving a notification.
1527 static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
1529 return acpi_video_bus_DOS(video, 0,
1530 acpi_osi_is_win8() ? 1 : 0);
1533 static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
1535 return acpi_video_bus_DOS(video, 0,
1536 acpi_osi_is_win8() ? 0 : 1);
1539 static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
1541 struct acpi_video_bus *video = acpi_driver_data(device);
1542 struct input_dev *input;
1545 if (!video || !video->input)
1548 input = video->input;
1551 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
1552 * most likely via hotkey. */
1553 keycode = KEY_SWITCHVIDEOMODE;
1556 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
1558 acpi_video_device_enumerate(video);
1559 acpi_video_device_rebind(video);
1560 keycode = KEY_SWITCHVIDEOMODE;
1563 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
1564 keycode = KEY_SWITCHVIDEOMODE;
1566 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
1567 keycode = KEY_VIDEO_NEXT;
1569 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
1570 keycode = KEY_VIDEO_PREV;
1574 acpi_handle_debug(device->handle, "Unsupported event [0x%x]\n",
1579 if (acpi_notifier_call_chain(device, event, 0))
1580 /* Something vetoed the keypress. */
1583 if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) {
1584 input_report_key(input, keycode, 1);
1586 input_report_key(input, keycode, 0);
1591 static void brightness_switch_event(struct acpi_video_device *video_device,
1594 if (!brightness_switch_enabled)
1597 video_device->switch_brightness_event = event;
1598 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1601 static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
1603 struct acpi_video_device *video_device = data;
1604 struct acpi_device *device = NULL;
1605 struct acpi_video_bus *bus;
1606 struct input_dev *input;
1612 device = video_device->dev;
1613 bus = video_device->video;
1616 if (hw_changes_brightness > 0) {
1617 if (video_device->backlight)
1618 backlight_force_update(video_device->backlight,
1619 BACKLIGHT_UPDATE_HOTKEY);
1620 acpi_notifier_call_chain(device, event, 0);
1625 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
1626 brightness_switch_event(video_device, event);
1627 keycode = KEY_BRIGHTNESS_CYCLE;
1629 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
1630 brightness_switch_event(video_device, event);
1631 keycode = KEY_BRIGHTNESSUP;
1633 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
1634 brightness_switch_event(video_device, event);
1635 keycode = KEY_BRIGHTNESSDOWN;
1637 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
1638 brightness_switch_event(video_device, event);
1639 keycode = KEY_BRIGHTNESS_ZERO;
1641 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
1642 brightness_switch_event(video_device, event);
1643 keycode = KEY_DISPLAY_OFF;
1646 acpi_handle_debug(handle, "Unsupported event [0x%x]\n", event);
1651 may_report_brightness_keys = true;
1653 acpi_notifier_call_chain(device, event, 0);
1655 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
1656 input_report_key(input, keycode, 1);
1658 input_report_key(input, keycode, 0);
1663 static int acpi_video_resume(struct notifier_block *nb,
1664 unsigned long val, void *ign)
1666 struct acpi_video_bus *video;
1667 struct acpi_video_device *video_device;
1671 case PM_POST_HIBERNATION:
1672 case PM_POST_SUSPEND:
1673 case PM_POST_RESTORE:
1674 video = container_of(nb, struct acpi_video_bus, pm_nb);
1676 dev_info(&video->device->dev, "Restoring backlight state\n");
1678 for (i = 0; i < video->attached_count; i++) {
1679 video_device = video->attached_array[i].bind_info;
1680 if (video_device && video_device->brightness)
1681 acpi_video_device_lcd_set_level(video_device,
1682 video_device->brightness->curr);
1691 acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1692 void **return_value)
1694 struct acpi_device *device = context;
1695 struct acpi_device *sibling;
1697 if (handle == device->handle)
1698 return AE_CTRL_TERMINATE;
1700 sibling = acpi_fetch_acpi_dev(handle);
1704 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1705 return AE_ALREADY_EXISTS;
1710 static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1712 struct backlight_properties props;
1713 struct pci_dev *pdev;
1714 acpi_handle acpi_parent;
1715 struct device *parent = NULL;
1720 result = acpi_video_init_brightness(device);
1724 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1729 acpi_get_parent(device->dev->handle, &acpi_parent);
1731 pdev = acpi_get_pci_dev(acpi_parent);
1733 parent = &pdev->dev;
1737 memset(&props, 0, sizeof(struct backlight_properties));
1738 props.type = BACKLIGHT_FIRMWARE;
1739 props.max_brightness =
1740 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
1741 device->backlight = backlight_device_register(name,
1744 &acpi_backlight_ops,
1747 if (IS_ERR(device->backlight)) {
1748 device->backlight = NULL;
1753 * Save current brightness level in case we have to restore it
1754 * before acpi_video_device_lcd_set_level() is called next time.
1756 device->backlight->props.brightness =
1757 acpi_video_get_brightness(device->backlight);
1759 device->cooling_dev = thermal_cooling_device_register("LCD",
1760 device->dev, &video_cooling_ops);
1761 if (IS_ERR(device->cooling_dev)) {
1763 * Set cooling_dev to NULL so we don't crash trying to free it.
1764 * Also, why the hell we are returning early and not attempt to
1765 * register video output if cooling device registration failed?
1768 device->cooling_dev = NULL;
1772 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1773 device->cooling_dev->id);
1774 result = sysfs_create_link(&device->dev->dev.kobj,
1775 &device->cooling_dev->device.kobj,
1778 pr_info("sysfs link creation failed\n");
1780 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1781 &device->dev->dev.kobj, "device");
1783 pr_info("Reverse sysfs link creation failed\n");
1786 static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1788 struct acpi_video_device *dev;
1789 union acpi_object *levels;
1791 mutex_lock(&video->device_list_lock);
1792 list_for_each_entry(dev, &video->video_device_list, entry) {
1793 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
1796 mutex_unlock(&video->device_list_lock);
1799 static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1802 * Do not create backlight device for video output
1803 * device that is not in the enumerated list.
1805 if (!acpi_video_device_in_dod(dev)) {
1806 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1811 return dev->flags.lcd;
1815 static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1817 struct acpi_video_device *dev;
1819 if (video->backlight_registered)
1822 if (acpi_video_get_backlight_type() != acpi_backlight_video)
1825 mutex_lock(&video->device_list_lock);
1826 list_for_each_entry(dev, &video->video_device_list, entry) {
1827 if (acpi_video_should_register_backlight(dev))
1828 acpi_video_dev_register_backlight(dev);
1830 mutex_unlock(&video->device_list_lock);
1832 video->backlight_registered = true;
1834 video->pm_nb.notifier_call = acpi_video_resume;
1835 video->pm_nb.priority = 0;
1836 return register_pm_notifier(&video->pm_nb);
1839 static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1841 if (device->backlight) {
1842 backlight_device_unregister(device->backlight);
1843 device->backlight = NULL;
1845 if (device->brightness) {
1846 kfree(device->brightness->levels);
1847 kfree(device->brightness);
1848 device->brightness = NULL;
1850 if (device->cooling_dev) {
1851 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1852 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1853 thermal_cooling_device_unregister(device->cooling_dev);
1854 device->cooling_dev = NULL;
1858 static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1860 struct acpi_video_device *dev;
1863 if (!video->backlight_registered)
1866 error = unregister_pm_notifier(&video->pm_nb);
1868 mutex_lock(&video->device_list_lock);
1869 list_for_each_entry(dev, &video->video_device_list, entry)
1870 acpi_video_dev_unregister_backlight(dev);
1871 mutex_unlock(&video->device_list_lock);
1873 video->backlight_registered = false;
1878 static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1881 struct acpi_device *adev = device->dev;
1883 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1884 acpi_video_device_notify, device);
1885 if (ACPI_FAILURE(status))
1886 dev_err(&adev->dev, "Error installing notify handler\n");
1888 device->flags.notify = 1;
1891 static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1893 struct input_dev *input;
1894 struct acpi_video_device *dev;
1897 video->input = input = input_allocate_device();
1903 error = acpi_video_bus_start_devices(video);
1905 goto err_free_input;
1907 snprintf(video->phys, sizeof(video->phys),
1908 "%s/video/input0", acpi_device_hid(video->device));
1910 input->name = acpi_device_name(video->device);
1911 input->phys = video->phys;
1912 input->id.bustype = BUS_HOST;
1913 input->id.product = 0x06;
1914 input->dev.parent = &video->device->dev;
1915 input->evbit[0] = BIT(EV_KEY);
1916 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1917 set_bit(KEY_VIDEO_NEXT, input->keybit);
1918 set_bit(KEY_VIDEO_PREV, input->keybit);
1919 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1920 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1921 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1922 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1923 set_bit(KEY_DISPLAY_OFF, input->keybit);
1925 error = input_register_device(input);
1929 mutex_lock(&video->device_list_lock);
1930 list_for_each_entry(dev, &video->video_device_list, entry)
1931 acpi_video_dev_add_notify_handler(dev);
1932 mutex_unlock(&video->device_list_lock);
1937 acpi_video_bus_stop_devices(video);
1939 input_free_device(input);
1940 video->input = NULL;
1945 static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1947 if (dev->flags.notify) {
1948 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1949 acpi_video_device_notify);
1950 dev->flags.notify = 0;
1954 static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1956 struct acpi_video_device *dev;
1958 mutex_lock(&video->device_list_lock);
1959 list_for_each_entry(dev, &video->video_device_list, entry)
1960 acpi_video_dev_remove_notify_handler(dev);
1961 mutex_unlock(&video->device_list_lock);
1963 acpi_video_bus_stop_devices(video);
1964 input_unregister_device(video->input);
1965 video->input = NULL;
1968 static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1970 struct acpi_video_device *dev, *next;
1972 mutex_lock(&video->device_list_lock);
1973 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1974 list_del(&dev->entry);
1977 mutex_unlock(&video->device_list_lock);
1982 static int instance;
1984 static int acpi_video_bus_add(struct acpi_device *device)
1986 struct acpi_video_bus *video;
1990 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1991 acpi_dev_parent(device)->handle, 1,
1992 acpi_video_bus_match, NULL,
1994 if (status == AE_ALREADY_EXISTS) {
1996 "Duplicate ACPI video bus devices for the"
1997 " same VGA controller, please try module "
1998 "parameter \"video.allow_duplicates=1\""
1999 "if the current driver doesn't work.\n");
2000 if (!allow_duplicates)
2004 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
2008 /* a hack to fix the duplicate name "VID" problem on T61 */
2009 if (!strcmp(device->pnp.bus_id, "VID")) {
2011 device->pnp.bus_id[3] = '0' + instance;
2014 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2015 if (!strcmp(device->pnp.bus_id, "VGA")) {
2017 device->pnp.bus_id[3] = '0' + instance;
2021 video->device = device;
2022 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2023 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
2024 device->driver_data = video;
2026 acpi_video_bus_find_cap(video);
2027 error = acpi_video_bus_check(video);
2029 goto err_free_video;
2031 mutex_init(&video->device_list_lock);
2032 INIT_LIST_HEAD(&video->video_device_list);
2034 error = acpi_video_bus_get_devices(video, device);
2038 pr_info("%s [%s] (multi-head: %s rom: %s post: %s)\n",
2039 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2040 video->flags.multihead ? "yes" : "no",
2041 video->flags.rom ? "yes" : "no",
2042 video->flags.post ? "yes" : "no");
2043 mutex_lock(&video_list_lock);
2044 list_add_tail(&video->entry, &video_bus_head);
2045 mutex_unlock(&video_list_lock);
2048 * The userspace visible backlight_device gets registered separately
2049 * from acpi_video_register_backlight().
2051 acpi_video_run_bcl_for_osi(video);
2052 acpi_video_bus_add_notify_handler(video);
2057 acpi_video_bus_put_devices(video);
2058 kfree(video->attached_array);
2061 device->driver_data = NULL;
2066 static void acpi_video_bus_remove(struct acpi_device *device)
2068 struct acpi_video_bus *video = NULL;
2071 if (!device || !acpi_driver_data(device))
2074 video = acpi_driver_data(device);
2076 mutex_lock(&video_list_lock);
2077 list_del(&video->entry);
2078 mutex_unlock(&video_list_lock);
2080 acpi_video_bus_remove_notify_handler(video);
2081 acpi_video_bus_unregister_backlight(video);
2082 acpi_video_bus_put_devices(video);
2084 kfree(video->attached_array);
2088 static void acpi_video_bus_register_backlight_work(struct work_struct *ignored)
2090 acpi_video_register_backlight();
2093 static int __init is_i740(struct pci_dev *dev)
2095 if (dev->device == 0x00D1)
2097 if (dev->device == 0x7000)
2102 static int __init intel_opregion_present(void)
2105 struct pci_dev *dev = NULL;
2108 for_each_pci_dev(dev) {
2109 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2111 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2113 /* We don't want to poke around undefined i740 registers */
2116 pci_read_config_dword(dev, 0xfc, &address);
2124 /* Check if the chassis-type indicates there is no builtin LCD panel */
2125 static bool dmi_is_desktop(void)
2127 const char *chassis_type;
2130 chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE);
2134 if (kstrtoul(chassis_type, 10, &type) != 0)
2138 case 0x03: /* Desktop */
2139 case 0x04: /* Low Profile Desktop */
2140 case 0x05: /* Pizza Box */
2141 case 0x06: /* Mini Tower */
2142 case 0x07: /* Tower */
2143 case 0x10: /* Lunch Box */
2144 case 0x11: /* Main Server Chassis */
2152 * We're seeing a lot of bogus backlight interfaces on newer machines
2153 * without a LCD such as desktops, servers and HDMI sticks. Checking the
2154 * lcd flag fixes this, enable this by default on any machines which are:
2155 * 1. Win8 ready (where we also prefer the native backlight driver, so
2156 * normally the acpi_video code should not register there anyways); *and*
2157 * 2.1 Report a desktop/server DMI chassis-type, or
2158 * 2.2 Are an ACPI-reduced-hardware platform (and thus won't use the EC for
2161 static bool should_check_lcd_flag(void)
2163 if (!acpi_osi_is_win8())
2166 if (dmi_is_desktop())
2169 if (acpi_reduced_hardware())
2176 * At least one graphics driver has reported that no LCD is connected
2177 * via the native interface. cancel the registration for fallback acpi_video0.
2178 * If another driver still deems this necessary, it can explicitly register it.
2180 void acpi_video_report_nolcd(void)
2182 cancel_delayed_work(&video_bus_register_backlight_work);
2184 EXPORT_SYMBOL(acpi_video_report_nolcd);
2186 int acpi_video_register(void)
2190 mutex_lock(®ister_count_mutex);
2191 if (register_count) {
2193 * if the function of acpi_video_register is already called,
2194 * don't register the acpi_video_bus again and return no error.
2200 only_lcd = should_check_lcd_flag();
2202 dmi_check_system(video_dmi_table);
2204 ret = acpi_bus_register_driver(&acpi_video_bus);
2209 * When the acpi_video_bus is loaded successfully, increase
2210 * the counter reference.
2215 * acpi_video_bus_add() skips registering the userspace visible
2216 * backlight_device. The intend is for this to be registered by the
2217 * drm/kms driver calling acpi_video_register_backlight() *after* it is
2218 * done setting up its own native backlight device. The delayed work
2219 * ensures that acpi_video_register_backlight() always gets called
2220 * eventually, in case there is no drm/kms driver or it is disabled.
2222 if (register_backlight_delay)
2223 schedule_delayed_work(&video_bus_register_backlight_work,
2224 register_backlight_delay * HZ);
2227 mutex_unlock(®ister_count_mutex);
2230 EXPORT_SYMBOL(acpi_video_register);
2232 void acpi_video_unregister(void)
2234 mutex_lock(®ister_count_mutex);
2235 if (register_count) {
2236 cancel_delayed_work_sync(&video_bus_register_backlight_work);
2237 acpi_bus_unregister_driver(&acpi_video_bus);
2239 may_report_brightness_keys = false;
2241 mutex_unlock(®ister_count_mutex);
2243 EXPORT_SYMBOL(acpi_video_unregister);
2245 void acpi_video_register_backlight(void)
2247 struct acpi_video_bus *video;
2249 mutex_lock(&video_list_lock);
2250 list_for_each_entry(video, &video_bus_head, entry)
2251 acpi_video_bus_register_backlight(video);
2252 mutex_unlock(&video_list_lock);
2254 EXPORT_SYMBOL(acpi_video_register_backlight);
2256 bool acpi_video_handles_brightness_key_presses(void)
2258 return may_report_brightness_keys &&
2259 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
2261 EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2264 * This is kind of nasty. Hardware using Intel chipsets may require
2265 * the video opregion code to be run first in order to initialise
2266 * state before any ACPI video calls are made. To handle this we defer
2267 * registration of the video class until the opregion code has run.
2270 static int __init acpi_video_init(void)
2273 * Let the module load even if ACPI is disabled (e.g. due to
2274 * a broken BIOS) so that i915.ko can still be loaded on such
2275 * old systems without an AcpiOpRegion.
2277 * acpi_video_register() will report -ENODEV later as well due
2278 * to acpi_disabled when i915.ko tries to register itself afterwards.
2283 if (intel_opregion_present())
2286 return acpi_video_register();
2289 static void __exit acpi_video_exit(void)
2291 acpi_video_unregister();
2294 module_init(acpi_video_init);
2295 module_exit(acpi_video_exit);