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