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/video_output.h>
38 #include <asm/uaccess.h>
40 #include <acpi/acpi_bus.h>
41 #include <acpi/acpi_drivers.h>
43 #define ACPI_VIDEO_COMPONENT 0x08000000
44 #define ACPI_VIDEO_CLASS "video"
45 #define ACPI_VIDEO_BUS_NAME "Video Bus"
46 #define ACPI_VIDEO_DEVICE_NAME "Video Device"
47 #define ACPI_VIDEO_NOTIFY_SWITCH 0x80
48 #define ACPI_VIDEO_NOTIFY_PROBE 0x81
49 #define ACPI_VIDEO_NOTIFY_CYCLE 0x82
50 #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
51 #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
53 #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
54 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
55 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
56 #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
57 #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
59 #define ACPI_VIDEO_HEAD_INVALID (~0u - 1)
60 #define ACPI_VIDEO_HEAD_END (~0u)
61 #define MAX_NAME_LEN 20
63 #define ACPI_VIDEO_DISPLAY_CRT 1
64 #define ACPI_VIDEO_DISPLAY_TV 2
65 #define ACPI_VIDEO_DISPLAY_DVI 3
66 #define ACPI_VIDEO_DISPLAY_LCD 4
68 #define _COMPONENT ACPI_VIDEO_COMPONENT
69 ACPI_MODULE_NAME("video");
71 MODULE_AUTHOR("Bruno Ducrot");
72 MODULE_DESCRIPTION("ACPI Video Driver");
73 MODULE_LICENSE("GPL");
75 static int acpi_video_bus_add(struct acpi_device
*device
);
76 static int acpi_video_bus_remove(struct acpi_device
*device
, int type
);
78 static const struct acpi_device_id video_device_ids
[] = {
82 MODULE_DEVICE_TABLE(acpi
, video_device_ids
);
84 static struct acpi_driver acpi_video_bus
= {
86 .class = ACPI_VIDEO_CLASS
,
87 .ids
= video_device_ids
,
89 .add
= acpi_video_bus_add
,
90 .remove
= acpi_video_bus_remove
,
94 struct acpi_video_bus_flags
{
95 u8 multihead
:1; /* can switch video heads */
96 u8 rom
:1; /* can retrieve a video rom */
97 u8 post
:1; /* can configure the head to */
101 struct acpi_video_bus_cap
{
102 u8 _DOS
:1; /*Enable/Disable output switching */
103 u8 _DOD
:1; /*Enumerate all devices attached to display adapter */
104 u8 _ROM
:1; /*Get ROM Data */
105 u8 _GPD
:1; /*Get POST Device */
106 u8 _SPD
:1; /*Set POST Device */
107 u8 _VPO
:1; /*Video POST Options */
111 struct acpi_video_device_attrib
{
112 u32 display_index
:4; /* A zero-based instance of the Display */
113 u32 display_port_attachment
:4; /*This field differentiates the display type */
114 u32 display_type
:4; /*Describe the specific type in use */
115 u32 vendor_specific
:4; /*Chipset Vendor Specific */
116 u32 bios_can_detect
:1; /*BIOS can detect the device */
117 u32 depend_on_vga
:1; /*Non-VGA output device whose power is related to
119 u32 pipe_id
:3; /*For VGA multiple-head devices. */
120 u32 reserved
:10; /*Must be 0 */
121 u32 device_id_scheme
:1; /*Device ID Scheme */
124 struct acpi_video_enumerated_device
{
127 struct acpi_video_device_attrib attrib
;
129 struct acpi_video_device
*bind_info
;
132 struct acpi_video_bus
{
133 struct acpi_device
*device
;
135 struct acpi_video_enumerated_device
*attached_array
;
137 struct acpi_video_bus_cap cap
;
138 struct acpi_video_bus_flags flags
;
139 struct list_head video_device_list
;
140 struct mutex device_list_lock
; /* protects video_device_list */
141 struct proc_dir_entry
*dir
;
142 struct input_dev
*input
;
143 char phys
[32]; /* for input device */
146 struct acpi_video_device_flags
{
156 struct acpi_video_device_cap
{
157 u8 _ADR
:1; /*Return the unique ID */
158 u8 _BCL
:1; /*Query list of brightness control levels supported */
159 u8 _BCM
:1; /*Set the brightness level */
160 u8 _BQC
:1; /* Get current brightness level */
161 u8 _DDC
:1; /*Return the EDID for this device */
162 u8 _DCS
:1; /*Return status of output device */
163 u8 _DGS
:1; /*Query graphics state */
164 u8 _DSS
:1; /*Device state set */
167 struct acpi_video_device_brightness
{
173 struct acpi_video_device
{
174 unsigned long device_id
;
175 struct acpi_video_device_flags flags
;
176 struct acpi_video_device_cap cap
;
177 struct list_head entry
;
178 struct acpi_video_bus
*video
;
179 struct acpi_device
*dev
;
180 struct acpi_video_device_brightness
*brightness
;
181 struct backlight_device
*backlight
;
182 struct output_device
*output_dev
;
186 static int acpi_video_bus_info_open_fs(struct inode
*inode
, struct file
*file
);
187 static struct file_operations acpi_video_bus_info_fops
= {
188 .open
= acpi_video_bus_info_open_fs
,
191 .release
= single_release
,
194 static int acpi_video_bus_ROM_open_fs(struct inode
*inode
, struct file
*file
);
195 static struct file_operations acpi_video_bus_ROM_fops
= {
196 .open
= acpi_video_bus_ROM_open_fs
,
199 .release
= single_release
,
202 static int acpi_video_bus_POST_info_open_fs(struct inode
*inode
,
204 static struct file_operations acpi_video_bus_POST_info_fops
= {
205 .open
= acpi_video_bus_POST_info_open_fs
,
208 .release
= single_release
,
211 static int acpi_video_bus_POST_open_fs(struct inode
*inode
, struct file
*file
);
212 static struct file_operations acpi_video_bus_POST_fops
= {
213 .open
= acpi_video_bus_POST_open_fs
,
216 .release
= single_release
,
219 static int acpi_video_bus_DOS_open_fs(struct inode
*inode
, struct file
*file
);
220 static struct file_operations acpi_video_bus_DOS_fops
= {
221 .open
= acpi_video_bus_DOS_open_fs
,
224 .release
= single_release
,
228 static int acpi_video_device_info_open_fs(struct inode
*inode
,
230 static struct file_operations acpi_video_device_info_fops
= {
231 .open
= acpi_video_device_info_open_fs
,
234 .release
= single_release
,
237 static int acpi_video_device_state_open_fs(struct inode
*inode
,
239 static struct file_operations acpi_video_device_state_fops
= {
240 .open
= acpi_video_device_state_open_fs
,
243 .release
= single_release
,
246 static int acpi_video_device_brightness_open_fs(struct inode
*inode
,
248 static struct file_operations acpi_video_device_brightness_fops
= {
249 .open
= acpi_video_device_brightness_open_fs
,
252 .release
= single_release
,
255 static int acpi_video_device_EDID_open_fs(struct inode
*inode
,
257 static struct file_operations acpi_video_device_EDID_fops
= {
258 .open
= acpi_video_device_EDID_open_fs
,
261 .release
= single_release
,
264 static char device_decode
[][30] = {
265 "motherboard VGA device",
271 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
);
272 static void acpi_video_device_rebind(struct acpi_video_bus
*video
);
273 static void acpi_video_device_bind(struct acpi_video_bus
*video
,
274 struct acpi_video_device
*device
);
275 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
);
276 static int acpi_video_switch_output(struct acpi_video_bus
*video
, int event
);
277 static int acpi_video_device_lcd_set_level(struct acpi_video_device
*device
,
279 static int acpi_video_device_lcd_get_level_current(
280 struct acpi_video_device
*device
,
281 unsigned long *level
);
282 static int acpi_video_get_next_level(struct acpi_video_device
*device
,
283 u32 level_current
, u32 event
);
284 static void acpi_video_switch_brightness(struct acpi_video_device
*device
,
286 static int acpi_video_device_get_state(struct acpi_video_device
*device
,
287 unsigned long *state
);
288 static int acpi_video_output_get(struct output_device
*od
);
289 static int acpi_video_device_set_state(struct acpi_video_device
*device
, int state
);
291 /*backlight device sysfs support*/
292 static int acpi_video_get_brightness(struct backlight_device
*bd
)
294 unsigned long cur_level
;
295 struct acpi_video_device
*vd
=
296 (struct acpi_video_device
*)bl_get_data(bd
);
297 acpi_video_device_lcd_get_level_current(vd
, &cur_level
);
298 return (int) cur_level
;
301 static int acpi_video_set_brightness(struct backlight_device
*bd
)
303 int request_level
= bd
->props
.brightness
;
304 struct acpi_video_device
*vd
=
305 (struct acpi_video_device
*)bl_get_data(bd
);
306 acpi_video_device_lcd_set_level(vd
, request_level
);
310 static struct backlight_ops acpi_backlight_ops
= {
311 .get_brightness
= acpi_video_get_brightness
,
312 .update_status
= acpi_video_set_brightness
,
315 /*video output device sysfs support*/
316 static int acpi_video_output_get(struct output_device
*od
)
319 struct acpi_video_device
*vd
=
320 (struct acpi_video_device
*)dev_get_drvdata(&od
->dev
);
321 acpi_video_device_get_state(vd
, &state
);
325 static int acpi_video_output_set(struct output_device
*od
)
327 unsigned long state
= od
->request_state
;
328 struct acpi_video_device
*vd
=
329 (struct acpi_video_device
*)dev_get_drvdata(&od
->dev
);
330 return acpi_video_device_set_state(vd
, state
);
333 static struct output_properties acpi_output_properties
= {
334 .set_state
= acpi_video_output_set
,
335 .get_status
= acpi_video_output_get
,
337 /* --------------------------------------------------------------------------
339 -------------------------------------------------------------------------- */
344 acpi_video_device_query(struct acpi_video_device
*device
, unsigned long *state
)
348 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DGS", NULL
, state
);
354 acpi_video_device_get_state(struct acpi_video_device
*device
,
355 unsigned long *state
)
359 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DCS", NULL
, state
);
365 acpi_video_device_set_state(struct acpi_video_device
*device
, int state
)
368 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
369 struct acpi_object_list args
= { 1, &arg0
};
373 arg0
.integer
.value
= state
;
374 status
= acpi_evaluate_integer(device
->dev
->handle
, "_DSS", &args
, &ret
);
380 acpi_video_device_lcd_query_levels(struct acpi_video_device
*device
,
381 union acpi_object
**levels
)
384 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
385 union acpi_object
*obj
;
390 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCL", NULL
, &buffer
);
391 if (!ACPI_SUCCESS(status
))
393 obj
= (union acpi_object
*)buffer
.pointer
;
394 if (!obj
|| (obj
->type
!= ACPI_TYPE_PACKAGE
)) {
395 printk(KERN_ERR PREFIX
"Invalid _BCL data\n");
405 kfree(buffer
.pointer
);
411 acpi_video_device_lcd_set_level(struct acpi_video_device
*device
, int level
)
414 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
415 struct acpi_object_list args
= { 1, &arg0
};
418 arg0
.integer
.value
= level
;
420 if (device
->cap
._BCM
)
421 status
= acpi_evaluate_object(device
->dev
->handle
, "_BCM",
423 device
->brightness
->curr
= level
;
428 acpi_video_device_lcd_get_level_current(struct acpi_video_device
*device
,
429 unsigned long *level
)
431 if (device
->cap
._BQC
)
432 return acpi_evaluate_integer(device
->dev
->handle
, "_BQC", NULL
,
434 *level
= device
->brightness
->curr
;
439 acpi_video_device_EDID(struct acpi_video_device
*device
,
440 union acpi_object
**edid
, ssize_t length
)
443 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
444 union acpi_object
*obj
;
445 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
446 struct acpi_object_list args
= { 1, &arg0
};
454 arg0
.integer
.value
= 1;
455 else if (length
== 256)
456 arg0
.integer
.value
= 2;
460 status
= acpi_evaluate_object(device
->dev
->handle
, "_DDC", &args
, &buffer
);
461 if (ACPI_FAILURE(status
))
464 obj
= buffer
.pointer
;
466 if (obj
&& obj
->type
== ACPI_TYPE_BUFFER
)
469 printk(KERN_ERR PREFIX
"Invalid _DDC data\n");
480 acpi_video_bus_set_POST(struct acpi_video_bus
*video
, unsigned long option
)
484 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
485 struct acpi_object_list args
= { 1, &arg0
};
488 arg0
.integer
.value
= option
;
490 status
= acpi_evaluate_integer(video
->device
->handle
, "_SPD", &args
, &tmp
);
491 if (ACPI_SUCCESS(status
))
492 status
= tmp
? (-EINVAL
) : (AE_OK
);
498 acpi_video_bus_get_POST(struct acpi_video_bus
*video
, unsigned long *id
)
502 status
= acpi_evaluate_integer(video
->device
->handle
, "_GPD", NULL
, id
);
508 acpi_video_bus_POST_options(struct acpi_video_bus
*video
,
509 unsigned long *options
)
513 status
= acpi_evaluate_integer(video
->device
->handle
, "_VPO", NULL
, options
);
521 * video : video bus device pointer
523 * 0. The system BIOS should NOT automatically switch(toggle)
524 * the active display output.
525 * 1. The system BIOS should automatically switch (toggle) the
526 * active display output. No switch event.
527 * 2. The _DGS value should be locked.
528 * 3. The system BIOS should not automatically switch (toggle) the
529 * active display output, but instead generate the display switch
532 * 0. The system BIOS should automatically control the brightness level
533 * of the LCD when the power changes from AC to DC
534 * 1. The system BIOS should NOT automatically control the brightness
535 * level of the LCD when the power changes from AC to DC.
541 acpi_video_bus_DOS(struct acpi_video_bus
*video
, int bios_flag
, int lcd_flag
)
543 acpi_integer status
= 0;
544 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
545 struct acpi_object_list args
= { 1, &arg0
};
548 if (bios_flag
< 0 || bios_flag
> 3 || lcd_flag
< 0 || lcd_flag
> 1) {
552 arg0
.integer
.value
= (lcd_flag
<< 2) | bios_flag
;
553 video
->dos_setting
= arg0
.integer
.value
;
554 acpi_evaluate_object(video
->device
->handle
, "_DOS", &args
, NULL
);
562 * device : video output device (LCD, CRT, ..)
567 * Find out all required AML methods defined under the output
571 static void acpi_video_device_find_cap(struct acpi_video_device
*device
)
573 acpi_handle h_dummy1
;
576 union acpi_object
*obj
= NULL
;
577 struct acpi_video_device_brightness
*br
= NULL
;
580 memset(&device
->cap
, 0, sizeof(device
->cap
));
582 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_ADR", &h_dummy1
))) {
583 device
->cap
._ADR
= 1;
585 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCL", &h_dummy1
))) {
586 device
->cap
._BCL
= 1;
588 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_BCM", &h_dummy1
))) {
589 device
->cap
._BCM
= 1;
591 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
,"_BQC",&h_dummy1
)))
592 device
->cap
._BQC
= 1;
593 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DDC", &h_dummy1
))) {
594 device
->cap
._DDC
= 1;
596 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DCS", &h_dummy1
))) {
597 device
->cap
._DCS
= 1;
599 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DGS", &h_dummy1
))) {
600 device
->cap
._DGS
= 1;
602 if (ACPI_SUCCESS(acpi_get_handle(device
->dev
->handle
, "_DSS", &h_dummy1
))) {
603 device
->cap
._DSS
= 1;
606 if (ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device
, &obj
))) {
608 if (obj
->package
.count
>= 2) {
610 union acpi_object
*o
;
612 br
= kzalloc(sizeof(*br
), GFP_KERNEL
);
614 printk(KERN_ERR
"can't allocate memory\n");
616 br
->levels
= kmalloc(obj
->package
.count
*
617 sizeof *(br
->levels
), GFP_KERNEL
);
621 for (i
= 0; i
< obj
->package
.count
; i
++) {
622 o
= (union acpi_object
*)&obj
->package
.
624 if (o
->type
!= ACPI_TYPE_INTEGER
) {
625 printk(KERN_ERR PREFIX
"Invalid data\n");
628 br
->levels
[count
] = (u32
) o
->integer
.value
;
630 if (br
->levels
[count
] > max_level
)
631 max_level
= br
->levels
[count
];
640 device
->brightness
= br
;
641 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
642 "found %d brightness levels\n",
649 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Could not query available LCD brightness level\n"));
654 if (device
->cap
._BCL
&& device
->cap
._BCM
&& device
->cap
._BQC
&& max_level
> 0){
656 static int count
= 0;
658 name
= kzalloc(MAX_NAME_LEN
, GFP_KERNEL
);
662 sprintf(name
, "acpi_video%d", count
++);
663 acpi_video_device_lcd_get_level_current(device
, &tmp
);
664 device
->backlight
= backlight_device_register(name
,
665 NULL
, device
, &acpi_backlight_ops
);
666 device
->backlight
->props
.max_brightness
= max_level
;
667 device
->backlight
->props
.brightness
= (int)tmp
;
668 backlight_update_status(device
->backlight
);
672 if (device
->cap
._DCS
&& device
->cap
._DSS
){
673 static int count
= 0;
675 name
= kzalloc(MAX_NAME_LEN
, GFP_KERNEL
);
678 sprintf(name
, "acpi_video%d", count
++);
679 device
->output_dev
= video_output_register(name
,
680 NULL
, device
, &acpi_output_properties
);
688 * device : video output device (VGA)
693 * Find out all required AML methods defined under the video bus device.
696 static void acpi_video_bus_find_cap(struct acpi_video_bus
*video
)
698 acpi_handle h_dummy1
;
700 memset(&video
->cap
, 0, sizeof(video
->cap
));
701 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_DOS", &h_dummy1
))) {
704 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_DOD", &h_dummy1
))) {
707 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_ROM", &h_dummy1
))) {
710 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_GPD", &h_dummy1
))) {
713 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_SPD", &h_dummy1
))) {
716 if (ACPI_SUCCESS(acpi_get_handle(video
->device
->handle
, "_VPO", &h_dummy1
))) {
722 * Check whether the video bus device has required AML method to
723 * support the desired features
726 static int acpi_video_bus_check(struct acpi_video_bus
*video
)
728 acpi_status status
= -ENOENT
;
734 /* Since there is no HID, CID and so on for VGA driver, we have
735 * to check well known required nodes.
738 /* Does this device support video switching? */
739 if (video
->cap
._DOS
) {
740 video
->flags
.multihead
= 1;
744 /* Does this device support retrieving a video ROM? */
745 if (video
->cap
._ROM
) {
746 video
->flags
.rom
= 1;
750 /* Does this device support configuring which video device to POST? */
751 if (video
->cap
._GPD
&& video
->cap
._SPD
&& video
->cap
._VPO
) {
752 video
->flags
.post
= 1;
759 /* --------------------------------------------------------------------------
761 -------------------------------------------------------------------------- */
763 static struct proc_dir_entry
*acpi_video_dir
;
767 static int acpi_video_device_info_seq_show(struct seq_file
*seq
, void *offset
)
769 struct acpi_video_device
*dev
= seq
->private;
775 seq_printf(seq
, "device_id: 0x%04x\n", (u32
) dev
->device_id
);
776 seq_printf(seq
, "type: ");
778 seq_printf(seq
, "CRT\n");
779 else if (dev
->flags
.lcd
)
780 seq_printf(seq
, "LCD\n");
781 else if (dev
->flags
.tvout
)
782 seq_printf(seq
, "TVOUT\n");
783 else if (dev
->flags
.dvi
)
784 seq_printf(seq
, "DVI\n");
786 seq_printf(seq
, "UNKNOWN\n");
788 seq_printf(seq
, "known by bios: %s\n", dev
->flags
.bios
? "yes" : "no");
795 acpi_video_device_info_open_fs(struct inode
*inode
, struct file
*file
)
797 return single_open(file
, acpi_video_device_info_seq_show
,
801 static int acpi_video_device_state_seq_show(struct seq_file
*seq
, void *offset
)
804 struct acpi_video_device
*dev
= seq
->private;
811 status
= acpi_video_device_get_state(dev
, &state
);
812 seq_printf(seq
, "state: ");
813 if (ACPI_SUCCESS(status
))
814 seq_printf(seq
, "0x%02lx\n", state
);
816 seq_printf(seq
, "<not supported>\n");
818 status
= acpi_video_device_query(dev
, &state
);
819 seq_printf(seq
, "query: ");
820 if (ACPI_SUCCESS(status
))
821 seq_printf(seq
, "0x%02lx\n", state
);
823 seq_printf(seq
, "<not supported>\n");
830 acpi_video_device_state_open_fs(struct inode
*inode
, struct file
*file
)
832 return single_open(file
, acpi_video_device_state_seq_show
,
837 acpi_video_device_write_state(struct file
*file
,
838 const char __user
* buffer
,
839 size_t count
, loff_t
* data
)
842 struct seq_file
*m
= file
->private_data
;
843 struct acpi_video_device
*dev
= m
->private;
844 char str
[12] = { 0 };
848 if (!dev
|| count
+ 1 > sizeof str
)
851 if (copy_from_user(str
, buffer
, count
))
855 state
= simple_strtoul(str
, NULL
, 0);
856 state
&= ((1ul << 31) | (1ul << 30) | (1ul << 0));
858 status
= acpi_video_device_set_state(dev
, state
);
867 acpi_video_device_brightness_seq_show(struct seq_file
*seq
, void *offset
)
869 struct acpi_video_device
*dev
= seq
->private;
873 if (!dev
|| !dev
->brightness
) {
874 seq_printf(seq
, "<not supported>\n");
878 seq_printf(seq
, "levels: ");
879 for (i
= 0; i
< dev
->brightness
->count
; i
++)
880 seq_printf(seq
, " %d", dev
->brightness
->levels
[i
]);
881 seq_printf(seq
, "\ncurrent: %d\n", dev
->brightness
->curr
);
887 acpi_video_device_brightness_open_fs(struct inode
*inode
, struct file
*file
)
889 return single_open(file
, acpi_video_device_brightness_seq_show
,
894 acpi_video_device_write_brightness(struct file
*file
,
895 const char __user
* buffer
,
896 size_t count
, loff_t
* data
)
898 struct seq_file
*m
= file
->private_data
;
899 struct acpi_video_device
*dev
= m
->private;
901 unsigned int level
= 0;
905 if (!dev
|| !dev
->brightness
|| count
+ 1 > sizeof str
)
908 if (copy_from_user(str
, buffer
, count
))
912 level
= simple_strtoul(str
, NULL
, 0);
917 /* validate through the list of available levels */
918 for (i
= 0; i
< dev
->brightness
->count
; i
++)
919 if (level
== dev
->brightness
->levels
[i
]) {
921 (acpi_video_device_lcd_set_level(dev
, level
)))
922 dev
->brightness
->curr
= level
;
929 static int acpi_video_device_EDID_seq_show(struct seq_file
*seq
, void *offset
)
931 struct acpi_video_device
*dev
= seq
->private;
934 union acpi_object
*edid
= NULL
;
940 status
= acpi_video_device_EDID(dev
, &edid
, 128);
941 if (ACPI_FAILURE(status
)) {
942 status
= acpi_video_device_EDID(dev
, &edid
, 256);
945 if (ACPI_FAILURE(status
)) {
949 if (edid
&& edid
->type
== ACPI_TYPE_BUFFER
) {
950 for (i
= 0; i
< edid
->buffer
.length
; i
++)
951 seq_putc(seq
, edid
->buffer
.pointer
[i
]);
956 seq_printf(seq
, "<not supported>\n");
964 acpi_video_device_EDID_open_fs(struct inode
*inode
, struct file
*file
)
966 return single_open(file
, acpi_video_device_EDID_seq_show
,
970 static int acpi_video_device_add_fs(struct acpi_device
*device
)
972 struct proc_dir_entry
*entry
= NULL
;
973 struct acpi_video_device
*vid_dev
;
979 vid_dev
= acpi_driver_data(device
);
983 if (!acpi_device_dir(device
)) {
984 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
985 vid_dev
->video
->dir
);
986 if (!acpi_device_dir(device
))
988 acpi_device_dir(device
)->owner
= THIS_MODULE
;
992 entry
= create_proc_entry("info", S_IRUGO
, acpi_device_dir(device
));
996 entry
->proc_fops
= &acpi_video_device_info_fops
;
997 entry
->data
= acpi_driver_data(device
);
998 entry
->owner
= THIS_MODULE
;
1003 create_proc_entry("state", S_IFREG
| S_IRUGO
| S_IWUSR
,
1004 acpi_device_dir(device
));
1008 acpi_video_device_state_fops
.write
= acpi_video_device_write_state
;
1009 entry
->proc_fops
= &acpi_video_device_state_fops
;
1010 entry
->data
= acpi_driver_data(device
);
1011 entry
->owner
= THIS_MODULE
;
1014 /* 'brightness' [R/W] */
1016 create_proc_entry("brightness", S_IFREG
| S_IRUGO
| S_IWUSR
,
1017 acpi_device_dir(device
));
1021 acpi_video_device_brightness_fops
.write
= acpi_video_device_write_brightness
;
1022 entry
->proc_fops
= &acpi_video_device_brightness_fops
;
1023 entry
->data
= acpi_driver_data(device
);
1024 entry
->owner
= THIS_MODULE
;
1028 entry
= create_proc_entry("EDID", S_IRUGO
, acpi_device_dir(device
));
1032 entry
->proc_fops
= &acpi_video_device_EDID_fops
;
1033 entry
->data
= acpi_driver_data(device
);
1034 entry
->owner
= THIS_MODULE
;
1040 static int acpi_video_device_remove_fs(struct acpi_device
*device
)
1042 struct acpi_video_device
*vid_dev
;
1044 vid_dev
= acpi_driver_data(device
);
1045 if (!vid_dev
|| !vid_dev
->video
|| !vid_dev
->video
->dir
)
1048 if (acpi_device_dir(device
)) {
1049 remove_proc_entry("info", acpi_device_dir(device
));
1050 remove_proc_entry("state", acpi_device_dir(device
));
1051 remove_proc_entry("brightness", acpi_device_dir(device
));
1052 remove_proc_entry("EDID", acpi_device_dir(device
));
1053 remove_proc_entry(acpi_device_bid(device
), vid_dev
->video
->dir
);
1054 acpi_device_dir(device
) = NULL
;
1061 static int acpi_video_bus_info_seq_show(struct seq_file
*seq
, void *offset
)
1063 struct acpi_video_bus
*video
= seq
->private;
1069 seq_printf(seq
, "Switching heads: %s\n",
1070 video
->flags
.multihead
? "yes" : "no");
1071 seq_printf(seq
, "Video ROM: %s\n",
1072 video
->flags
.rom
? "yes" : "no");
1073 seq_printf(seq
, "Device to be POSTed on boot: %s\n",
1074 video
->flags
.post
? "yes" : "no");
1080 static int acpi_video_bus_info_open_fs(struct inode
*inode
, struct file
*file
)
1082 return single_open(file
, acpi_video_bus_info_seq_show
,
1086 static int acpi_video_bus_ROM_seq_show(struct seq_file
*seq
, void *offset
)
1088 struct acpi_video_bus
*video
= seq
->private;
1094 printk(KERN_INFO PREFIX
"Please implement %s\n", __FUNCTION__
);
1095 seq_printf(seq
, "<TODO>\n");
1101 static int acpi_video_bus_ROM_open_fs(struct inode
*inode
, struct file
*file
)
1103 return single_open(file
, acpi_video_bus_ROM_seq_show
, PDE(inode
)->data
);
1106 static int acpi_video_bus_POST_info_seq_show(struct seq_file
*seq
, void *offset
)
1108 struct acpi_video_bus
*video
= seq
->private;
1109 unsigned long options
;
1116 status
= acpi_video_bus_POST_options(video
, &options
);
1117 if (ACPI_SUCCESS(status
)) {
1118 if (!(options
& 1)) {
1119 printk(KERN_WARNING PREFIX
1120 "The motherboard VGA device is not listed as a possible POST device.\n");
1121 printk(KERN_WARNING PREFIX
1122 "This indicates a BIOS bug. Please contact the manufacturer.\n");
1124 printk("%lx\n", options
);
1125 seq_printf(seq
, "can POST: <integrated video>");
1127 seq_printf(seq
, " <PCI video>");
1129 seq_printf(seq
, " <AGP video>");
1130 seq_putc(seq
, '\n');
1132 seq_printf(seq
, "<not supported>\n");
1138 acpi_video_bus_POST_info_open_fs(struct inode
*inode
, struct file
*file
)
1140 return single_open(file
, acpi_video_bus_POST_info_seq_show
,
1144 static int acpi_video_bus_POST_seq_show(struct seq_file
*seq
, void *offset
)
1146 struct acpi_video_bus
*video
= seq
->private;
1154 status
= acpi_video_bus_get_POST(video
, &id
);
1155 if (!ACPI_SUCCESS(status
)) {
1156 seq_printf(seq
, "<not supported>\n");
1159 seq_printf(seq
, "device POSTed is <%s>\n", device_decode
[id
& 3]);
1165 static int acpi_video_bus_DOS_seq_show(struct seq_file
*seq
, void *offset
)
1167 struct acpi_video_bus
*video
= seq
->private;
1170 seq_printf(seq
, "DOS setting: <%d>\n", video
->dos_setting
);
1175 static int acpi_video_bus_POST_open_fs(struct inode
*inode
, struct file
*file
)
1177 return single_open(file
, acpi_video_bus_POST_seq_show
,
1181 static int acpi_video_bus_DOS_open_fs(struct inode
*inode
, struct file
*file
)
1183 return single_open(file
, acpi_video_bus_DOS_seq_show
, PDE(inode
)->data
);
1187 acpi_video_bus_write_POST(struct file
*file
,
1188 const char __user
* buffer
,
1189 size_t count
, loff_t
* data
)
1192 struct seq_file
*m
= file
->private_data
;
1193 struct acpi_video_bus
*video
= m
->private;
1194 char str
[12] = { 0 };
1195 unsigned long opt
, options
;
1198 if (!video
|| count
+ 1 > sizeof str
)
1201 status
= acpi_video_bus_POST_options(video
, &options
);
1202 if (!ACPI_SUCCESS(status
))
1205 if (copy_from_user(str
, buffer
, count
))
1209 opt
= strtoul(str
, NULL
, 0);
1213 /* just in case an OEM 'forgot' the motherboard... */
1216 if (options
& (1ul << opt
)) {
1217 status
= acpi_video_bus_set_POST(video
, opt
);
1218 if (!ACPI_SUCCESS(status
))
1227 acpi_video_bus_write_DOS(struct file
*file
,
1228 const char __user
* buffer
,
1229 size_t count
, loff_t
* data
)
1232 struct seq_file
*m
= file
->private_data
;
1233 struct acpi_video_bus
*video
= m
->private;
1234 char str
[12] = { 0 };
1238 if (!video
|| count
+ 1 > sizeof str
)
1241 if (copy_from_user(str
, buffer
, count
))
1245 opt
= strtoul(str
, NULL
, 0);
1249 status
= acpi_video_bus_DOS(video
, opt
& 0x3, (opt
& 0x4) >> 2);
1251 if (!ACPI_SUCCESS(status
))
1257 static int acpi_video_bus_add_fs(struct acpi_device
*device
)
1259 struct proc_dir_entry
*entry
= NULL
;
1260 struct acpi_video_bus
*video
;
1263 video
= acpi_driver_data(device
);
1265 if (!acpi_device_dir(device
)) {
1266 acpi_device_dir(device
) = proc_mkdir(acpi_device_bid(device
),
1268 if (!acpi_device_dir(device
))
1270 video
->dir
= acpi_device_dir(device
);
1271 acpi_device_dir(device
)->owner
= THIS_MODULE
;
1275 entry
= create_proc_entry("info", S_IRUGO
, acpi_device_dir(device
));
1279 entry
->proc_fops
= &acpi_video_bus_info_fops
;
1280 entry
->data
= acpi_driver_data(device
);
1281 entry
->owner
= THIS_MODULE
;
1285 entry
= create_proc_entry("ROM", S_IRUGO
, acpi_device_dir(device
));
1289 entry
->proc_fops
= &acpi_video_bus_ROM_fops
;
1290 entry
->data
= acpi_driver_data(device
);
1291 entry
->owner
= THIS_MODULE
;
1294 /* 'POST_info' [R] */
1296 create_proc_entry("POST_info", S_IRUGO
, acpi_device_dir(device
));
1300 entry
->proc_fops
= &acpi_video_bus_POST_info_fops
;
1301 entry
->data
= acpi_driver_data(device
);
1302 entry
->owner
= THIS_MODULE
;
1307 create_proc_entry("POST", S_IFREG
| S_IRUGO
| S_IRUSR
,
1308 acpi_device_dir(device
));
1312 acpi_video_bus_POST_fops
.write
= acpi_video_bus_write_POST
;
1313 entry
->proc_fops
= &acpi_video_bus_POST_fops
;
1314 entry
->data
= acpi_driver_data(device
);
1315 entry
->owner
= THIS_MODULE
;
1320 create_proc_entry("DOS", S_IFREG
| S_IRUGO
| S_IRUSR
,
1321 acpi_device_dir(device
));
1325 acpi_video_bus_DOS_fops
.write
= acpi_video_bus_write_DOS
;
1326 entry
->proc_fops
= &acpi_video_bus_DOS_fops
;
1327 entry
->data
= acpi_driver_data(device
);
1328 entry
->owner
= THIS_MODULE
;
1334 static int acpi_video_bus_remove_fs(struct acpi_device
*device
)
1336 struct acpi_video_bus
*video
;
1339 video
= acpi_driver_data(device
);
1341 if (acpi_device_dir(device
)) {
1342 remove_proc_entry("info", acpi_device_dir(device
));
1343 remove_proc_entry("ROM", acpi_device_dir(device
));
1344 remove_proc_entry("POST_info", acpi_device_dir(device
));
1345 remove_proc_entry("POST", acpi_device_dir(device
));
1346 remove_proc_entry("DOS", acpi_device_dir(device
));
1347 remove_proc_entry(acpi_device_bid(device
), acpi_video_dir
);
1348 acpi_device_dir(device
) = NULL
;
1354 /* --------------------------------------------------------------------------
1356 -------------------------------------------------------------------------- */
1358 /* device interface */
1359 static struct acpi_video_device_attrib
*
1360 acpi_video_get_device_attr(struct acpi_video_bus
*video
, unsigned long device_id
)
1364 for(count
= 0; count
< video
->attached_count
; count
++)
1365 if((video
->attached_array
[count
].value
.int_val
& 0xffff) == device_id
)
1366 return &(video
->attached_array
[count
].value
.attrib
);
1371 acpi_video_bus_get_one_device(struct acpi_device
*device
,
1372 struct acpi_video_bus
*video
)
1374 unsigned long device_id
;
1376 struct acpi_video_device
*data
;
1377 struct acpi_video_device_attrib
* attribute
;
1379 if (!device
|| !video
)
1383 acpi_evaluate_integer(device
->handle
, "_ADR", NULL
, &device_id
);
1384 if (ACPI_SUCCESS(status
)) {
1386 data
= kzalloc(sizeof(struct acpi_video_device
), GFP_KERNEL
);
1390 strcpy(acpi_device_name(device
), ACPI_VIDEO_DEVICE_NAME
);
1391 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
1392 acpi_driver_data(device
) = data
;
1394 data
->device_id
= device_id
;
1395 data
->video
= video
;
1398 attribute
= acpi_video_get_device_attr(video
, device_id
);
1400 if((attribute
!= NULL
) && attribute
->device_id_scheme
) {
1401 switch (attribute
->display_type
) {
1402 case ACPI_VIDEO_DISPLAY_CRT
:
1403 data
->flags
.crt
= 1;
1405 case ACPI_VIDEO_DISPLAY_TV
:
1406 data
->flags
.tvout
= 1;
1408 case ACPI_VIDEO_DISPLAY_DVI
:
1409 data
->flags
.dvi
= 1;
1411 case ACPI_VIDEO_DISPLAY_LCD
:
1412 data
->flags
.lcd
= 1;
1415 data
->flags
.unknown
= 1;
1418 if(attribute
->bios_can_detect
)
1419 data
->flags
.bios
= 1;
1421 data
->flags
.unknown
= 1;
1423 acpi_video_device_bind(video
, data
);
1424 acpi_video_device_find_cap(data
);
1426 status
= acpi_install_notify_handler(device
->handle
,
1428 acpi_video_device_notify
,
1430 if (ACPI_FAILURE(status
)) {
1431 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
1432 "Error installing notify handler\n"));
1433 if(data
->brightness
)
1434 kfree(data
->brightness
->levels
);
1435 kfree(data
->brightness
);
1440 mutex_lock(&video
->device_list_lock
);
1441 list_add_tail(&data
->entry
, &video
->video_device_list
);
1442 mutex_unlock(&video
->device_list_lock
);
1444 acpi_video_device_add_fs(device
);
1454 * video : video bus device
1459 * Enumerate the video device list of the video bus,
1460 * bind the ids with the corresponding video devices
1461 * under the video bus.
1464 static void acpi_video_device_rebind(struct acpi_video_bus
*video
)
1466 struct acpi_video_device
*dev
;
1468 mutex_lock(&video
->device_list_lock
);
1470 list_for_each_entry(dev
, &video
->video_device_list
, entry
)
1471 acpi_video_device_bind(video
, dev
);
1473 mutex_unlock(&video
->device_list_lock
);
1478 * video : video bus device
1479 * device : video output device under the video
1485 * Bind the ids with the corresponding video devices
1486 * under the video bus.
1490 acpi_video_device_bind(struct acpi_video_bus
*video
,
1491 struct acpi_video_device
*device
)
1495 #define IDS_VAL(i) video->attached_array[i].value.int_val
1496 #define IDS_BIND(i) video->attached_array[i].bind_info
1498 for (i
= 0; IDS_VAL(i
) != ACPI_VIDEO_HEAD_INVALID
&&
1499 i
< video
->attached_count
; i
++) {
1500 if (device
->device_id
== (IDS_VAL(i
) & 0xffff)) {
1501 IDS_BIND(i
) = device
;
1502 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "device_bind %d\n", i
));
1511 * video : video bus device
1516 * Call _DOD to enumerate all devices attached to display adapter
1520 static int acpi_video_device_enumerate(struct acpi_video_bus
*video
)
1525 struct acpi_video_enumerated_device
*active_device_list
;
1526 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
1527 union acpi_object
*dod
= NULL
;
1528 union acpi_object
*obj
;
1530 status
= acpi_evaluate_object(video
->device
->handle
, "_DOD", NULL
, &buffer
);
1531 if (!ACPI_SUCCESS(status
)) {
1532 ACPI_EXCEPTION((AE_INFO
, status
, "Evaluating _DOD"));
1536 dod
= buffer
.pointer
;
1537 if (!dod
|| (dod
->type
!= ACPI_TYPE_PACKAGE
)) {
1538 ACPI_EXCEPTION((AE_INFO
, status
, "Invalid _DOD data"));
1543 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Found %d video heads in _DOD\n",
1544 dod
->package
.count
));
1546 active_device_list
= kmalloc((1 +
1547 dod
->package
.count
) *
1549 acpi_video_enumerated_device
),
1552 if (!active_device_list
) {
1558 for (i
= 0; i
< dod
->package
.count
; i
++) {
1559 obj
= &dod
->package
.elements
[i
];
1561 if (obj
->type
!= ACPI_TYPE_INTEGER
) {
1562 printk(KERN_ERR PREFIX
"Invalid _DOD data\n");
1563 active_device_list
[i
].value
.int_val
=
1564 ACPI_VIDEO_HEAD_INVALID
;
1566 active_device_list
[i
].value
.int_val
= obj
->integer
.value
;
1567 active_device_list
[i
].bind_info
= NULL
;
1568 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "dod element[%d] = %d\n", i
,
1569 (int)obj
->integer
.value
));
1572 active_device_list
[count
].value
.int_val
= ACPI_VIDEO_HEAD_END
;
1574 kfree(video
->attached_array
);
1576 video
->attached_array
= active_device_list
;
1577 video
->attached_count
= count
;
1579 kfree(buffer
.pointer
);
1585 * video : video bus device
1586 * event : notify event
1591 * 1. Find out the current active output device.
1592 * 2. Identify the next output device to switch to.
1593 * 3. call _DSS to do actual switch.
1596 static int acpi_video_switch_output(struct acpi_video_bus
*video
, int event
)
1598 struct list_head
*node
;
1599 struct acpi_video_device
*dev
= NULL
;
1600 struct acpi_video_device
*dev_next
= NULL
;
1601 struct acpi_video_device
*dev_prev
= NULL
;
1602 unsigned long state
;
1605 mutex_lock(&video
->device_list_lock
);
1607 list_for_each(node
, &video
->video_device_list
) {
1608 dev
= container_of(node
, struct acpi_video_device
, entry
);
1609 status
= acpi_video_device_get_state(dev
, &state
);
1611 dev_next
= container_of(node
->next
,
1612 struct acpi_video_device
, entry
);
1613 dev_prev
= container_of(node
->prev
,
1614 struct acpi_video_device
, entry
);
1619 dev_next
= container_of(node
->next
, struct acpi_video_device
, entry
);
1620 dev_prev
= container_of(node
->prev
, struct acpi_video_device
, entry
);
1623 mutex_unlock(&video
->device_list_lock
);
1626 case ACPI_VIDEO_NOTIFY_CYCLE
:
1627 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT
:
1628 acpi_video_device_set_state(dev
, 0);
1629 acpi_video_device_set_state(dev_next
, 0x80000001);
1631 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT
:
1632 acpi_video_device_set_state(dev
, 0);
1633 acpi_video_device_set_state(dev_prev
, 0x80000001);
1642 acpi_video_get_next_level(struct acpi_video_device
*device
,
1643 u32 level_current
, u32 event
)
1645 int min
, max
, min_above
, max_below
, i
, l
, delta
= 255;
1646 max
= max_below
= 0;
1647 min
= min_above
= 255;
1648 /* Find closest level to level_current */
1649 for (i
= 0; i
< device
->brightness
->count
; i
++) {
1650 l
= device
->brightness
->levels
[i
];
1651 if (abs(l
- level_current
) < abs(delta
)) {
1652 delta
= l
- level_current
;
1657 /* Ajust level_current to closest available level */
1658 level_current
+= delta
;
1659 for (i
= 0; i
< device
->brightness
->count
; i
++) {
1660 l
= device
->brightness
->levels
[i
];
1665 if (l
< min_above
&& l
> level_current
)
1667 if (l
> max_below
&& l
< level_current
)
1672 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
:
1673 return (level_current
< max
) ? min_above
: min
;
1674 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
:
1675 return (level_current
< max
) ? min_above
: max
;
1676 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
:
1677 return (level_current
> min
) ? max_below
: min
;
1678 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
:
1679 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
:
1682 return level_current
;
1687 acpi_video_switch_brightness(struct acpi_video_device
*device
, int event
)
1689 unsigned long level_current
, level_next
;
1690 acpi_video_device_lcd_get_level_current(device
, &level_current
);
1691 level_next
= acpi_video_get_next_level(device
, level_current
, event
);
1692 acpi_video_device_lcd_set_level(device
, level_next
);
1696 acpi_video_bus_get_devices(struct acpi_video_bus
*video
,
1697 struct acpi_device
*device
)
1700 struct acpi_device
*dev
;
1702 acpi_video_device_enumerate(video
);
1704 list_for_each_entry(dev
, &device
->children
, node
) {
1706 status
= acpi_video_bus_get_one_device(dev
, video
);
1707 if (ACPI_FAILURE(status
)) {
1708 ACPI_EXCEPTION((AE_INFO
, status
, "Cant attach device"));
1715 static int acpi_video_bus_put_one_device(struct acpi_video_device
*device
)
1718 struct acpi_video_bus
*video
;
1721 if (!device
|| !device
->video
)
1724 video
= device
->video
;
1726 acpi_video_device_remove_fs(device
->dev
);
1728 status
= acpi_remove_notify_handler(device
->dev
->handle
,
1730 acpi_video_device_notify
);
1731 backlight_device_unregister(device
->backlight
);
1732 video_output_unregister(device
->output_dev
);
1737 static int acpi_video_bus_put_devices(struct acpi_video_bus
*video
)
1740 struct acpi_video_device
*dev
, *next
;
1742 mutex_lock(&video
->device_list_lock
);
1744 list_for_each_entry_safe(dev
, next
, &video
->video_device_list
, entry
) {
1746 status
= acpi_video_bus_put_one_device(dev
);
1747 if (ACPI_FAILURE(status
))
1748 printk(KERN_WARNING PREFIX
1749 "hhuuhhuu bug in acpi video driver.\n");
1751 if (dev
->brightness
) {
1752 kfree(dev
->brightness
->levels
);
1753 kfree(dev
->brightness
);
1755 list_del(&dev
->entry
);
1759 mutex_unlock(&video
->device_list_lock
);
1764 /* acpi_video interface */
1766 static int acpi_video_bus_start_devices(struct acpi_video_bus
*video
)
1768 return acpi_video_bus_DOS(video
, 0, 0);
1771 static int acpi_video_bus_stop_devices(struct acpi_video_bus
*video
)
1773 return acpi_video_bus_DOS(video
, 0, 1);
1776 static void acpi_video_bus_notify(acpi_handle handle
, u32 event
, void *data
)
1778 struct acpi_video_bus
*video
= data
;
1779 struct acpi_device
*device
= NULL
;
1780 struct input_dev
*input
;
1786 device
= video
->device
;
1787 input
= video
->input
;
1790 case ACPI_VIDEO_NOTIFY_SWITCH
: /* User requested a switch,
1791 * most likely via hotkey. */
1792 acpi_bus_generate_proc_event(device
, event
, 0);
1793 keycode
= KEY_SWITCHVIDEOMODE
;
1796 case ACPI_VIDEO_NOTIFY_PROBE
: /* User plugged in or removed a video
1798 acpi_video_device_enumerate(video
);
1799 acpi_video_device_rebind(video
);
1800 acpi_video_switch_output(video
, event
);
1801 acpi_bus_generate_proc_event(device
, event
, 0);
1802 keycode
= KEY_SWITCHVIDEOMODE
;
1805 case ACPI_VIDEO_NOTIFY_CYCLE
: /* Cycle Display output hotkey pressed. */
1806 acpi_video_switch_output(video
, event
);
1807 acpi_bus_generate_proc_event(device
, event
, 0);
1808 keycode
= KEY_SWITCHVIDEOMODE
;
1810 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT
: /* Next Display output hotkey pressed. */
1811 acpi_video_switch_output(video
, event
);
1812 acpi_bus_generate_proc_event(device
, event
, 0);
1813 keycode
= KEY_VIDEO_NEXT
;
1815 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT
: /* previous Display output hotkey pressed. */
1816 acpi_video_switch_output(video
, event
);
1817 acpi_bus_generate_proc_event(device
, event
, 0);
1818 keycode
= KEY_VIDEO_PREV
;
1822 keycode
= KEY_UNKNOWN
;
1823 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1824 "Unsupported event [0x%x]\n", event
));
1828 input_report_key(input
, keycode
, 1);
1830 input_report_key(input
, keycode
, 0);
1836 static void acpi_video_device_notify(acpi_handle handle
, u32 event
, void *data
)
1838 struct acpi_video_device
*video_device
= data
;
1839 struct acpi_device
*device
= NULL
;
1840 struct acpi_video_bus
*bus
;
1841 struct input_dev
*input
;
1847 device
= video_device
->dev
;
1848 bus
= video_device
->video
;
1852 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS
: /* Cycle brightness */
1853 acpi_video_switch_brightness(video_device
, event
);
1854 acpi_bus_generate_proc_event(device
, event
, 0);
1855 keycode
= KEY_BRIGHTNESS_CYCLE
;
1857 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
: /* Increase brightness */
1858 acpi_video_switch_brightness(video_device
, event
);
1859 acpi_bus_generate_proc_event(device
, event
, 0);
1860 keycode
= KEY_BRIGHTNESSUP
;
1862 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
: /* Decrease brightness */
1863 acpi_video_switch_brightness(video_device
, event
);
1864 acpi_bus_generate_proc_event(device
, event
, 0);
1865 keycode
= KEY_BRIGHTNESSDOWN
;
1867 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS
: /* zero brightnesss */
1868 acpi_video_switch_brightness(video_device
, event
);
1869 acpi_bus_generate_proc_event(device
, event
, 0);
1870 keycode
= KEY_BRIGHTNESS_ZERO
;
1872 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF
: /* display device off */
1873 acpi_video_switch_brightness(video_device
, event
);
1874 acpi_bus_generate_proc_event(device
, event
, 0);
1875 keycode
= KEY_DISPLAY_OFF
;
1878 keycode
= KEY_UNKNOWN
;
1879 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
1880 "Unsupported event [0x%x]\n", event
));
1884 input_report_key(input
, keycode
, 1);
1886 input_report_key(input
, keycode
, 0);
1892 static int instance
;
1893 static int acpi_video_bus_add(struct acpi_device
*device
)
1896 struct acpi_video_bus
*video
;
1897 struct input_dev
*input
;
1900 video
= kzalloc(sizeof(struct acpi_video_bus
), GFP_KERNEL
);
1904 /* a hack to fix the duplicate name "VID" problem on T61 */
1905 if (!strcmp(device
->pnp
.bus_id
, "VID")) {
1907 device
->pnp
.bus_id
[3] = '0' + instance
;
1911 video
->device
= device
;
1912 strcpy(acpi_device_name(device
), ACPI_VIDEO_BUS_NAME
);
1913 strcpy(acpi_device_class(device
), ACPI_VIDEO_CLASS
);
1914 acpi_driver_data(device
) = video
;
1916 acpi_video_bus_find_cap(video
);
1917 error
= acpi_video_bus_check(video
);
1919 goto err_free_video
;
1921 error
= acpi_video_bus_add_fs(device
);
1923 goto err_free_video
;
1925 mutex_init(&video
->device_list_lock
);
1926 INIT_LIST_HEAD(&video
->video_device_list
);
1928 acpi_video_bus_get_devices(video
, device
);
1929 acpi_video_bus_start_devices(video
);
1931 status
= acpi_install_notify_handler(device
->handle
,
1933 acpi_video_bus_notify
, video
);
1934 if (ACPI_FAILURE(status
)) {
1935 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
1936 "Error installing notify handler\n"));
1938 goto err_stop_video
;
1941 video
->input
= input
= input_allocate_device();
1944 goto err_uninstall_notify
;
1947 snprintf(video
->phys
, sizeof(video
->phys
),
1948 "%s/video/input0", acpi_device_hid(video
->device
));
1950 input
->name
= acpi_device_name(video
->device
);
1951 input
->phys
= video
->phys
;
1952 input
->id
.bustype
= BUS_HOST
;
1953 input
->id
.product
= 0x06;
1954 input
->dev
.parent
= &device
->dev
;
1955 input
->evbit
[0] = BIT(EV_KEY
);
1956 set_bit(KEY_SWITCHVIDEOMODE
, input
->keybit
);
1957 set_bit(KEY_VIDEO_NEXT
, input
->keybit
);
1958 set_bit(KEY_VIDEO_PREV
, input
->keybit
);
1959 set_bit(KEY_BRIGHTNESS_CYCLE
, input
->keybit
);
1960 set_bit(KEY_BRIGHTNESSUP
, input
->keybit
);
1961 set_bit(KEY_BRIGHTNESSDOWN
, input
->keybit
);
1962 set_bit(KEY_BRIGHTNESS_ZERO
, input
->keybit
);
1963 set_bit(KEY_DISPLAY_OFF
, input
->keybit
);
1964 set_bit(KEY_UNKNOWN
, input
->keybit
);
1966 error
= input_register_device(input
);
1968 goto err_free_input_dev
;
1970 printk(KERN_INFO PREFIX
"%s [%s] (multi-head: %s rom: %s post: %s)\n",
1971 ACPI_VIDEO_DEVICE_NAME
, acpi_device_bid(device
),
1972 video
->flags
.multihead
? "yes" : "no",
1973 video
->flags
.rom
? "yes" : "no",
1974 video
->flags
.post
? "yes" : "no");
1979 input_free_device(input
);
1980 err_uninstall_notify
:
1981 acpi_remove_notify_handler(device
->handle
, ACPI_DEVICE_NOTIFY
,
1982 acpi_video_bus_notify
);
1984 acpi_video_bus_stop_devices(video
);
1985 acpi_video_bus_put_devices(video
);
1986 kfree(video
->attached_array
);
1987 acpi_video_bus_remove_fs(device
);
1990 acpi_driver_data(device
) = NULL
;
1995 static int acpi_video_bus_remove(struct acpi_device
*device
, int type
)
1997 acpi_status status
= 0;
1998 struct acpi_video_bus
*video
= NULL
;
2001 if (!device
|| !acpi_driver_data(device
))
2004 video
= acpi_driver_data(device
);
2006 acpi_video_bus_stop_devices(video
);
2008 status
= acpi_remove_notify_handler(video
->device
->handle
,
2010 acpi_video_bus_notify
);
2012 acpi_video_bus_put_devices(video
);
2013 acpi_video_bus_remove_fs(device
);
2015 input_unregister_device(video
->input
);
2016 kfree(video
->attached_array
);
2022 static int __init
acpi_video_init(void)
2028 acpi_dbg_level = 0xFFFFFFFF;
2029 acpi_dbg_layer = 0x08000000;
2032 acpi_video_dir
= proc_mkdir(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2033 if (!acpi_video_dir
)
2035 acpi_video_dir
->owner
= THIS_MODULE
;
2037 result
= acpi_bus_register_driver(&acpi_video_bus
);
2039 remove_proc_entry(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2046 static void __exit
acpi_video_exit(void)
2049 acpi_bus_unregister_driver(&acpi_video_bus
);
2051 remove_proc_entry(ACPI_VIDEO_CLASS
, acpi_root_dir
);
2056 module_init(acpi_video_init
);
2057 module_exit(acpi_video_exit
);