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>
43 #include <linux/dmi.h>
44 #include <acpi/acpi_bus.h>
45 #include <acpi/acpi_drivers.h>
47 #define PREFIX "ACPI: "
49 #define ACPI_VIDEO_CLASS "video"
50 #define ACPI_VIDEO_BUS_NAME "Video Bus"
51 #define ACPI_VIDEO_DEVICE_NAME "Video Device"
52 #define ACPI_VIDEO_NOTIFY_SWITCH 0x80
53 #define ACPI_VIDEO_NOTIFY_PROBE 0x81
54 #define ACPI_VIDEO_NOTIFY_CYCLE 0x82
55 #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
56 #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
58 #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
59 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
60 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
61 #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
62 #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
64 #define MAX_NAME_LEN 20
66 #define ACPI_VIDEO_DISPLAY_CRT 1
67 #define ACPI_VIDEO_DISPLAY_TV 2
68 #define ACPI_VIDEO_DISPLAY_DVI 3
69 #define ACPI_VIDEO_DISPLAY_LCD 4
71 #define _COMPONENT ACPI_VIDEO_COMPONENT
72 ACPI_MODULE_NAME("video");
74 MODULE_AUTHOR("Bruno Ducrot");
75 MODULE_DESCRIPTION("ACPI Video Driver");
76 MODULE_LICENSE("GPL");
78 static int brightness_switch_enabled
= 1;
79 module_param(brightness_switch_enabled
, bool, 0644);
82 * By default, we don't allow duplicate ACPI video bus devices
83 * under the same VGA controller
85 static int allow_duplicates
;
86 module_param(allow_duplicates
, bool, 0644);
88 static int register_count
= 0;
89 static int acpi_video_bus_add(struct acpi_device
*device
);
90 static int acpi_video_bus_remove(struct acpi_device
*device
, int type
);
91 static int acpi_video_resume(struct acpi_device
*device
);
92 static void acpi_video_bus_notify(struct acpi_device
*device
, u32 event
);
94 static const struct acpi_device_id video_device_ids
[] = {
98 MODULE_DEVICE_TABLE(acpi
, video_device_ids
);
100 static struct acpi_driver acpi_video_bus
= {
102 .class = ACPI_VIDEO_CLASS
,
103 .ids
= video_device_ids
,
105 .add
= acpi_video_bus_add
,
106 .remove
= acpi_video_bus_remove
,
107 .resume
= acpi_video_resume
,
108 .notify
= acpi_video_bus_notify
,
112 struct acpi_video_bus_flags
{
113 u8 multihead
:1; /* can switch video heads */
114 u8 rom
:1; /* can retrieve a video rom */
115 u8 post
:1; /* can configure the head to */
119 struct acpi_video_bus_cap
{
120 u8 _DOS
:1; /*Enable/Disable output switching */
121 u8 _DOD
:1; /*Enumerate all devices attached to display adapter */
122 u8 _ROM
:1; /*Get ROM Data */
123 u8 _GPD
:1; /*Get POST Device */
124 u8 _SPD
:1; /*Set POST Device */
125 u8 _VPO
:1; /*Video POST Options */
129 struct acpi_video_device_attrib
{
130 u32 display_index
:4; /* A zero-based instance of the Display */
131 u32 display_port_attachment
:4; /*This field differentiates the display type */
132 u32 display_type
:4; /*Describe the specific type in use */
133 u32 vendor_specific
:4; /*Chipset Vendor Specific */
134 u32 bios_can_detect
:1; /*BIOS can detect the device */
135 u32 depend_on_vga
:1; /*Non-VGA output device whose power is related to
137 u32 pipe_id
:3; /*For VGA multiple-head devices. */
138 u32 reserved
:10; /*Must be 0 */
139 u32 device_id_scheme
:1; /*Device ID Scheme */
142 struct acpi_video_enumerated_device
{
145 struct acpi_video_device_attrib attrib
;
147 struct acpi_video_device
*bind_info
;
150 struct acpi_video_bus
{
151 struct acpi_device
*device
;
153 struct acpi_video_enumerated_device
*attached_array
;
155 struct acpi_video_bus_cap cap
;
156 struct acpi_video_bus_flags flags
;
157 struct list_head video_device_list
;
158 struct mutex device_list_lock
; /* protects video_device_list */
159 struct proc_dir_entry
*dir
;
160 struct input_dev
*input
;
161 char phys
[32]; /* for input device */
164 struct acpi_video_device_flags
{
174 struct acpi_video_device_cap
{
175 u8 _ADR
:1; /*Return the unique ID */
176 u8 _BCL
:1; /*Query list of brightness control levels supported */
177 u8 _BCM
:1; /*Set the brightness level */
178 u8 _BQC
:1; /* Get current brightness level */
179 u8 _BCQ
:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
180 u8 _DDC
:1; /*Return the EDID for this device */
181 u8 _DCS
:1; /*Return status of output device */
182 u8 _DGS
:1; /*Query graphics state */
183 u8 _DSS
:1; /*Device state set */
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 _BCL_use_index
:1; /* levels in _BCL are index values */
190 u8 _BCM_use_index
:1; /* input of _BCM is an index value */
191 u8 _BQC_use_index
:1; /* _BQC returns an index value */
194 struct acpi_video_device_brightness
{
198 struct acpi_video_brightness_flags flags
;
201 struct acpi_video_device
{
202 unsigned long device_id
;
203 struct acpi_video_device_flags flags
;
204 struct acpi_video_device_cap cap
;
205 struct list_head entry
;
206 struct acpi_video_bus
*video
;
207 struct acpi_device
*dev
;
208 struct acpi_video_device_brightness
*brightness
;
209 struct backlight_device
*backlight
;
210 struct thermal_cooling_device
*cooling_dev
;
211 struct output_device
*output_dev
;
215 static int acpi_video_bus_info_open_fs(struct inode
*inode
, struct file
*file
);
216 static const struct file_operations acpi_video_bus_info_fops
= {
217 .owner
= THIS_MODULE
,
218 .open
= acpi_video_bus_info_open_fs
,
221 .release
= single_release
,
224 static int acpi_video_bus_ROM_open_fs(struct inode
*inode
, struct file
*file
);
225 static const struct file_operations acpi_video_bus_ROM_fops
= {
226 .owner
= THIS_MODULE
,
227 .open
= acpi_video_bus_ROM_open_fs
,
230 .release
= single_release
,
233 static int acpi_video_bus_POST_info_open_fs(struct inode
*inode
,
235 static const struct file_operations acpi_video_bus_POST_info_fops
= {
236 .owner
= THIS_MODULE
,
237 .open
= acpi_video_bus_POST_info_open_fs
,
240 .release
= single_release
,
243 static int acpi_video_bus_POST_open_fs(struct inode
*inode
, struct file
*file
);
244 static ssize_t
acpi_video_bus_write_POST(struct file
*file
,
245 const char __user
*buffer
, size_t count
, loff_t
*data
);
246 static const struct file_operations acpi_video_bus_POST_fops
= {
247 .owner
= THIS_MODULE
,
248 .open
= acpi_video_bus_POST_open_fs
,
250 .write
= acpi_video_bus_write_POST
,
252 .release
= single_release
,
255 static int acpi_video_bus_DOS_open_fs(struct inode
*inode
, struct file
*file
);
256 static ssize_t
acpi_video_bus_write_DOS(struct file
*file
,
257 const char __user
*buffer
, size_t count
, loff_t
*data
);
258 static const struct file_operations acpi_video_bus_DOS_fops
= {
259 .owner
= THIS_MODULE
,
260 .open
= acpi_video_bus_DOS_open_fs
,
262 .write
= acpi_video_bus_write_DOS
,
264 .release
= single_release
,
268 static int acpi_video_device_info_open_fs(struct inode
*inode
,
270 static const struct file_operations acpi_video_device_info_fops
= {
271 .owner
= THIS_MODULE
,
272 .open
= acpi_video_device_info_open_fs
,
275 .release
= single_release
,
278 static int acpi_video_device_state_open_fs(struct inode
*inode
,
280 static ssize_t
acpi_video_device_write_state(struct file
*file
,
281 const char __user
*buffer
, size_t count
, loff_t
*data
);
282 static const struct file_operations acpi_video_device_state_fops
= {
283 .owner
= THIS_MODULE
,
284 .open
= acpi_video_device_state_open_fs
,
286 .write
= acpi_video_device_write_state
,
288 .release
= single_release
,
291 static int acpi_video_device_brightness_open_fs(struct inode
*inode
,
293 static ssize_t
acpi_video_device_write_brightness(struct file
*file
,
294 const char __user
*buffer
, size_t count
, loff_t
*data
);
295 static const struct file_operations acpi_video_device_brightness_fops
= {
296 .owner
= THIS_MODULE
,
297 .open
= acpi_video_device_brightness_open_fs
,
299 .write
= acpi_video_device_write_brightness
,
301 .release
= single_release
,
304 static int acpi_video_device_EDID_open_fs(struct inode
*inode
,
306 static const struct file_operations acpi_video_device_EDID_fops
= {
307 .owner
= THIS_MODULE
,
308 .open
= acpi_video_device_EDID_open_fs
,
311 .release
= single_release
,
314 static const char device_decode
[][30] = {
315 "motherboard VGA device",
321 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
);
322 static void acpi_video_device_rebind(struct acpi_video_bus
*video
);
323 static void acpi_video_device_bind(struct acpi_video_bus
*video
,
324 struct acpi_video_device
*device
);
325 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
);
326 static int acpi_video_device_lcd_set_level(struct acpi_video_device
*device
,
328 static int acpi_video_device_lcd_get_level_current(
329 struct acpi_video_device
*device
,
330 unsigned long long *level
, int init
);
331 static int acpi_video_get_next_level(struct acpi_video_device
*device
,
332 u32 level_current
, u32 event
);
333 static int acpi_video_switch_brightness(struct acpi_video_device
*device
,
335 static int acpi_video_device_get_state(struct acpi_video_device
*device
,
336 unsigned long long *state
);
337 static int acpi_video_output_get(struct output_device
*od
);
338 static int acpi_video_device_set_state(struct acpi_video_device
*device
, int state
);
340 /*backlight device sysfs support*/
341 static int acpi_video_get_brightness(struct backlight_device
*bd
)
343 unsigned long long cur_level
;
345 struct acpi_video_device
*vd
=
346 (struct acpi_video_device
*)bl_get_data(bd
);
348 if (acpi_video_device_lcd_get_level_current(vd
, &cur_level
, 0))
350 for (i
= 2; i
< vd
->brightness
->count
; i
++) {
351 if (vd
->brightness
->levels
[i
] == cur_level
)
352 /* The first two entries are special - see page 575
353 of the ACPI spec 3.0 */
359 static int acpi_video_set_brightness(struct backlight_device
*bd
)
361 int request_level
= bd
->props
.brightness
+ 2;
362 struct acpi_video_device
*vd
=
363 (struct acpi_video_device
*)bl_get_data(bd
);
365 return acpi_video_device_lcd_set_level(vd
,
366 vd
->brightness
->levels
[request_level
]);
369 static struct backlight_ops acpi_backlight_ops
= {
370 .get_brightness
= acpi_video_get_brightness
,
371 .update_status
= acpi_video_set_brightness
,
374 /*video output device sysfs support*/
375 static int acpi_video_output_get(struct output_device
*od
)
377 unsigned long long state
;
378 struct acpi_video_device
*vd
=
379 (struct acpi_video_device
*)dev_get_drvdata(&od
->dev
);
380 acpi_video_device_get_state(vd
, &state
);
384 static int acpi_video_output_set(struct output_device
*od
)
386 unsigned long state
= od
->request_state
;
387 struct acpi_video_device
*vd
=
388 (struct acpi_video_device
*)dev_get_drvdata(&od
->dev
);
389 return acpi_video_device_set_state(vd
, state
);
392 static struct output_properties acpi_output_properties
= {
393 .set_state
= acpi_video_output_set
,
394 .get_status
= acpi_video_output_get
,
398 /* thermal cooling device callbacks */
399 static int video_get_max_state(struct thermal_cooling_device
*cooling_dev
, unsigned
402 struct acpi_device
*device
= cooling_dev
->devdata
;
403 struct acpi_video_device
*video
= acpi_driver_data(device
);
405 *state
= video
->brightness
->count
- 3;
409 static int video_get_cur_state(struct thermal_cooling_device
*cooling_dev
, unsigned
412 struct acpi_device
*device
= cooling_dev
->devdata
;
413 struct acpi_video_device
*video
= acpi_driver_data(device
);
414 unsigned long long level
;
417 if (acpi_video_device_lcd_get_level_current(video
, &level
, 0))
419 for (offset
= 2; offset
< video
->brightness
->count
; offset
++)
420 if (level
== video
->brightness
->levels
[offset
]) {
421 *state
= video
->brightness
->count
- offset
- 1;
429 video_set_cur_state(struct thermal_cooling_device
*cooling_dev
, unsigned long state
)
431 struct acpi_device
*device
= cooling_dev
->devdata
;
432 struct acpi_video_device
*video
= acpi_driver_data(device
);
435 if ( state
>= video
->brightness
->count
- 2)
438 state
= video
->brightness
->count
- state
;
439 level
= video
->brightness
->levels
[state
-1];
440 return acpi_video_device_lcd_set_level(video
, level
);
443 static struct thermal_cooling_device_ops video_cooling_ops
= {
444 .get_max_state
= video_get_max_state
,
445 .get_cur_state
= video_get_cur_state
,
446 .set_cur_state
= video_set_cur_state
,
449 /* --------------------------------------------------------------------------
451 -------------------------------------------------------------------------- */
456 acpi_video_device_query(struct acpi_video_device
*device
, unsigned long long *state
)
460 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DGS", NULL
, state
);
466 acpi_video_device_get_state(struct acpi_video_device
*device
,
467 unsigned long long *state
)
471 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DCS", NULL
, state
);
477 acpi_video_device_set_state(struct acpi_video_device
*device
, int state
)
480 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
481 struct acpi_object_list args
= { 1, &arg0
};
482 unsigned long long ret
;
485 arg0
.integer
.value
= state
;
486 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DSS", &args
, &ret
);
492 acpi_video_device_lcd_query_levels(struct acpi_video_device
*device
,
493 union acpi_object
**levels
)
496 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
497 union acpi_object
*obj
;
502 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCL", NULL
, &buffer
);
503 if (!ACPI_SUCCESS(status
))
505 obj
= (union acpi_object
*)buffer
.pointer
;
506 if (!obj
|| (obj
->type
!= ACPI_TYPE_PACKAGE
)) {
507 printk(KERN_ERR PREFIX
"Invalid _BCL data\n");
517 kfree(buffer
.pointer
);
523 acpi_video_device_lcd_set_level(struct acpi_video_device
*device
, int level
)
526 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
527 struct acpi_object_list args
= { 1, &arg0
};
530 arg0
.integer
.value
= level
;
532 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCM",
534 if (ACPI_FAILURE(status
)) {
535 ACPI_ERROR((AE_INFO
, "Evaluating _BCM failed"));
539 device
->brightness
->curr
= level
;
540 for (state
= 2; state
< device
->brightness
->count
; state
++)
541 if (level
== device
->brightness
->levels
[state
]) {
542 if (device
->backlight
)
543 device
->backlight
->props
.brightness
= state
- 2;
547 ACPI_ERROR((AE_INFO
, "Current brightness invalid"));
552 * For some buggy _BQC methods, we need to add a constant value to
553 * the _BQC return value to get the actual current brightness level
556 static int bqc_offset_aml_bug_workaround
;
557 static int __init
video_set_bqc_offset(const struct dmi_system_id
*d
)
559 bqc_offset_aml_bug_workaround
= 9;
563 static struct dmi_system_id video_dmi_table
[] __initdata
= {
565 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
568 .callback
= video_set_bqc_offset
,
569 .ident
= "Acer Aspire 5720",
571 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
572 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5720"),
576 .callback
= video_set_bqc_offset
,
577 .ident
= "Acer Aspire 5710Z",
579 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
580 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5710Z"),
584 .callback
= video_set_bqc_offset
,
585 .ident
= "eMachines E510",
587 DMI_MATCH(DMI_BOARD_VENDOR
, "EMACHINES"),
588 DMI_MATCH(DMI_PRODUCT_NAME
, "eMachines E510"),
592 .callback
= video_set_bqc_offset
,
593 .ident
= "Acer Aspire 5315",
595 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
596 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 5315"),
600 .callback
= video_set_bqc_offset
,
601 .ident
= "Acer Aspire 7720",
603 DMI_MATCH(DMI_BOARD_VENDOR
, "Acer"),
604 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire 7720"),
611 acpi_video_device_lcd_get_level_current(struct acpi_video_device
*device
,
612 unsigned long long *level
, int init
)
614 acpi_status status
= AE_OK
;
617 if (device
->cap
._BQC
|| device
->cap
._BCQ
) {
618 char *buf
= device
->cap
._BQC
? "_BQC" : "_BCQ";
620 status
= acpi_evaluate_integer(device
->dev
->handle
, buf
,
622 if (ACPI_SUCCESS(status
)) {
623 if (device
->brightness
->flags
._BQC_use_index
) {
624 if (device
->brightness
->flags
._BCL_reversed
)
625 *level
= device
->brightness
->count
627 *level
= device
->brightness
->levels
[*level
+ 2];
630 *level
+= bqc_offset_aml_bug_workaround
;
631 for (i
= 2; i
< device
->brightness
->count
; i
++)
632 if (device
->brightness
->levels
[i
] == *level
) {
633 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");
705 acpi_video_bus_set_POST(struct acpi_video_bus
*video
, unsigned long option
)
708 unsigned long long tmp
;
709 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
710 struct acpi_object_list args
= { 1, &arg0
};
713 arg0
.integer
.value
= option
;
715 status
= acpi_evaluate_integer(video
->device
->handle
, "_SPD", &args
, &tmp
);
716 if (ACPI_SUCCESS(status
))
717 status
= tmp
? (-EINVAL
) : (AE_OK
);
723 acpi_video_bus_get_POST(struct acpi_video_bus
*video
, unsigned long long *id
)
727 status
= acpi_evaluate_integer(video
->device
->handle
, "_GPD", NULL
, id
);
733 acpi_video_bus_POST_options(struct acpi_video_bus
*video
,
734 unsigned long long *options
)
738 status
= acpi_evaluate_integer(video
->device
->handle
, "_VPO", NULL
, options
);
746 * video : video bus device pointer
748 * 0. The system BIOS should NOT automatically switch(toggle)
749 * the active display output.
750 * 1. The system BIOS should automatically switch (toggle) the
751 * active display output. No switch event.
752 * 2. The _DGS value should be locked.
753 * 3. The system BIOS should not automatically switch (toggle) the
754 * active display output, but instead generate the display switch
757 * 0. The system BIOS should automatically control the brightness level
758 * of the LCD when the power changes from AC to DC
759 * 1. The system BIOS should NOT automatically control the brightness
760 * level of the LCD when the power changes from AC to DC.
766 acpi_video_bus_DOS(struct acpi_video_bus
*video
, int bios_flag
, int lcd_flag
)
769 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
770 struct acpi_object_list args
= { 1, &arg0
};
773 if (bios_flag
< 0 || bios_flag
> 3 || lcd_flag
< 0 || lcd_flag
> 1) {
777 arg0
.integer
.value
= (lcd_flag
<< 2) | bios_flag
;
778 video
->dos_setting
= arg0
.integer
.value
;
779 acpi_evaluate_object(video
->device
->handle
, "_DOS", &args
, NULL
);
786 * Simple comparison function used to sort backlight levels.
790 acpi_video_cmp_level(const void *a
, const void *b
)
792 return *(int *)a
- *(int *)b
;
797 * device : video output device (LCD, CRT, ..)
800 * Maximum brightness level
802 * Allocate and initialize device->brightness.
806 acpi_video_init_brightness(struct acpi_video_device
*device
)
808 union acpi_object
*obj
= NULL
;
809 int i
, max_level
= 0, count
= 0, level_ac_battery
= 0;
810 unsigned long long level
, level_old
;
811 union acpi_object
*o
;
812 struct acpi_video_device_brightness
*br
= NULL
;
813 int result
= -EINVAL
;
815 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device
, &obj
))) {
816 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Could not query available "
817 "LCD brightness level\n"));
821 if (obj
->package
.count
< 2)
824 br
= kzalloc(sizeof(*br
), GFP_KERNEL
);
826 printk(KERN_ERR
"can't allocate memory\n");
831 br
->levels
= kmalloc((obj
->package
.count
+ 2) * sizeof *(br
->levels
),
838 for (i
= 0; i
< obj
->package
.count
; i
++) {
839 o
= (union acpi_object
*)&obj
->package
.elements
[i
];
840 if (o
->type
!= ACPI_TYPE_INTEGER
) {
841 printk(KERN_ERR PREFIX
"Invalid data\n");
844 br
->levels
[count
] = (u32
) o
->integer
.value
;
846 if (br
->levels
[count
] > max_level
)
847 max_level
= br
->levels
[count
];
852 * some buggy BIOS don't export the levels
853 * when machine is on AC/Battery in _BCL package.
854 * In this case, the first two elements in _BCL packages
855 * are also supported brightness levels that OS should take care of.
857 for (i
= 2; i
< count
; i
++) {
858 if (br
->levels
[i
] == br
->levels
[0])
860 if (br
->levels
[i
] == br
->levels
[1])
864 if (level_ac_battery
< 2) {
865 level_ac_battery
= 2 - level_ac_battery
;
866 br
->flags
._BCL_no_ac_battery_levels
= 1;
867 for (i
= (count
- 1 + level_ac_battery
); i
>= 2; i
--)
868 br
->levels
[i
] = br
->levels
[i
- level_ac_battery
];
869 count
+= level_ac_battery
;
870 } else if (level_ac_battery
> 2)
871 ACPI_ERROR((AE_INFO
, "Too many duplicates in _BCL package\n"));
873 /* Check if the _BCL package is in a reversed order */
874 if (max_level
== br
->levels
[2]) {
875 br
->flags
._BCL_reversed
= 1;
876 sort(&br
->levels
[2], count
- 2, sizeof(br
->levels
[2]),
877 acpi_video_cmp_level
, NULL
);
878 } else if (max_level
!= br
->levels
[count
- 1])
880 "Found unordered _BCL package\n"));
883 device
->brightness
= br
;
885 /* Check the input/output of _BQC/_BCL/_BCM */
886 if ((max_level
< 100) && (max_level
<= (count
- 2)))
887 br
->flags
._BCL_use_index
= 1;
890 * _BCM is always consistent with _BCL,
891 * at least for all the laptops we have ever seen.
893 br
->flags
._BCM_use_index
= br
->flags
._BCL_use_index
;
895 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
896 br
->curr
= level
= max_level
;
898 if (!device
->cap
._BQC
)
901 result
= acpi_video_device_lcd_get_level_current(device
, &level_old
, 1);
903 goto out_free_levels
;
906 * Set the level to maximum and check if _BQC uses indexed value
908 result
= acpi_video_device_lcd_set_level(device
, max_level
);
910 goto out_free_levels
;
912 result
= acpi_video_device_lcd_get_level_current(device
, &level
, 0);
914 goto out_free_levels
;
916 br
->flags
._BQC_use_index
= (level
== max_level
? 0 : 1);
918 if (!br
->flags
._BQC_use_index
) {
920 * Set the backlight to the initial state.
921 * On some buggy laptops, _BQC returns an uninitialized value
922 * when invoked for the first time, i.e. level_old is invalid.
923 * set the backlight to max_level in this case
925 for (i
= 2; i
< br
->count
; i
++)
926 if (level_old
== br
->levels
[i
])
931 if (br
->flags
._BCL_reversed
)
932 level_old
= (br
->count
- 1) - level_old
;
933 level
= br
->levels
[level_old
];
936 result
= acpi_video_device_lcd_set_level(device
, level
);
938 goto out_free_levels
;
940 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
941 "found %d brightness levels\n", count
- 2));
950 device
->brightness
= NULL
;
957 * device : video output device (LCD, CRT, ..)
962 * Find out all required AML methods defined under the output
966 static void acpi_video_device_find_cap(struct acpi_video_device
*device
)
968 acpi_handle h_dummy1
;
970 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_ADR", &h_dummy1
))) {
971 device
->cap
._ADR
= 1;
973 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCL", &h_dummy1
))) {
974 device
->cap
._BCL
= 1;
976 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCM", &h_dummy1
))) {
977 device
->cap
._BCM
= 1;
979 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
,"_BQC",&h_dummy1
)))
980 device
->cap
._BQC
= 1;
981 else if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCQ",
983 printk(KERN_WARNING FW_BUG
"_BCQ is used instead of _BQC\n");
984 device
->cap
._BCQ
= 1;
987 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DDC", &h_dummy1
))) {
988 device
->cap
._DDC
= 1;
990 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DCS", &h_dummy1
))) {
991 device
->cap
._DCS
= 1;
993 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DGS", &h_dummy1
))) {
994 device
->cap
._DGS
= 1;
996 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DSS", &h_dummy1
))) {
997 device
->cap
._DSS
= 1;
1000 if (acpi_video_backlight_support()) {
1001 struct backlight_properties props
;
1003 static int count
= 0;
1006 result
= acpi_video_init_brightness(device
);
1009 name
= kzalloc(MAX_NAME_LEN
, GFP_KERNEL
);
1013 sprintf(name
, "acpi_video%d", count
++);
1014 memset(&props
, 0, sizeof(struct backlight_properties
));
1015 props
.max_brightness
= device
->brightness
->count
- 3;
1016 device
->backlight
= backlight_device_register(name
, NULL
, device
,
1017 &acpi_backlight_ops
,
1020 if (IS_ERR(device
->backlight
))
1023 result
= sysfs_create_link(&device
->backlight
->dev
.kobj
,
1024 &device
->dev
->dev
.kobj
, "device");
1026 printk(KERN_ERR PREFIX
"Create sysfs link\n");
1028 device
->cooling_dev
= thermal_cooling_device_register("LCD",
1029 device
->dev
, &video_cooling_ops
);
1030 if (IS_ERR(device
->cooling_dev
)) {
1032 * Set cooling_dev to NULL so we don't crash trying to
1034 * Also, why the hell we are returning early and
1035 * not attempt to register video output if cooling
1036 * device registration failed?
1039 device
->cooling_dev
= NULL
;
1043 dev_info(&device
->dev
->dev
, "registered as cooling_device%d\n",
1044 device
->cooling_dev
->id
);
1045 result
= sysfs_create_link(&device
->dev
->dev
.kobj
,
1046 &device
->cooling_dev
->device
.kobj
,
1049 printk(KERN_ERR PREFIX
"Create sysfs link\n");
1050 result
= sysfs_create_link(&device
->cooling_dev
->device
.kobj
,
1051 &device
->dev
->dev
.kobj
, "device");
1053 printk(KERN_ERR PREFIX
"Create sysfs link\n");
1057 if (acpi_video_display_switch_support()) {
1059 if (device
->cap
._DCS
&& device
->cap
._DSS
) {
1062 name
= kzalloc(MAX_NAME_LEN
, GFP_KERNEL
);
1065 sprintf(name
, "acpi_video%d", count
++);
1066 device
->output_dev
= video_output_register(name
,
1067 NULL
, device
, &acpi_output_properties
);
1075 * device : video output device (VGA)
1080 * Find out all required AML methods defined under the video bus device.
1083 static void acpi_video_bus_find_cap(struct acpi_video_bus
*video
)
1085 acpi_handle h_dummy1
;
1087 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_DOS", &h_dummy1
))) {
1088 video
->cap
._DOS
= 1;
1090 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_DOD", &h_dummy1
))) {
1091 video
->cap
._DOD
= 1;
1093 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_ROM", &h_dummy1
))) {
1094 video
->cap
._ROM
= 1;
1096 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_GPD", &h_dummy1
))) {
1097 video
->cap
._GPD
= 1;
1099 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_SPD", &h_dummy1
))) {
1100 video
->cap
._SPD
= 1;
1102 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_VPO", &h_dummy1
))) {
1103 video
->cap
._VPO
= 1;
1108 * Check whether the video bus device has required AML method to
1109 * support the desired features
1112 static int acpi_video_bus_check(struct acpi_video_bus
*video
)
1114 acpi_status status
= -ENOENT
;
1115 struct pci_dev
*dev
;
1120 dev
= acpi_get_pci_dev(video
->device
->handle
);
1125 /* Since there is no HID, CID and so on for VGA driver, we have
1126 * to check well known required nodes.
1129 /* Does this device support video switching? */
1130 if (video
->cap
._DOS
|| video
->cap
._DOD
) {
1131 if (!video
->cap
._DOS
) {
1132 printk(KERN_WARNING FW_BUG
1133 "ACPI(%s) defines _DOD but not _DOS\n",
1134 acpi_device_bid(video
->device
));
1136 video
->flags
.multihead
= 1;
1140 /* Does this device support retrieving a video ROM? */
1141 if (video
->cap
._ROM
) {
1142 video
->flags
.rom
= 1;
1146 /* Does this device support configuring which video device to POST? */
1147 if (video
->cap
._GPD
&& video
->cap
._SPD
&& video
->cap
._VPO
) {
1148 video
->flags
.post
= 1;
1155 /* --------------------------------------------------------------------------
1156 FS Interface (/proc)
1157 -------------------------------------------------------------------------- */
1159 static struct proc_dir_entry
*acpi_video_dir
;
1163 static int acpi_video_device_info_seq_show(struct seq_file
*seq
, void *offset
)
1165 struct acpi_video_device
*dev
= seq
->private;
1171 seq_printf(seq
, "device_id: 0x%04x\n", (u32
) dev
->device_id
);
1172 seq_printf(seq
, "type: ");
1174 seq_printf(seq
, "CRT\n");
1175 else if (dev
->flags
.lcd
)
1176 seq_printf(seq
, "LCD\n");
1177 else if (dev
->flags
.tvout
)
1178 seq_printf(seq
, "TVOUT\n");
1179 else if (dev
->flags
.dvi
)
1180 seq_printf(seq
, "DVI\n");
1182 seq_printf(seq
, "UNKNOWN\n");
1184 seq_printf(seq
, "known by bios: %s\n", dev
->flags
.bios
? "yes" : "no");
1191 acpi_video_device_info_open_fs(struct inode
*inode
, struct file
*file
)
1193 return single_open(file
, acpi_video_device_info_seq_show
,
1197 static int acpi_video_device_state_seq_show(struct seq_file
*seq
, void *offset
)
1200 struct acpi_video_device
*dev
= seq
->private;
1201 unsigned long long state
;
1207 status
= acpi_video_device_get_state(dev
, &state
);
1208 seq_printf(seq
, "state: ");
1209 if (ACPI_SUCCESS(status
))
1210 seq_printf(seq
, "0x%02llx\n", state
);
1212 seq_printf(seq
, "<not supported>\n");
1214 status
= acpi_video_device_query(dev
, &state
);
1215 seq_printf(seq
, "query: ");
1216 if (ACPI_SUCCESS(status
))
1217 seq_printf(seq
, "0x%02llx\n", state
);
1219 seq_printf(seq
, "<not supported>\n");
1226 acpi_video_device_state_open_fs(struct inode
*inode
, struct file
*file
)
1228 return single_open(file
, acpi_video_device_state_seq_show
,
1233 acpi_video_device_write_state(struct file
*file
,
1234 const char __user
* buffer
,
1235 size_t count
, loff_t
* data
)
1238 struct seq_file
*m
= file
->private_data
;
1239 struct acpi_video_device
*dev
= m
->private;
1240 char str
[12] = { 0 };
1244 if (!dev
|| count
>= sizeof(str
))
1247 if (copy_from_user(str
, buffer
, count
))
1251 state
= simple_strtoul(str
, NULL
, 0);
1252 state
&= ((1ul << 31) | (1ul << 30) | (1ul << 0));
1254 status
= acpi_video_device_set_state(dev
, state
);
1263 acpi_video_device_brightness_seq_show(struct seq_file
*seq
, void *offset
)
1265 struct acpi_video_device
*dev
= seq
->private;
1269 if (!dev
|| !dev
->brightness
) {
1270 seq_printf(seq
, "<not supported>\n");
1274 seq_printf(seq
, "levels: ");
1275 for (i
= 2; i
< dev
->brightness
->count
; i
++)
1276 seq_printf(seq
, " %d", dev
->brightness
->levels
[i
]);
1277 seq_printf(seq
, "\ncurrent: %d\n", dev
->brightness
->curr
);
1283 acpi_video_device_brightness_open_fs(struct inode
*inode
, struct file
*file
)
1285 return single_open(file
, acpi_video_device_brightness_seq_show
,
1290 acpi_video_device_write_brightness(struct file
*file
,
1291 const char __user
* buffer
,
1292 size_t count
, loff_t
* data
)
1294 struct seq_file
*m
= file
->private_data
;
1295 struct acpi_video_device
*dev
= m
->private;
1296 char str
[5] = { 0 };
1297 unsigned int level
= 0;
1301 if (!dev
|| !dev
->brightness
|| count
>= sizeof(str
))
1304 if (copy_from_user(str
, buffer
, count
))
1308 level
= simple_strtoul(str
, NULL
, 0);
1313 /* validate through the list of available levels */
1314 for (i
= 2; i
< dev
->brightness
->count
; i
++)
1315 if (level
== dev
->brightness
->levels
[i
]) {
1316 if (!acpi_video_device_lcd_set_level(dev
, level
))
1324 static int acpi_video_device_EDID_seq_show(struct seq_file
*seq
, void *offset
)
1326 struct acpi_video_device
*dev
= seq
->private;
1329 union acpi_object
*edid
= NULL
;
1335 status
= acpi_video_device_EDID(dev
, &edid
, 128);
1336 if (ACPI_FAILURE(status
)) {
1337 status
= acpi_video_device_EDID(dev
, &edid
, 256);
1340 if (ACPI_FAILURE(status
)) {
1344 if (edid
&& edid
->type
== ACPI_TYPE_BUFFER
) {
1345 for (i
= 0; i
< edid
->buffer
.length
; i
++)
1346 seq_putc(seq
, edid
->buffer
.pointer
[i
]);
1351 seq_printf(seq
, "<not supported>\n");
1359 acpi_video_device_EDID_open_fs(struct inode
*inode
, struct file
*file
)
1361 return single_open(file
, acpi_video_device_EDID_seq_show
,
1365 static int acpi_video_device_add_fs(struct acpi_device
*device
)
1367 struct proc_dir_entry
*entry
, *device_dir
;
1368 struct acpi_video_device
*vid_dev
;
1370 vid_dev
= acpi_driver_data(device
);
1374 device_dir
= proc_mkdir(acpi_device_bid(device
),
1375 vid_dev
->video
->dir
);
1380 entry
= proc_create_data("info", S_IRUGO
, device_dir
,
1381 &acpi_video_device_info_fops
, acpi_driver_data(device
));
1383 goto err_remove_dir
;
1386 entry
= proc_create_data("state", S_IFREG
| S_IRUGO
| S_IWUSR
,
1388 &acpi_video_device_state_fops
,
1389 acpi_driver_data(device
));
1391 goto err_remove_info
;
1393 /* 'brightness' [R/W] */
1394 entry
= proc_create_data("brightness", S_IFREG
| S_IRUGO
| S_IWUSR
,
1396 &acpi_video_device_brightness_fops
,
1397 acpi_driver_data(device
));
1399 goto err_remove_state
;
1402 entry
= proc_create_data("EDID", S_IRUGO
, device_dir
,
1403 &acpi_video_device_EDID_fops
,
1404 acpi_driver_data(device
));
1406 goto err_remove_brightness
;
1408 acpi_device_dir(device
) = device_dir
;
1412 err_remove_brightness
:
1413 remove_proc_entry("brightness", device_dir
);
1415 remove_proc_entry("state", device_dir
);
1417 remove_proc_entry("info", device_dir
);
1419 remove_proc_entry(acpi_device_bid(device
), vid_dev
->video
->dir
);
1423 static int acpi_video_device_remove_fs(struct acpi_device
*device
)
1425 struct acpi_video_device
*vid_dev
;
1426 struct proc_dir_entry
*device_dir
;
1428 vid_dev
= acpi_driver_data(device
);
1429 if (!vid_dev
|| !vid_dev
->video
|| !vid_dev
->video
->dir
)
1432 device_dir
= acpi_device_dir(device
);
1434 remove_proc_entry("info", device_dir
);
1435 remove_proc_entry("state", device_dir
);
1436 remove_proc_entry("brightness", device_dir
);
1437 remove_proc_entry("EDID", device_dir
);
1438 remove_proc_entry(acpi_device_bid(device
), vid_dev
->video
->dir
);
1439 acpi_device_dir(device
) = NULL
;
1446 static int acpi_video_bus_info_seq_show(struct seq_file
*seq
, void *offset
)
1448 struct acpi_video_bus
*video
= seq
->private;
1454 seq_printf(seq
, "Switching heads: %s\n",
1455 video
->flags
.multihead
? "yes" : "no");
1456 seq_printf(seq
, "Video ROM: %s\n",
1457 video
->flags
.rom
? "yes" : "no");
1458 seq_printf(seq
, "Device to be POSTed on boot: %s\n",
1459 video
->flags
.post
? "yes" : "no");
1465 static int acpi_video_bus_info_open_fs(struct inode
*inode
, struct file
*file
)
1467 return single_open(file
, acpi_video_bus_info_seq_show
,
1471 static int acpi_video_bus_ROM_seq_show(struct seq_file
*seq
, void *offset
)
1473 struct acpi_video_bus
*video
= seq
->private;
1479 printk(KERN_INFO PREFIX
"Please implement %s\n", __func__
);
1480 seq_printf(seq
, "<TODO>\n");
1486 static int acpi_video_bus_ROM_open_fs(struct inode
*inode
, struct file
*file
)
1488 return single_open(file
, acpi_video_bus_ROM_seq_show
, PDE(inode
)->data
);
1491 static int acpi_video_bus_POST_info_seq_show(struct seq_file
*seq
, void *offset
)
1493 struct acpi_video_bus
*video
= seq
->private;
1494 unsigned long long options
;
1501 status
= acpi_video_bus_POST_options(video
, &options
);
1502 if (ACPI_SUCCESS(status
)) {
1503 if (!(options
& 1)) {
1504 printk(KERN_WARNING PREFIX
1505 "The motherboard VGA device is not listed as a possible POST device.\n");
1506 printk(KERN_WARNING PREFIX
1507 "This indicates a BIOS bug. Please contact the manufacturer.\n");
1509 printk(KERN_WARNING
"%llx\n", options
);
1510 seq_printf(seq
, "can POST: <integrated video>");
1512 seq_printf(seq
, " <PCI video>");
1514 seq_printf(seq
, " <AGP video>");
1515 seq_putc(seq
, '\n');
1517 seq_printf(seq
, "<not supported>\n");
1523 acpi_video_bus_POST_info_open_fs(struct inode
*inode
, struct file
*file
)
1525 return single_open(file
, acpi_video_bus_POST_info_seq_show
,
1529 static int acpi_video_bus_POST_seq_show(struct seq_file
*seq
, void *offset
)
1531 struct acpi_video_bus
*video
= seq
->private;
1533 unsigned long long id
;
1539 status
= acpi_video_bus_get_POST(video
, &id
);
1540 if (!ACPI_SUCCESS(status
)) {
1541 seq_printf(seq
, "<not supported>\n");
1544 seq_printf(seq
, "device POSTed is <%s>\n", device_decode
[id
& 3]);
1550 static int acpi_video_bus_DOS_seq_show(struct seq_file
*seq
, void *offset
)
1552 struct acpi_video_bus
*video
= seq
->private;
1555 seq_printf(seq
, "DOS setting: <%d>\n", video
->dos_setting
);
1560 static int acpi_video_bus_POST_open_fs(struct inode
*inode
, struct file
*file
)
1562 return single_open(file
, acpi_video_bus_POST_seq_show
,
1566 static int acpi_video_bus_DOS_open_fs(struct inode
*inode
, struct file
*file
)
1568 return single_open(file
, acpi_video_bus_DOS_seq_show
, PDE(inode
)->data
);
1572 acpi_video_bus_write_POST(struct file
*file
,
1573 const char __user
* buffer
,
1574 size_t count
, loff_t
* data
)
1577 struct seq_file
*m
= file
->private_data
;
1578 struct acpi_video_bus
*video
= m
->private;
1579 char str
[12] = { 0 };
1580 unsigned long long opt
, options
;
1583 if (!video
|| count
>= sizeof(str
))
1586 status
= acpi_video_bus_POST_options(video
, &options
);
1587 if (!ACPI_SUCCESS(status
))
1590 if (copy_from_user(str
, buffer
, count
))
1594 opt
= strtoul(str
, NULL
, 0);
1598 /* just in case an OEM 'forgot' the motherboard... */
1601 if (options
& (1ul << opt
)) {
1602 status
= acpi_video_bus_set_POST(video
, opt
);
1603 if (!ACPI_SUCCESS(status
))
1612 acpi_video_bus_write_DOS(struct file
*file
,
1613 const char __user
* buffer
,
1614 size_t count
, loff_t
* data
)
1617 struct seq_file
*m
= file
->private_data
;
1618 struct acpi_video_bus
*video
= m
->private;
1619 char str
[12] = { 0 };
1623 if (!video
|| count
>= sizeof(str
))
1626 if (copy_from_user(str
, buffer
, count
))
1630 opt
= strtoul(str
, NULL
, 0);
1634 status
= acpi_video_bus_DOS(video
, opt
& 0x3, (opt
& 0x4) >> 2);
1636 if (!ACPI_SUCCESS(status
))
1642 static int acpi_video_bus_add_fs(struct acpi_device
*device
)
1644 struct acpi_video_bus
*video
= acpi_driver_data(device
);
1645 struct proc_dir_entry
*device_dir
;
1646 struct proc_dir_entry
*entry
;
1648 device_dir
= proc_mkdir(acpi_device_bid(device
), acpi_video_dir
);
1653 entry
= proc_create_data("info", S_IRUGO
, device_dir
,
1654 &acpi_video_bus_info_fops
,
1655 acpi_driver_data(device
));
1657 goto err_remove_dir
;
1660 entry
= proc_create_data("ROM", S_IRUGO
, device_dir
,
1661 &acpi_video_bus_ROM_fops
,
1662 acpi_driver_data(device
));
1664 goto err_remove_info
;
1666 /* 'POST_info' [R] */
1667 entry
= proc_create_data("POST_info", S_IRUGO
, device_dir
,
1668 &acpi_video_bus_POST_info_fops
,
1669 acpi_driver_data(device
));
1671 goto err_remove_rom
;
1674 entry
= proc_create_data("POST", S_IFREG
| S_IRUGO
| S_IWUSR
,
1676 &acpi_video_bus_POST_fops
,
1677 acpi_driver_data(device
));
1679 goto err_remove_post_info
;
1682 entry
= proc_create_data("DOS", S_IFREG
| S_IRUGO
| S_IWUSR
,
1684 &acpi_video_bus_DOS_fops
,
1685 acpi_driver_data(device
));
1687 goto err_remove_post
;
1689 video
->dir
= acpi_device_dir(device
) = device_dir
;
1693 remove_proc_entry("POST", device_dir
);
1694 err_remove_post_info
:
1695 remove_proc_entry("POST_info", device_dir
);
1697 remove_proc_entry("ROM", device_dir
);
1699 remove_proc_entry("info", device_dir
);
1701 remove_proc_entry(acpi_device_bid(device
), acpi_video_dir
);
1705 static int acpi_video_bus_remove_fs(struct acpi_device
*device
)
1707 struct proc_dir_entry
*device_dir
= acpi_device_dir(device
);
1710 remove_proc_entry("info", device_dir
);
1711 remove_proc_entry("ROM", device_dir
);
1712 remove_proc_entry("POST_info", device_dir
);
1713 remove_proc_entry("POST", device_dir
);
1714 remove_proc_entry("DOS", device_dir
);
1715 remove_proc_entry(acpi_device_bid(device
), acpi_video_dir
);
1716 acpi_device_dir(device
) = NULL
;
1722 /* --------------------------------------------------------------------------
1724 -------------------------------------------------------------------------- */
1726 /* device interface */
1727 static struct acpi_video_device_attrib
*
1728 acpi_video_get_device_attr(struct acpi_video_bus
*video
, unsigned long device_id
)
1730 struct acpi_video_enumerated_device
*ids
;
1733 for (i
= 0; i
< video
->attached_count
; i
++) {
1734 ids
= &video
->attached_array
[i
];
1735 if ((ids
->value
.int_val
& 0xffff) == device_id
)
1736 return &ids
->value
.attrib
;
1743 acpi_video_bus_get_one_device(struct acpi_device
*device
,
1744 struct acpi_video_bus
*video
)
1746 unsigned long long device_id
;
1748 struct acpi_video_device
*data
;
1749 struct acpi_video_device_attrib
* attribute
;
1751 if (!device
|| !video
)
1755 acpi_evaluate_integer(device
->handle
, "_ADR", NULL
, &device_id
);
1756 if (ACPI_SUCCESS(status
)) {
1758 data
= kzalloc(sizeof(struct acpi_video_device
), GFP_KERNEL
);
1762 strcpy(acpi_device_name(device
), ACPI_VIDEO_DEVICE_NAME
);
1763 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
1764 device
->driver_data
= data
;
1766 data
->device_id
= device_id
;
1767 data
->video
= video
;
1770 attribute
= acpi_video_get_device_attr(video
, device_id
);
1772 if((attribute
!= NULL
) && attribute
->device_id_scheme
) {
1773 switch (attribute
->display_type
) {
1774 case ACPI_VIDEO_DISPLAY_CRT
:
1775 data
->flags
.crt
= 1;
1777 case ACPI_VIDEO_DISPLAY_TV
:
1778 data
->flags
.tvout
= 1;
1780 case ACPI_VIDEO_DISPLAY_DVI
:
1781 data
->flags
.dvi
= 1;
1783 case ACPI_VIDEO_DISPLAY_LCD
:
1784 data
->flags
.lcd
= 1;
1787 data
->flags
.unknown
= 1;
1790 if(attribute
->bios_can_detect
)
1791 data
->flags
.bios
= 1;
1793 data
->flags
.unknown
= 1;
1795 acpi_video_device_bind(video
, data
);
1796 acpi_video_device_find_cap(data
);
1798 status
= acpi_install_notify_handler(device
->handle
,
1800 acpi_video_device_notify
,
1802 if (ACPI_FAILURE(status
)) {
1803 printk(KERN_ERR PREFIX
1804 "Error installing notify handler\n");
1805 if(data
->brightness
)
1806 kfree(data
->brightness
->levels
);
1807 kfree(data
->brightness
);
1812 mutex_lock(&video
->device_list_lock
);
1813 list_add_tail(&data
->entry
, &video
->video_device_list
);
1814 mutex_unlock(&video
->device_list_lock
);
1816 acpi_video_device_add_fs(device
);
1826 * video : video bus device
1831 * Enumerate the video device list of the video bus,
1832 * bind the ids with the corresponding video devices
1833 * under the video bus.
1836 static void acpi_video_device_rebind(struct acpi_video_bus
*video
)
1838 struct acpi_video_device
*dev
;
1840 mutex_lock(&video
->device_list_lock
);
1842 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1843 acpi_video_device_bind(video
, dev
);
1845 mutex_unlock(&video
->device_list_lock
);
1850 * video : video bus device
1851 * device : video output device under the video
1857 * Bind the ids with the corresponding video devices
1858 * under the video bus.
1862 acpi_video_device_bind(struct acpi_video_bus
*video
,
1863 struct acpi_video_device
*device
)
1865 struct acpi_video_enumerated_device
*ids
;
1868 for (i
= 0; i
< video
->attached_count
; i
++) {
1869 ids
= &video
->attached_array
[i
];
1870 if (device
->device_id
== (ids
->value
.int_val
& 0xffff)) {
1871 ids
->bind_info
= device
;
1872 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "device_bind %d\n", i
));
1879 * video : video bus device
1884 * Call _DOD to enumerate all devices attached to display adapter
1888 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
)
1893 struct acpi_video_enumerated_device
*active_list
;
1894 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1895 union acpi_object
*dod
= NULL
;
1896 union acpi_object
*obj
;
1898 status
= acpi_evaluate_object(video
->device
->handle
, "_DOD", NULL
, &buffer
);
1899 if (!ACPI_SUCCESS(status
)) {
1900 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _DOD"));
1904 dod
= buffer
.pointer
;
1905 if (!dod
|| (dod
->type
!= ACPI_TYPE_PACKAGE
)) {
1906 ACPI_EXCEPTION((AE_INFO
, status
, "Invalid _DOD data"));
1911 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found %d video heads in _DOD\n",
1912 dod
->package
.count
));
1914 active_list
= kcalloc(1 + dod
->package
.count
,
1915 sizeof(struct acpi_video_enumerated_device
),
1923 for (i
= 0; i
< dod
->package
.count
; i
++) {
1924 obj
= &dod
->package
.elements
[i
];
1926 if (obj
->type
!= ACPI_TYPE_INTEGER
) {
1927 printk(KERN_ERR PREFIX
1928 "Invalid _DOD data in element %d\n", i
);
1932 active_list
[count
].value
.int_val
= obj
->integer
.value
;
1933 active_list
[count
].bind_info
= NULL
;
1934 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "dod element[%d] = %d\n", i
,
1935 (int)obj
->integer
.value
));
1939 kfree(video
->attached_array
);
1941 video
->attached_array
= active_list
;
1942 video
->attached_count
= count
;
1945 kfree(buffer
.pointer
);
1950 acpi_video_get_next_level(struct acpi_video_device
*device
,
1951 u32 level_current
, u32 event
)
1953 int min
, max
, min_above
, max_below
, i
, l
, delta
= 255;
1954 max
= max_below
= 0;
1955 min
= min_above
= 255;
1956 /* Find closest level to level_current */
1957 for (i
= 2; i
< device
->brightness
->count
; i
++) {
1958 l
= device
->brightness
->levels
[i
];
1959 if (abs(l
- level_current
) < abs(delta
)) {
1960 delta
= l
- level_current
;
1965 /* Ajust level_current to closest available level */
1966 level_current
+= delta
;
1967 for (i
= 2; i
< device
->brightness
->count
; i
++) {
1968 l
= device
->brightness
->levels
[i
];
1973 if (l
< min_above
&& l
> level_current
)
1975 if (l
> max_below
&& l
< level_current
)
1980 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
:
1981 return (level_current
< max
) ? min_above
: min
;
1982 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
:
1983 return (level_current
< max
) ? min_above
: max
;
1984 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
:
1985 return (level_current
> min
) ? max_below
: min
;
1986 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
:
1987 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
:
1990 return level_current
;
1995 acpi_video_switch_brightness(struct acpi_video_device
*device
, int event
)
1997 unsigned long long level_current
, level_next
;
1998 int result
= -EINVAL
;
2000 /* no warning message if acpi_backlight=vendor is used */
2001 if (!acpi_video_backlight_support())
2004 if (!device
->brightness
)
2007 result
= acpi_video_device_lcd_get_level_current(device
,
2012 level_next
= acpi_video_get_next_level(device
, level_current
, event
);
2014 result
= acpi_video_device_lcd_set_level(device
, level_next
);
2017 backlight_force_update(device
->backlight
,
2018 BACKLIGHT_UPDATE_HOTKEY
);
2022 printk(KERN_ERR PREFIX
"Failed to switch the brightness\n");
2028 acpi_video_bus_get_devices(struct acpi_video_bus
*video
,
2029 struct acpi_device
*device
)
2032 struct acpi_device
*dev
;
2034 acpi_video_device_enumerate(video
);
2036 list_for_each_entry(dev
, &device
->children
, node
) {
2038 status
= acpi_video_bus_get_one_device(dev
, video
);
2039 if (ACPI_FAILURE(status
)) {
2040 printk(KERN_WARNING PREFIX
2041 "Cant attach device");
2048 static int acpi_video_bus_put_one_device(struct acpi_video_device
*device
)
2051 struct acpi_video_bus
*video
;
2054 if (!device
|| !device
->video
)
2057 video
= device
->video
;
2059 acpi_video_device_remove_fs(device
->dev
);
2061 status
= acpi_remove_notify_handler(device
->dev
->handle
,
2063 acpi_video_device_notify
);
2064 if (device
->backlight
) {
2065 sysfs_remove_link(&device
->backlight
->dev
.kobj
, "device");
2066 backlight_device_unregister(device
->backlight
);
2067 device
->backlight
= NULL
;
2069 if (device
->cooling_dev
) {
2070 sysfs_remove_link(&device
->dev
->dev
.kobj
,
2072 sysfs_remove_link(&device
->cooling_dev
->device
.kobj
,
2074 thermal_cooling_device_unregister(device
->cooling_dev
);
2075 device
->cooling_dev
= NULL
;
2077 video_output_unregister(device
->output_dev
);
2082 static int acpi_video_bus_put_devices(struct acpi_video_bus
*video
)
2085 struct acpi_video_device
*dev
, *next
;
2087 mutex_lock(&video
->device_list_lock
);
2089 list_for_each_entry_safe(dev
, next
, &video
->video_device_list
, entry
) {
2091 status
= acpi_video_bus_put_one_device(dev
);
2092 if (ACPI_FAILURE(status
))
2093 printk(KERN_WARNING PREFIX
2094 "hhuuhhuu bug in acpi video driver.\n");
2096 if (dev
->brightness
) {
2097 kfree(dev
->brightness
->levels
);
2098 kfree(dev
->brightness
);
2100 list_del(&dev
->entry
);
2104 mutex_unlock(&video
->device_list_lock
);
2109 /* acpi_video interface */
2111 static int acpi_video_bus_start_devices(struct acpi_video_bus
*video
)
2113 return acpi_video_bus_DOS(video
, 0, 0);
2116 static int acpi_video_bus_stop_devices(struct acpi_video_bus
*video
)
2118 return acpi_video_bus_DOS(video
, 0, 1);
2121 static void acpi_video_bus_notify(struct acpi_device
*device
, u32 event
)
2123 struct acpi_video_bus
*video
= acpi_driver_data(device
);
2124 struct input_dev
*input
;
2130 input
= video
->input
;
2133 case ACPI_VIDEO_NOTIFY_SWITCH
: /* User requested a switch,
2134 * most likely via hotkey. */
2135 acpi_bus_generate_proc_event(device
, event
, 0);
2136 keycode
= KEY_SWITCHVIDEOMODE
;
2139 case ACPI_VIDEO_NOTIFY_PROBE
: /* User plugged in or removed a video
2141 acpi_video_device_enumerate(video
);
2142 acpi_video_device_rebind(video
);
2143 acpi_bus_generate_proc_event(device
, event
, 0);
2144 keycode
= KEY_SWITCHVIDEOMODE
;
2147 case ACPI_VIDEO_NOTIFY_CYCLE
: /* Cycle Display output hotkey pressed. */
2148 acpi_bus_generate_proc_event(device
, event
, 0);
2149 keycode
= KEY_SWITCHVIDEOMODE
;
2151 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT
: /* Next Display output hotkey pressed. */
2152 acpi_bus_generate_proc_event(device
, event
, 0);
2153 keycode
= KEY_VIDEO_NEXT
;
2155 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT
: /* previous Display output hotkey pressed. */
2156 acpi_bus_generate_proc_event(device
, event
, 0);
2157 keycode
= KEY_VIDEO_PREV
;
2161 keycode
= KEY_UNKNOWN
;
2162 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
2163 "Unsupported event [0x%x]\n", event
));
2167 acpi_notifier_call_chain(device
, event
, 0);
2168 input_report_key(input
, keycode
, 1);
2170 input_report_key(input
, keycode
, 0);
2176 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
)
2178 struct acpi_video_device
*video_device
= data
;
2179 struct acpi_device
*device
= NULL
;
2180 struct acpi_video_bus
*bus
;
2181 struct input_dev
*input
;
2187 device
= video_device
->dev
;
2188 bus
= video_device
->video
;
2192 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
: /* Cycle brightness */
2193 if (brightness_switch_enabled
)
2194 acpi_video_switch_brightness(video_device
, event
);
2195 acpi_bus_generate_proc_event(device
, event
, 0);
2196 keycode
= KEY_BRIGHTNESS_CYCLE
;
2198 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
: /* Increase brightness */
2199 if (brightness_switch_enabled
)
2200 acpi_video_switch_brightness(video_device
, event
);
2201 acpi_bus_generate_proc_event(device
, event
, 0);
2202 keycode
= KEY_BRIGHTNESSUP
;
2204 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
: /* Decrease brightness */
2205 if (brightness_switch_enabled
)
2206 acpi_video_switch_brightness(video_device
, event
);
2207 acpi_bus_generate_proc_event(device
, event
, 0);
2208 keycode
= KEY_BRIGHTNESSDOWN
;
2210 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
: /* zero brightnesss */
2211 if (brightness_switch_enabled
)
2212 acpi_video_switch_brightness(video_device
, event
);
2213 acpi_bus_generate_proc_event(device
, event
, 0);
2214 keycode
= KEY_BRIGHTNESS_ZERO
;
2216 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
: /* display device off */
2217 if (brightness_switch_enabled
)
2218 acpi_video_switch_brightness(video_device
, event
);
2219 acpi_bus_generate_proc_event(device
, event
, 0);
2220 keycode
= KEY_DISPLAY_OFF
;
2223 keycode
= KEY_UNKNOWN
;
2224 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
2225 "Unsupported event [0x%x]\n", event
));
2229 acpi_notifier_call_chain(device
, event
, 0);
2230 input_report_key(input
, keycode
, 1);
2232 input_report_key(input
, keycode
, 0);
2238 static int instance
;
2239 static int acpi_video_resume(struct acpi_device
*device
)
2241 struct acpi_video_bus
*video
;
2242 struct acpi_video_device
*video_device
;
2245 if (!device
|| !acpi_driver_data(device
))
2248 video
= acpi_driver_data(device
);
2250 for (i
= 0; i
< video
->attached_count
; i
++) {
2251 video_device
= video
->attached_array
[i
].bind_info
;
2252 if (video_device
&& video_device
->backlight
)
2253 acpi_video_set_brightness(video_device
->backlight
);
2259 acpi_video_bus_match(acpi_handle handle
, u32 level
, void *context
,
2260 void **return_value
)
2262 struct acpi_device
*device
= context
;
2263 struct acpi_device
*sibling
;
2266 if (handle
== device
->handle
)
2267 return AE_CTRL_TERMINATE
;
2269 result
= acpi_bus_get_device(handle
, &sibling
);
2273 if (!strcmp(acpi_device_name(sibling
), ACPI_VIDEO_BUS_NAME
))
2274 return AE_ALREADY_EXISTS
;
2279 static int acpi_video_bus_add(struct acpi_device
*device
)
2281 struct acpi_video_bus
*video
;
2282 struct input_dev
*input
;
2286 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
,
2287 device
->parent
->handle
, 1,
2288 acpi_video_bus_match
, NULL
,
2290 if (status
== AE_ALREADY_EXISTS
) {
2291 printk(KERN_WARNING FW_BUG
2292 "Duplicate ACPI video bus devices for the"
2293 " same VGA controller, please try module "
2294 "parameter \"video.allow_duplicates=1\""
2295 "if the current driver doesn't work.\n");
2296 if (!allow_duplicates
)
2300 video
= kzalloc(sizeof(struct acpi_video_bus
), GFP_KERNEL
);
2304 /* a hack to fix the duplicate name "VID" problem on T61 */
2305 if (!strcmp(device
->pnp
.bus_id
, "VID")) {
2307 device
->pnp
.bus_id
[3] = '0' + instance
;
2310 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2311 if (!strcmp(device
->pnp
.bus_id
, "VGA")) {
2313 device
->pnp
.bus_id
[3] = '0' + instance
;
2317 video
->device
= device
;
2318 strcpy(acpi_device_name(device
), ACPI_VIDEO_BUS_NAME
);
2319 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
2320 device
->driver_data
= video
;
2322 acpi_video_bus_find_cap(video
);
2323 error
= acpi_video_bus_check(video
);
2325 goto err_free_video
;
2327 error
= acpi_video_bus_add_fs(device
);
2329 goto err_free_video
;
2331 mutex_init(&video
->device_list_lock
);
2332 INIT_LIST_HEAD(&video
->video_device_list
);
2334 acpi_video_bus_get_devices(video
, device
);
2335 acpi_video_bus_start_devices(video
);
2337 video
->input
= input
= input_allocate_device();
2340 goto err_stop_video
;
2343 snprintf(video
->phys
, sizeof(video
->phys
),
2344 "%s/video/input0", acpi_device_hid(video
->device
));
2346 input
->name
= acpi_device_name(video
->device
);
2347 input
->phys
= video
->phys
;
2348 input
->id
.bustype
= BUS_HOST
;
2349 input
->id
.product
= 0x06;
2350 input
->dev
.parent
= &device
->dev
;
2351 input
->evbit
[0] = BIT(EV_KEY
);
2352 set_bit(KEY_SWITCHVIDEOMODE
, input
->keybit
);
2353 set_bit(KEY_VIDEO_NEXT
, input
->keybit
);
2354 set_bit(KEY_VIDEO_PREV
, input
->keybit
);
2355 set_bit(KEY_BRIGHTNESS_CYCLE
, input
->keybit
);
2356 set_bit(KEY_BRIGHTNESSUP
, input
->keybit
);
2357 set_bit(KEY_BRIGHTNESSDOWN
, input
->keybit
);
2358 set_bit(KEY_BRIGHTNESS_ZERO
, input
->keybit
);
2359 set_bit(KEY_DISPLAY_OFF
, input
->keybit
);
2360 set_bit(KEY_UNKNOWN
, input
->keybit
);
2362 error
= input_register_device(input
);
2364 goto err_free_input_dev
;
2366 printk(KERN_INFO PREFIX
"%s [%s] (multi-head: %s rom: %s post: %s)\n",
2367 ACPI_VIDEO_DEVICE_NAME
, acpi_device_bid(device
),
2368 video
->flags
.multihead
? "yes" : "no",
2369 video
->flags
.rom
? "yes" : "no",
2370 video
->flags
.post
? "yes" : "no");
2375 input_free_device(input
);
2377 acpi_video_bus_stop_devices(video
);
2378 acpi_video_bus_put_devices(video
);
2379 kfree(video
->attached_array
);
2380 acpi_video_bus_remove_fs(device
);
2383 device
->driver_data
= NULL
;
2388 static int acpi_video_bus_remove(struct acpi_device
*device
, int type
)
2390 struct acpi_video_bus
*video
= NULL
;
2393 if (!device
|| !acpi_driver_data(device
))
2396 video
= acpi_driver_data(device
);
2398 acpi_video_bus_stop_devices(video
);
2399 acpi_video_bus_put_devices(video
);
2400 acpi_video_bus_remove_fs(device
);
2402 input_unregister_device(video
->input
);
2403 kfree(video
->attached_array
);
2409 static int __init
intel_opregion_present(void)
2411 #if defined(CONFIG_DRM_I915) || defined(CONFIG_DRM_I915_MODULE)
2412 struct pci_dev
*dev
= NULL
;
2415 for_each_pci_dev(dev
) {
2416 if ((dev
->class >> 8) != PCI_CLASS_DISPLAY_VGA
)
2418 if (dev
->vendor
!= PCI_VENDOR_ID_INTEL
)
2420 pci_read_config_dword(dev
, 0xfc, &address
);
2429 int acpi_video_register(void)
2432 if (register_count
) {
2434 * if the function of acpi_video_register is already called,
2435 * don't register the acpi_vide_bus again and return no error.
2440 acpi_video_dir
= proc_mkdir(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2441 if (!acpi_video_dir
)
2444 result
= acpi_bus_register_driver(&acpi_video_bus
);
2446 remove_proc_entry(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2451 * When the acpi_video_bus is loaded successfully, increase
2452 * the counter reference.
2458 EXPORT_SYMBOL(acpi_video_register
);
2460 void acpi_video_unregister(void)
2462 if (!register_count
) {
2464 * If the acpi video bus is already unloaded, don't
2465 * unload it again and return directly.
2469 acpi_bus_unregister_driver(&acpi_video_bus
);
2471 remove_proc_entry(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2477 EXPORT_SYMBOL(acpi_video_unregister
);
2480 * This is kind of nasty. Hardware using Intel chipsets may require
2481 * the video opregion code to be run first in order to initialise
2482 * state before any ACPI video calls are made. To handle this we defer
2483 * registration of the video class until the opregion code has run.
2486 static int __init
acpi_video_init(void)
2488 dmi_check_system(video_dmi_table
);
2490 if (intel_opregion_present())
2493 return acpi_video_register();
2496 static void __exit
acpi_video_exit(void)
2498 acpi_video_unregister();
2503 module_init(acpi_video_init
);
2504 module_exit(acpi_video_exit
);