1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * video.c - ACPI Video Driver
4 *
5 * Copyright (C) 2004 Luming Yu <[email protected]>
6 * Copyright (C) 2004 Bruno Ducrot <[email protected]>
7 * Copyright (C) 2006 Thomas Tuttle <[email protected]>
8 */
9
10 #define pr_fmt(fmt) "ACPI: video: " fmt
11
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>
30
31 #define ACPI_VIDEO_BUS_NAME "Video Bus"
32 #define ACPI_VIDEO_DEVICE_NAME "Video Device"
33
34 #define MAX_NAME_LEN 20
35
36 MODULE_AUTHOR("Bruno Ducrot");
37 MODULE_DESCRIPTION("ACPI Video Driver");
38 MODULE_LICENSE("GPL");
39
40 static bool brightness_switch_enabled = true;
41 module_param(brightness_switch_enabled, bool, 0644);
42
43 /*
44 * By default, we don't allow duplicate ACPI video bus devices
45 * under the same VGA controller
46 */
47 static bool allow_duplicates;
48 module_param(allow_duplicates, bool, 0644);
49
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");
56
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");
62
63 /*
64 * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be
65 * assumed even if not actually set.
66 */
67 static bool device_id_scheme = false;
68 module_param(device_id_scheme, bool, 0444);
69
70 static int only_lcd;
71 module_param(only_lcd, int, 0444);
72
73 static bool may_report_brightness_keys;
74 static int register_count;
75 static DEFINE_MUTEX(register_count_mutex);
76 static DEFINE_MUTEX(video_list_lock);
77 static LIST_HEAD(video_bus_head);
78 static int acpi_video_bus_add(struct acpi_device *device);
79 static void acpi_video_bus_remove(struct acpi_device *device);
80 static void acpi_video_bus_notify(acpi_handle handle, u32 event, void *data);
81
82 /*
83 * Indices in the _BCL method response: the first two items are special,
84 * the rest are all supported levels.
85 *
86 * See page 575 of the ACPI spec 3.0
87 */
88 enum acpi_video_level_idx {
89 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
90 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
91 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
92 };
93
94 static const struct acpi_device_id video_device_ids[] = {
95 {ACPI_VIDEO_HID, 0},
96 {"", 0},
97 };
98 MODULE_DEVICE_TABLE(acpi, video_device_ids);
99
100 static struct acpi_driver acpi_video_bus = {
101 .name = "video",
102 .class = ACPI_VIDEO_CLASS,
103 .ids = video_device_ids,
104 .ops = {
105 .add = acpi_video_bus_add,
106 .remove = acpi_video_bus_remove,
107 },
108 };
109
110 struct acpi_video_bus_flags {
111 u8 multihead:1; /* can switch video heads */
112 u8 rom:1; /* can retrieve a video rom */
113 u8 post:1; /* can configure the head to */
114 u8 reserved:5;
115 };
116
117 struct acpi_video_bus_cap {
118 u8 _DOS:1; /* Enable/Disable output switching */
119 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
120 u8 _ROM:1; /* Get ROM Data */
121 u8 _GPD:1; /* Get POST Device */
122 u8 _SPD:1; /* Set POST Device */
123 u8 _VPO:1; /* Video POST Options */
124 u8 reserved:2;
125 };
126
127 struct acpi_video_device_attrib {
128 u32 display_index:4; /* A zero-based instance of the Display */
129 u32 display_port_attachment:4; /* This field differentiates the display type */
130 u32 display_type:4; /* Describe the specific type in use */
131 u32 vendor_specific:4; /* Chipset Vendor Specific */
132 u32 bios_can_detect:1; /* BIOS can detect the device */
133 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
134 the VGA device. */
135 u32 pipe_id:3; /* For VGA multiple-head devices. */
136 u32 reserved:10; /* Must be 0 */
137
138 /*
139 * The device ID might not actually follow the scheme described by this
140 * struct acpi_video_device_attrib. If it does, then this bit
141 * device_id_scheme is set; otherwise, other fields should be ignored.
142 *
143 * (but also see the global flag device_id_scheme)
144 */
145 u32 device_id_scheme:1;
146 };
147
148 struct acpi_video_enumerated_device {
149 union {
150 u32 int_val;
151 struct acpi_video_device_attrib attrib;
152 } value;
153 struct acpi_video_device *bind_info;
154 };
155
156 struct acpi_video_bus {
157 struct acpi_device *device;
158 bool backlight_registered;
159 u8 dos_setting;
160 struct acpi_video_enumerated_device *attached_array;
161 u8 attached_count;
162 u8 child_count;
163 struct acpi_video_bus_cap cap;
164 struct acpi_video_bus_flags flags;
165 struct list_head video_device_list;
166 struct mutex device_list_lock; /* protects video_device_list */
167 struct list_head entry;
168 struct input_dev *input;
169 char phys[32]; /* for input device */
170 struct notifier_block pm_nb;
171 };
172
173 struct acpi_video_device_flags {
174 u8 crt:1;
175 u8 lcd:1;
176 u8 tvout:1;
177 u8 dvi:1;
178 u8 bios:1;
179 u8 unknown:1;
180 u8 notify:1;
181 u8 reserved:1;
182 };
183
184 struct acpi_video_device_cap {
185 u8 _ADR:1; /* Return the unique ID */
186 u8 _BCL:1; /* Query list of brightness control levels supported */
187 u8 _BCM:1; /* Set the brightness level */
188 u8 _BQC:1; /* Get current brightness level */
189 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
190 u8 _DDC:1; /* Return the EDID for this device */
191 };
192
193 struct acpi_video_device {
194 unsigned long device_id;
195 struct acpi_video_device_flags flags;
196 struct acpi_video_device_cap cap;
197 struct list_head entry;
198 struct delayed_work switch_brightness_work;
199 int switch_brightness_event;
200 struct acpi_video_bus *video;
201 struct acpi_device *dev;
202 struct acpi_video_device_brightness *brightness;
203 struct backlight_device *backlight;
204 struct thermal_cooling_device *cooling_dev;
205 };
206
207 static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
208 static void acpi_video_device_rebind(struct acpi_video_bus *video);
209 static void acpi_video_device_bind(struct acpi_video_bus *video,
210 struct acpi_video_device *device);
211 static int acpi_video_device_enumerate(struct acpi_video_bus *video);
212 static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
213 int level);
214 static int acpi_video_device_lcd_get_level_current(
215 struct acpi_video_device *device,
216 unsigned long long *level, bool raw);
217 static int acpi_video_get_next_level(struct acpi_video_device *device,
218 u32 level_current, u32 event);
219 static void acpi_video_switch_brightness(struct work_struct *work);
220
221 /* backlight device sysfs support */
acpi_video_get_brightness(struct backlight_device * bd)222 static int acpi_video_get_brightness(struct backlight_device *bd)
223 {
224 unsigned long long cur_level;
225 int i;
226 struct acpi_video_device *vd = bl_get_data(bd);
227
228 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
229 return -EINVAL;
230 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
231 if (vd->brightness->levels[i] == cur_level)
232 return i - ACPI_VIDEO_FIRST_LEVEL;
233 }
234 return 0;
235 }
236
acpi_video_set_brightness(struct backlight_device * bd)237 static int acpi_video_set_brightness(struct backlight_device *bd)
238 {
239 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
240 struct acpi_video_device *vd = bl_get_data(bd);
241
242 cancel_delayed_work(&vd->switch_brightness_work);
243 return acpi_video_device_lcd_set_level(vd,
244 vd->brightness->levels[request_level]);
245 }
246
247 static const struct backlight_ops acpi_backlight_ops = {
248 .get_brightness = acpi_video_get_brightness,
249 .update_status = acpi_video_set_brightness,
250 };
251
252 /* thermal cooling device callbacks */
video_get_max_state(struct thermal_cooling_device * cooling_dev,unsigned long * state)253 static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
254 unsigned long *state)
255 {
256 struct acpi_video_device *video = cooling_dev->devdata;
257
258 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
259 return 0;
260 }
261
video_get_cur_state(struct thermal_cooling_device * cooling_dev,unsigned long * state)262 static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
263 unsigned long *state)
264 {
265 struct acpi_video_device *video = cooling_dev->devdata;
266 unsigned long long level;
267 int offset;
268
269 if (acpi_video_device_lcd_get_level_current(video, &level, false))
270 return -EINVAL;
271 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
272 offset++)
273 if (level == video->brightness->levels[offset]) {
274 *state = video->brightness->count - offset - 1;
275 return 0;
276 }
277
278 return -EINVAL;
279 }
280
281 static int
video_set_cur_state(struct thermal_cooling_device * cooling_dev,unsigned long state)282 video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
283 {
284 struct acpi_video_device *video = cooling_dev->devdata;
285 int level;
286
287 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
288 return -EINVAL;
289
290 state = video->brightness->count - state;
291 level = video->brightness->levels[state - 1];
292 return acpi_video_device_lcd_set_level(video, level);
293 }
294
295 static const struct thermal_cooling_device_ops video_cooling_ops = {
296 .get_max_state = video_get_max_state,
297 .get_cur_state = video_get_cur_state,
298 .set_cur_state = video_set_cur_state,
299 };
300
301 /*
302 * --------------------------------------------------------------------------
303 * Video Management
304 * --------------------------------------------------------------------------
305 */
306
307 static int
acpi_video_device_lcd_query_levels(acpi_handle handle,union acpi_object ** levels)308 acpi_video_device_lcd_query_levels(acpi_handle handle,
309 union acpi_object **levels)
310 {
311 int status;
312 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
313 union acpi_object *obj;
314
315
316 *levels = NULL;
317
318 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
319 if (ACPI_FAILURE(status))
320 return status;
321 obj = (union acpi_object *)buffer.pointer;
322 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
323 acpi_handle_info(handle, "Invalid _BCL data\n");
324 status = -EFAULT;
325 goto err;
326 }
327
328 *levels = obj;
329
330 return 0;
331
332 err:
333 kfree(buffer.pointer);
334
335 return status;
336 }
337
338 static int
acpi_video_device_lcd_set_level(struct acpi_video_device * device,int level)339 acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
340 {
341 int status;
342 int state;
343
344 status = acpi_execute_simple_method(device->dev->handle,
345 "_BCM", level);
346 if (ACPI_FAILURE(status)) {
347 acpi_handle_info(device->dev->handle, "_BCM evaluation failed\n");
348 return -EIO;
349 }
350
351 device->brightness->curr = level;
352 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
353 state++)
354 if (level == device->brightness->levels[state]) {
355 if (device->backlight)
356 device->backlight->props.brightness =
357 state - ACPI_VIDEO_FIRST_LEVEL;
358 return 0;
359 }
360
361 acpi_handle_info(device->dev->handle, "Current brightness invalid\n");
362 return -EINVAL;
363 }
364
365 /*
366 * For some buggy _BQC methods, we need to add a constant value to
367 * the _BQC return value to get the actual current brightness level
368 */
369
370 static int bqc_offset_aml_bug_workaround;
video_set_bqc_offset(const struct dmi_system_id * d)371 static int video_set_bqc_offset(const struct dmi_system_id *d)
372 {
373 bqc_offset_aml_bug_workaround = 9;
374 return 0;
375 }
376
video_set_device_id_scheme(const struct dmi_system_id * d)377 static int video_set_device_id_scheme(const struct dmi_system_id *d)
378 {
379 device_id_scheme = true;
380 return 0;
381 }
382
video_enable_only_lcd(const struct dmi_system_id * d)383 static int video_enable_only_lcd(const struct dmi_system_id *d)
384 {
385 only_lcd = true;
386 return 0;
387 }
388
video_set_report_key_events(const struct dmi_system_id * id)389 static int video_set_report_key_events(const struct dmi_system_id *id)
390 {
391 if (report_key_events == -1)
392 report_key_events = (uintptr_t)id->driver_data;
393 return 0;
394 }
395
video_hw_changes_brightness(const struct dmi_system_id * d)396 static int video_hw_changes_brightness(
397 const struct dmi_system_id *d)
398 {
399 if (hw_changes_brightness == -1)
400 hw_changes_brightness = 1;
401 return 0;
402 }
403
404 static const struct dmi_system_id video_dmi_table[] = {
405 /*
406 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
407 */
408 {
409 .callback = video_set_bqc_offset,
410 .ident = "Acer Aspire 5720",
411 .matches = {
412 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
413 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
414 },
415 },
416 {
417 .callback = video_set_bqc_offset,
418 .ident = "Acer Aspire 5710Z",
419 .matches = {
420 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
421 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
422 },
423 },
424 {
425 .callback = video_set_bqc_offset,
426 .ident = "eMachines E510",
427 .matches = {
428 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
429 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
430 },
431 },
432 {
433 .callback = video_set_bqc_offset,
434 .ident = "Acer Aspire 5315",
435 .matches = {
436 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
437 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
438 },
439 },
440 {
441 .callback = video_set_bqc_offset,
442 .ident = "Acer Aspire 7720",
443 .matches = {
444 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
445 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
446 },
447 },
448
449 /*
450 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
451 * but the IDs actually follow the Device ID Scheme.
452 */
453 {
454 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
455 .callback = video_set_device_id_scheme,
456 .ident = "ESPRIMO Mobile M9410",
457 .matches = {
458 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
459 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
460 },
461 },
462 /*
463 * Some machines have multiple video output devices, but only the one
464 * that is the type of LCD can do the backlight control so we should not
465 * register backlight interface for other video output devices.
466 */
467 {
468 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
469 .callback = video_enable_only_lcd,
470 .ident = "ESPRIMO Mobile M9410",
471 .matches = {
472 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
473 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
474 },
475 },
476 /*
477 * Some machines report wrong key events on the acpi-bus, suppress
478 * key event reporting on these. Note this is only intended to work
479 * around events which are plain wrong. In some cases we get double
480 * events, in this case acpi-video is considered the canonical source
481 * and the events from the other source should be filtered. E.g.
482 * by calling acpi_video_handles_brightness_key_presses() from the
483 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
484 */
485 {
486 .callback = video_set_report_key_events,
487 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
488 .ident = "Dell Vostro V131",
489 .matches = {
490 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
491 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
492 },
493 },
494 {
495 .callback = video_set_report_key_events,
496 .driver_data = (void *)((uintptr_t)REPORT_BRIGHTNESS_KEY_EVENTS),
497 .ident = "Dell Vostro 3350",
498 .matches = {
499 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
500 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3350"),
501 },
502 },
503 {
504 .callback = video_set_report_key_events,
505 .driver_data = (void *)((uintptr_t)REPORT_BRIGHTNESS_KEY_EVENTS),
506 .ident = "COLORFUL X15 AT 23",
507 .matches = {
508 DMI_MATCH(DMI_SYS_VENDOR, "COLORFUL"),
509 DMI_MATCH(DMI_PRODUCT_NAME, "X15 AT 23"),
510 },
511 },
512 /*
513 * Some machines change the brightness themselves when a brightness
514 * hotkey gets pressed, despite us telling them not to. In this case
515 * acpi_video_device_notify() should only call backlight_force_update(
516 * BACKLIGHT_UPDATE_HOTKEY) and not do anything else.
517 */
518 {
519 /* https://bugzilla.kernel.org/show_bug.cgi?id=204077 */
520 .callback = video_hw_changes_brightness,
521 .ident = "Packard Bell EasyNote MZ35",
522 .matches = {
523 DMI_MATCH(DMI_SYS_VENDOR, "Packard Bell"),
524 DMI_MATCH(DMI_PRODUCT_NAME, "EasyNote MZ35"),
525 },
526 },
527 {}
528 };
529
530 static unsigned long long
acpi_video_bqc_value_to_level(struct acpi_video_device * device,unsigned long long bqc_value)531 acpi_video_bqc_value_to_level(struct acpi_video_device *device,
532 unsigned long long bqc_value)
533 {
534 unsigned long long level;
535
536 if (device->brightness->flags._BQC_use_index) {
537 /*
538 * _BQC returns an index that doesn't account for the first 2
539 * items with special meaning (see enum acpi_video_level_idx),
540 * so we need to compensate for that by offsetting ourselves
541 */
542 if (device->brightness->flags._BCL_reversed)
543 bqc_value = device->brightness->count -
544 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
545
546 level = device->brightness->levels[bqc_value +
547 ACPI_VIDEO_FIRST_LEVEL];
548 } else {
549 level = bqc_value;
550 }
551
552 level += bqc_offset_aml_bug_workaround;
553
554 return level;
555 }
556
557 static int
acpi_video_device_lcd_get_level_current(struct acpi_video_device * device,unsigned long long * level,bool raw)558 acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
559 unsigned long long *level, bool raw)
560 {
561 acpi_status status = AE_OK;
562 int i;
563
564 if (device->cap._BQC || device->cap._BCQ) {
565 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
566
567 status = acpi_evaluate_integer(device->dev->handle, buf,
568 NULL, level);
569 if (ACPI_SUCCESS(status)) {
570 if (raw) {
571 /*
572 * Caller has indicated he wants the raw
573 * value returned by _BQC, so don't furtherly
574 * mess with the value.
575 */
576 return 0;
577 }
578
579 *level = acpi_video_bqc_value_to_level(device, *level);
580
581 for (i = ACPI_VIDEO_FIRST_LEVEL;
582 i < device->brightness->count; i++)
583 if (device->brightness->levels[i] == *level) {
584 device->brightness->curr = *level;
585 return 0;
586 }
587 /*
588 * BQC returned an invalid level.
589 * Stop using it.
590 */
591 acpi_handle_info(device->dev->handle,
592 "%s returned an invalid level", buf);
593 device->cap._BQC = device->cap._BCQ = 0;
594 } else {
595 /*
596 * Fixme:
597 * should we return an error or ignore this failure?
598 * dev->brightness->curr is a cached value which stores
599 * the correct current backlight level in most cases.
600 * ACPI video backlight still works w/ buggy _BQC.
601 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
602 */
603 acpi_handle_info(device->dev->handle,
604 "%s evaluation failed", buf);
605 device->cap._BQC = device->cap._BCQ = 0;
606 }
607 }
608
609 *level = device->brightness->curr;
610 return 0;
611 }
612
613 /**
614 * acpi_video_device_EDID() - Get EDID from ACPI _DDC
615 * @device: video output device (LCD, CRT, ..)
616 * @edid: address for returned EDID pointer
617 * @length: _DDC length to request (must be a multiple of 128)
618 *
619 * Get EDID from ACPI _DDC. On success, a pointer to the EDID data is written
620 * to the @edid address, and the length of the EDID is returned. The caller is
621 * responsible for freeing the edid pointer.
622 *
623 * Return the length of EDID (positive value) on success or error (negative
624 * value).
625 */
626 static int
acpi_video_device_EDID(struct acpi_video_device * device,void ** edid,int length)627 acpi_video_device_EDID(struct acpi_video_device *device, void **edid, int length)
628 {
629 acpi_status status;
630 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
631 union acpi_object *obj;
632 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
633 struct acpi_object_list args = { 1, &arg0 };
634 int ret;
635
636 *edid = NULL;
637
638 if (!device)
639 return -ENODEV;
640 if (!length || (length % 128))
641 return -EINVAL;
642
643 arg0.integer.value = length / 128;
644
645 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
646 if (ACPI_FAILURE(status))
647 return -ENODEV;
648
649 obj = buffer.pointer;
650
651 /*
652 * Some buggy implementations incorrectly return the EDID buffer in an ACPI package.
653 * In this case, extract the buffer from the package.
654 */
655 if (obj && obj->type == ACPI_TYPE_PACKAGE && obj->package.count == 1)
656 obj = &obj->package.elements[0];
657
658 if (obj && obj->type == ACPI_TYPE_BUFFER) {
659 *edid = kmemdup(obj->buffer.pointer, obj->buffer.length, GFP_KERNEL);
660 ret = *edid ? obj->buffer.length : -ENOMEM;
661 } else {
662 acpi_handle_debug(device->dev->handle,
663 "Invalid _DDC data for length %d\n", length);
664 ret = -EFAULT;
665 }
666
667 kfree(buffer.pointer);
668 return ret;
669 }
670
671 /* bus */
672
673 /*
674 * Arg:
675 * video : video bus device pointer
676 * bios_flag :
677 * 0. The system BIOS should NOT automatically switch(toggle)
678 * the active display output.
679 * 1. The system BIOS should automatically switch (toggle) the
680 * active display output. No switch event.
681 * 2. The _DGS value should be locked.
682 * 3. The system BIOS should not automatically switch (toggle) the
683 * active display output, but instead generate the display switch
684 * event notify code.
685 * lcd_flag :
686 * 0. The system BIOS should automatically control the brightness level
687 * of the LCD when:
688 * - the power changes from AC to DC (ACPI appendix B)
689 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
690 * 1. The system BIOS should NOT automatically control the brightness
691 * level of the LCD when:
692 * - the power changes from AC to DC (ACPI appendix B)
693 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
694 * Return Value:
695 * -EINVAL wrong arg.
696 */
697
698 static int
acpi_video_bus_DOS(struct acpi_video_bus * video,int bios_flag,int lcd_flag)699 acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
700 {
701 acpi_status status;
702
703 if (!video->cap._DOS)
704 return 0;
705
706 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
707 return -EINVAL;
708 video->dos_setting = (lcd_flag << 2) | bios_flag;
709 status = acpi_execute_simple_method(video->device->handle, "_DOS",
710 (lcd_flag << 2) | bios_flag);
711 if (ACPI_FAILURE(status))
712 return -EIO;
713
714 return 0;
715 }
716
717 /*
718 * Simple comparison function used to sort backlight levels.
719 */
720
721 static int
acpi_video_cmp_level(const void * a,const void * b)722 acpi_video_cmp_level(const void *a, const void *b)
723 {
724 return *(int *)a - *(int *)b;
725 }
726
727 /*
728 * Decides if _BQC/_BCQ for this system is usable
729 *
730 * We do this by changing the level first and then read out the current
731 * brightness level, if the value does not match, find out if it is using
732 * index. If not, clear the _BQC/_BCQ capability.
733 */
acpi_video_bqc_quirk(struct acpi_video_device * device,int max_level,int current_level)734 static int acpi_video_bqc_quirk(struct acpi_video_device *device,
735 int max_level, int current_level)
736 {
737 struct acpi_video_device_brightness *br = device->brightness;
738 int result;
739 unsigned long long level;
740 int test_level;
741
742 /* don't mess with existing known broken systems */
743 if (bqc_offset_aml_bug_workaround)
744 return 0;
745
746 /*
747 * Some systems always report current brightness level as maximum
748 * through _BQC, we need to test another value for them. However,
749 * there is a subtlety:
750 *
751 * If the _BCL package ordering is descending, the first level
752 * (br->levels[2]) is likely to be 0, and if the number of levels
753 * matches the number of steps, we might confuse a returned level to
754 * mean the index.
755 *
756 * For example:
757 *
758 * current_level = max_level = 100
759 * test_level = 0
760 * returned level = 100
761 *
762 * In this case 100 means the level, not the index, and _BCM failed.
763 * Still, if the _BCL package ordering is descending, the index of
764 * level 0 is also 100, so we assume _BQC is indexed, when it's not.
765 *
766 * This causes all _BQC calls to return bogus values causing weird
767 * behavior from the user's perspective. For example:
768 *
769 * xbacklight -set 10; xbacklight -set 20;
770 *
771 * would flash to 90% and then slowly down to the desired level (20).
772 *
773 * The solution is simple; test anything other than the first level
774 * (e.g. 1).
775 */
776 test_level = current_level == max_level
777 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
778 : max_level;
779
780 result = acpi_video_device_lcd_set_level(device, test_level);
781 if (result)
782 return result;
783
784 result = acpi_video_device_lcd_get_level_current(device, &level, true);
785 if (result)
786 return result;
787
788 if (level != test_level) {
789 /* buggy _BQC found, need to find out if it uses index */
790 if (level < br->count) {
791 if (br->flags._BCL_reversed)
792 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
793 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
794 br->flags._BQC_use_index = 1;
795 }
796
797 if (!br->flags._BQC_use_index)
798 device->cap._BQC = device->cap._BCQ = 0;
799 }
800
801 return 0;
802 }
803
acpi_video_get_levels(struct acpi_device * device,struct acpi_video_device_brightness ** dev_br,int * pmax_level)804 int acpi_video_get_levels(struct acpi_device *device,
805 struct acpi_video_device_brightness **dev_br,
806 int *pmax_level)
807 {
808 union acpi_object *obj = NULL;
809 int i, max_level = 0, count = 0, level_ac_battery = 0;
810 union acpi_object *o;
811 struct acpi_video_device_brightness *br = NULL;
812 int result = 0;
813 u32 value;
814
815 if (ACPI_FAILURE(acpi_video_device_lcd_query_levels(device->handle, &obj))) {
816 acpi_handle_debug(device->handle,
817 "Could not query available LCD brightness level\n");
818 result = -ENODEV;
819 goto out;
820 }
821
822 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
823 result = -EINVAL;
824 goto out;
825 }
826
827 br = kzalloc(sizeof(*br), GFP_KERNEL);
828 if (!br) {
829 result = -ENOMEM;
830 goto out;
831 }
832
833 /*
834 * Note that we have to reserve 2 extra items (ACPI_VIDEO_FIRST_LEVEL),
835 * in order to account for buggy BIOS which don't export the first two
836 * special levels (see below)
837 */
838 br->levels = kmalloc_array(obj->package.count + ACPI_VIDEO_FIRST_LEVEL,
839 sizeof(*br->levels),
840 GFP_KERNEL);
841 if (!br->levels) {
842 result = -ENOMEM;
843 goto out_free;
844 }
845
846 for (i = 0; i < obj->package.count; i++) {
847 o = (union acpi_object *)&obj->package.elements[i];
848 if (o->type != ACPI_TYPE_INTEGER) {
849 acpi_handle_info(device->handle, "Invalid data\n");
850 continue;
851 }
852 value = (u32) o->integer.value;
853 /* Skip duplicate entries */
854 if (count > ACPI_VIDEO_FIRST_LEVEL
855 && br->levels[count - 1] == value)
856 continue;
857
858 br->levels[count] = value;
859
860 if (br->levels[count] > max_level)
861 max_level = br->levels[count];
862 count++;
863 }
864
865 /*
866 * some buggy BIOS don't export the levels
867 * when machine is on AC/Battery in _BCL package.
868 * In this case, the first two elements in _BCL packages
869 * are also supported brightness levels that OS should take care of.
870 */
871 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
872 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
873 level_ac_battery++;
874 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
875 level_ac_battery++;
876 }
877
878 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
879 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
880 br->flags._BCL_no_ac_battery_levels = 1;
881 for (i = (count - 1 + level_ac_battery);
882 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
883 br->levels[i] = br->levels[i - level_ac_battery];
884 count += level_ac_battery;
885 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
886 acpi_handle_info(device->handle,
887 "Too many duplicates in _BCL package");
888
889 /* Check if the _BCL package is in a reversed order */
890 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
891 br->flags._BCL_reversed = 1;
892 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
893 count - ACPI_VIDEO_FIRST_LEVEL,
894 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
895 acpi_video_cmp_level, NULL);
896 } else if (max_level != br->levels[count - 1])
897 acpi_handle_info(device->handle,
898 "Found unordered _BCL package");
899
900 br->count = count;
901 *dev_br = br;
902 if (pmax_level)
903 *pmax_level = max_level;
904
905 out:
906 kfree(obj);
907 return result;
908 out_free:
909 kfree(br);
910 goto out;
911 }
912 EXPORT_SYMBOL(acpi_video_get_levels);
913
914 /*
915 * Arg:
916 * device : video output device (LCD, CRT, ..)
917 *
918 * Return Value:
919 * Maximum brightness level
920 *
921 * Allocate and initialize device->brightness.
922 */
923
924 static int
acpi_video_init_brightness(struct acpi_video_device * device)925 acpi_video_init_brightness(struct acpi_video_device *device)
926 {
927 int i, max_level = 0;
928 unsigned long long level, level_old;
929 struct acpi_video_device_brightness *br = NULL;
930 int result;
931
932 result = acpi_video_get_levels(device->dev, &br, &max_level);
933 if (result)
934 return result;
935 device->brightness = br;
936
937 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
938 br->curr = level = max_level;
939
940 if (!device->cap._BQC)
941 goto set_level;
942
943 result = acpi_video_device_lcd_get_level_current(device,
944 &level_old, true);
945 if (result)
946 goto out_free_levels;
947
948 result = acpi_video_bqc_quirk(device, max_level, level_old);
949 if (result)
950 goto out_free_levels;
951 /*
952 * cap._BQC may get cleared due to _BQC is found to be broken
953 * in acpi_video_bqc_quirk, so check again here.
954 */
955 if (!device->cap._BQC)
956 goto set_level;
957
958 level = acpi_video_bqc_value_to_level(device, level_old);
959 /*
960 * On some buggy laptops, _BQC returns an uninitialized
961 * value when invoked for the first time, i.e.
962 * level_old is invalid (no matter whether it's a level
963 * or an index). Set the backlight to max_level in this case.
964 */
965 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
966 if (level == br->levels[i])
967 break;
968 if (i == br->count || !level)
969 level = max_level;
970
971 set_level:
972 result = acpi_video_device_lcd_set_level(device, level);
973 if (result)
974 goto out_free_levels;
975
976 acpi_handle_debug(device->dev->handle, "found %d brightness levels\n",
977 br->count - ACPI_VIDEO_FIRST_LEVEL);
978
979 return 0;
980
981 out_free_levels:
982 kfree(br->levels);
983 kfree(br);
984 device->brightness = NULL;
985 return result;
986 }
987
988 /*
989 * Arg:
990 * device : video output device (LCD, CRT, ..)
991 *
992 * Return Value:
993 * None
994 *
995 * Find out all required AML methods defined under the output
996 * device.
997 */
998
acpi_video_device_find_cap(struct acpi_video_device * device)999 static void acpi_video_device_find_cap(struct acpi_video_device *device)
1000 {
1001 if (acpi_has_method(device->dev->handle, "_ADR"))
1002 device->cap._ADR = 1;
1003 if (acpi_has_method(device->dev->handle, "_BCL"))
1004 device->cap._BCL = 1;
1005 if (acpi_has_method(device->dev->handle, "_BCM"))
1006 device->cap._BCM = 1;
1007 if (acpi_has_method(device->dev->handle, "_BQC")) {
1008 device->cap._BQC = 1;
1009 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
1010 acpi_handle_info(device->dev->handle,
1011 "_BCQ is used instead of _BQC\n");
1012 device->cap._BCQ = 1;
1013 }
1014
1015 if (acpi_has_method(device->dev->handle, "_DDC"))
1016 device->cap._DDC = 1;
1017 }
1018
1019 /*
1020 * Arg:
1021 * device : video output device (VGA)
1022 *
1023 * Return Value:
1024 * None
1025 *
1026 * Find out all required AML methods defined under the video bus device.
1027 */
1028
acpi_video_bus_find_cap(struct acpi_video_bus * video)1029 static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
1030 {
1031 if (acpi_has_method(video->device->handle, "_DOS"))
1032 video->cap._DOS = 1;
1033 if (acpi_has_method(video->device->handle, "_DOD"))
1034 video->cap._DOD = 1;
1035 if (acpi_has_method(video->device->handle, "_ROM"))
1036 video->cap._ROM = 1;
1037 if (acpi_has_method(video->device->handle, "_GPD"))
1038 video->cap._GPD = 1;
1039 if (acpi_has_method(video->device->handle, "_SPD"))
1040 video->cap._SPD = 1;
1041 if (acpi_has_method(video->device->handle, "_VPO"))
1042 video->cap._VPO = 1;
1043 }
1044
1045 /*
1046 * Check whether the video bus device has required AML method to
1047 * support the desired features
1048 */
1049
acpi_video_bus_check(struct acpi_video_bus * video)1050 static int acpi_video_bus_check(struct acpi_video_bus *video)
1051 {
1052 acpi_status status = -ENOENT;
1053 struct pci_dev *dev;
1054
1055 if (!video)
1056 return -EINVAL;
1057
1058 dev = acpi_get_pci_dev(video->device->handle);
1059 if (!dev)
1060 return -ENODEV;
1061 pci_dev_put(dev);
1062
1063 /*
1064 * Since there is no HID, CID and so on for VGA driver, we have
1065 * to check well known required nodes.
1066 */
1067
1068 /* Does this device support video switching? */
1069 if (video->cap._DOS || video->cap._DOD) {
1070 if (!video->cap._DOS) {
1071 pr_info(FW_BUG "ACPI(%s) defines _DOD but not _DOS\n",
1072 acpi_device_bid(video->device));
1073 }
1074 video->flags.multihead = 1;
1075 status = 0;
1076 }
1077
1078 /* Does this device support retrieving a video ROM? */
1079 if (video->cap._ROM) {
1080 video->flags.rom = 1;
1081 status = 0;
1082 }
1083
1084 /* Does this device support configuring which video device to POST? */
1085 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
1086 video->flags.post = 1;
1087 status = 0;
1088 }
1089
1090 return status;
1091 }
1092
1093 /*
1094 * --------------------------------------------------------------------------
1095 * Driver Interface
1096 * --------------------------------------------------------------------------
1097 */
1098
1099 /* device interface */
1100 static struct acpi_video_device_attrib *
acpi_video_get_device_attr(struct acpi_video_bus * video,unsigned long device_id)1101 acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1102 {
1103 struct acpi_video_enumerated_device *ids;
1104 int i;
1105
1106 for (i = 0; i < video->attached_count; i++) {
1107 ids = &video->attached_array[i];
1108 if ((ids->value.int_val & 0xffff) == device_id)
1109 return &ids->value.attrib;
1110 }
1111
1112 return NULL;
1113 }
1114
1115 static int
acpi_video_get_device_type(struct acpi_video_bus * video,unsigned long device_id)1116 acpi_video_get_device_type(struct acpi_video_bus *video,
1117 unsigned long device_id)
1118 {
1119 struct acpi_video_enumerated_device *ids;
1120 int i;
1121
1122 for (i = 0; i < video->attached_count; i++) {
1123 ids = &video->attached_array[i];
1124 if ((ids->value.int_val & 0xffff) == device_id)
1125 return ids->value.int_val;
1126 }
1127
1128 return 0;
1129 }
1130
acpi_video_bus_get_one_device(struct acpi_device * device,void * arg)1131 static int acpi_video_bus_get_one_device(struct acpi_device *device, void *arg)
1132 {
1133 struct acpi_video_bus *video = arg;
1134 struct acpi_video_device_attrib *attribute;
1135 struct acpi_video_device *data;
1136 unsigned long long device_id;
1137 acpi_status status;
1138 int device_type;
1139
1140 status = acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
1141 /* Skip devices without _ADR instead of failing. */
1142 if (ACPI_FAILURE(status))
1143 goto exit;
1144
1145 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1146 if (!data) {
1147 dev_dbg(&device->dev, "Cannot attach\n");
1148 return -ENOMEM;
1149 }
1150
1151 strscpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1152 strscpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1153
1154 data->device_id = device_id;
1155 data->video = video;
1156 data->dev = device;
1157 INIT_DELAYED_WORK(&data->switch_brightness_work,
1158 acpi_video_switch_brightness);
1159
1160 attribute = acpi_video_get_device_attr(video, device_id);
1161
1162 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
1163 switch (attribute->display_type) {
1164 case ACPI_VIDEO_DISPLAY_CRT:
1165 data->flags.crt = 1;
1166 break;
1167 case ACPI_VIDEO_DISPLAY_TV:
1168 data->flags.tvout = 1;
1169 break;
1170 case ACPI_VIDEO_DISPLAY_DVI:
1171 data->flags.dvi = 1;
1172 break;
1173 case ACPI_VIDEO_DISPLAY_LCD:
1174 data->flags.lcd = 1;
1175 break;
1176 default:
1177 data->flags.unknown = 1;
1178 break;
1179 }
1180 if (attribute->bios_can_detect)
1181 data->flags.bios = 1;
1182 } else {
1183 /* Check for legacy IDs */
1184 device_type = acpi_video_get_device_type(video, device_id);
1185 /* Ignore bits 16 and 18-20 */
1186 switch (device_type & 0xffe2ffff) {
1187 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1188 data->flags.crt = 1;
1189 break;
1190 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1191 data->flags.lcd = 1;
1192 break;
1193 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1194 data->flags.tvout = 1;
1195 break;
1196 default:
1197 data->flags.unknown = 1;
1198 }
1199 }
1200
1201 acpi_video_device_bind(video, data);
1202 acpi_video_device_find_cap(data);
1203
1204 if (data->cap._BCM && data->cap._BCL)
1205 may_report_brightness_keys = true;
1206
1207 mutex_lock(&video->device_list_lock);
1208 list_add_tail(&data->entry, &video->video_device_list);
1209 mutex_unlock(&video->device_list_lock);
1210
1211 exit:
1212 video->child_count++;
1213 return 0;
1214 }
1215
1216 /*
1217 * Arg:
1218 * video : video bus device
1219 *
1220 * Return:
1221 * none
1222 *
1223 * Enumerate the video device list of the video bus,
1224 * bind the ids with the corresponding video devices
1225 * under the video bus.
1226 */
1227
acpi_video_device_rebind(struct acpi_video_bus * video)1228 static void acpi_video_device_rebind(struct acpi_video_bus *video)
1229 {
1230 struct acpi_video_device *dev;
1231
1232 mutex_lock(&video->device_list_lock);
1233
1234 list_for_each_entry(dev, &video->video_device_list, entry)
1235 acpi_video_device_bind(video, dev);
1236
1237 mutex_unlock(&video->device_list_lock);
1238 }
1239
1240 /*
1241 * Arg:
1242 * video : video bus device
1243 * device : video output device under the video
1244 * bus
1245 *
1246 * Return:
1247 * none
1248 *
1249 * Bind the ids with the corresponding video devices
1250 * under the video bus.
1251 */
1252
1253 static void
acpi_video_device_bind(struct acpi_video_bus * video,struct acpi_video_device * device)1254 acpi_video_device_bind(struct acpi_video_bus *video,
1255 struct acpi_video_device *device)
1256 {
1257 struct acpi_video_enumerated_device *ids;
1258 int i;
1259
1260 for (i = 0; i < video->attached_count; i++) {
1261 ids = &video->attached_array[i];
1262 if (device->device_id == (ids->value.int_val & 0xffff)) {
1263 ids->bind_info = device;
1264 acpi_handle_debug(video->device->handle, "%s: %d\n",
1265 __func__, i);
1266 }
1267 }
1268 }
1269
acpi_video_device_in_dod(struct acpi_video_device * device)1270 static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1271 {
1272 struct acpi_video_bus *video = device->video;
1273 int i;
1274
1275 /*
1276 * If we have a broken _DOD or we have more than 8 output devices
1277 * under the graphics controller node that we can't proper deal with
1278 * in the operation region code currently, no need to test.
1279 */
1280 if (!video->attached_count || video->child_count > 8)
1281 return true;
1282
1283 for (i = 0; i < video->attached_count; i++) {
1284 if ((video->attached_array[i].value.int_val & 0xfff) ==
1285 (device->device_id & 0xfff))
1286 return true;
1287 }
1288
1289 return false;
1290 }
1291
1292 /*
1293 * Arg:
1294 * video : video bus device
1295 *
1296 * Return:
1297 * < 0 : error
1298 *
1299 * Call _DOD to enumerate all devices attached to display adapter
1300 *
1301 */
1302
acpi_video_device_enumerate(struct acpi_video_bus * video)1303 static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1304 {
1305 int status;
1306 int count;
1307 int i;
1308 struct acpi_video_enumerated_device *active_list;
1309 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1310 union acpi_object *dod = NULL;
1311 union acpi_object *obj;
1312
1313 if (!video->cap._DOD)
1314 return AE_NOT_EXIST;
1315
1316 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
1317 if (ACPI_FAILURE(status)) {
1318 acpi_handle_info(video->device->handle,
1319 "_DOD evaluation failed: %s\n",
1320 acpi_format_exception(status));
1321 return status;
1322 }
1323
1324 dod = buffer.pointer;
1325 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
1326 acpi_handle_info(video->device->handle, "Invalid _DOD data\n");
1327 status = -EFAULT;
1328 goto out;
1329 }
1330
1331 acpi_handle_debug(video->device->handle, "Found %d video heads in _DOD\n",
1332 dod->package.count);
1333
1334 active_list = kcalloc(1 + dod->package.count,
1335 sizeof(struct acpi_video_enumerated_device),
1336 GFP_KERNEL);
1337 if (!active_list) {
1338 status = -ENOMEM;
1339 goto out;
1340 }
1341
1342 count = 0;
1343 for (i = 0; i < dod->package.count; i++) {
1344 obj = &dod->package.elements[i];
1345
1346 if (obj->type != ACPI_TYPE_INTEGER) {
1347 acpi_handle_info(video->device->handle,
1348 "Invalid _DOD data in element %d\n", i);
1349 continue;
1350 }
1351
1352 active_list[count].value.int_val = obj->integer.value;
1353 active_list[count].bind_info = NULL;
1354
1355 acpi_handle_debug(video->device->handle,
1356 "_DOD element[%d] = %d\n", i,
1357 (int)obj->integer.value);
1358
1359 count++;
1360 }
1361
1362 kfree(video->attached_array);
1363
1364 video->attached_array = active_list;
1365 video->attached_count = count;
1366
1367 out:
1368 kfree(buffer.pointer);
1369 return status;
1370 }
1371
1372 static int
acpi_video_get_next_level(struct acpi_video_device * device,u32 level_current,u32 event)1373 acpi_video_get_next_level(struct acpi_video_device *device,
1374 u32 level_current, u32 event)
1375 {
1376 int min, max, min_above, max_below, i, l, delta = 255;
1377 max = max_below = 0;
1378 min = min_above = 255;
1379 /* Find closest level to level_current */
1380 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
1381 l = device->brightness->levels[i];
1382 if (abs(l - level_current) < abs(delta)) {
1383 delta = l - level_current;
1384 if (!delta)
1385 break;
1386 }
1387 }
1388 /* Adjust level_current to closest available level */
1389 level_current += delta;
1390 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
1391 l = device->brightness->levels[i];
1392 if (l < min)
1393 min = l;
1394 if (l > max)
1395 max = l;
1396 if (l < min_above && l > level_current)
1397 min_above = l;
1398 if (l > max_below && l < level_current)
1399 max_below = l;
1400 }
1401
1402 switch (event) {
1403 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1404 return (level_current < max) ? min_above : min;
1405 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1406 return (level_current < max) ? min_above : max;
1407 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1408 return (level_current > min) ? max_below : min;
1409 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1410 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1411 return 0;
1412 default:
1413 return level_current;
1414 }
1415 }
1416
1417 static void
acpi_video_switch_brightness(struct work_struct * work)1418 acpi_video_switch_brightness(struct work_struct *work)
1419 {
1420 struct acpi_video_device *device = container_of(to_delayed_work(work),
1421 struct acpi_video_device, switch_brightness_work);
1422 unsigned long long level_current, level_next;
1423 int event = device->switch_brightness_event;
1424 int result = -EINVAL;
1425
1426 /* no warning message if acpi_backlight=vendor or a quirk is used */
1427 if (!device->backlight)
1428 return;
1429
1430 if (!device->brightness)
1431 goto out;
1432
1433 result = acpi_video_device_lcd_get_level_current(device,
1434 &level_current,
1435 false);
1436 if (result)
1437 goto out;
1438
1439 level_next = acpi_video_get_next_level(device, level_current, event);
1440
1441 result = acpi_video_device_lcd_set_level(device, level_next);
1442
1443 if (!result)
1444 backlight_force_update(device->backlight,
1445 BACKLIGHT_UPDATE_HOTKEY);
1446
1447 out:
1448 if (result)
1449 acpi_handle_info(device->dev->handle,
1450 "Failed to switch brightness\n");
1451 }
1452
acpi_video_get_edid(struct acpi_device * device,int type,int device_id,void ** edid)1453 int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1454 void **edid)
1455 {
1456 struct acpi_video_bus *video;
1457 struct acpi_video_device *video_device;
1458 int i, length, ret;
1459
1460 if (!device || !acpi_driver_data(device))
1461 return -EINVAL;
1462
1463 video = acpi_driver_data(device);
1464
1465 for (i = 0; i < video->attached_count; i++) {
1466 video_device = video->attached_array[i].bind_info;
1467
1468 if (!video_device)
1469 continue;
1470
1471 if (!video_device->cap._DDC)
1472 continue;
1473
1474 if (type) {
1475 switch (type) {
1476 case ACPI_VIDEO_DISPLAY_CRT:
1477 if (!video_device->flags.crt)
1478 continue;
1479 break;
1480 case ACPI_VIDEO_DISPLAY_TV:
1481 if (!video_device->flags.tvout)
1482 continue;
1483 break;
1484 case ACPI_VIDEO_DISPLAY_DVI:
1485 if (!video_device->flags.dvi)
1486 continue;
1487 break;
1488 case ACPI_VIDEO_DISPLAY_LCD:
1489 if (!video_device->flags.lcd)
1490 continue;
1491 break;
1492 }
1493 } else if (video_device->device_id != device_id) {
1494 continue;
1495 }
1496
1497 for (length = 512; length > 0; length -= 128) {
1498 ret = acpi_video_device_EDID(video_device, edid, length);
1499 if (ret > 0)
1500 return ret;
1501 }
1502 }
1503
1504 return -ENODEV;
1505 }
1506 EXPORT_SYMBOL(acpi_video_get_edid);
1507
1508 static int
acpi_video_bus_get_devices(struct acpi_video_bus * video,struct acpi_device * device)1509 acpi_video_bus_get_devices(struct acpi_video_bus *video,
1510 struct acpi_device *device)
1511 {
1512 /*
1513 * There are systems where video module known to work fine regardless
1514 * of broken _DOD and ignoring returned value here doesn't cause
1515 * any issues later.
1516 */
1517 acpi_video_device_enumerate(video);
1518
1519 return acpi_dev_for_each_child(device, acpi_video_bus_get_one_device, video);
1520 }
1521
1522 /* acpi_video interface */
1523
1524 /*
1525 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1526 * perform any automatic brightness change on receiving a notification.
1527 */
acpi_video_bus_start_devices(struct acpi_video_bus * video)1528 static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
1529 {
1530 return acpi_video_bus_DOS(video, 0,
1531 acpi_osi_is_win8() ? 1 : 0);
1532 }
1533
acpi_video_bus_stop_devices(struct acpi_video_bus * video)1534 static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
1535 {
1536 return acpi_video_bus_DOS(video, 0,
1537 acpi_osi_is_win8() ? 0 : 1);
1538 }
1539
acpi_video_bus_notify(acpi_handle handle,u32 event,void * data)1540 static void acpi_video_bus_notify(acpi_handle handle, u32 event, void *data)
1541 {
1542 struct acpi_device *device = data;
1543 struct acpi_video_bus *video = acpi_driver_data(device);
1544 struct input_dev *input;
1545 int keycode = 0;
1546
1547 if (!video || !video->input)
1548 return;
1549
1550 input = video->input;
1551
1552 switch (event) {
1553 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
1554 * most likely via hotkey. */
1555 keycode = KEY_SWITCHVIDEOMODE;
1556 break;
1557
1558 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
1559 * connector. */
1560 acpi_video_device_enumerate(video);
1561 acpi_video_device_rebind(video);
1562 keycode = KEY_SWITCHVIDEOMODE;
1563 break;
1564
1565 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
1566 keycode = KEY_SWITCHVIDEOMODE;
1567 break;
1568 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
1569 keycode = KEY_VIDEO_NEXT;
1570 break;
1571 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
1572 keycode = KEY_VIDEO_PREV;
1573 break;
1574
1575 default:
1576 acpi_handle_debug(device->handle, "Unsupported event [0x%x]\n",
1577 event);
1578 break;
1579 }
1580
1581 if (acpi_notifier_call_chain(device, event, 0))
1582 /* Something vetoed the keypress. */
1583 keycode = 0;
1584
1585 if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) {
1586 input_report_key(input, keycode, 1);
1587 input_sync(input);
1588 input_report_key(input, keycode, 0);
1589 input_sync(input);
1590 }
1591 }
1592
brightness_switch_event(struct acpi_video_device * video_device,u32 event)1593 static void brightness_switch_event(struct acpi_video_device *video_device,
1594 u32 event)
1595 {
1596 if (!brightness_switch_enabled)
1597 return;
1598
1599 video_device->switch_brightness_event = event;
1600 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1601 }
1602
acpi_video_device_notify(acpi_handle handle,u32 event,void * data)1603 static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
1604 {
1605 struct acpi_video_device *video_device = data;
1606 struct acpi_device *device = NULL;
1607 struct acpi_video_bus *bus;
1608 struct input_dev *input;
1609 int keycode = 0;
1610
1611 if (!video_device)
1612 return;
1613
1614 device = video_device->dev;
1615 bus = video_device->video;
1616 input = bus->input;
1617
1618 if (hw_changes_brightness > 0) {
1619 if (video_device->backlight)
1620 backlight_force_update(video_device->backlight,
1621 BACKLIGHT_UPDATE_HOTKEY);
1622 acpi_notifier_call_chain(device, event, 0);
1623 return;
1624 }
1625
1626 switch (event) {
1627 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
1628 brightness_switch_event(video_device, event);
1629 keycode = KEY_BRIGHTNESS_CYCLE;
1630 break;
1631 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
1632 brightness_switch_event(video_device, event);
1633 keycode = KEY_BRIGHTNESSUP;
1634 break;
1635 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
1636 brightness_switch_event(video_device, event);
1637 keycode = KEY_BRIGHTNESSDOWN;
1638 break;
1639 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
1640 brightness_switch_event(video_device, event);
1641 keycode = KEY_BRIGHTNESS_ZERO;
1642 break;
1643 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
1644 brightness_switch_event(video_device, event);
1645 keycode = KEY_DISPLAY_OFF;
1646 break;
1647 default:
1648 acpi_handle_debug(handle, "Unsupported event [0x%x]\n", event);
1649 break;
1650 }
1651
1652 if (keycode)
1653 may_report_brightness_keys = true;
1654
1655 acpi_notifier_call_chain(device, event, 0);
1656
1657 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
1658 input_report_key(input, keycode, 1);
1659 input_sync(input);
1660 input_report_key(input, keycode, 0);
1661 input_sync(input);
1662 }
1663 }
1664
acpi_video_resume(struct notifier_block * nb,unsigned long val,void * ign)1665 static int acpi_video_resume(struct notifier_block *nb,
1666 unsigned long val, void *ign)
1667 {
1668 struct acpi_video_bus *video;
1669 struct acpi_video_device *video_device;
1670 int i;
1671
1672 switch (val) {
1673 case PM_POST_HIBERNATION:
1674 case PM_POST_SUSPEND:
1675 case PM_POST_RESTORE:
1676 video = container_of(nb, struct acpi_video_bus, pm_nb);
1677
1678 dev_info(&video->device->dev, "Restoring backlight state\n");
1679
1680 for (i = 0; i < video->attached_count; i++) {
1681 video_device = video->attached_array[i].bind_info;
1682 if (video_device && video_device->brightness)
1683 acpi_video_device_lcd_set_level(video_device,
1684 video_device->brightness->curr);
1685 }
1686
1687 return NOTIFY_OK;
1688 }
1689 return NOTIFY_DONE;
1690 }
1691
1692 static acpi_status
acpi_video_bus_match(acpi_handle handle,u32 level,void * context,void ** return_value)1693 acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1694 void **return_value)
1695 {
1696 struct acpi_device *device = context;
1697 struct acpi_device *sibling;
1698
1699 if (handle == device->handle)
1700 return AE_CTRL_TERMINATE;
1701
1702 sibling = acpi_fetch_acpi_dev(handle);
1703 if (!sibling)
1704 return AE_OK;
1705
1706 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1707 return AE_ALREADY_EXISTS;
1708
1709 return AE_OK;
1710 }
1711
acpi_video_dev_register_backlight(struct acpi_video_device * device)1712 static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1713 {
1714 struct backlight_properties props;
1715 struct pci_dev *pdev;
1716 acpi_handle acpi_parent;
1717 struct device *parent = NULL;
1718 int result;
1719 static int count;
1720 char *name;
1721
1722 result = acpi_video_init_brightness(device);
1723 if (result)
1724 return;
1725
1726 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1727 if (!name)
1728 return;
1729 count++;
1730
1731 if (ACPI_SUCCESS(acpi_get_parent(device->dev->handle, &acpi_parent))) {
1732 pdev = acpi_get_pci_dev(acpi_parent);
1733 if (pdev) {
1734 parent = &pdev->dev;
1735 pci_dev_put(pdev);
1736 }
1737 }
1738
1739 memset(&props, 0, sizeof(struct backlight_properties));
1740 props.type = BACKLIGHT_FIRMWARE;
1741 props.max_brightness =
1742 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
1743 device->backlight = backlight_device_register(name,
1744 parent,
1745 device,
1746 &acpi_backlight_ops,
1747 &props);
1748 kfree(name);
1749 if (IS_ERR(device->backlight)) {
1750 device->backlight = NULL;
1751 return;
1752 }
1753
1754 /*
1755 * Save current brightness level in case we have to restore it
1756 * before acpi_video_device_lcd_set_level() is called next time.
1757 */
1758 device->backlight->props.brightness =
1759 acpi_video_get_brightness(device->backlight);
1760
1761 device->cooling_dev = thermal_cooling_device_register("LCD", device,
1762 &video_cooling_ops);
1763 if (IS_ERR(device->cooling_dev)) {
1764 /*
1765 * Set cooling_dev to NULL so we don't crash trying to free it.
1766 * Also, why the hell we are returning early and not attempt to
1767 * register video output if cooling device registration failed?
1768 * -- dtor
1769 */
1770 device->cooling_dev = NULL;
1771 return;
1772 }
1773
1774 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1775 device->cooling_dev->id);
1776 result = sysfs_create_link(&device->dev->dev.kobj,
1777 &device->cooling_dev->device.kobj,
1778 "thermal_cooling");
1779 if (result)
1780 pr_info("sysfs link creation failed\n");
1781
1782 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1783 &device->dev->dev.kobj, "device");
1784 if (result)
1785 pr_info("Reverse sysfs link creation failed\n");
1786 }
1787
acpi_video_run_bcl_for_osi(struct acpi_video_bus * video)1788 static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1789 {
1790 struct acpi_video_device *dev;
1791 union acpi_object *levels;
1792
1793 mutex_lock(&video->device_list_lock);
1794 list_for_each_entry(dev, &video->video_device_list, entry) {
1795 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
1796 kfree(levels);
1797 }
1798 mutex_unlock(&video->device_list_lock);
1799 }
1800
acpi_video_should_register_backlight(struct acpi_video_device * dev)1801 static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1802 {
1803 /*
1804 * Do not create backlight device for video output
1805 * device that is not in the enumerated list.
1806 */
1807 if (!acpi_video_device_in_dod(dev)) {
1808 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1809 return false;
1810 }
1811
1812 if (only_lcd)
1813 return dev->flags.lcd;
1814 return true;
1815 }
1816
acpi_video_bus_register_backlight(struct acpi_video_bus * video)1817 static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1818 {
1819 struct acpi_video_device *dev;
1820
1821 if (video->backlight_registered)
1822 return 0;
1823
1824 if (acpi_video_get_backlight_type() != acpi_backlight_video)
1825 return 0;
1826
1827 mutex_lock(&video->device_list_lock);
1828 list_for_each_entry(dev, &video->video_device_list, entry) {
1829 if (acpi_video_should_register_backlight(dev))
1830 acpi_video_dev_register_backlight(dev);
1831 }
1832 mutex_unlock(&video->device_list_lock);
1833
1834 video->backlight_registered = true;
1835
1836 video->pm_nb.notifier_call = acpi_video_resume;
1837 video->pm_nb.priority = 0;
1838 return register_pm_notifier(&video->pm_nb);
1839 }
1840
acpi_video_dev_unregister_backlight(struct acpi_video_device * device)1841 static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1842 {
1843 if (device->backlight) {
1844 backlight_device_unregister(device->backlight);
1845 device->backlight = NULL;
1846 }
1847 if (device->brightness) {
1848 kfree(device->brightness->levels);
1849 kfree(device->brightness);
1850 device->brightness = NULL;
1851 }
1852 if (device->cooling_dev) {
1853 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1854 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1855 thermal_cooling_device_unregister(device->cooling_dev);
1856 device->cooling_dev = NULL;
1857 }
1858 }
1859
acpi_video_bus_unregister_backlight(struct acpi_video_bus * video)1860 static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1861 {
1862 struct acpi_video_device *dev;
1863 int error;
1864
1865 if (!video->backlight_registered)
1866 return 0;
1867
1868 error = unregister_pm_notifier(&video->pm_nb);
1869
1870 mutex_lock(&video->device_list_lock);
1871 list_for_each_entry(dev, &video->video_device_list, entry)
1872 acpi_video_dev_unregister_backlight(dev);
1873 mutex_unlock(&video->device_list_lock);
1874
1875 video->backlight_registered = false;
1876
1877 return error;
1878 }
1879
acpi_video_dev_add_notify_handler(struct acpi_video_device * device)1880 static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1881 {
1882 acpi_status status;
1883 struct acpi_device *adev = device->dev;
1884
1885 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1886 acpi_video_device_notify, device);
1887 if (ACPI_FAILURE(status))
1888 dev_err(&adev->dev, "Error installing notify handler\n");
1889 else
1890 device->flags.notify = 1;
1891 }
1892
acpi_video_bus_add_notify_handler(struct acpi_video_bus * video)1893 static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1894 {
1895 struct input_dev *input;
1896 struct acpi_video_device *dev;
1897 int error;
1898
1899 video->input = input = input_allocate_device();
1900 if (!input) {
1901 error = -ENOMEM;
1902 goto out;
1903 }
1904
1905 error = acpi_video_bus_start_devices(video);
1906 if (error)
1907 goto err_free_input;
1908
1909 snprintf(video->phys, sizeof(video->phys),
1910 "%s/video/input0", acpi_device_hid(video->device));
1911
1912 input->name = acpi_device_name(video->device);
1913 input->phys = video->phys;
1914 input->id.bustype = BUS_HOST;
1915 input->id.product = 0x06;
1916 input->dev.parent = &video->device->dev;
1917 input->evbit[0] = BIT(EV_KEY);
1918 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1919 set_bit(KEY_VIDEO_NEXT, input->keybit);
1920 set_bit(KEY_VIDEO_PREV, input->keybit);
1921 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1922 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1923 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1924 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1925 set_bit(KEY_DISPLAY_OFF, input->keybit);
1926
1927 error = input_register_device(input);
1928 if (error)
1929 goto err_stop_dev;
1930
1931 mutex_lock(&video->device_list_lock);
1932 list_for_each_entry(dev, &video->video_device_list, entry)
1933 acpi_video_dev_add_notify_handler(dev);
1934 mutex_unlock(&video->device_list_lock);
1935
1936 return 0;
1937
1938 err_stop_dev:
1939 acpi_video_bus_stop_devices(video);
1940 err_free_input:
1941 input_free_device(input);
1942 video->input = NULL;
1943 out:
1944 return error;
1945 }
1946
acpi_video_dev_remove_notify_handler(struct acpi_video_device * dev)1947 static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1948 {
1949 if (dev->flags.notify) {
1950 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1951 acpi_video_device_notify);
1952 dev->flags.notify = 0;
1953 }
1954 }
1955
acpi_video_bus_remove_notify_handler(struct acpi_video_bus * video)1956 static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1957 {
1958 struct acpi_video_device *dev;
1959
1960 mutex_lock(&video->device_list_lock);
1961 list_for_each_entry(dev, &video->video_device_list, entry)
1962 acpi_video_dev_remove_notify_handler(dev);
1963 mutex_unlock(&video->device_list_lock);
1964
1965 acpi_video_bus_stop_devices(video);
1966 input_unregister_device(video->input);
1967 video->input = NULL;
1968 }
1969
acpi_video_bus_put_devices(struct acpi_video_bus * video)1970 static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1971 {
1972 struct acpi_video_device *dev, *next;
1973
1974 mutex_lock(&video->device_list_lock);
1975 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1976 list_del(&dev->entry);
1977 kfree(dev);
1978 }
1979 mutex_unlock(&video->device_list_lock);
1980
1981 return 0;
1982 }
1983
1984 static int instance;
1985
acpi_video_bus_add(struct acpi_device * device)1986 static int acpi_video_bus_add(struct acpi_device *device)
1987 {
1988 struct acpi_video_bus *video;
1989 bool auto_detect;
1990 int error;
1991 acpi_status status;
1992
1993 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1994 acpi_dev_parent(device)->handle, 1,
1995 acpi_video_bus_match, NULL,
1996 device, NULL);
1997 if (status == AE_ALREADY_EXISTS) {
1998 pr_info(FW_BUG
1999 "Duplicate ACPI video bus devices for the"
2000 " same VGA controller, please try module "
2001 "parameter \"video.allow_duplicates=1\""
2002 "if the current driver doesn't work.\n");
2003 if (!allow_duplicates)
2004 return -ENODEV;
2005 }
2006
2007 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
2008 if (!video)
2009 return -ENOMEM;
2010
2011 /* a hack to fix the duplicate name "VID" problem on T61 */
2012 if (!strcmp(device->pnp.bus_id, "VID")) {
2013 if (instance)
2014 device->pnp.bus_id[3] = '0' + instance;
2015 instance++;
2016 }
2017 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2018 if (!strcmp(device->pnp.bus_id, "VGA")) {
2019 if (instance)
2020 device->pnp.bus_id[3] = '0' + instance;
2021 instance++;
2022 }
2023
2024 video->device = device;
2025 strscpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2026 strscpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
2027 device->driver_data = video;
2028
2029 acpi_video_bus_find_cap(video);
2030 error = acpi_video_bus_check(video);
2031 if (error)
2032 goto err_free_video;
2033
2034 mutex_init(&video->device_list_lock);
2035 INIT_LIST_HEAD(&video->video_device_list);
2036
2037 error = acpi_video_bus_get_devices(video, device);
2038 if (error)
2039 goto err_put_video;
2040
2041 /*
2042 * HP ZBook Fury 16 G10 requires ACPI video's child devices have _PS0
2043 * evaluated to have functional panel brightness control.
2044 */
2045 acpi_device_fix_up_power_children(device);
2046
2047 pr_info("%s [%s] (multi-head: %s rom: %s post: %s)\n",
2048 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2049 video->flags.multihead ? "yes" : "no",
2050 video->flags.rom ? "yes" : "no",
2051 video->flags.post ? "yes" : "no");
2052 mutex_lock(&video_list_lock);
2053 list_add_tail(&video->entry, &video_bus_head);
2054 mutex_unlock(&video_list_lock);
2055
2056 /*
2057 * If backlight-type auto-detection is used then a native backlight may
2058 * show up later and this may change the result from video to native.
2059 * Therefor normally the userspace visible /sys/class/backlight device
2060 * gets registered separately by the GPU driver calling
2061 * acpi_video_register_backlight() when an internal panel is detected.
2062 * Register the backlight now when not using auto-detection, so that
2063 * when the kernel cmdline or DMI-quirks are used the backlight will
2064 * get registered even if acpi_video_register_backlight() is not called.
2065 */
2066 acpi_video_run_bcl_for_osi(video);
2067 if (__acpi_video_get_backlight_type(false, &auto_detect) == acpi_backlight_video &&
2068 !auto_detect)
2069 acpi_video_bus_register_backlight(video);
2070
2071 error = acpi_video_bus_add_notify_handler(video);
2072 if (error)
2073 goto err_del;
2074
2075 error = acpi_dev_install_notify_handler(device, ACPI_DEVICE_NOTIFY,
2076 acpi_video_bus_notify, device);
2077 if (error)
2078 goto err_remove;
2079
2080 return 0;
2081
2082 err_remove:
2083 acpi_video_bus_remove_notify_handler(video);
2084 err_del:
2085 mutex_lock(&video_list_lock);
2086 list_del(&video->entry);
2087 mutex_unlock(&video_list_lock);
2088 acpi_video_bus_unregister_backlight(video);
2089 err_put_video:
2090 acpi_video_bus_put_devices(video);
2091 kfree(video->attached_array);
2092 err_free_video:
2093 kfree(video);
2094 device->driver_data = NULL;
2095
2096 return error;
2097 }
2098
acpi_video_bus_remove(struct acpi_device * device)2099 static void acpi_video_bus_remove(struct acpi_device *device)
2100 {
2101 struct acpi_video_bus *video = NULL;
2102
2103
2104 if (!device || !acpi_driver_data(device))
2105 return;
2106
2107 video = acpi_driver_data(device);
2108
2109 acpi_dev_remove_notify_handler(device, ACPI_DEVICE_NOTIFY,
2110 acpi_video_bus_notify);
2111
2112 mutex_lock(&video_list_lock);
2113 list_del(&video->entry);
2114 mutex_unlock(&video_list_lock);
2115
2116 acpi_video_bus_remove_notify_handler(video);
2117 acpi_video_bus_unregister_backlight(video);
2118 acpi_video_bus_put_devices(video);
2119
2120 kfree(video->attached_array);
2121 kfree(video);
2122 }
2123
is_i740(struct pci_dev * dev)2124 static int __init is_i740(struct pci_dev *dev)
2125 {
2126 if (dev->device == 0x00D1)
2127 return 1;
2128 if (dev->device == 0x7000)
2129 return 1;
2130 return 0;
2131 }
2132
intel_opregion_present(void)2133 static int __init intel_opregion_present(void)
2134 {
2135 int opregion = 0;
2136 struct pci_dev *dev = NULL;
2137 u32 address;
2138
2139 for_each_pci_dev(dev) {
2140 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2141 continue;
2142 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2143 continue;
2144 /* We don't want to poke around undefined i740 registers */
2145 if (is_i740(dev))
2146 continue;
2147 pci_read_config_dword(dev, 0xfc, &address);
2148 if (!address)
2149 continue;
2150 opregion = 1;
2151 }
2152 return opregion;
2153 }
2154
acpi_video_register(void)2155 int acpi_video_register(void)
2156 {
2157 int ret = 0;
2158
2159 mutex_lock(®ister_count_mutex);
2160 if (register_count) {
2161 /*
2162 * if the function of acpi_video_register is already called,
2163 * don't register the acpi_video_bus again and return no error.
2164 */
2165 goto leave;
2166 }
2167
2168 dmi_check_system(video_dmi_table);
2169
2170 ret = acpi_bus_register_driver(&acpi_video_bus);
2171 if (ret)
2172 goto leave;
2173
2174 /*
2175 * When the acpi_video_bus is loaded successfully, increase
2176 * the counter reference.
2177 */
2178 register_count = 1;
2179
2180 leave:
2181 mutex_unlock(®ister_count_mutex);
2182 return ret;
2183 }
2184 EXPORT_SYMBOL(acpi_video_register);
2185
acpi_video_unregister(void)2186 void acpi_video_unregister(void)
2187 {
2188 mutex_lock(®ister_count_mutex);
2189 if (register_count) {
2190 acpi_bus_unregister_driver(&acpi_video_bus);
2191 register_count = 0;
2192 may_report_brightness_keys = false;
2193 }
2194 mutex_unlock(®ister_count_mutex);
2195 }
2196 EXPORT_SYMBOL(acpi_video_unregister);
2197
acpi_video_register_backlight(void)2198 void acpi_video_register_backlight(void)
2199 {
2200 struct acpi_video_bus *video;
2201
2202 mutex_lock(&video_list_lock);
2203 list_for_each_entry(video, &video_bus_head, entry)
2204 acpi_video_bus_register_backlight(video);
2205 mutex_unlock(&video_list_lock);
2206 }
2207 EXPORT_SYMBOL(acpi_video_register_backlight);
2208
acpi_video_handles_brightness_key_presses(void)2209 bool acpi_video_handles_brightness_key_presses(void)
2210 {
2211 return may_report_brightness_keys &&
2212 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
2213 }
2214 EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2215
2216 /*
2217 * This is kind of nasty. Hardware using Intel chipsets may require
2218 * the video opregion code to be run first in order to initialise
2219 * state before any ACPI video calls are made. To handle this we defer
2220 * registration of the video class until the opregion code has run.
2221 */
2222
acpi_video_init(void)2223 static int __init acpi_video_init(void)
2224 {
2225 /*
2226 * Let the module load even if ACPI is disabled (e.g. due to
2227 * a broken BIOS) so that i915.ko can still be loaded on such
2228 * old systems without an AcpiOpRegion.
2229 *
2230 * acpi_video_register() will report -ENODEV later as well due
2231 * to acpi_disabled when i915.ko tries to register itself afterwards.
2232 */
2233 if (acpi_disabled)
2234 return 0;
2235
2236 if (intel_opregion_present())
2237 return 0;
2238
2239 return acpi_video_register();
2240 }
2241
acpi_video_exit(void)2242 static void __exit acpi_video_exit(void)
2243 {
2244 acpi_video_unregister();
2245 }
2246
2247 module_init(acpi_video_init);
2248 module_exit(acpi_video_exit);
2249