2 * video.c - ACPI Video Driver
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org>
6 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/init.h>
30 #include <linux/types.h>
31 #include <linux/list.h>
32 #include <linux/mutex.h>
33 #include <linux/input.h>
34 #include <linux/backlight.h>
35 #include <linux/thermal.h>
36 #include <linux/sort.h>
37 #include <linux/pci.h>
38 #include <linux/pci_ids.h>
39 #include <linux/slab.h>
40 #include <linux/dmi.h>
41 #include <linux/suspend.h>
42 #include <linux/acpi.h>
43 #include <acpi/video.h>
44 #include <asm/uaccess.h>
48 #define ACPI_VIDEO_BUS_NAME "Video Bus"
49 #define ACPI_VIDEO_DEVICE_NAME "Video Device"
50 #define ACPI_VIDEO_NOTIFY_SWITCH 0x80
51 #define ACPI_VIDEO_NOTIFY_PROBE 0x81
52 #define ACPI_VIDEO_NOTIFY_CYCLE 0x82
53 #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
54 #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
56 #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
57 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
58 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
59 #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
60 #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
62 #define MAX_NAME_LEN 20
64 #define _COMPONENT ACPI_VIDEO_COMPONENT
65 ACPI_MODULE_NAME("video");
67 MODULE_AUTHOR("Bruno Ducrot");
68 MODULE_DESCRIPTION("ACPI Video Driver");
69 MODULE_LICENSE("GPL");
71 static bool brightness_switch_enabled
= 1;
72 module_param(brightness_switch_enabled
, bool, 0644);
75 * By default, we don't allow duplicate ACPI video bus devices
76 * under the same VGA controller
78 static bool allow_duplicates
;
79 module_param(allow_duplicates
, bool, 0644);
82 * For Windows 8 systems: used to decide if video module
83 * should skip registering backlight interface of its own.
85 static int use_native_backlight_param
= -1;
86 module_param_named(use_native_backlight
, use_native_backlight_param
, int, 0444);
87 static bool use_native_backlight_dmi
= false;
89 static int register_count
;
90 static struct mutex video_list_lock
;
91 static struct list_head video_bus_head
;
92 static int acpi_video_bus_add(struct acpi_device
*device
);
93 static int acpi_video_bus_remove(struct acpi_device
*device
);
94 static void acpi_video_bus_notify(struct acpi_device
*device
, u32 event
);
96 static const struct acpi_device_id video_device_ids
[] = {
100 MODULE_DEVICE_TABLE(acpi
, video_device_ids
);
102 static struct acpi_driver acpi_video_bus
= {
104 .class = ACPI_VIDEO_CLASS
,
105 .ids
= video_device_ids
,
107 .add
= acpi_video_bus_add
,
108 .remove
= acpi_video_bus_remove
,
109 .notify
= acpi_video_bus_notify
,
113 struct acpi_video_bus_flags
{
114 u8 multihead
:1; /* can switch video heads */
115 u8 rom
:1; /* can retrieve a video rom */
116 u8 post
:1; /* can configure the head to */
120 struct acpi_video_bus_cap
{
121 u8 _DOS
:1; /* Enable/Disable output switching */
122 u8 _DOD
:1; /* Enumerate all devices attached to display adapter */
123 u8 _ROM
:1; /* Get ROM Data */
124 u8 _GPD
:1; /* Get POST Device */
125 u8 _SPD
:1; /* Set POST Device */
126 u8 _VPO
:1; /* Video POST Options */
130 struct acpi_video_device_attrib
{
131 u32 display_index
:4; /* A zero-based instance of the Display */
132 u32 display_port_attachment
:4; /* This field differentiates the display type */
133 u32 display_type
:4; /* Describe the specific type in use */
134 u32 vendor_specific
:4; /* Chipset Vendor Specific */
135 u32 bios_can_detect
:1; /* BIOS can detect the device */
136 u32 depend_on_vga
:1; /* Non-VGA output device whose power is related to
138 u32 pipe_id
:3; /* For VGA multiple-head devices. */
139 u32 reserved
:10; /* Must be 0 */
140 u32 device_id_scheme
:1; /* Device ID Scheme */
143 struct acpi_video_enumerated_device
{
146 struct acpi_video_device_attrib attrib
;
148 struct acpi_video_device
*bind_info
;
151 struct acpi_video_bus
{
152 struct acpi_device
*device
;
154 struct acpi_video_enumerated_device
*attached_array
;
156 struct acpi_video_bus_cap cap
;
157 struct acpi_video_bus_flags flags
;
158 struct list_head video_device_list
;
159 struct mutex device_list_lock
; /* protects video_device_list */
160 struct list_head entry
;
161 struct input_dev
*input
;
162 char phys
[32]; /* for input device */
163 struct notifier_block pm_nb
;
166 struct acpi_video_device_flags
{
177 struct acpi_video_device_cap
{
178 u8 _ADR
:1; /* Return the unique ID */
179 u8 _BCL
:1; /* Query list of brightness control levels supported */
180 u8 _BCM
:1; /* Set the brightness level */
181 u8 _BQC
:1; /* Get current brightness level */
182 u8 _BCQ
:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
183 u8 _DDC
:1; /* Return the EDID for this device */
186 struct acpi_video_brightness_flags
{
187 u8 _BCL_no_ac_battery_levels
:1; /* no AC/Battery levels in _BCL */
188 u8 _BCL_reversed
:1; /* _BCL package is in a reversed order */
189 u8 _BQC_use_index
:1; /* _BQC returns an index value */
192 struct acpi_video_device_brightness
{
196 struct acpi_video_brightness_flags flags
;
199 struct acpi_video_device
{
200 unsigned long device_id
;
201 struct acpi_video_device_flags flags
;
202 struct acpi_video_device_cap cap
;
203 struct list_head entry
;
204 struct acpi_video_bus
*video
;
205 struct acpi_device
*dev
;
206 struct acpi_video_device_brightness
*brightness
;
207 struct backlight_device
*backlight
;
208 struct thermal_cooling_device
*cooling_dev
;
211 static const char device_decode
[][30] = {
212 "motherboard VGA device",
218 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
);
219 static void acpi_video_device_rebind(struct acpi_video_bus
*video
);
220 static void acpi_video_device_bind(struct acpi_video_bus
*video
,
221 struct acpi_video_device
*device
);
222 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
);
223 static int acpi_video_device_lcd_set_level(struct acpi_video_device
*device
,
225 static int acpi_video_device_lcd_get_level_current(
226 struct acpi_video_device
*device
,
227 unsigned long long *level
, bool raw
);
228 static int acpi_video_get_next_level(struct acpi_video_device
*device
,
229 u32 level_current
, u32 event
);
230 static int acpi_video_switch_brightness(struct acpi_video_device
*device
,
233 static bool acpi_video_use_native_backlight(void)
235 if (use_native_backlight_param
!= -1)
236 return use_native_backlight_param
;
238 return use_native_backlight_dmi
;
241 static bool acpi_video_verify_backlight_support(void)
243 if (acpi_osi_is_win8() && acpi_video_use_native_backlight() &&
244 backlight_device_registered(BACKLIGHT_RAW
))
246 return acpi_video_backlight_support();
249 /* backlight device sysfs support */
250 static int acpi_video_get_brightness(struct backlight_device
*bd
)
252 unsigned long long cur_level
;
254 struct acpi_video_device
*vd
= bl_get_data(bd
);
256 if (acpi_video_device_lcd_get_level_current(vd
, &cur_level
, false))
258 for (i
= 2; i
< vd
->brightness
->count
; i
++) {
259 if (vd
->brightness
->levels
[i
] == cur_level
)
261 * The first two entries are special - see page 575
262 * of the ACPI spec 3.0
269 static int acpi_video_set_brightness(struct backlight_device
*bd
)
271 int request_level
= bd
->props
.brightness
+ 2;
272 struct acpi_video_device
*vd
= bl_get_data(bd
);
274 return acpi_video_device_lcd_set_level(vd
,
275 vd
->brightness
->levels
[request_level
]);
278 static const struct backlight_ops acpi_backlight_ops
= {
279 .get_brightness
= acpi_video_get_brightness
,
280 .update_status
= acpi_video_set_brightness
,
283 /* thermal cooling device callbacks */
284 static int video_get_max_state(struct thermal_cooling_device
*cooling_dev
, unsigned
287 struct acpi_device
*device
= cooling_dev
->devdata
;
288 struct acpi_video_device
*video
= acpi_driver_data(device
);
290 *state
= video
->brightness
->count
- 3;
294 static int video_get_cur_state(struct thermal_cooling_device
*cooling_dev
, unsigned
297 struct acpi_device
*device
= cooling_dev
->devdata
;
298 struct acpi_video_device
*video
= acpi_driver_data(device
);
299 unsigned long long level
;
302 if (acpi_video_device_lcd_get_level_current(video
, &level
, false))
304 for (offset
= 2; offset
< video
->brightness
->count
; offset
++)
305 if (level
== video
->brightness
->levels
[offset
]) {
306 *state
= video
->brightness
->count
- offset
- 1;
314 video_set_cur_state(struct thermal_cooling_device
*cooling_dev
, unsigned long state
)
316 struct acpi_device
*device
= cooling_dev
->devdata
;
317 struct acpi_video_device
*video
= acpi_driver_data(device
);
320 if (state
>= video
->brightness
->count
- 2)
323 state
= video
->brightness
->count
- state
;
324 level
= video
->brightness
->levels
[state
- 1];
325 return acpi_video_device_lcd_set_level(video
, level
);
328 static const struct thermal_cooling_device_ops video_cooling_ops
= {
329 .get_max_state
= video_get_max_state
,
330 .get_cur_state
= video_get_cur_state
,
331 .set_cur_state
= video_set_cur_state
,
335 * --------------------------------------------------------------------------
337 * --------------------------------------------------------------------------
341 acpi_video_device_lcd_query_levels(struct acpi_video_device
*device
,
342 union acpi_object
**levels
)
345 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
346 union acpi_object
*obj
;
351 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCL", NULL
, &buffer
);
352 if (!ACPI_SUCCESS(status
))
354 obj
= (union acpi_object
*)buffer
.pointer
;
355 if (!obj
|| (obj
->type
!= ACPI_TYPE_PACKAGE
)) {
356 printk(KERN_ERR PREFIX
"Invalid _BCL data\n");
366 kfree(buffer
.pointer
);
372 acpi_video_device_lcd_set_level(struct acpi_video_device
*device
, int level
)
377 status
= acpi_execute_simple_method(device
->dev
->handle
,
379 if (ACPI_FAILURE(status
)) {
380 ACPI_ERROR((AE_INFO
, "Evaluating _BCM failed"));
384 device
->brightness
->curr
= level
;
385 for (state
= 2; state
< device
->brightness
->count
; state
++)
386 if (level
== device
->brightness
->levels
[state
]) {
387 if (device
->backlight
)
388 device
->backlight
->props
.brightness
= state
- 2;
392 ACPI_ERROR((AE_INFO
, "Current brightness invalid"));
397 * For some buggy _BQC methods, we need to add a constant value to
398 * the _BQC return value to get the actual current brightness level
401 static int bqc_offset_aml_bug_workaround
;
402 static int __init
video_set_bqc_offset(const struct dmi_system_id
*d
)
404 bqc_offset_aml_bug_workaround
= 9;
408 static int __init
video_set_use_native_backlight(const struct dmi_system_id
*d
)
410 use_native_backlight_dmi
= true;
414 static struct dmi_system_id video_dmi_table
[] __initdata
= {
416 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
419 .callback
= video_set_bqc_offset
,
420 .ident
= "Acer Aspire 5720",
422 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
423 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5720"),
427 .callback
= video_set_bqc_offset
,
428 .ident
= "Acer Aspire 5710Z",
430 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
431 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5710Z"),
435 .callback
= video_set_bqc_offset
,
436 .ident
= "eMachines E510",
438 DMI_MATCH(DMI_BOARD_VENDOR
, "EMACHINES"),
439 DMI_MATCH(DMI_PRODUCT_NAME
, "eMachines E510"),
443 .callback
= video_set_bqc_offset
,
444 .ident
= "Acer Aspire 5315",
446 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
447 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5315"),
451 .callback
= video_set_bqc_offset
,
452 .ident
= "Acer Aspire 7720",
454 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
455 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 7720"),
459 .callback
= video_set_use_native_backlight
,
460 .ident
= "ThinkPad T430s",
462 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
463 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad T430s"),
467 .callback
= video_set_use_native_backlight
,
468 .ident
= "ThinkPad X230",
470 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
471 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad X230"),
475 .callback
= video_set_use_native_backlight
,
476 .ident
= "ThinkPad X1 Carbon",
478 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
479 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad X1 Carbon"),
483 .callback
= video_set_use_native_backlight
,
484 .ident
= "Lenovo Yoga 13",
486 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
487 DMI_MATCH(DMI_PRODUCT_VERSION
, "Lenovo IdeaPad Yoga 13"),
491 .callback
= video_set_use_native_backlight
,
492 .ident
= "Thinkpad Helix",
494 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
495 DMI_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad Helix"),
499 .callback
= video_set_use_native_backlight
,
500 .ident
= "Dell Inspiron 7520",
502 DMI_MATCH(DMI_SYS_VENDOR
, "Dell Inc."),
503 DMI_MATCH(DMI_PRODUCT_VERSION
, "Inspiron 7520"),
507 .callback
= video_set_use_native_backlight
,
508 .ident
= "Acer Aspire 5733Z",
510 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
511 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5733Z"),
515 .callback
= video_set_use_native_backlight
,
516 .ident
= "Acer Aspire V5-431",
518 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
519 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire V5-431"),
523 .callback
= video_set_use_native_backlight
,
524 .ident
= "HP ProBook 4340s",
526 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
527 DMI_MATCH(DMI_PRODUCT_VERSION
, "HP ProBook 4340s"),
531 .callback
= video_set_use_native_backlight
,
532 .ident
= "HP ProBook 2013 models",
534 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
535 DMI_MATCH(DMI_PRODUCT_NAME
, "HP ProBook "),
536 DMI_MATCH(DMI_PRODUCT_NAME
, " G1"),
540 .callback
= video_set_use_native_backlight
,
541 .ident
= "HP EliteBook 2013 models",
543 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
544 DMI_MATCH(DMI_PRODUCT_NAME
, "HP EliteBook "),
545 DMI_MATCH(DMI_PRODUCT_NAME
, " G1"),
549 .callback
= video_set_use_native_backlight
,
550 .ident
= "HP ZBook 14",
552 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
553 DMI_MATCH(DMI_PRODUCT_NAME
, "HP ZBook 14"),
557 .callback
= video_set_use_native_backlight
,
558 .ident
= "HP ZBook 15",
560 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
561 DMI_MATCH(DMI_PRODUCT_NAME
, "HP ZBook 15"),
565 .callback
= video_set_use_native_backlight
,
566 .ident
= "HP ZBook 17",
568 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
569 DMI_MATCH(DMI_PRODUCT_NAME
, "HP ZBook 17"),
573 .callback
= video_set_use_native_backlight
,
574 .ident
= "HP EliteBook 8780w",
576 DMI_MATCH(DMI_SYS_VENDOR
, "Hewlett-Packard"),
577 DMI_MATCH(DMI_PRODUCT_NAME
, "HP EliteBook 8780w"),
583 static unsigned long long
584 acpi_video_bqc_value_to_level(struct acpi_video_device
*device
,
585 unsigned long long bqc_value
)
587 unsigned long long level
;
589 if (device
->brightness
->flags
._BQC_use_index
) {
591 * _BQC returns an index that doesn't account for
592 * the first 2 items with special meaning, so we need
593 * to compensate for that by offsetting ourselves
595 if (device
->brightness
->flags
._BCL_reversed
)
596 bqc_value
= device
->brightness
->count
- 3 - bqc_value
;
598 level
= device
->brightness
->levels
[bqc_value
+ 2];
603 level
+= bqc_offset_aml_bug_workaround
;
609 acpi_video_device_lcd_get_level_current(struct acpi_video_device
*device
,
610 unsigned long long *level
, bool raw
)
612 acpi_status status
= AE_OK
;
615 if (device
->cap
._BQC
|| device
->cap
._BCQ
) {
616 char *buf
= device
->cap
._BQC
? "_BQC" : "_BCQ";
618 status
= acpi_evaluate_integer(device
->dev
->handle
, buf
,
620 if (ACPI_SUCCESS(status
)) {
623 * Caller has indicated he wants the raw
624 * value returned by _BQC, so don't furtherly
625 * mess with the value.
630 *level
= acpi_video_bqc_value_to_level(device
, *level
);
632 for (i
= 2; i
< device
->brightness
->count
; i
++)
633 if (device
->brightness
->levels
[i
] == *level
) {
634 device
->brightness
->curr
= *level
;
638 * BQC returned an invalid level.
641 ACPI_WARNING((AE_INFO
,
642 "%s returned an invalid level",
644 device
->cap
._BQC
= device
->cap
._BCQ
= 0;
648 * should we return an error or ignore this failure?
649 * dev->brightness->curr is a cached value which stores
650 * the correct current backlight level in most cases.
651 * ACPI video backlight still works w/ buggy _BQC.
652 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
654 ACPI_WARNING((AE_INFO
, "Evaluating %s failed", buf
));
655 device
->cap
._BQC
= device
->cap
._BCQ
= 0;
659 *level
= device
->brightness
->curr
;
664 acpi_video_device_EDID(struct acpi_video_device
*device
,
665 union acpi_object
**edid
, ssize_t length
)
668 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
669 union acpi_object
*obj
;
670 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
671 struct acpi_object_list args
= { 1, &arg0
};
679 arg0
.integer
.value
= 1;
680 else if (length
== 256)
681 arg0
.integer
.value
= 2;
685 status
= acpi_evaluate_object(device
->dev
->handle
, "_DDC", &args
, &buffer
);
686 if (ACPI_FAILURE(status
))
689 obj
= buffer
.pointer
;
691 if (obj
&& obj
->type
== ACPI_TYPE_BUFFER
)
694 printk(KERN_ERR PREFIX
"Invalid _DDC data\n");
706 * video : video bus device pointer
708 * 0. The system BIOS should NOT automatically switch(toggle)
709 * the active display output.
710 * 1. The system BIOS should automatically switch (toggle) the
711 * active display output. No switch event.
712 * 2. The _DGS value should be locked.
713 * 3. The system BIOS should not automatically switch (toggle) the
714 * active display output, but instead generate the display switch
717 * 0. The system BIOS should automatically control the brightness level
718 * of the LCD when the power changes from AC to DC
719 * 1. The system BIOS should NOT automatically control the brightness
720 * level of the LCD when the power changes from AC to DC.
726 acpi_video_bus_DOS(struct acpi_video_bus
*video
, int bios_flag
, int lcd_flag
)
730 if (!video
->cap
._DOS
)
733 if (bios_flag
< 0 || bios_flag
> 3 || lcd_flag
< 0 || lcd_flag
> 1)
735 video
->dos_setting
= (lcd_flag
<< 2) | bios_flag
;
736 status
= acpi_execute_simple_method(video
->device
->handle
, "_DOS",
737 (lcd_flag
<< 2) | bios_flag
);
738 if (ACPI_FAILURE(status
))
745 * Simple comparison function used to sort backlight levels.
749 acpi_video_cmp_level(const void *a
, const void *b
)
751 return *(int *)a
- *(int *)b
;
755 * Decides if _BQC/_BCQ for this system is usable
757 * We do this by changing the level first and then read out the current
758 * brightness level, if the value does not match, find out if it is using
759 * index. If not, clear the _BQC/_BCQ capability.
761 static int acpi_video_bqc_quirk(struct acpi_video_device
*device
,
762 int max_level
, int current_level
)
764 struct acpi_video_device_brightness
*br
= device
->brightness
;
766 unsigned long long level
;
769 /* don't mess with existing known broken systems */
770 if (bqc_offset_aml_bug_workaround
)
774 * Some systems always report current brightness level as maximum
775 * through _BQC, we need to test another value for them.
777 test_level
= current_level
== max_level
? br
->levels
[3] : max_level
;
779 result
= acpi_video_device_lcd_set_level(device
, test_level
);
783 result
= acpi_video_device_lcd_get_level_current(device
, &level
, true);
787 if (level
!= test_level
) {
788 /* buggy _BQC found, need to find out if it uses index */
789 if (level
< br
->count
) {
790 if (br
->flags
._BCL_reversed
)
791 level
= br
->count
- 3 - level
;
792 if (br
->levels
[level
+ 2] == test_level
)
793 br
->flags
._BQC_use_index
= 1;
796 if (!br
->flags
._BQC_use_index
)
797 device
->cap
._BQC
= device
->cap
._BCQ
= 0;
806 * device : video output device (LCD, CRT, ..)
809 * Maximum brightness level
811 * Allocate and initialize device->brightness.
815 acpi_video_init_brightness(struct acpi_video_device
*device
)
817 union acpi_object
*obj
= NULL
;
818 int i
, max_level
= 0, count
= 0, level_ac_battery
= 0;
819 unsigned long long level
, level_old
;
820 union acpi_object
*o
;
821 struct acpi_video_device_brightness
*br
= NULL
;
822 int result
= -EINVAL
;
825 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device
, &obj
))) {
826 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Could not query available "
827 "LCD brightness level\n"));
831 if (obj
->package
.count
< 2)
834 br
= kzalloc(sizeof(*br
), GFP_KERNEL
);
836 printk(KERN_ERR
"can't allocate memory\n");
841 br
->levels
= kmalloc((obj
->package
.count
+ 2) * sizeof *(br
->levels
),
848 for (i
= 0; i
< obj
->package
.count
; i
++) {
849 o
= (union acpi_object
*)&obj
->package
.elements
[i
];
850 if (o
->type
!= ACPI_TYPE_INTEGER
) {
851 printk(KERN_ERR PREFIX
"Invalid data\n");
854 value
= (u32
) o
->integer
.value
;
855 /* Skip duplicate entries */
856 if (count
> 2 && br
->levels
[count
- 1] == value
)
859 br
->levels
[count
] = value
;
861 if (br
->levels
[count
] > max_level
)
862 max_level
= br
->levels
[count
];
867 * some buggy BIOS don't export the levels
868 * when machine is on AC/Battery in _BCL package.
869 * In this case, the first two elements in _BCL packages
870 * are also supported brightness levels that OS should take care of.
872 for (i
= 2; i
< count
; i
++) {
873 if (br
->levels
[i
] == br
->levels
[0])
875 if (br
->levels
[i
] == br
->levels
[1])
879 if (level_ac_battery
< 2) {
880 level_ac_battery
= 2 - level_ac_battery
;
881 br
->flags
._BCL_no_ac_battery_levels
= 1;
882 for (i
= (count
- 1 + level_ac_battery
); i
>= 2; i
--)
883 br
->levels
[i
] = br
->levels
[i
- level_ac_battery
];
884 count
+= level_ac_battery
;
885 } else if (level_ac_battery
> 2)
886 ACPI_ERROR((AE_INFO
, "Too many duplicates in _BCL package"));
888 /* Check if the _BCL package is in a reversed order */
889 if (max_level
== br
->levels
[2]) {
890 br
->flags
._BCL_reversed
= 1;
891 sort(&br
->levels
[2], count
- 2, sizeof(br
->levels
[2]),
892 acpi_video_cmp_level
, NULL
);
893 } else if (max_level
!= br
->levels
[count
- 1])
895 "Found unordered _BCL package"));
898 device
->brightness
= br
;
900 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
901 br
->curr
= level
= max_level
;
903 if (!device
->cap
._BQC
)
906 result
= acpi_video_device_lcd_get_level_current(device
,
909 goto out_free_levels
;
911 result
= acpi_video_bqc_quirk(device
, max_level
, level_old
);
913 goto out_free_levels
;
915 * cap._BQC may get cleared due to _BQC is found to be broken
916 * in acpi_video_bqc_quirk, so check again here.
918 if (!device
->cap
._BQC
)
921 level
= acpi_video_bqc_value_to_level(device
, level_old
);
923 * On some buggy laptops, _BQC returns an uninitialized
924 * value when invoked for the first time, i.e.
925 * level_old is invalid (no matter whether it's a level
926 * or an index). Set the backlight to max_level in this case.
928 for (i
= 2; i
< br
->count
; i
++)
929 if (level
== br
->levels
[i
])
931 if (i
== br
->count
|| !level
)
935 result
= acpi_video_device_lcd_set_level(device
, level
);
937 goto out_free_levels
;
939 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
940 "found %d brightness levels\n", count
- 2));
949 device
->brightness
= NULL
;
956 * device : video output device (LCD, CRT, ..)
961 * Find out all required AML methods defined under the output
965 static void acpi_video_device_find_cap(struct acpi_video_device
*device
)
967 if (acpi_has_method(device
->dev
->handle
, "_ADR"))
968 device
->cap
._ADR
= 1;
969 if (acpi_has_method(device
->dev
->handle
, "_BCL"))
970 device
->cap
._BCL
= 1;
971 if (acpi_has_method(device
->dev
->handle
, "_BCM"))
972 device
->cap
._BCM
= 1;
973 if (acpi_has_method(device
->dev
->handle
, "_BQC")) {
974 device
->cap
._BQC
= 1;
975 } else if (acpi_has_method(device
->dev
->handle
, "_BCQ")) {
976 printk(KERN_WARNING FW_BUG
"_BCQ is used instead of _BQC\n");
977 device
->cap
._BCQ
= 1;
980 if (acpi_has_method(device
->dev
->handle
, "_DDC"))
981 device
->cap
._DDC
= 1;
986 * device : video output device (VGA)
991 * Find out all required AML methods defined under the video bus device.
994 static void acpi_video_bus_find_cap(struct acpi_video_bus
*video
)
996 if (acpi_has_method(video
->device
->handle
, "_DOS"))
998 if (acpi_has_method(video
->device
->handle
, "_DOD"))
1000 if (acpi_has_method(video
->device
->handle
, "_ROM"))
1001 video
->cap
._ROM
= 1;
1002 if (acpi_has_method(video
->device
->handle
, "_GPD"))
1003 video
->cap
._GPD
= 1;
1004 if (acpi_has_method(video
->device
->handle
, "_SPD"))
1005 video
->cap
._SPD
= 1;
1006 if (acpi_has_method(video
->device
->handle
, "_VPO"))
1007 video
->cap
._VPO
= 1;
1011 * Check whether the video bus device has required AML method to
1012 * support the desired features
1015 static int acpi_video_bus_check(struct acpi_video_bus
*video
)
1017 acpi_status status
= -ENOENT
;
1018 struct pci_dev
*dev
;
1023 dev
= acpi_get_pci_dev(video
->device
->handle
);
1029 * Since there is no HID, CID and so on for VGA driver, we have
1030 * to check well known required nodes.
1033 /* Does this device support video switching? */
1034 if (video
->cap
._DOS
|| video
->cap
._DOD
) {
1035 if (!video
->cap
._DOS
) {
1036 printk(KERN_WARNING FW_BUG
1037 "ACPI(%s) defines _DOD but not _DOS\n",
1038 acpi_device_bid(video
->device
));
1040 video
->flags
.multihead
= 1;
1044 /* Does this device support retrieving a video ROM? */
1045 if (video
->cap
._ROM
) {
1046 video
->flags
.rom
= 1;
1050 /* Does this device support configuring which video device to POST? */
1051 if (video
->cap
._GPD
&& video
->cap
._SPD
&& video
->cap
._VPO
) {
1052 video
->flags
.post
= 1;
1060 * --------------------------------------------------------------------------
1062 * --------------------------------------------------------------------------
1065 /* device interface */
1066 static struct acpi_video_device_attrib
*
1067 acpi_video_get_device_attr(struct acpi_video_bus
*video
, unsigned long device_id
)
1069 struct acpi_video_enumerated_device
*ids
;
1072 for (i
= 0; i
< video
->attached_count
; i
++) {
1073 ids
= &video
->attached_array
[i
];
1074 if ((ids
->value
.int_val
& 0xffff) == device_id
)
1075 return &ids
->value
.attrib
;
1082 acpi_video_get_device_type(struct acpi_video_bus
*video
,
1083 unsigned long device_id
)
1085 struct acpi_video_enumerated_device
*ids
;
1088 for (i
= 0; i
< video
->attached_count
; i
++) {
1089 ids
= &video
->attached_array
[i
];
1090 if ((ids
->value
.int_val
& 0xffff) == device_id
)
1091 return ids
->value
.int_val
;
1098 acpi_video_bus_get_one_device(struct acpi_device
*device
,
1099 struct acpi_video_bus
*video
)
1101 unsigned long long device_id
;
1102 int status
, device_type
;
1103 struct acpi_video_device
*data
;
1104 struct acpi_video_device_attrib
*attribute
;
1107 acpi_evaluate_integer(device
->handle
, "_ADR", NULL
, &device_id
);
1108 /* Some device omits _ADR, we skip them instead of fail */
1109 if (ACPI_FAILURE(status
))
1112 data
= kzalloc(sizeof(struct acpi_video_device
), GFP_KERNEL
);
1116 strcpy(acpi_device_name(device
), ACPI_VIDEO_DEVICE_NAME
);
1117 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
1118 device
->driver_data
= data
;
1120 data
->device_id
= device_id
;
1121 data
->video
= video
;
1124 attribute
= acpi_video_get_device_attr(video
, device_id
);
1126 if (attribute
&& attribute
->device_id_scheme
) {
1127 switch (attribute
->display_type
) {
1128 case ACPI_VIDEO_DISPLAY_CRT
:
1129 data
->flags
.crt
= 1;
1131 case ACPI_VIDEO_DISPLAY_TV
:
1132 data
->flags
.tvout
= 1;
1134 case ACPI_VIDEO_DISPLAY_DVI
:
1135 data
->flags
.dvi
= 1;
1137 case ACPI_VIDEO_DISPLAY_LCD
:
1138 data
->flags
.lcd
= 1;
1141 data
->flags
.unknown
= 1;
1144 if (attribute
->bios_can_detect
)
1145 data
->flags
.bios
= 1;
1147 /* Check for legacy IDs */
1148 device_type
= acpi_video_get_device_type(video
, device_id
);
1149 /* Ignore bits 16 and 18-20 */
1150 switch (device_type
& 0xffe2ffff) {
1151 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR
:
1152 data
->flags
.crt
= 1;
1154 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL
:
1155 data
->flags
.lcd
= 1;
1157 case ACPI_VIDEO_DISPLAY_LEGACY_TV
:
1158 data
->flags
.tvout
= 1;
1161 data
->flags
.unknown
= 1;
1165 acpi_video_device_bind(video
, data
);
1166 acpi_video_device_find_cap(data
);
1168 mutex_lock(&video
->device_list_lock
);
1169 list_add_tail(&data
->entry
, &video
->video_device_list
);
1170 mutex_unlock(&video
->device_list_lock
);
1177 * video : video bus device
1182 * Enumerate the video device list of the video bus,
1183 * bind the ids with the corresponding video devices
1184 * under the video bus.
1187 static void acpi_video_device_rebind(struct acpi_video_bus
*video
)
1189 struct acpi_video_device
*dev
;
1191 mutex_lock(&video
->device_list_lock
);
1193 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1194 acpi_video_device_bind(video
, dev
);
1196 mutex_unlock(&video
->device_list_lock
);
1201 * video : video bus device
1202 * device : video output device under the video
1208 * Bind the ids with the corresponding video devices
1209 * under the video bus.
1213 acpi_video_device_bind(struct acpi_video_bus
*video
,
1214 struct acpi_video_device
*device
)
1216 struct acpi_video_enumerated_device
*ids
;
1219 for (i
= 0; i
< video
->attached_count
; i
++) {
1220 ids
= &video
->attached_array
[i
];
1221 if (device
->device_id
== (ids
->value
.int_val
& 0xffff)) {
1222 ids
->bind_info
= device
;
1223 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "device_bind %d\n", i
));
1230 * video : video bus device
1235 * Call _DOD to enumerate all devices attached to display adapter
1239 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
)
1244 struct acpi_video_enumerated_device
*active_list
;
1245 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1246 union acpi_object
*dod
= NULL
;
1247 union acpi_object
*obj
;
1249 status
= acpi_evaluate_object(video
->device
->handle
, "_DOD", NULL
, &buffer
);
1250 if (!ACPI_SUCCESS(status
)) {
1251 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _DOD"));
1255 dod
= buffer
.pointer
;
1256 if (!dod
|| (dod
->type
!= ACPI_TYPE_PACKAGE
)) {
1257 ACPI_EXCEPTION((AE_INFO
, status
, "Invalid _DOD data"));
1262 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found %d video heads in _DOD\n",
1263 dod
->package
.count
));
1265 active_list
= kcalloc(1 + dod
->package
.count
,
1266 sizeof(struct acpi_video_enumerated_device
),
1274 for (i
= 0; i
< dod
->package
.count
; i
++) {
1275 obj
= &dod
->package
.elements
[i
];
1277 if (obj
->type
!= ACPI_TYPE_INTEGER
) {
1278 printk(KERN_ERR PREFIX
1279 "Invalid _DOD data in element %d\n", i
);
1283 active_list
[count
].value
.int_val
= obj
->integer
.value
;
1284 active_list
[count
].bind_info
= NULL
;
1285 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "dod element[%d] = %d\n", i
,
1286 (int)obj
->integer
.value
));
1290 kfree(video
->attached_array
);
1292 video
->attached_array
= active_list
;
1293 video
->attached_count
= count
;
1296 kfree(buffer
.pointer
);
1301 acpi_video_get_next_level(struct acpi_video_device
*device
,
1302 u32 level_current
, u32 event
)
1304 int min
, max
, min_above
, max_below
, i
, l
, delta
= 255;
1305 max
= max_below
= 0;
1306 min
= min_above
= 255;
1307 /* Find closest level to level_current */
1308 for (i
= 2; i
< device
->brightness
->count
; i
++) {
1309 l
= device
->brightness
->levels
[i
];
1310 if (abs(l
- level_current
) < abs(delta
)) {
1311 delta
= l
- level_current
;
1316 /* Ajust level_current to closest available level */
1317 level_current
+= delta
;
1318 for (i
= 2; i
< device
->brightness
->count
; i
++) {
1319 l
= device
->brightness
->levels
[i
];
1324 if (l
< min_above
&& l
> level_current
)
1326 if (l
> max_below
&& l
< level_current
)
1331 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
:
1332 return (level_current
< max
) ? min_above
: min
;
1333 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
:
1334 return (level_current
< max
) ? min_above
: max
;
1335 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
:
1336 return (level_current
> min
) ? max_below
: min
;
1337 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
:
1338 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
:
1341 return level_current
;
1346 acpi_video_switch_brightness(struct acpi_video_device
*device
, int event
)
1348 unsigned long long level_current
, level_next
;
1349 int result
= -EINVAL
;
1351 /* no warning message if acpi_backlight=vendor or a quirk is used */
1352 if (!acpi_video_verify_backlight_support())
1355 if (!device
->brightness
)
1358 result
= acpi_video_device_lcd_get_level_current(device
,
1364 level_next
= acpi_video_get_next_level(device
, level_current
, event
);
1366 result
= acpi_video_device_lcd_set_level(device
, level_next
);
1369 backlight_force_update(device
->backlight
,
1370 BACKLIGHT_UPDATE_HOTKEY
);
1374 printk(KERN_ERR PREFIX
"Failed to switch the brightness\n");
1379 int acpi_video_get_edid(struct acpi_device
*device
, int type
, int device_id
,
1382 struct acpi_video_bus
*video
;
1383 struct acpi_video_device
*video_device
;
1384 union acpi_object
*buffer
= NULL
;
1388 if (!device
|| !acpi_driver_data(device
))
1391 video
= acpi_driver_data(device
);
1393 for (i
= 0; i
< video
->attached_count
; i
++) {
1394 video_device
= video
->attached_array
[i
].bind_info
;
1400 if (!video_device
->cap
._DDC
)
1405 case ACPI_VIDEO_DISPLAY_CRT
:
1406 if (!video_device
->flags
.crt
)
1409 case ACPI_VIDEO_DISPLAY_TV
:
1410 if (!video_device
->flags
.tvout
)
1413 case ACPI_VIDEO_DISPLAY_DVI
:
1414 if (!video_device
->flags
.dvi
)
1417 case ACPI_VIDEO_DISPLAY_LCD
:
1418 if (!video_device
->flags
.lcd
)
1422 } else if (video_device
->device_id
!= device_id
) {
1426 status
= acpi_video_device_EDID(video_device
, &buffer
, length
);
1428 if (ACPI_FAILURE(status
) || !buffer
||
1429 buffer
->type
!= ACPI_TYPE_BUFFER
) {
1431 status
= acpi_video_device_EDID(video_device
, &buffer
,
1433 if (ACPI_FAILURE(status
) || !buffer
||
1434 buffer
->type
!= ACPI_TYPE_BUFFER
) {
1439 *edid
= buffer
->buffer
.pointer
;
1445 EXPORT_SYMBOL(acpi_video_get_edid
);
1448 acpi_video_bus_get_devices(struct acpi_video_bus
*video
,
1449 struct acpi_device
*device
)
1452 struct acpi_device
*dev
;
1455 * There are systems where video module known to work fine regardless
1456 * of broken _DOD and ignoring returned value here doesn't cause
1459 acpi_video_device_enumerate(video
);
1461 list_for_each_entry(dev
, &device
->children
, node
) {
1463 status
= acpi_video_bus_get_one_device(dev
, video
);
1465 dev_err(&dev
->dev
, "Can't attach device\n");
1472 /* acpi_video interface */
1475 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1476 * preform any automatic brightness change on receiving a notification.
1478 static int acpi_video_bus_start_devices(struct acpi_video_bus
*video
)
1480 return acpi_video_bus_DOS(video
, 0,
1481 acpi_osi_is_win8() ? 1 : 0);
1484 static int acpi_video_bus_stop_devices(struct acpi_video_bus
*video
)
1486 return acpi_video_bus_DOS(video
, 0,
1487 acpi_osi_is_win8() ? 0 : 1);
1490 static void acpi_video_bus_notify(struct acpi_device
*device
, u32 event
)
1492 struct acpi_video_bus
*video
= acpi_driver_data(device
);
1493 struct input_dev
*input
;
1496 if (!video
|| !video
->input
)
1499 input
= video
->input
;
1502 case ACPI_VIDEO_NOTIFY_SWITCH
: /* User requested a switch,
1503 * most likely via hotkey. */
1504 keycode
= KEY_SWITCHVIDEOMODE
;
1507 case ACPI_VIDEO_NOTIFY_PROBE
: /* User plugged in or removed a video
1509 acpi_video_device_enumerate(video
);
1510 acpi_video_device_rebind(video
);
1511 keycode
= KEY_SWITCHVIDEOMODE
;
1514 case ACPI_VIDEO_NOTIFY_CYCLE
: /* Cycle Display output hotkey pressed. */
1515 keycode
= KEY_SWITCHVIDEOMODE
;
1517 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT
: /* Next Display output hotkey pressed. */
1518 keycode
= KEY_VIDEO_NEXT
;
1520 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT
: /* previous Display output hotkey pressed. */
1521 keycode
= KEY_VIDEO_PREV
;
1525 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1526 "Unsupported event [0x%x]\n", event
));
1530 if (acpi_notifier_call_chain(device
, event
, 0))
1531 /* Something vetoed the keypress. */
1535 input_report_key(input
, keycode
, 1);
1537 input_report_key(input
, keycode
, 0);
1544 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
)
1546 struct acpi_video_device
*video_device
= data
;
1547 struct acpi_device
*device
= NULL
;
1548 struct acpi_video_bus
*bus
;
1549 struct input_dev
*input
;
1555 device
= video_device
->dev
;
1556 bus
= video_device
->video
;
1560 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
: /* Cycle brightness */
1561 if (brightness_switch_enabled
)
1562 acpi_video_switch_brightness(video_device
, event
);
1563 keycode
= KEY_BRIGHTNESS_CYCLE
;
1565 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
: /* Increase brightness */
1566 if (brightness_switch_enabled
)
1567 acpi_video_switch_brightness(video_device
, event
);
1568 keycode
= KEY_BRIGHTNESSUP
;
1570 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
: /* Decrease brightness */
1571 if (brightness_switch_enabled
)
1572 acpi_video_switch_brightness(video_device
, event
);
1573 keycode
= KEY_BRIGHTNESSDOWN
;
1575 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
: /* zero brightness */
1576 if (brightness_switch_enabled
)
1577 acpi_video_switch_brightness(video_device
, event
);
1578 keycode
= KEY_BRIGHTNESS_ZERO
;
1580 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
: /* display device off */
1581 if (brightness_switch_enabled
)
1582 acpi_video_switch_brightness(video_device
, event
);
1583 keycode
= KEY_DISPLAY_OFF
;
1586 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1587 "Unsupported event [0x%x]\n", event
));
1591 acpi_notifier_call_chain(device
, event
, 0);
1594 input_report_key(input
, keycode
, 1);
1596 input_report_key(input
, keycode
, 0);
1603 static int acpi_video_resume(struct notifier_block
*nb
,
1604 unsigned long val
, void *ign
)
1606 struct acpi_video_bus
*video
;
1607 struct acpi_video_device
*video_device
;
1611 case PM_HIBERNATION_PREPARE
:
1612 case PM_SUSPEND_PREPARE
:
1613 case PM_RESTORE_PREPARE
:
1617 video
= container_of(nb
, struct acpi_video_bus
, pm_nb
);
1619 dev_info(&video
->device
->dev
, "Restoring backlight state\n");
1621 for (i
= 0; i
< video
->attached_count
; i
++) {
1622 video_device
= video
->attached_array
[i
].bind_info
;
1623 if (video_device
&& video_device
->backlight
)
1624 acpi_video_set_brightness(video_device
->backlight
);
1631 acpi_video_bus_match(acpi_handle handle
, u32 level
, void *context
,
1632 void **return_value
)
1634 struct acpi_device
*device
= context
;
1635 struct acpi_device
*sibling
;
1638 if (handle
== device
->handle
)
1639 return AE_CTRL_TERMINATE
;
1641 result
= acpi_bus_get_device(handle
, &sibling
);
1645 if (!strcmp(acpi_device_name(sibling
), ACPI_VIDEO_BUS_NAME
))
1646 return AE_ALREADY_EXISTS
;
1651 static void acpi_video_dev_register_backlight(struct acpi_video_device
*device
)
1653 if (acpi_video_verify_backlight_support()) {
1654 struct backlight_properties props
;
1655 struct pci_dev
*pdev
;
1656 acpi_handle acpi_parent
;
1657 struct device
*parent
= NULL
;
1662 result
= acpi_video_init_brightness(device
);
1665 name
= kasprintf(GFP_KERNEL
, "acpi_video%d", count
);
1670 acpi_get_parent(device
->dev
->handle
, &acpi_parent
);
1672 pdev
= acpi_get_pci_dev(acpi_parent
);
1674 parent
= &pdev
->dev
;
1678 memset(&props
, 0, sizeof(struct backlight_properties
));
1679 props
.type
= BACKLIGHT_FIRMWARE
;
1680 props
.max_brightness
= device
->brightness
->count
- 3;
1681 device
->backlight
= backlight_device_register(name
,
1684 &acpi_backlight_ops
,
1687 if (IS_ERR(device
->backlight
))
1691 * Save current brightness level in case we have to restore it
1692 * before acpi_video_device_lcd_set_level() is called next time.
1694 device
->backlight
->props
.brightness
=
1695 acpi_video_get_brightness(device
->backlight
);
1697 device
->cooling_dev
= thermal_cooling_device_register("LCD",
1698 device
->dev
, &video_cooling_ops
);
1699 if (IS_ERR(device
->cooling_dev
)) {
1701 * Set cooling_dev to NULL so we don't crash trying to
1703 * Also, why the hell we are returning early and
1704 * not attempt to register video output if cooling
1705 * device registration failed?
1708 device
->cooling_dev
= NULL
;
1712 dev_info(&device
->dev
->dev
, "registered as cooling_device%d\n",
1713 device
->cooling_dev
->id
);
1714 result
= sysfs_create_link(&device
->dev
->dev
.kobj
,
1715 &device
->cooling_dev
->device
.kobj
,
1718 printk(KERN_ERR PREFIX
"Create sysfs link\n");
1719 result
= sysfs_create_link(&device
->cooling_dev
->device
.kobj
,
1720 &device
->dev
->dev
.kobj
, "device");
1722 printk(KERN_ERR PREFIX
"Create sysfs link\n");
1726 static int acpi_video_bus_register_backlight(struct acpi_video_bus
*video
)
1728 struct acpi_video_device
*dev
;
1730 mutex_lock(&video
->device_list_lock
);
1731 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1732 acpi_video_dev_register_backlight(dev
);
1733 mutex_unlock(&video
->device_list_lock
);
1735 video
->pm_nb
.notifier_call
= acpi_video_resume
;
1736 video
->pm_nb
.priority
= 0;
1737 return register_pm_notifier(&video
->pm_nb
);
1740 static void acpi_video_dev_unregister_backlight(struct acpi_video_device
*device
)
1742 if (device
->backlight
) {
1743 backlight_device_unregister(device
->backlight
);
1744 device
->backlight
= NULL
;
1746 if (device
->brightness
) {
1747 kfree(device
->brightness
->levels
);
1748 kfree(device
->brightness
);
1749 device
->brightness
= NULL
;
1751 if (device
->cooling_dev
) {
1752 sysfs_remove_link(&device
->dev
->dev
.kobj
, "thermal_cooling");
1753 sysfs_remove_link(&device
->cooling_dev
->device
.kobj
, "device");
1754 thermal_cooling_device_unregister(device
->cooling_dev
);
1755 device
->cooling_dev
= NULL
;
1759 static int acpi_video_bus_unregister_backlight(struct acpi_video_bus
*video
)
1761 struct acpi_video_device
*dev
;
1762 int error
= unregister_pm_notifier(&video
->pm_nb
);
1764 mutex_lock(&video
->device_list_lock
);
1765 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1766 acpi_video_dev_unregister_backlight(dev
);
1767 mutex_unlock(&video
->device_list_lock
);
1772 static void acpi_video_dev_add_notify_handler(struct acpi_video_device
*device
)
1775 struct acpi_device
*adev
= device
->dev
;
1777 status
= acpi_install_notify_handler(adev
->handle
, ACPI_DEVICE_NOTIFY
,
1778 acpi_video_device_notify
, device
);
1779 if (ACPI_FAILURE(status
))
1780 dev_err(&adev
->dev
, "Error installing notify handler\n");
1782 device
->flags
.notify
= 1;
1785 static int acpi_video_bus_add_notify_handler(struct acpi_video_bus
*video
)
1787 struct input_dev
*input
;
1788 struct acpi_video_device
*dev
;
1791 video
->input
= input
= input_allocate_device();
1797 error
= acpi_video_bus_start_devices(video
);
1799 goto err_free_input
;
1801 snprintf(video
->phys
, sizeof(video
->phys
),
1802 "%s/video/input0", acpi_device_hid(video
->device
));
1804 input
->name
= acpi_device_name(video
->device
);
1805 input
->phys
= video
->phys
;
1806 input
->id
.bustype
= BUS_HOST
;
1807 input
->id
.product
= 0x06;
1808 input
->dev
.parent
= &video
->device
->dev
;
1809 input
->evbit
[0] = BIT(EV_KEY
);
1810 set_bit(KEY_SWITCHVIDEOMODE
, input
->keybit
);
1811 set_bit(KEY_VIDEO_NEXT
, input
->keybit
);
1812 set_bit(KEY_VIDEO_PREV
, input
->keybit
);
1813 set_bit(KEY_BRIGHTNESS_CYCLE
, input
->keybit
);
1814 set_bit(KEY_BRIGHTNESSUP
, input
->keybit
);
1815 set_bit(KEY_BRIGHTNESSDOWN
, input
->keybit
);
1816 set_bit(KEY_BRIGHTNESS_ZERO
, input
->keybit
);
1817 set_bit(KEY_DISPLAY_OFF
, input
->keybit
);
1819 error
= input_register_device(input
);
1823 mutex_lock(&video
->device_list_lock
);
1824 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1825 acpi_video_dev_add_notify_handler(dev
);
1826 mutex_unlock(&video
->device_list_lock
);
1831 acpi_video_bus_stop_devices(video
);
1833 input_free_device(input
);
1834 video
->input
= NULL
;
1839 static void acpi_video_dev_remove_notify_handler(struct acpi_video_device
*dev
)
1841 if (dev
->flags
.notify
) {
1842 acpi_remove_notify_handler(dev
->dev
->handle
, ACPI_DEVICE_NOTIFY
,
1843 acpi_video_device_notify
);
1844 dev
->flags
.notify
= 0;
1848 static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus
*video
)
1850 struct acpi_video_device
*dev
;
1852 mutex_lock(&video
->device_list_lock
);
1853 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1854 acpi_video_dev_remove_notify_handler(dev
);
1855 mutex_unlock(&video
->device_list_lock
);
1857 acpi_video_bus_stop_devices(video
);
1858 input_unregister_device(video
->input
);
1859 video
->input
= NULL
;
1862 static int acpi_video_bus_put_devices(struct acpi_video_bus
*video
)
1864 struct acpi_video_device
*dev
, *next
;
1866 mutex_lock(&video
->device_list_lock
);
1867 list_for_each_entry_safe(dev
, next
, &video
->video_device_list
, entry
) {
1868 list_del(&dev
->entry
);
1871 mutex_unlock(&video
->device_list_lock
);
1876 static int instance
;
1878 static int acpi_video_bus_add(struct acpi_device
*device
)
1880 struct acpi_video_bus
*video
;
1884 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
,
1885 device
->parent
->handle
, 1,
1886 acpi_video_bus_match
, NULL
,
1888 if (status
== AE_ALREADY_EXISTS
) {
1889 printk(KERN_WARNING FW_BUG
1890 "Duplicate ACPI video bus devices for the"
1891 " same VGA controller, please try module "
1892 "parameter \"video.allow_duplicates=1\""
1893 "if the current driver doesn't work.\n");
1894 if (!allow_duplicates
)
1898 video
= kzalloc(sizeof(struct acpi_video_bus
), GFP_KERNEL
);
1902 /* a hack to fix the duplicate name "VID" problem on T61 */
1903 if (!strcmp(device
->pnp
.bus_id
, "VID")) {
1905 device
->pnp
.bus_id
[3] = '0' + instance
;
1908 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1909 if (!strcmp(device
->pnp
.bus_id
, "VGA")) {
1911 device
->pnp
.bus_id
[3] = '0' + instance
;
1915 video
->device
= device
;
1916 strcpy(acpi_device_name(device
), ACPI_VIDEO_BUS_NAME
);
1917 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
1918 device
->driver_data
= video
;
1920 acpi_video_bus_find_cap(video
);
1921 error
= acpi_video_bus_check(video
);
1923 goto err_free_video
;
1925 mutex_init(&video
->device_list_lock
);
1926 INIT_LIST_HEAD(&video
->video_device_list
);
1928 error
= acpi_video_bus_get_devices(video
, device
);
1932 printk(KERN_INFO PREFIX
"%s [%s] (multi-head: %s rom: %s post: %s)\n",
1933 ACPI_VIDEO_DEVICE_NAME
, acpi_device_bid(device
),
1934 video
->flags
.multihead
? "yes" : "no",
1935 video
->flags
.rom
? "yes" : "no",
1936 video
->flags
.post
? "yes" : "no");
1937 mutex_lock(&video_list_lock
);
1938 list_add_tail(&video
->entry
, &video_bus_head
);
1939 mutex_unlock(&video_list_lock
);
1941 acpi_video_bus_register_backlight(video
);
1942 acpi_video_bus_add_notify_handler(video
);
1947 acpi_video_bus_put_devices(video
);
1948 kfree(video
->attached_array
);
1951 device
->driver_data
= NULL
;
1956 static int acpi_video_bus_remove(struct acpi_device
*device
)
1958 struct acpi_video_bus
*video
= NULL
;
1961 if (!device
|| !acpi_driver_data(device
))
1964 video
= acpi_driver_data(device
);
1966 acpi_video_bus_remove_notify_handler(video
);
1967 acpi_video_bus_unregister_backlight(video
);
1968 acpi_video_bus_put_devices(video
);
1970 mutex_lock(&video_list_lock
);
1971 list_del(&video
->entry
);
1972 mutex_unlock(&video_list_lock
);
1974 kfree(video
->attached_array
);
1980 static int __init
is_i740(struct pci_dev
*dev
)
1982 if (dev
->device
== 0x00D1)
1984 if (dev
->device
== 0x7000)
1989 static int __init
intel_opregion_present(void)
1992 struct pci_dev
*dev
= NULL
;
1995 for_each_pci_dev(dev
) {
1996 if ((dev
->class >> 8) != PCI_CLASS_DISPLAY_VGA
)
1998 if (dev
->vendor
!= PCI_VENDOR_ID_INTEL
)
2000 /* We don't want to poke around undefined i740 registers */
2003 pci_read_config_dword(dev
, 0xfc, &address
);
2011 int acpi_video_register(void)
2014 if (register_count
) {
2016 * if the function of acpi_video_register is already called,
2017 * don't register the acpi_vide_bus again and return no error.
2022 mutex_init(&video_list_lock
);
2023 INIT_LIST_HEAD(&video_bus_head
);
2025 result
= acpi_bus_register_driver(&acpi_video_bus
);
2030 * When the acpi_video_bus is loaded successfully, increase
2031 * the counter reference.
2037 EXPORT_SYMBOL(acpi_video_register
);
2039 void acpi_video_unregister(void)
2041 if (!register_count
) {
2043 * If the acpi video bus is already unloaded, don't
2044 * unload it again and return directly.
2048 acpi_bus_unregister_driver(&acpi_video_bus
);
2054 EXPORT_SYMBOL(acpi_video_unregister
);
2057 * This is kind of nasty. Hardware using Intel chipsets may require
2058 * the video opregion code to be run first in order to initialise
2059 * state before any ACPI video calls are made. To handle this we defer
2060 * registration of the video class until the opregion code has run.
2063 static int __init
acpi_video_init(void)
2065 dmi_check_system(video_dmi_table
);
2067 if (intel_opregion_present())
2070 return acpi_video_register();
2073 static void __exit
acpi_video_exit(void)
2075 acpi_video_unregister();
2080 module_init(acpi_video_init
);
2081 module_exit(acpi_video_exit
);