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