2 * video.c - ACPI Video Driver ($Revision:$)
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/proc_fs.h>
34 #include <linux/seq_file.h>
35 #include <linux/input.h>
36 #include <linux/backlight.h>
37 #include <linux/thermal.h>
38 #include <linux/video_output.h>
39 #include <linux/sort.h>
40 #include <linux/pci.h>
41 #include <linux/pci_ids.h>
42 #include <asm/uaccess.h>
44 #include <acpi/acpi_bus.h>
45 #include <acpi/acpi_drivers.h>
47 #define ACPI_VIDEO_CLASS "video"
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 ACPI_VIDEO_DISPLAY_CRT 1
65 #define ACPI_VIDEO_DISPLAY_TV 2
66 #define ACPI_VIDEO_DISPLAY_DVI 3
67 #define ACPI_VIDEO_DISPLAY_LCD 4
69 #define _COMPONENT ACPI_VIDEO_COMPONENT
70 ACPI_MODULE_NAME("video");
72 MODULE_AUTHOR("Bruno Ducrot");
73 MODULE_DESCRIPTION("ACPI Video Driver");
74 MODULE_LICENSE("GPL");
76 static int brightness_switch_enabled
= 1;
77 module_param(brightness_switch_enabled
, bool, 0644);
79 static int acpi_video_bus_add(struct acpi_device
*device
);
80 static int acpi_video_bus_remove(struct acpi_device
*device
, int type
);
81 static int acpi_video_resume(struct acpi_device
*device
);
82 static void acpi_video_bus_notify(struct acpi_device
*device
, u32 event
);
84 static const struct acpi_device_id video_device_ids
[] = {
88 MODULE_DEVICE_TABLE(acpi
, video_device_ids
);
90 static struct acpi_driver acpi_video_bus
= {
92 .class = ACPI_VIDEO_CLASS
,
93 .ids
= video_device_ids
,
95 .add
= acpi_video_bus_add
,
96 .remove
= acpi_video_bus_remove
,
97 .resume
= acpi_video_resume
,
98 .notify
= acpi_video_bus_notify
,
102 struct acpi_video_bus_flags
{
103 u8 multihead
:1; /* can switch video heads */
104 u8 rom
:1; /* can retrieve a video rom */
105 u8 post
:1; /* can configure the head to */
109 struct acpi_video_bus_cap
{
110 u8 _DOS
:1; /*Enable/Disable output switching */
111 u8 _DOD
:1; /*Enumerate all devices attached to display adapter */
112 u8 _ROM
:1; /*Get ROM Data */
113 u8 _GPD
:1; /*Get POST Device */
114 u8 _SPD
:1; /*Set POST Device */
115 u8 _VPO
:1; /*Video POST Options */
119 struct acpi_video_device_attrib
{
120 u32 display_index
:4; /* A zero-based instance of the Display */
121 u32 display_port_attachment
:4; /*This field differentiates the display type */
122 u32 display_type
:4; /*Describe the specific type in use */
123 u32 vendor_specific
:4; /*Chipset Vendor Specific */
124 u32 bios_can_detect
:1; /*BIOS can detect the device */
125 u32 depend_on_vga
:1; /*Non-VGA output device whose power is related to
127 u32 pipe_id
:3; /*For VGA multiple-head devices. */
128 u32 reserved
:10; /*Must be 0 */
129 u32 device_id_scheme
:1; /*Device ID Scheme */
132 struct acpi_video_enumerated_device
{
135 struct acpi_video_device_attrib attrib
;
137 struct acpi_video_device
*bind_info
;
140 struct acpi_video_bus
{
141 struct acpi_device
*device
;
143 struct acpi_video_enumerated_device
*attached_array
;
145 struct acpi_video_bus_cap cap
;
146 struct acpi_video_bus_flags flags
;
147 struct list_head video_device_list
;
148 struct mutex device_list_lock
; /* protects video_device_list */
149 struct proc_dir_entry
*dir
;
150 struct input_dev
*input
;
151 char phys
[32]; /* for input device */
154 struct acpi_video_device_flags
{
164 struct acpi_video_device_cap
{
165 u8 _ADR
:1; /*Return the unique ID */
166 u8 _BCL
:1; /*Query list of brightness control levels supported */
167 u8 _BCM
:1; /*Set the brightness level */
168 u8 _BQC
:1; /* Get current brightness level */
169 u8 _BCQ
:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
170 u8 _DDC
:1; /*Return the EDID for this device */
171 u8 _DCS
:1; /*Return status of output device */
172 u8 _DGS
:1; /*Query graphics state */
173 u8 _DSS
:1; /*Device state set */
176 struct acpi_video_brightness_flags
{
177 u8 _BCL_no_ac_battery_levels
:1; /* no AC/Battery levels in _BCL */
178 u8 _BCL_reversed
:1; /* _BCL package is in a reversed order*/
179 u8 _BCL_use_index
:1; /* levels in _BCL are index values */
180 u8 _BCM_use_index
:1; /* input of _BCM is an index value */
181 u8 _BQC_use_index
:1; /* _BQC returns an index value */
184 struct acpi_video_device_brightness
{
188 struct acpi_video_brightness_flags flags
;
191 struct acpi_video_device
{
192 unsigned long device_id
;
193 struct acpi_video_device_flags flags
;
194 struct acpi_video_device_cap cap
;
195 struct list_head entry
;
196 struct acpi_video_bus
*video
;
197 struct acpi_device
*dev
;
198 struct acpi_video_device_brightness
*brightness
;
199 struct backlight_device
*backlight
;
200 struct thermal_cooling_device
*cdev
;
201 struct output_device
*output_dev
;
205 static int acpi_video_bus_info_open_fs(struct inode
*inode
, struct file
*file
);
206 static const struct file_operations acpi_video_bus_info_fops
= {
207 .owner
= THIS_MODULE
,
208 .open
= acpi_video_bus_info_open_fs
,
211 .release
= single_release
,
214 static int acpi_video_bus_ROM_open_fs(struct inode
*inode
, struct file
*file
);
215 static const struct file_operations acpi_video_bus_ROM_fops
= {
216 .owner
= THIS_MODULE
,
217 .open
= acpi_video_bus_ROM_open_fs
,
220 .release
= single_release
,
223 static int acpi_video_bus_POST_info_open_fs(struct inode
*inode
,
225 static const struct file_operations acpi_video_bus_POST_info_fops
= {
226 .owner
= THIS_MODULE
,
227 .open
= acpi_video_bus_POST_info_open_fs
,
230 .release
= single_release
,
233 static int acpi_video_bus_POST_open_fs(struct inode
*inode
, struct file
*file
);
234 static ssize_t
acpi_video_bus_write_POST(struct file
*file
,
235 const char __user
*buffer
, size_t count
, loff_t
*data
);
236 static const struct file_operations acpi_video_bus_POST_fops
= {
237 .owner
= THIS_MODULE
,
238 .open
= acpi_video_bus_POST_open_fs
,
240 .write
= acpi_video_bus_write_POST
,
242 .release
= single_release
,
245 static int acpi_video_bus_DOS_open_fs(struct inode
*inode
, struct file
*file
);
246 static ssize_t
acpi_video_bus_write_DOS(struct file
*file
,
247 const char __user
*buffer
, size_t count
, loff_t
*data
);
248 static const struct file_operations acpi_video_bus_DOS_fops
= {
249 .owner
= THIS_MODULE
,
250 .open
= acpi_video_bus_DOS_open_fs
,
252 .write
= acpi_video_bus_write_DOS
,
254 .release
= single_release
,
258 static int acpi_video_device_info_open_fs(struct inode
*inode
,
260 static const struct file_operations acpi_video_device_info_fops
= {
261 .owner
= THIS_MODULE
,
262 .open
= acpi_video_device_info_open_fs
,
265 .release
= single_release
,
268 static int acpi_video_device_state_open_fs(struct inode
*inode
,
270 static ssize_t
acpi_video_device_write_state(struct file
*file
,
271 const char __user
*buffer
, size_t count
, loff_t
*data
);
272 static const struct file_operations acpi_video_device_state_fops
= {
273 .owner
= THIS_MODULE
,
274 .open
= acpi_video_device_state_open_fs
,
276 .write
= acpi_video_device_write_state
,
278 .release
= single_release
,
281 static int acpi_video_device_brightness_open_fs(struct inode
*inode
,
283 static ssize_t
acpi_video_device_write_brightness(struct file
*file
,
284 const char __user
*buffer
, size_t count
, loff_t
*data
);
285 static struct file_operations acpi_video_device_brightness_fops
= {
286 .owner
= THIS_MODULE
,
287 .open
= acpi_video_device_brightness_open_fs
,
289 .write
= acpi_video_device_write_brightness
,
291 .release
= single_release
,
294 static int acpi_video_device_EDID_open_fs(struct inode
*inode
,
296 static const struct file_operations acpi_video_device_EDID_fops
= {
297 .owner
= THIS_MODULE
,
298 .open
= acpi_video_device_EDID_open_fs
,
301 .release
= single_release
,
304 static const char device_decode
[][30] = {
305 "motherboard VGA device",
311 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
);
312 static void acpi_video_device_rebind(struct acpi_video_bus
*video
);
313 static void acpi_video_device_bind(struct acpi_video_bus
*video
,
314 struct acpi_video_device
*device
);
315 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
);
316 static int acpi_video_device_lcd_set_level(struct acpi_video_device
*device
,
318 static int acpi_video_device_lcd_get_level_current(
319 struct acpi_video_device
*device
,
320 unsigned long long *level
);
321 static int acpi_video_get_next_level(struct acpi_video_device
*device
,
322 u32 level_current
, u32 event
);
323 static int acpi_video_switch_brightness(struct acpi_video_device
*device
,
325 static int acpi_video_device_get_state(struct acpi_video_device
*device
,
326 unsigned long long *state
);
327 static int acpi_video_output_get(struct output_device
*od
);
328 static int acpi_video_device_set_state(struct acpi_video_device
*device
, int state
);
330 /*backlight device sysfs support*/
331 static int acpi_video_get_brightness(struct backlight_device
*bd
)
333 unsigned long long cur_level
;
335 struct acpi_video_device
*vd
=
336 (struct acpi_video_device
*)bl_get_data(bd
);
338 if (acpi_video_device_lcd_get_level_current(vd
, &cur_level
))
340 for (i
= 2; i
< vd
->brightness
->count
; i
++) {
341 if (vd
->brightness
->levels
[i
] == cur_level
)
342 /* The first two entries are special - see page 575
343 of the ACPI spec 3.0 */
349 static int acpi_video_set_brightness(struct backlight_device
*bd
)
351 int request_level
= bd
->props
.brightness
+ 2;
352 struct acpi_video_device
*vd
=
353 (struct acpi_video_device
*)bl_get_data(bd
);
355 return acpi_video_device_lcd_set_level(vd
,
356 vd
->brightness
->levels
[request_level
]);
359 static struct backlight_ops acpi_backlight_ops
= {
360 .get_brightness
= acpi_video_get_brightness
,
361 .update_status
= acpi_video_set_brightness
,
364 /*video output device sysfs support*/
365 static int acpi_video_output_get(struct output_device
*od
)
367 unsigned long long state
;
368 struct acpi_video_device
*vd
=
369 (struct acpi_video_device
*)dev_get_drvdata(&od
->dev
);
370 acpi_video_device_get_state(vd
, &state
);
374 static int acpi_video_output_set(struct output_device
*od
)
376 unsigned long state
= od
->request_state
;
377 struct acpi_video_device
*vd
=
378 (struct acpi_video_device
*)dev_get_drvdata(&od
->dev
);
379 return acpi_video_device_set_state(vd
, state
);
382 static struct output_properties acpi_output_properties
= {
383 .set_state
= acpi_video_output_set
,
384 .get_status
= acpi_video_output_get
,
388 /* thermal cooling device callbacks */
389 static int video_get_max_state(struct thermal_cooling_device
*cdev
, unsigned
392 struct acpi_device
*device
= cdev
->devdata
;
393 struct acpi_video_device
*video
= acpi_driver_data(device
);
395 *state
= video
->brightness
->count
- 3;
399 static int video_get_cur_state(struct thermal_cooling_device
*cdev
, unsigned
402 struct acpi_device
*device
= cdev
->devdata
;
403 struct acpi_video_device
*video
= acpi_driver_data(device
);
404 unsigned long long level
;
407 if (acpi_video_device_lcd_get_level_current(video
, &level
))
409 for (offset
= 2; offset
< video
->brightness
->count
; offset
++)
410 if (level
== video
->brightness
->levels
[offset
]) {
411 *state
= video
->brightness
->count
- offset
- 1;
419 video_set_cur_state(struct thermal_cooling_device
*cdev
, unsigned long state
)
421 struct acpi_device
*device
= cdev
->devdata
;
422 struct acpi_video_device
*video
= acpi_driver_data(device
);
425 if ( state
>= video
->brightness
->count
- 2)
428 state
= video
->brightness
->count
- state
;
429 level
= video
->brightness
->levels
[state
-1];
430 return acpi_video_device_lcd_set_level(video
, level
);
433 static struct thermal_cooling_device_ops video_cooling_ops
= {
434 .get_max_state
= video_get_max_state
,
435 .get_cur_state
= video_get_cur_state
,
436 .set_cur_state
= video_set_cur_state
,
439 /* --------------------------------------------------------------------------
441 -------------------------------------------------------------------------- */
446 acpi_video_device_query(struct acpi_video_device
*device
, unsigned long long *state
)
450 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DGS", NULL
, state
);
456 acpi_video_device_get_state(struct acpi_video_device
*device
,
457 unsigned long long *state
)
461 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DCS", NULL
, state
);
467 acpi_video_device_set_state(struct acpi_video_device
*device
, int state
)
470 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
471 struct acpi_object_list args
= { 1, &arg0
};
472 unsigned long long ret
;
475 arg0
.integer
.value
= state
;
476 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DSS", &args
, &ret
);
482 acpi_video_device_lcd_query_levels(struct acpi_video_device
*device
,
483 union acpi_object
**levels
)
486 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
487 union acpi_object
*obj
;
492 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCL", NULL
, &buffer
);
493 if (!ACPI_SUCCESS(status
))
495 obj
= (union acpi_object
*)buffer
.pointer
;
496 if (!obj
|| (obj
->type
!= ACPI_TYPE_PACKAGE
)) {
497 printk(KERN_ERR PREFIX
"Invalid _BCL data\n");
507 kfree(buffer
.pointer
);
513 acpi_video_device_lcd_set_level(struct acpi_video_device
*device
, int level
)
516 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
517 struct acpi_object_list args
= { 1, &arg0
};
520 arg0
.integer
.value
= level
;
522 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCM",
524 if (ACPI_FAILURE(status
)) {
525 ACPI_ERROR((AE_INFO
, "Evaluating _BCM failed"));
529 device
->brightness
->curr
= level
;
530 for (state
= 2; state
< device
->brightness
->count
; state
++)
531 if (level
== device
->brightness
->levels
[state
]) {
532 if (device
->backlight
)
533 device
->backlight
->props
.brightness
= state
- 2;
537 ACPI_ERROR((AE_INFO
, "Current brightness invalid"));
542 * For some buggy _BQC methods, we need to add a constant value to
543 * the _BQC return value to get the actual current brightness level
546 static int bqc_offset_aml_bug_workaround
;
547 static int __init
video_set_bqc_offset(const struct dmi_system_id
*d
)
549 bqc_offset_aml_bug_workaround
= 9;
553 static struct dmi_system_id video_dmi_table
[] __initdata
= {
555 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
558 .callback
= video_set_bqc_offset
,
559 .ident
= "Acer Aspire 5720",
561 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
562 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5720"),
566 .callback
= video_set_bqc_offset
,
567 .ident
= "Acer Aspire 5710Z",
569 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
570 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5710Z"),
577 acpi_video_device_lcd_get_level_current(struct acpi_video_device
*device
,
578 unsigned long long *level
)
580 acpi_status status
= AE_OK
;
582 if (device
->cap
._BQC
|| device
->cap
._BCQ
) {
583 char *buf
= device
->cap
._BQC
? "_BQC" : "_BCQ";
585 status
= acpi_evaluate_integer(device
->dev
->handle
, buf
,
587 if (ACPI_SUCCESS(status
)) {
588 if (device
->brightness
->flags
._BQC_use_index
) {
589 if (device
->brightness
->flags
._BCL_reversed
)
590 *level
= device
->brightness
->count
592 *level
= device
->brightness
->levels
[*level
+ 2];
595 *level
+= bqc_offset_aml_bug_workaround
;
596 device
->brightness
->curr
= *level
;
600 * should we return an error or ignore this failure?
601 * dev->brightness->curr is a cached value which stores
602 * the correct current backlight level in most cases.
603 * ACPI video backlight still works w/ buggy _BQC.
604 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
606 ACPI_WARNING((AE_INFO
, "Evaluating %s failed", buf
));
607 device
->cap
._BQC
= device
->cap
._BCQ
= 0;
611 *level
= device
->brightness
->curr
;
616 acpi_video_device_EDID(struct acpi_video_device
*device
,
617 union acpi_object
**edid
, ssize_t length
)
620 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
621 union acpi_object
*obj
;
622 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
623 struct acpi_object_list args
= { 1, &arg0
};
631 arg0
.integer
.value
= 1;
632 else if (length
== 256)
633 arg0
.integer
.value
= 2;
637 status
= acpi_evaluate_object(device
->dev
->handle
, "_DDC", &args
, &buffer
);
638 if (ACPI_FAILURE(status
))
641 obj
= buffer
.pointer
;
643 if (obj
&& obj
->type
== ACPI_TYPE_BUFFER
)
646 printk(KERN_ERR PREFIX
"Invalid _DDC data\n");
657 acpi_video_bus_set_POST(struct acpi_video_bus
*video
, unsigned long option
)
660 unsigned long long tmp
;
661 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
662 struct acpi_object_list args
= { 1, &arg0
};
665 arg0
.integer
.value
= option
;
667 status
= acpi_evaluate_integer(video
->device
->handle
, "_SPD", &args
, &tmp
);
668 if (ACPI_SUCCESS(status
))
669 status
= tmp
? (-EINVAL
) : (AE_OK
);
675 acpi_video_bus_get_POST(struct acpi_video_bus
*video
, unsigned long long *id
)
679 status
= acpi_evaluate_integer(video
->device
->handle
, "_GPD", NULL
, id
);
685 acpi_video_bus_POST_options(struct acpi_video_bus
*video
,
686 unsigned long long *options
)
690 status
= acpi_evaluate_integer(video
->device
->handle
, "_VPO", NULL
, options
);
698 * video : video bus device pointer
700 * 0. The system BIOS should NOT automatically switch(toggle)
701 * the active display output.
702 * 1. The system BIOS should automatically switch (toggle) the
703 * active display output. No switch event.
704 * 2. The _DGS value should be locked.
705 * 3. The system BIOS should not automatically switch (toggle) the
706 * active display output, but instead generate the display switch
709 * 0. The system BIOS should automatically control the brightness level
710 * of the LCD when the power changes from AC to DC
711 * 1. The system BIOS should NOT automatically control the brightness
712 * level of the LCD when the power changes from AC to DC.
718 acpi_video_bus_DOS(struct acpi_video_bus
*video
, int bios_flag
, int lcd_flag
)
720 acpi_integer status
= 0;
721 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
722 struct acpi_object_list args
= { 1, &arg0
};
725 if (bios_flag
< 0 || bios_flag
> 3 || lcd_flag
< 0 || lcd_flag
> 1) {
729 arg0
.integer
.value
= (lcd_flag
<< 2) | bios_flag
;
730 video
->dos_setting
= arg0
.integer
.value
;
731 acpi_evaluate_object(video
->device
->handle
, "_DOS", &args
, NULL
);
738 * Simple comparison function used to sort backlight levels.
742 acpi_video_cmp_level(const void *a
, const void *b
)
744 return *(int *)a
- *(int *)b
;
749 * device : video output device (LCD, CRT, ..)
752 * Maximum brightness level
754 * Allocate and initialize device->brightness.
758 acpi_video_init_brightness(struct acpi_video_device
*device
)
760 union acpi_object
*obj
= NULL
;
761 int i
, max_level
= 0, count
= 0, level_ac_battery
= 0;
762 unsigned long long level
, level_old
;
763 union acpi_object
*o
;
764 struct acpi_video_device_brightness
*br
= NULL
;
765 int result
= -EINVAL
;
767 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device
, &obj
))) {
768 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Could not query available "
769 "LCD brightness level\n"));
773 if (obj
->package
.count
< 2)
776 br
= kzalloc(sizeof(*br
), GFP_KERNEL
);
778 printk(KERN_ERR
"can't allocate memory\n");
783 br
->levels
= kmalloc((obj
->package
.count
+ 2) * sizeof *(br
->levels
),
790 for (i
= 0; i
< obj
->package
.count
; i
++) {
791 o
= (union acpi_object
*)&obj
->package
.elements
[i
];
792 if (o
->type
!= ACPI_TYPE_INTEGER
) {
793 printk(KERN_ERR PREFIX
"Invalid data\n");
796 br
->levels
[count
] = (u32
) o
->integer
.value
;
798 if (br
->levels
[count
] > max_level
)
799 max_level
= br
->levels
[count
];
804 * some buggy BIOS don't export the levels
805 * when machine is on AC/Battery in _BCL package.
806 * In this case, the first two elements in _BCL packages
807 * are also supported brightness levels that OS should take care of.
809 for (i
= 2; i
< count
; i
++) {
810 if (br
->levels
[i
] == br
->levels
[0])
812 if (br
->levels
[i
] == br
->levels
[1])
816 if (level_ac_battery
< 2) {
817 level_ac_battery
= 2 - level_ac_battery
;
818 br
->flags
._BCL_no_ac_battery_levels
= 1;
819 for (i
= (count
- 1 + level_ac_battery
); i
>= 2; i
--)
820 br
->levels
[i
] = br
->levels
[i
- level_ac_battery
];
821 count
+= level_ac_battery
;
822 } else if (level_ac_battery
> 2)
823 ACPI_ERROR((AE_INFO
, "Too many duplicates in _BCL package\n"));
825 /* Check if the _BCL package is in a reversed order */
826 if (max_level
== br
->levels
[2]) {
827 br
->flags
._BCL_reversed
= 1;
828 sort(&br
->levels
[2], count
- 2, sizeof(br
->levels
[2]),
829 acpi_video_cmp_level
, NULL
);
830 } else if (max_level
!= br
->levels
[count
- 1])
832 "Found unordered _BCL package\n"));
835 device
->brightness
= br
;
837 /* Check the input/output of _BQC/_BCL/_BCM */
838 if ((max_level
< 100) && (max_level
<= (count
- 2)))
839 br
->flags
._BCL_use_index
= 1;
842 * _BCM is always consistent with _BCL,
843 * at least for all the laptops we have ever seen.
845 br
->flags
._BCM_use_index
= br
->flags
._BCL_use_index
;
847 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
848 br
->curr
= level_old
= max_level
;
850 if (!device
->cap
._BQC
)
853 result
= acpi_video_device_lcd_get_level_current(device
, &level_old
);
855 goto out_free_levels
;
858 * Set the level to maximum and check if _BQC uses indexed value
860 result
= acpi_video_device_lcd_set_level(device
, max_level
);
862 goto out_free_levels
;
864 result
= acpi_video_device_lcd_get_level_current(device
, &level
);
866 goto out_free_levels
;
868 br
->flags
._BQC_use_index
= (level
== max_level
? 0 : 1);
870 if (!br
->flags
._BQC_use_index
)
873 if (br
->flags
._BCL_reversed
)
874 level_old
= (br
->count
- 1) - level_old
;
875 level_old
= br
->levels
[level_old
];
878 result
= acpi_video_device_lcd_set_level(device
, level_old
);
880 goto out_free_levels
;
882 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
883 "found %d brightness levels\n", count
- 2));
892 device
->brightness
= NULL
;
899 * device : video output device (LCD, CRT, ..)
904 * Find out all required AML methods defined under the output
908 static void acpi_video_device_find_cap(struct acpi_video_device
*device
)
910 acpi_handle h_dummy1
;
913 memset(&device
->cap
, 0, sizeof(device
->cap
));
915 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_ADR", &h_dummy1
))) {
916 device
->cap
._ADR
= 1;
918 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCL", &h_dummy1
))) {
919 device
->cap
._BCL
= 1;
921 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCM", &h_dummy1
))) {
922 device
->cap
._BCM
= 1;
924 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
,"_BQC",&h_dummy1
)))
925 device
->cap
._BQC
= 1;
926 else if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCQ",
928 printk(KERN_WARNING FW_BUG
"_BCQ is used instead of _BQC\n");
929 device
->cap
._BCQ
= 1;
932 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DDC", &h_dummy1
))) {
933 device
->cap
._DDC
= 1;
935 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DCS", &h_dummy1
))) {
936 device
->cap
._DCS
= 1;
938 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DGS", &h_dummy1
))) {
939 device
->cap
._DGS
= 1;
941 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DSS", &h_dummy1
))) {
942 device
->cap
._DSS
= 1;
945 if (acpi_video_backlight_support()) {
947 static int count
= 0;
950 result
= acpi_video_init_brightness(device
);
953 name
= kzalloc(MAX_NAME_LEN
, GFP_KERNEL
);
957 sprintf(name
, "acpi_video%d", count
++);
958 device
->backlight
= backlight_device_register(name
,
959 NULL
, device
, &acpi_backlight_ops
);
960 device
->backlight
->props
.max_brightness
= device
->brightness
->count
-3;
963 device
->cdev
= thermal_cooling_device_register("LCD",
964 device
->dev
, &video_cooling_ops
);
965 if (IS_ERR(device
->cdev
))
968 dev_info(&device
->dev
->dev
, "registered as cooling_device%d\n",
970 result
= sysfs_create_link(&device
->dev
->dev
.kobj
,
971 &device
->cdev
->device
.kobj
,
974 printk(KERN_ERR PREFIX
"Create sysfs link\n");
975 result
= sysfs_create_link(&device
->cdev
->device
.kobj
,
976 &device
->dev
->dev
.kobj
, "device");
978 printk(KERN_ERR PREFIX
"Create sysfs link\n");
982 if (acpi_video_display_switch_support()) {
984 if (device
->cap
._DCS
&& device
->cap
._DSS
) {
987 name
= kzalloc(MAX_NAME_LEN
, GFP_KERNEL
);
990 sprintf(name
, "acpi_video%d", count
++);
991 device
->output_dev
= video_output_register(name
,
992 NULL
, device
, &acpi_output_properties
);
1000 * device : video output device (VGA)
1005 * Find out all required AML methods defined under the video bus device.
1008 static void acpi_video_bus_find_cap(struct acpi_video_bus
*video
)
1010 acpi_handle h_dummy1
;
1012 memset(&video
->cap
, 0, sizeof(video
->cap
));
1013 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_DOS", &h_dummy1
))) {
1014 video
->cap
._DOS
= 1;
1016 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_DOD", &h_dummy1
))) {
1017 video
->cap
._DOD
= 1;
1019 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_ROM", &h_dummy1
))) {
1020 video
->cap
._ROM
= 1;
1022 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_GPD", &h_dummy1
))) {
1023 video
->cap
._GPD
= 1;
1025 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_SPD", &h_dummy1
))) {
1026 video
->cap
._SPD
= 1;
1028 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_VPO", &h_dummy1
))) {
1029 video
->cap
._VPO
= 1;
1034 * Check whether the video bus device has required AML method to
1035 * support the desired features
1038 static int acpi_video_bus_check(struct acpi_video_bus
*video
)
1040 acpi_status status
= -ENOENT
;
1046 dev
= acpi_get_physical_pci_device(video
->device
->handle
);
1051 /* Since there is no HID, CID and so on for VGA driver, we have
1052 * to check well known required nodes.
1055 /* Does this device support video switching? */
1056 if (video
->cap
._DOS
) {
1057 video
->flags
.multihead
= 1;
1061 /* Does this device support retrieving a video ROM? */
1062 if (video
->cap
._ROM
) {
1063 video
->flags
.rom
= 1;
1067 /* Does this device support configuring which video device to POST? */
1068 if (video
->cap
._GPD
&& video
->cap
._SPD
&& video
->cap
._VPO
) {
1069 video
->flags
.post
= 1;
1076 /* --------------------------------------------------------------------------
1077 FS Interface (/proc)
1078 -------------------------------------------------------------------------- */
1080 static struct proc_dir_entry
*acpi_video_dir
;
1084 static int acpi_video_device_info_seq_show(struct seq_file
*seq
, void *offset
)
1086 struct acpi_video_device
*dev
= seq
->private;
1092 seq_printf(seq
, "device_id: 0x%04x\n", (u32
) dev
->device_id
);
1093 seq_printf(seq
, "type: ");
1095 seq_printf(seq
, "CRT\n");
1096 else if (dev
->flags
.lcd
)
1097 seq_printf(seq
, "LCD\n");
1098 else if (dev
->flags
.tvout
)
1099 seq_printf(seq
, "TVOUT\n");
1100 else if (dev
->flags
.dvi
)
1101 seq_printf(seq
, "DVI\n");
1103 seq_printf(seq
, "UNKNOWN\n");
1105 seq_printf(seq
, "known by bios: %s\n", dev
->flags
.bios
? "yes" : "no");
1112 acpi_video_device_info_open_fs(struct inode
*inode
, struct file
*file
)
1114 return single_open(file
, acpi_video_device_info_seq_show
,
1118 static int acpi_video_device_state_seq_show(struct seq_file
*seq
, void *offset
)
1121 struct acpi_video_device
*dev
= seq
->private;
1122 unsigned long long state
;
1128 status
= acpi_video_device_get_state(dev
, &state
);
1129 seq_printf(seq
, "state: ");
1130 if (ACPI_SUCCESS(status
))
1131 seq_printf(seq
, "0x%02llx\n", state
);
1133 seq_printf(seq
, "<not supported>\n");
1135 status
= acpi_video_device_query(dev
, &state
);
1136 seq_printf(seq
, "query: ");
1137 if (ACPI_SUCCESS(status
))
1138 seq_printf(seq
, "0x%02llx\n", state
);
1140 seq_printf(seq
, "<not supported>\n");
1147 acpi_video_device_state_open_fs(struct inode
*inode
, struct file
*file
)
1149 return single_open(file
, acpi_video_device_state_seq_show
,
1154 acpi_video_device_write_state(struct file
*file
,
1155 const char __user
* buffer
,
1156 size_t count
, loff_t
* data
)
1159 struct seq_file
*m
= file
->private_data
;
1160 struct acpi_video_device
*dev
= m
->private;
1161 char str
[12] = { 0 };
1165 if (!dev
|| count
+ 1 > sizeof str
)
1168 if (copy_from_user(str
, buffer
, count
))
1172 state
= simple_strtoul(str
, NULL
, 0);
1173 state
&= ((1ul << 31) | (1ul << 30) | (1ul << 0));
1175 status
= acpi_video_device_set_state(dev
, state
);
1184 acpi_video_device_brightness_seq_show(struct seq_file
*seq
, void *offset
)
1186 struct acpi_video_device
*dev
= seq
->private;
1190 if (!dev
|| !dev
->brightness
) {
1191 seq_printf(seq
, "<not supported>\n");
1195 seq_printf(seq
, "levels: ");
1196 for (i
= 2; i
< dev
->brightness
->count
; i
++)
1197 seq_printf(seq
, " %d", dev
->brightness
->levels
[i
]);
1198 seq_printf(seq
, "\ncurrent: %d\n", dev
->brightness
->curr
);
1204 acpi_video_device_brightness_open_fs(struct inode
*inode
, struct file
*file
)
1206 return single_open(file
, acpi_video_device_brightness_seq_show
,
1211 acpi_video_device_write_brightness(struct file
*file
,
1212 const char __user
* buffer
,
1213 size_t count
, loff_t
* data
)
1215 struct seq_file
*m
= file
->private_data
;
1216 struct acpi_video_device
*dev
= m
->private;
1217 char str
[5] = { 0 };
1218 unsigned int level
= 0;
1222 if (!dev
|| !dev
->brightness
|| count
+ 1 > sizeof str
)
1225 if (copy_from_user(str
, buffer
, count
))
1229 level
= simple_strtoul(str
, NULL
, 0);
1234 /* validate through the list of available levels */
1235 for (i
= 2; i
< dev
->brightness
->count
; i
++)
1236 if (level
== dev
->brightness
->levels
[i
]) {
1237 if (!acpi_video_device_lcd_set_level(dev
, level
))
1245 static int acpi_video_device_EDID_seq_show(struct seq_file
*seq
, void *offset
)
1247 struct acpi_video_device
*dev
= seq
->private;
1250 union acpi_object
*edid
= NULL
;
1256 status
= acpi_video_device_EDID(dev
, &edid
, 128);
1257 if (ACPI_FAILURE(status
)) {
1258 status
= acpi_video_device_EDID(dev
, &edid
, 256);
1261 if (ACPI_FAILURE(status
)) {
1265 if (edid
&& edid
->type
== ACPI_TYPE_BUFFER
) {
1266 for (i
= 0; i
< edid
->buffer
.length
; i
++)
1267 seq_putc(seq
, edid
->buffer
.pointer
[i
]);
1272 seq_printf(seq
, "<not supported>\n");
1280 acpi_video_device_EDID_open_fs(struct inode
*inode
, struct file
*file
)
1282 return single_open(file
, acpi_video_device_EDID_seq_show
,
1286 static int acpi_video_device_add_fs(struct acpi_device
*device
)
1288 struct proc_dir_entry
*entry
, *device_dir
;
1289 struct acpi_video_device
*vid_dev
;
1291 vid_dev
= acpi_driver_data(device
);
1295 device_dir
= proc_mkdir(acpi_device_bid(device
),
1296 vid_dev
->video
->dir
);
1301 entry
= proc_create_data("info", S_IRUGO
, device_dir
,
1302 &acpi_video_device_info_fops
, acpi_driver_data(device
));
1304 goto err_remove_dir
;
1307 entry
= proc_create_data("state", S_IFREG
| S_IRUGO
| S_IWUSR
,
1309 &acpi_video_device_state_fops
,
1310 acpi_driver_data(device
));
1312 goto err_remove_info
;
1314 /* 'brightness' [R/W] */
1315 entry
= proc_create_data("brightness", S_IFREG
| S_IRUGO
| S_IWUSR
,
1317 &acpi_video_device_brightness_fops
,
1318 acpi_driver_data(device
));
1320 goto err_remove_state
;
1323 entry
= proc_create_data("EDID", S_IRUGO
, device_dir
,
1324 &acpi_video_device_EDID_fops
,
1325 acpi_driver_data(device
));
1327 goto err_remove_brightness
;
1329 acpi_device_dir(device
) = device_dir
;
1333 err_remove_brightness
:
1334 remove_proc_entry("brightness", device_dir
);
1336 remove_proc_entry("state", device_dir
);
1338 remove_proc_entry("info", device_dir
);
1340 remove_proc_entry(acpi_device_bid(device
), vid_dev
->video
->dir
);
1344 static int acpi_video_device_remove_fs(struct acpi_device
*device
)
1346 struct acpi_video_device
*vid_dev
;
1347 struct proc_dir_entry
*device_dir
;
1349 vid_dev
= acpi_driver_data(device
);
1350 if (!vid_dev
|| !vid_dev
->video
|| !vid_dev
->video
->dir
)
1353 device_dir
= acpi_device_dir(device
);
1355 remove_proc_entry("info", device_dir
);
1356 remove_proc_entry("state", device_dir
);
1357 remove_proc_entry("brightness", device_dir
);
1358 remove_proc_entry("EDID", device_dir
);
1359 remove_proc_entry(acpi_device_bid(device
), vid_dev
->video
->dir
);
1360 acpi_device_dir(device
) = NULL
;
1367 static int acpi_video_bus_info_seq_show(struct seq_file
*seq
, void *offset
)
1369 struct acpi_video_bus
*video
= seq
->private;
1375 seq_printf(seq
, "Switching heads: %s\n",
1376 video
->flags
.multihead
? "yes" : "no");
1377 seq_printf(seq
, "Video ROM: %s\n",
1378 video
->flags
.rom
? "yes" : "no");
1379 seq_printf(seq
, "Device to be POSTed on boot: %s\n",
1380 video
->flags
.post
? "yes" : "no");
1386 static int acpi_video_bus_info_open_fs(struct inode
*inode
, struct file
*file
)
1388 return single_open(file
, acpi_video_bus_info_seq_show
,
1392 static int acpi_video_bus_ROM_seq_show(struct seq_file
*seq
, void *offset
)
1394 struct acpi_video_bus
*video
= seq
->private;
1400 printk(KERN_INFO PREFIX
"Please implement %s\n", __func__
);
1401 seq_printf(seq
, "<TODO>\n");
1407 static int acpi_video_bus_ROM_open_fs(struct inode
*inode
, struct file
*file
)
1409 return single_open(file
, acpi_video_bus_ROM_seq_show
, PDE(inode
)->data
);
1412 static int acpi_video_bus_POST_info_seq_show(struct seq_file
*seq
, void *offset
)
1414 struct acpi_video_bus
*video
= seq
->private;
1415 unsigned long long options
;
1422 status
= acpi_video_bus_POST_options(video
, &options
);
1423 if (ACPI_SUCCESS(status
)) {
1424 if (!(options
& 1)) {
1425 printk(KERN_WARNING PREFIX
1426 "The motherboard VGA device is not listed as a possible POST device.\n");
1427 printk(KERN_WARNING PREFIX
1428 "This indicates a BIOS bug. Please contact the manufacturer.\n");
1430 printk(KERN_WARNING
"%llx\n", options
);
1431 seq_printf(seq
, "can POST: <integrated video>");
1433 seq_printf(seq
, " <PCI video>");
1435 seq_printf(seq
, " <AGP video>");
1436 seq_putc(seq
, '\n');
1438 seq_printf(seq
, "<not supported>\n");
1444 acpi_video_bus_POST_info_open_fs(struct inode
*inode
, struct file
*file
)
1446 return single_open(file
, acpi_video_bus_POST_info_seq_show
,
1450 static int acpi_video_bus_POST_seq_show(struct seq_file
*seq
, void *offset
)
1452 struct acpi_video_bus
*video
= seq
->private;
1454 unsigned long long id
;
1460 status
= acpi_video_bus_get_POST(video
, &id
);
1461 if (!ACPI_SUCCESS(status
)) {
1462 seq_printf(seq
, "<not supported>\n");
1465 seq_printf(seq
, "device POSTed is <%s>\n", device_decode
[id
& 3]);
1471 static int acpi_video_bus_DOS_seq_show(struct seq_file
*seq
, void *offset
)
1473 struct acpi_video_bus
*video
= seq
->private;
1476 seq_printf(seq
, "DOS setting: <%d>\n", video
->dos_setting
);
1481 static int acpi_video_bus_POST_open_fs(struct inode
*inode
, struct file
*file
)
1483 return single_open(file
, acpi_video_bus_POST_seq_show
,
1487 static int acpi_video_bus_DOS_open_fs(struct inode
*inode
, struct file
*file
)
1489 return single_open(file
, acpi_video_bus_DOS_seq_show
, PDE(inode
)->data
);
1493 acpi_video_bus_write_POST(struct file
*file
,
1494 const char __user
* buffer
,
1495 size_t count
, loff_t
* data
)
1498 struct seq_file
*m
= file
->private_data
;
1499 struct acpi_video_bus
*video
= m
->private;
1500 char str
[12] = { 0 };
1501 unsigned long long opt
, options
;
1504 if (!video
|| count
+ 1 > sizeof str
)
1507 status
= acpi_video_bus_POST_options(video
, &options
);
1508 if (!ACPI_SUCCESS(status
))
1511 if (copy_from_user(str
, buffer
, count
))
1515 opt
= strtoul(str
, NULL
, 0);
1519 /* just in case an OEM 'forgot' the motherboard... */
1522 if (options
& (1ul << opt
)) {
1523 status
= acpi_video_bus_set_POST(video
, opt
);
1524 if (!ACPI_SUCCESS(status
))
1533 acpi_video_bus_write_DOS(struct file
*file
,
1534 const char __user
* buffer
,
1535 size_t count
, loff_t
* data
)
1538 struct seq_file
*m
= file
->private_data
;
1539 struct acpi_video_bus
*video
= m
->private;
1540 char str
[12] = { 0 };
1544 if (!video
|| count
+ 1 > sizeof str
)
1547 if (copy_from_user(str
, buffer
, count
))
1551 opt
= strtoul(str
, NULL
, 0);
1555 status
= acpi_video_bus_DOS(video
, opt
& 0x3, (opt
& 0x4) >> 2);
1557 if (!ACPI_SUCCESS(status
))
1563 static int acpi_video_bus_add_fs(struct acpi_device
*device
)
1565 struct acpi_video_bus
*video
= acpi_driver_data(device
);
1566 struct proc_dir_entry
*device_dir
;
1567 struct proc_dir_entry
*entry
;
1569 device_dir
= proc_mkdir(acpi_device_bid(device
), acpi_video_dir
);
1574 entry
= proc_create_data("info", S_IRUGO
, device_dir
,
1575 &acpi_video_bus_info_fops
,
1576 acpi_driver_data(device
));
1578 goto err_remove_dir
;
1581 entry
= proc_create_data("ROM", S_IRUGO
, device_dir
,
1582 &acpi_video_bus_ROM_fops
,
1583 acpi_driver_data(device
));
1585 goto err_remove_info
;
1587 /* 'POST_info' [R] */
1588 entry
= proc_create_data("POST_info", S_IRUGO
, device_dir
,
1589 &acpi_video_bus_POST_info_fops
,
1590 acpi_driver_data(device
));
1592 goto err_remove_rom
;
1595 entry
= proc_create_data("POST", S_IFREG
| S_IRUGO
| S_IWUSR
,
1597 &acpi_video_bus_POST_fops
,
1598 acpi_driver_data(device
));
1600 goto err_remove_post_info
;
1603 entry
= proc_create_data("DOS", S_IFREG
| S_IRUGO
| S_IWUSR
,
1605 &acpi_video_bus_DOS_fops
,
1606 acpi_driver_data(device
));
1608 goto err_remove_post
;
1610 video
->dir
= acpi_device_dir(device
) = device_dir
;
1614 remove_proc_entry("POST", device_dir
);
1615 err_remove_post_info
:
1616 remove_proc_entry("POST_info", device_dir
);
1618 remove_proc_entry("ROM", device_dir
);
1620 remove_proc_entry("info", device_dir
);
1622 remove_proc_entry(acpi_device_bid(device
), acpi_video_dir
);
1626 static int acpi_video_bus_remove_fs(struct acpi_device
*device
)
1628 struct proc_dir_entry
*device_dir
= acpi_device_dir(device
);
1631 remove_proc_entry("info", device_dir
);
1632 remove_proc_entry("ROM", device_dir
);
1633 remove_proc_entry("POST_info", device_dir
);
1634 remove_proc_entry("POST", device_dir
);
1635 remove_proc_entry("DOS", device_dir
);
1636 remove_proc_entry(acpi_device_bid(device
), acpi_video_dir
);
1637 acpi_device_dir(device
) = NULL
;
1643 /* --------------------------------------------------------------------------
1645 -------------------------------------------------------------------------- */
1647 /* device interface */
1648 static struct acpi_video_device_attrib
*
1649 acpi_video_get_device_attr(struct acpi_video_bus
*video
, unsigned long device_id
)
1651 struct acpi_video_enumerated_device
*ids
;
1654 for (i
= 0; i
< video
->attached_count
; i
++) {
1655 ids
= &video
->attached_array
[i
];
1656 if ((ids
->value
.int_val
& 0xffff) == device_id
)
1657 return &ids
->value
.attrib
;
1664 acpi_video_bus_get_one_device(struct acpi_device
*device
,
1665 struct acpi_video_bus
*video
)
1667 unsigned long long device_id
;
1669 struct acpi_video_device
*data
;
1670 struct acpi_video_device_attrib
* attribute
;
1672 if (!device
|| !video
)
1676 acpi_evaluate_integer(device
->handle
, "_ADR", NULL
, &device_id
);
1677 if (ACPI_SUCCESS(status
)) {
1679 data
= kzalloc(sizeof(struct acpi_video_device
), GFP_KERNEL
);
1683 strcpy(acpi_device_name(device
), ACPI_VIDEO_DEVICE_NAME
);
1684 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
1685 device
->driver_data
= data
;
1687 data
->device_id
= device_id
;
1688 data
->video
= video
;
1691 attribute
= acpi_video_get_device_attr(video
, device_id
);
1693 if((attribute
!= NULL
) && attribute
->device_id_scheme
) {
1694 switch (attribute
->display_type
) {
1695 case ACPI_VIDEO_DISPLAY_CRT
:
1696 data
->flags
.crt
= 1;
1698 case ACPI_VIDEO_DISPLAY_TV
:
1699 data
->flags
.tvout
= 1;
1701 case ACPI_VIDEO_DISPLAY_DVI
:
1702 data
->flags
.dvi
= 1;
1704 case ACPI_VIDEO_DISPLAY_LCD
:
1705 data
->flags
.lcd
= 1;
1708 data
->flags
.unknown
= 1;
1711 if(attribute
->bios_can_detect
)
1712 data
->flags
.bios
= 1;
1714 data
->flags
.unknown
= 1;
1716 acpi_video_device_bind(video
, data
);
1717 acpi_video_device_find_cap(data
);
1719 status
= acpi_install_notify_handler(device
->handle
,
1721 acpi_video_device_notify
,
1723 if (ACPI_FAILURE(status
)) {
1724 printk(KERN_ERR PREFIX
1725 "Error installing notify handler\n");
1726 if(data
->brightness
)
1727 kfree(data
->brightness
->levels
);
1728 kfree(data
->brightness
);
1733 mutex_lock(&video
->device_list_lock
);
1734 list_add_tail(&data
->entry
, &video
->video_device_list
);
1735 mutex_unlock(&video
->device_list_lock
);
1737 acpi_video_device_add_fs(device
);
1747 * video : video bus device
1752 * Enumerate the video device list of the video bus,
1753 * bind the ids with the corresponding video devices
1754 * under the video bus.
1757 static void acpi_video_device_rebind(struct acpi_video_bus
*video
)
1759 struct acpi_video_device
*dev
;
1761 mutex_lock(&video
->device_list_lock
);
1763 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1764 acpi_video_device_bind(video
, dev
);
1766 mutex_unlock(&video
->device_list_lock
);
1771 * video : video bus device
1772 * device : video output device under the video
1778 * Bind the ids with the corresponding video devices
1779 * under the video bus.
1783 acpi_video_device_bind(struct acpi_video_bus
*video
,
1784 struct acpi_video_device
*device
)
1786 struct acpi_video_enumerated_device
*ids
;
1789 for (i
= 0; i
< video
->attached_count
; i
++) {
1790 ids
= &video
->attached_array
[i
];
1791 if (device
->device_id
== (ids
->value
.int_val
& 0xffff)) {
1792 ids
->bind_info
= device
;
1793 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "device_bind %d\n", i
));
1800 * video : video bus device
1805 * Call _DOD to enumerate all devices attached to display adapter
1809 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
)
1814 struct acpi_video_enumerated_device
*active_list
;
1815 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1816 union acpi_object
*dod
= NULL
;
1817 union acpi_object
*obj
;
1819 status
= acpi_evaluate_object(video
->device
->handle
, "_DOD", NULL
, &buffer
);
1820 if (!ACPI_SUCCESS(status
)) {
1821 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _DOD"));
1825 dod
= buffer
.pointer
;
1826 if (!dod
|| (dod
->type
!= ACPI_TYPE_PACKAGE
)) {
1827 ACPI_EXCEPTION((AE_INFO
, status
, "Invalid _DOD data"));
1832 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found %d video heads in _DOD\n",
1833 dod
->package
.count
));
1835 active_list
= kcalloc(1 + dod
->package
.count
,
1836 sizeof(struct acpi_video_enumerated_device
),
1844 for (i
= 0; i
< dod
->package
.count
; i
++) {
1845 obj
= &dod
->package
.elements
[i
];
1847 if (obj
->type
!= ACPI_TYPE_INTEGER
) {
1848 printk(KERN_ERR PREFIX
1849 "Invalid _DOD data in element %d\n", i
);
1853 active_list
[count
].value
.int_val
= obj
->integer
.value
;
1854 active_list
[count
].bind_info
= NULL
;
1855 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "dod element[%d] = %d\n", i
,
1856 (int)obj
->integer
.value
));
1860 kfree(video
->attached_array
);
1862 video
->attached_array
= active_list
;
1863 video
->attached_count
= count
;
1866 kfree(buffer
.pointer
);
1871 acpi_video_get_next_level(struct acpi_video_device
*device
,
1872 u32 level_current
, u32 event
)
1874 int min
, max
, min_above
, max_below
, i
, l
, delta
= 255;
1875 max
= max_below
= 0;
1876 min
= min_above
= 255;
1877 /* Find closest level to level_current */
1878 for (i
= 2; i
< device
->brightness
->count
; i
++) {
1879 l
= device
->brightness
->levels
[i
];
1880 if (abs(l
- level_current
) < abs(delta
)) {
1881 delta
= l
- level_current
;
1886 /* Ajust level_current to closest available level */
1887 level_current
+= delta
;
1888 for (i
= 2; i
< device
->brightness
->count
; i
++) {
1889 l
= device
->brightness
->levels
[i
];
1894 if (l
< min_above
&& l
> level_current
)
1896 if (l
> max_below
&& l
< level_current
)
1901 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
:
1902 return (level_current
< max
) ? min_above
: min
;
1903 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
:
1904 return (level_current
< max
) ? min_above
: max
;
1905 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
:
1906 return (level_current
> min
) ? max_below
: min
;
1907 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
:
1908 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
:
1911 return level_current
;
1916 acpi_video_switch_brightness(struct acpi_video_device
*device
, int event
)
1918 unsigned long long level_current
, level_next
;
1919 int result
= -EINVAL
;
1921 if (!device
->brightness
)
1924 result
= acpi_video_device_lcd_get_level_current(device
,
1929 level_next
= acpi_video_get_next_level(device
, level_current
, event
);
1931 result
= acpi_video_device_lcd_set_level(device
, level_next
);
1935 printk(KERN_ERR PREFIX
"Failed to switch the brightness\n");
1941 acpi_video_bus_get_devices(struct acpi_video_bus
*video
,
1942 struct acpi_device
*device
)
1945 struct acpi_device
*dev
;
1947 acpi_video_device_enumerate(video
);
1949 list_for_each_entry(dev
, &device
->children
, node
) {
1951 status
= acpi_video_bus_get_one_device(dev
, video
);
1952 if (ACPI_FAILURE(status
)) {
1953 printk(KERN_WARNING PREFIX
1954 "Cant attach device");
1961 static int acpi_video_bus_put_one_device(struct acpi_video_device
*device
)
1964 struct acpi_video_bus
*video
;
1967 if (!device
|| !device
->video
)
1970 video
= device
->video
;
1972 acpi_video_device_remove_fs(device
->dev
);
1974 status
= acpi_remove_notify_handler(device
->dev
->handle
,
1976 acpi_video_device_notify
);
1977 backlight_device_unregister(device
->backlight
);
1979 sysfs_remove_link(&device
->dev
->dev
.kobj
,
1981 sysfs_remove_link(&device
->cdev
->device
.kobj
,
1983 thermal_cooling_device_unregister(device
->cdev
);
1984 device
->cdev
= NULL
;
1986 video_output_unregister(device
->output_dev
);
1991 static int acpi_video_bus_put_devices(struct acpi_video_bus
*video
)
1994 struct acpi_video_device
*dev
, *next
;
1996 mutex_lock(&video
->device_list_lock
);
1998 list_for_each_entry_safe(dev
, next
, &video
->video_device_list
, entry
) {
2000 status
= acpi_video_bus_put_one_device(dev
);
2001 if (ACPI_FAILURE(status
))
2002 printk(KERN_WARNING PREFIX
2003 "hhuuhhuu bug in acpi video driver.\n");
2005 if (dev
->brightness
) {
2006 kfree(dev
->brightness
->levels
);
2007 kfree(dev
->brightness
);
2009 list_del(&dev
->entry
);
2013 mutex_unlock(&video
->device_list_lock
);
2018 /* acpi_video interface */
2020 static int acpi_video_bus_start_devices(struct acpi_video_bus
*video
)
2022 return acpi_video_bus_DOS(video
, 0, 0);
2025 static int acpi_video_bus_stop_devices(struct acpi_video_bus
*video
)
2027 return acpi_video_bus_DOS(video
, 0, 1);
2030 static void acpi_video_bus_notify(struct acpi_device
*device
, u32 event
)
2032 struct acpi_video_bus
*video
= acpi_driver_data(device
);
2033 struct input_dev
*input
;
2039 input
= video
->input
;
2042 case ACPI_VIDEO_NOTIFY_SWITCH
: /* User requested a switch,
2043 * most likely via hotkey. */
2044 acpi_bus_generate_proc_event(device
, event
, 0);
2045 keycode
= KEY_SWITCHVIDEOMODE
;
2048 case ACPI_VIDEO_NOTIFY_PROBE
: /* User plugged in or removed a video
2050 acpi_video_device_enumerate(video
);
2051 acpi_video_device_rebind(video
);
2052 acpi_bus_generate_proc_event(device
, event
, 0);
2053 keycode
= KEY_SWITCHVIDEOMODE
;
2056 case ACPI_VIDEO_NOTIFY_CYCLE
: /* Cycle Display output hotkey pressed. */
2057 acpi_bus_generate_proc_event(device
, event
, 0);
2058 keycode
= KEY_SWITCHVIDEOMODE
;
2060 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT
: /* Next Display output hotkey pressed. */
2061 acpi_bus_generate_proc_event(device
, event
, 0);
2062 keycode
= KEY_VIDEO_NEXT
;
2064 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT
: /* previous Display output hotkey pressed. */
2065 acpi_bus_generate_proc_event(device
, event
, 0);
2066 keycode
= KEY_VIDEO_PREV
;
2070 keycode
= KEY_UNKNOWN
;
2071 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
2072 "Unsupported event [0x%x]\n", event
));
2076 acpi_notifier_call_chain(device
, event
, 0);
2077 input_report_key(input
, keycode
, 1);
2079 input_report_key(input
, keycode
, 0);
2085 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
)
2087 struct acpi_video_device
*video_device
= data
;
2088 struct acpi_device
*device
= NULL
;
2089 struct acpi_video_bus
*bus
;
2090 struct input_dev
*input
;
2096 device
= video_device
->dev
;
2097 bus
= video_device
->video
;
2101 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
: /* Cycle brightness */
2102 if (brightness_switch_enabled
)
2103 acpi_video_switch_brightness(video_device
, event
);
2104 acpi_bus_generate_proc_event(device
, event
, 0);
2105 keycode
= KEY_BRIGHTNESS_CYCLE
;
2107 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
: /* Increase brightness */
2108 if (brightness_switch_enabled
)
2109 acpi_video_switch_brightness(video_device
, event
);
2110 acpi_bus_generate_proc_event(device
, event
, 0);
2111 keycode
= KEY_BRIGHTNESSUP
;
2113 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
: /* Decrease brightness */
2114 if (brightness_switch_enabled
)
2115 acpi_video_switch_brightness(video_device
, event
);
2116 acpi_bus_generate_proc_event(device
, event
, 0);
2117 keycode
= KEY_BRIGHTNESSDOWN
;
2119 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
: /* zero brightnesss */
2120 if (brightness_switch_enabled
)
2121 acpi_video_switch_brightness(video_device
, event
);
2122 acpi_bus_generate_proc_event(device
, event
, 0);
2123 keycode
= KEY_BRIGHTNESS_ZERO
;
2125 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
: /* display device off */
2126 if (brightness_switch_enabled
)
2127 acpi_video_switch_brightness(video_device
, event
);
2128 acpi_bus_generate_proc_event(device
, event
, 0);
2129 keycode
= KEY_DISPLAY_OFF
;
2132 keycode
= KEY_UNKNOWN
;
2133 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
2134 "Unsupported event [0x%x]\n", event
));
2138 acpi_notifier_call_chain(device
, event
, 0);
2139 input_report_key(input
, keycode
, 1);
2141 input_report_key(input
, keycode
, 0);
2147 static int instance
;
2148 static int acpi_video_resume(struct acpi_device
*device
)
2150 struct acpi_video_bus
*video
;
2151 struct acpi_video_device
*video_device
;
2154 if (!device
|| !acpi_driver_data(device
))
2157 video
= acpi_driver_data(device
);
2159 for (i
= 0; i
< video
->attached_count
; i
++) {
2160 video_device
= video
->attached_array
[i
].bind_info
;
2161 if (video_device
&& video_device
->backlight
)
2162 acpi_video_set_brightness(video_device
->backlight
);
2167 static int acpi_video_bus_add(struct acpi_device
*device
)
2169 struct acpi_video_bus
*video
;
2170 struct input_dev
*input
;
2173 video
= kzalloc(sizeof(struct acpi_video_bus
), GFP_KERNEL
);
2177 /* a hack to fix the duplicate name "VID" problem on T61 */
2178 if (!strcmp(device
->pnp
.bus_id
, "VID")) {
2180 device
->pnp
.bus_id
[3] = '0' + instance
;
2183 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2184 if (!strcmp(device
->pnp
.bus_id
, "VGA")) {
2186 device
->pnp
.bus_id
[3] = '0' + instance
;
2190 video
->device
= device
;
2191 strcpy(acpi_device_name(device
), ACPI_VIDEO_BUS_NAME
);
2192 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
2193 device
->driver_data
= video
;
2195 acpi_video_bus_find_cap(video
);
2196 error
= acpi_video_bus_check(video
);
2198 goto err_free_video
;
2200 error
= acpi_video_bus_add_fs(device
);
2202 goto err_free_video
;
2204 mutex_init(&video
->device_list_lock
);
2205 INIT_LIST_HEAD(&video
->video_device_list
);
2207 acpi_video_bus_get_devices(video
, device
);
2208 acpi_video_bus_start_devices(video
);
2210 video
->input
= input
= input_allocate_device();
2213 goto err_stop_video
;
2216 snprintf(video
->phys
, sizeof(video
->phys
),
2217 "%s/video/input0", acpi_device_hid(video
->device
));
2219 input
->name
= acpi_device_name(video
->device
);
2220 input
->phys
= video
->phys
;
2221 input
->id
.bustype
= BUS_HOST
;
2222 input
->id
.product
= 0x06;
2223 input
->dev
.parent
= &device
->dev
;
2224 input
->evbit
[0] = BIT(EV_KEY
);
2225 set_bit(KEY_SWITCHVIDEOMODE
, input
->keybit
);
2226 set_bit(KEY_VIDEO_NEXT
, input
->keybit
);
2227 set_bit(KEY_VIDEO_PREV
, input
->keybit
);
2228 set_bit(KEY_BRIGHTNESS_CYCLE
, input
->keybit
);
2229 set_bit(KEY_BRIGHTNESSUP
, input
->keybit
);
2230 set_bit(KEY_BRIGHTNESSDOWN
, input
->keybit
);
2231 set_bit(KEY_BRIGHTNESS_ZERO
, input
->keybit
);
2232 set_bit(KEY_DISPLAY_OFF
, input
->keybit
);
2233 set_bit(KEY_UNKNOWN
, input
->keybit
);
2235 error
= input_register_device(input
);
2237 goto err_free_input_dev
;
2239 printk(KERN_INFO PREFIX
"%s [%s] (multi-head: %s rom: %s post: %s)\n",
2240 ACPI_VIDEO_DEVICE_NAME
, acpi_device_bid(device
),
2241 video
->flags
.multihead
? "yes" : "no",
2242 video
->flags
.rom
? "yes" : "no",
2243 video
->flags
.post
? "yes" : "no");
2248 input_free_device(input
);
2250 acpi_video_bus_stop_devices(video
);
2251 acpi_video_bus_put_devices(video
);
2252 kfree(video
->attached_array
);
2253 acpi_video_bus_remove_fs(device
);
2256 device
->driver_data
= NULL
;
2261 static int acpi_video_bus_remove(struct acpi_device
*device
, int type
)
2263 struct acpi_video_bus
*video
= NULL
;
2266 if (!device
|| !acpi_driver_data(device
))
2269 video
= acpi_driver_data(device
);
2271 acpi_video_bus_stop_devices(video
);
2272 acpi_video_bus_put_devices(video
);
2273 acpi_video_bus_remove_fs(device
);
2275 input_unregister_device(video
->input
);
2276 kfree(video
->attached_array
);
2282 static int __init
intel_opregion_present(void)
2284 #if defined(CONFIG_DRM_I915) || defined(CONFIG_DRM_I915_MODULE)
2285 struct pci_dev
*dev
= NULL
;
2288 for_each_pci_dev(dev
) {
2289 if ((dev
->class >> 8) != PCI_CLASS_DISPLAY_VGA
)
2291 if (dev
->vendor
!= PCI_VENDOR_ID_INTEL
)
2293 pci_read_config_dword(dev
, 0xfc, &address
);
2302 int acpi_video_register(void)
2306 acpi_video_dir
= proc_mkdir(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2307 if (!acpi_video_dir
)
2310 result
= acpi_bus_register_driver(&acpi_video_bus
);
2312 remove_proc_entry(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2318 EXPORT_SYMBOL(acpi_video_register
);
2321 * This is kind of nasty. Hardware using Intel chipsets may require
2322 * the video opregion code to be run first in order to initialise
2323 * state before any ACPI video calls are made. To handle this we defer
2324 * registration of the video class until the opregion code has run.
2327 static int __init
acpi_video_init(void)
2329 dmi_check_system(video_dmi_table
);
2331 if (intel_opregion_present())
2334 return acpi_video_register();
2337 void __exit
acpi_video_exit(void)
2340 acpi_bus_unregister_driver(&acpi_video_bus
);
2342 remove_proc_entry(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2346 EXPORT_SYMBOL(acpi_video_exit
);
2348 module_init(acpi_video_init
);
2349 module_exit(acpi_video_exit
);