| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  video.c - ACPI Video Driver ($Revision:$) | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 2004 Luming Yu <luming.yu@intel.com> | 
|  | 5 | *  Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org> | 
| Thomas Tuttle | f471518 | 2006-12-19 12:56:14 -0800 | [diff] [blame] | 6 | *  Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * | 
|  | 8 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
|  | 9 | * | 
|  | 10 | *  This program is free software; you can redistribute it and/or modify | 
|  | 11 | *  it under the terms of the GNU General Public License as published by | 
|  | 12 | *  the Free Software Foundation; either version 2 of the License, or (at | 
|  | 13 | *  your option) any later version. | 
|  | 14 | * | 
|  | 15 | *  This program is distributed in the hope that it will be useful, but | 
|  | 16 | *  WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 17 | *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|  | 18 | *  General Public License for more details. | 
|  | 19 | * | 
|  | 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. | 
|  | 23 | * | 
|  | 24 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
|  | 25 | */ | 
|  | 26 |  | 
|  | 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/proc_fs.h> | 
|  | 33 | #include <linux/seq_file.h> | 
|  | 34 |  | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 35 | #include <linux/backlight.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/uaccess.h> | 
|  | 37 |  | 
|  | 38 | #include <acpi/acpi_bus.h> | 
|  | 39 | #include <acpi/acpi_drivers.h> | 
|  | 40 |  | 
|  | 41 | #define ACPI_VIDEO_COMPONENT		0x08000000 | 
|  | 42 | #define ACPI_VIDEO_CLASS		"video" | 
|  | 43 | #define ACPI_VIDEO_DRIVER_NAME		"ACPI Video Driver" | 
|  | 44 | #define ACPI_VIDEO_BUS_NAME		"Video Bus" | 
|  | 45 | #define ACPI_VIDEO_DEVICE_NAME		"Video Device" | 
|  | 46 | #define ACPI_VIDEO_NOTIFY_SWITCH	0x80 | 
|  | 47 | #define ACPI_VIDEO_NOTIFY_PROBE		0x81 | 
|  | 48 | #define ACPI_VIDEO_NOTIFY_CYCLE		0x82 | 
|  | 49 | #define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT	0x83 | 
|  | 50 | #define ACPI_VIDEO_NOTIFY_PREV_OUTPUT	0x84 | 
|  | 51 |  | 
| Thomas Tuttle | f471518 | 2006-12-19 12:56:14 -0800 | [diff] [blame] | 52 | #define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS	0x85 | 
|  | 53 | #define	ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS	0x86 | 
|  | 54 | #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS	0x87 | 
|  | 55 | #define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS	0x88 | 
|  | 56 | #define ACPI_VIDEO_NOTIFY_DISPLAY_OFF		0x89 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #define ACPI_VIDEO_HEAD_INVALID		(~0u - 1) | 
|  | 59 | #define ACPI_VIDEO_HEAD_END		(~0u) | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 60 | #define MAX_NAME_LEN	20 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 |  | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 62 | #define ACPI_VIDEO_DISPLAY_CRT	1 | 
|  | 63 | #define ACPI_VIDEO_DISPLAY_TV	2 | 
|  | 64 | #define ACPI_VIDEO_DISPLAY_DVI	3 | 
|  | 65 | #define ACPI_VIDEO_DISPLAY_LCD	4 | 
|  | 66 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | #define _COMPONENT		ACPI_VIDEO_COMPONENT | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 68 | ACPI_MODULE_NAME("acpi_video") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 70 | MODULE_AUTHOR("Bruno Ducrot"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | MODULE_DESCRIPTION(ACPI_VIDEO_DRIVER_NAME); | 
|  | 72 | MODULE_LICENSE("GPL"); | 
|  | 73 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 74 | static int acpi_video_bus_add(struct acpi_device *device); | 
|  | 75 | static int acpi_video_bus_remove(struct acpi_device *device, int type); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 |  | 
|  | 77 | static struct acpi_driver acpi_video_bus = { | 
|  | 78 | .name = ACPI_VIDEO_DRIVER_NAME, | 
|  | 79 | .class = ACPI_VIDEO_CLASS, | 
| Zhang Rui | ae84333 | 2006-12-07 20:57:10 +0800 | [diff] [blame] | 80 | .ids = ACPI_VIDEO_HID, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | .ops = { | 
|  | 82 | .add = acpi_video_bus_add, | 
|  | 83 | .remove = acpi_video_bus_remove, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | }, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | }; | 
|  | 86 |  | 
|  | 87 | struct acpi_video_bus_flags { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | u8 multihead:1;		/* can switch video heads */ | 
|  | 89 | u8 rom:1;		/* can retrieve a video rom */ | 
|  | 90 | u8 post:1;		/* can configure the head to */ | 
|  | 91 | u8 reserved:5; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | }; | 
|  | 93 |  | 
|  | 94 | struct acpi_video_bus_cap { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 95 | u8 _DOS:1;		/*Enable/Disable output switching */ | 
|  | 96 | u8 _DOD:1;		/*Enumerate all devices attached to display adapter */ | 
|  | 97 | u8 _ROM:1;		/*Get ROM Data */ | 
|  | 98 | u8 _GPD:1;		/*Get POST Device */ | 
|  | 99 | u8 _SPD:1;		/*Set POST Device */ | 
|  | 100 | u8 _VPO:1;		/*Video POST Options */ | 
|  | 101 | u8 reserved:2; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | }; | 
|  | 103 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 104 | struct acpi_video_device_attrib { | 
|  | 105 | u32 display_index:4;	/* A zero-based instance of the Display */ | 
|  | 106 | u32 display_port_attachment:4;	/*This field differenates displays type */ | 
|  | 107 | u32 display_type:4;	/*Describe the specific type in use */ | 
|  | 108 | u32 vendor_specific:4;	/*Chipset Vendor Specifi */ | 
|  | 109 | u32 bios_can_detect:1;	/*BIOS can detect the device */ | 
|  | 110 | u32 depend_on_vga:1;	/*Non-VGA output device whose power is related to | 
|  | 111 | the VGA device. */ | 
|  | 112 | u32 pipe_id:3;		/*For VGA multiple-head devices. */ | 
|  | 113 | u32 reserved:10;	/*Must be 0 */ | 
|  | 114 | u32 device_id_scheme:1;	/*Device ID Scheme */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | }; | 
|  | 116 |  | 
|  | 117 | struct acpi_video_enumerated_device { | 
|  | 118 | union { | 
|  | 119 | u32 int_val; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 120 | struct acpi_video_device_attrib attrib; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } value; | 
|  | 122 | struct acpi_video_device *bind_info; | 
|  | 123 | }; | 
|  | 124 |  | 
|  | 125 | struct acpi_video_bus { | 
| Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 126 | struct acpi_device *device; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 127 | u8 dos_setting; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | struct acpi_video_enumerated_device *attached_array; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 129 | u8 attached_count; | 
|  | 130 | struct acpi_video_bus_cap cap; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | struct acpi_video_bus_flags flags; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 132 | struct semaphore sem; | 
|  | 133 | struct list_head video_device_list; | 
|  | 134 | struct proc_dir_entry *dir; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | }; | 
|  | 136 |  | 
|  | 137 | struct acpi_video_device_flags { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | u8 crt:1; | 
|  | 139 | u8 lcd:1; | 
|  | 140 | u8 tvout:1; | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 141 | u8 dvi:1; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 142 | u8 bios:1; | 
|  | 143 | u8 unknown:1; | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 144 | u8 reserved:2; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | }; | 
|  | 146 |  | 
|  | 147 | struct acpi_video_device_cap { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 148 | u8 _ADR:1;		/*Return the unique ID */ | 
|  | 149 | u8 _BCL:1;		/*Query list of brightness control levels supported */ | 
|  | 150 | u8 _BCM:1;		/*Set the brightness level */ | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 151 | u8 _BQC:1;		/* Get current brightness level */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | u8 _DDC:1;		/*Return the EDID for this device */ | 
|  | 153 | u8 _DCS:1;		/*Return status of output device */ | 
|  | 154 | u8 _DGS:1;		/*Query graphics state */ | 
|  | 155 | u8 _DSS:1;		/*Device state set */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | }; | 
|  | 157 |  | 
|  | 158 | struct acpi_video_device_brightness { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 159 | int curr; | 
|  | 160 | int count; | 
|  | 161 | int *levels; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | }; | 
|  | 163 |  | 
|  | 164 | struct acpi_video_device { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 165 | unsigned long device_id; | 
|  | 166 | struct acpi_video_device_flags flags; | 
|  | 167 | struct acpi_video_device_cap cap; | 
|  | 168 | struct list_head entry; | 
|  | 169 | struct acpi_video_bus *video; | 
|  | 170 | struct acpi_device *dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | struct acpi_video_device_brightness *brightness; | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 172 | struct backlight_device *backlight; | 
|  | 173 | struct backlight_properties *data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | }; | 
|  | 175 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* bus */ | 
|  | 177 | static int acpi_video_bus_info_open_fs(struct inode *inode, struct file *file); | 
|  | 178 | static struct file_operations acpi_video_bus_info_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 179 | .open = acpi_video_bus_info_open_fs, | 
|  | 180 | .read = seq_read, | 
|  | 181 | .llseek = seq_lseek, | 
|  | 182 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | }; | 
|  | 184 |  | 
|  | 185 | static int acpi_video_bus_ROM_open_fs(struct inode *inode, struct file *file); | 
|  | 186 | static struct file_operations acpi_video_bus_ROM_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 187 | .open = acpi_video_bus_ROM_open_fs, | 
|  | 188 | .read = seq_read, | 
|  | 189 | .llseek = seq_lseek, | 
|  | 190 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | }; | 
|  | 192 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 193 | static int acpi_video_bus_POST_info_open_fs(struct inode *inode, | 
|  | 194 | struct file *file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | static struct file_operations acpi_video_bus_POST_info_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 196 | .open = acpi_video_bus_POST_info_open_fs, | 
|  | 197 | .read = seq_read, | 
|  | 198 | .llseek = seq_lseek, | 
|  | 199 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | }; | 
|  | 201 |  | 
|  | 202 | static int acpi_video_bus_POST_open_fs(struct inode *inode, struct file *file); | 
|  | 203 | static struct file_operations acpi_video_bus_POST_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 204 | .open = acpi_video_bus_POST_open_fs, | 
|  | 205 | .read = seq_read, | 
|  | 206 | .llseek = seq_lseek, | 
|  | 207 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | }; | 
|  | 209 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | static int acpi_video_bus_DOS_open_fs(struct inode *inode, struct file *file); | 
|  | 211 | static struct file_operations acpi_video_bus_DOS_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 212 | .open = acpi_video_bus_DOS_open_fs, | 
|  | 213 | .read = seq_read, | 
|  | 214 | .llseek = seq_lseek, | 
|  | 215 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | }; | 
|  | 217 |  | 
|  | 218 | /* device */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | static int acpi_video_device_info_open_fs(struct inode *inode, | 
|  | 220 | struct file *file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | static struct file_operations acpi_video_device_info_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 222 | .open = acpi_video_device_info_open_fs, | 
|  | 223 | .read = seq_read, | 
|  | 224 | .llseek = seq_lseek, | 
|  | 225 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | }; | 
|  | 227 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | static int acpi_video_device_state_open_fs(struct inode *inode, | 
|  | 229 | struct file *file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | static struct file_operations acpi_video_device_state_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 231 | .open = acpi_video_device_state_open_fs, | 
|  | 232 | .read = seq_read, | 
|  | 233 | .llseek = seq_lseek, | 
|  | 234 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | }; | 
|  | 236 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 237 | static int acpi_video_device_brightness_open_fs(struct inode *inode, | 
|  | 238 | struct file *file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | static struct file_operations acpi_video_device_brightness_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 240 | .open = acpi_video_device_brightness_open_fs, | 
|  | 241 | .read = seq_read, | 
|  | 242 | .llseek = seq_lseek, | 
|  | 243 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | }; | 
|  | 245 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 246 | static int acpi_video_device_EDID_open_fs(struct inode *inode, | 
|  | 247 | struct file *file); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | static struct file_operations acpi_video_device_EDID_fops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 249 | .open = acpi_video_device_EDID_open_fs, | 
|  | 250 | .read = seq_read, | 
|  | 251 | .llseek = seq_lseek, | 
|  | 252 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | }; | 
|  | 254 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | static char device_decode[][30] = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | "motherboard VGA device", | 
|  | 257 | "PCI VGA device", | 
|  | 258 | "AGP VGA device", | 
|  | 259 | "UNKNOWN", | 
|  | 260 | }; | 
|  | 261 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 262 | static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data); | 
|  | 263 | static void acpi_video_device_rebind(struct acpi_video_bus *video); | 
|  | 264 | static void acpi_video_device_bind(struct acpi_video_bus *video, | 
|  | 265 | struct acpi_video_device *device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | static int acpi_video_device_enumerate(struct acpi_video_bus *video); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 267 | static int acpi_video_switch_output(struct acpi_video_bus *video, int event); | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 268 | static int acpi_video_device_lcd_set_level(struct acpi_video_device *device, | 
|  | 269 | int level); | 
|  | 270 | static int acpi_video_device_lcd_get_level_current( | 
|  | 271 | struct acpi_video_device *device, | 
|  | 272 | unsigned long *level); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 273 | static int acpi_video_get_next_level(struct acpi_video_device *device, | 
|  | 274 | u32 level_current, u32 event); | 
|  | 275 | static void acpi_video_switch_brightness(struct acpi_video_device *device, | 
|  | 276 | int event); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 |  | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 278 | /*backlight device sysfs support*/ | 
|  | 279 | static int acpi_video_get_brightness(struct backlight_device *bd) | 
|  | 280 | { | 
|  | 281 | unsigned long cur_level; | 
|  | 282 | struct acpi_video_device *vd = | 
|  | 283 | (struct acpi_video_device *)class_get_devdata(&bd->class_dev); | 
|  | 284 | acpi_video_device_lcd_get_level_current(vd, &cur_level); | 
|  | 285 | return (int) cur_level; | 
|  | 286 | } | 
|  | 287 |  | 
|  | 288 | static int acpi_video_set_brightness(struct backlight_device *bd) | 
|  | 289 | { | 
|  | 290 | int request_level = bd->props->brightness; | 
|  | 291 | struct acpi_video_device *vd = | 
|  | 292 | (struct acpi_video_device *)class_get_devdata(&bd->class_dev); | 
|  | 293 | acpi_video_device_lcd_set_level(vd, request_level); | 
|  | 294 | return 0; | 
|  | 295 | } | 
|  | 296 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | /* -------------------------------------------------------------------------- | 
|  | 298 | Video Management | 
|  | 299 | -------------------------------------------------------------------------- */ | 
|  | 300 |  | 
|  | 301 | /* device */ | 
|  | 302 |  | 
|  | 303 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 304 | acpi_video_device_query(struct acpi_video_device *device, unsigned long *state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 306 | int status; | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 307 |  | 
|  | 308 | status = acpi_evaluate_integer(device->dev->handle, "_DGS", NULL, state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 310 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | } | 
|  | 312 |  | 
|  | 313 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 314 | acpi_video_device_get_state(struct acpi_video_device *device, | 
|  | 315 | unsigned long *state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 317 | int status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 319 | status = acpi_evaluate_integer(device->dev->handle, "_DCS", NULL, state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 321 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | } | 
|  | 323 |  | 
|  | 324 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 325 | acpi_video_device_set_state(struct acpi_video_device *device, int state) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 327 | int status; | 
|  | 328 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; | 
|  | 329 | struct acpi_object_list args = { 1, &arg0 }; | 
| Luming Yu | 824b558 | 2005-08-21 19:17:00 -0400 | [diff] [blame] | 330 | unsigned long ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 |  | 
|  | 333 | arg0.integer.value = state; | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 334 | status = acpi_evaluate_integer(device->dev->handle, "_DSS", &args, &ret); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 336 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } | 
|  | 338 |  | 
|  | 339 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 340 | acpi_video_device_lcd_query_levels(struct acpi_video_device *device, | 
|  | 341 | union acpi_object **levels) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 343 | int status; | 
|  | 344 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 
|  | 345 | union acpi_object *obj; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 |  | 
|  | 348 | *levels = NULL; | 
|  | 349 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 350 | status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | if (!ACPI_SUCCESS(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 352 | return status; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 353 | obj = (union acpi_object *)buffer.pointer; | 
| Adrian Bunk | 6665bda | 2006-03-11 10:12:00 -0500 | [diff] [blame] | 354 | if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 355 | printk(KERN_ERR PREFIX "Invalid _BCL data\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | status = -EFAULT; | 
|  | 357 | goto err; | 
|  | 358 | } | 
|  | 359 |  | 
|  | 360 | *levels = obj; | 
|  | 361 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 362 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 364 | err: | 
| Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 365 | kfree(buffer.pointer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 367 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } | 
|  | 369 |  | 
|  | 370 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 371 | acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 373 | int status; | 
|  | 374 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; | 
|  | 375 | struct acpi_object_list args = { 1, &arg0 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 |  | 
|  | 378 | arg0.integer.value = level; | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 379 | status = acpi_evaluate_object(device->dev->handle, "_BCM", &args, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 |  | 
|  | 381 | printk(KERN_DEBUG "set_level status: %x\n", status); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 382 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } | 
|  | 384 |  | 
|  | 385 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 386 | acpi_video_device_lcd_get_level_current(struct acpi_video_device *device, | 
|  | 387 | unsigned long *level) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 389 | int status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 391 | status = acpi_evaluate_integer(device->dev->handle, "_BQC", NULL, level); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 393 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } | 
|  | 395 |  | 
|  | 396 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 397 | acpi_video_device_EDID(struct acpi_video_device *device, | 
|  | 398 | union acpi_object **edid, ssize_t length) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 400 | int status; | 
|  | 401 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 
|  | 402 | union acpi_object *obj; | 
|  | 403 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; | 
|  | 404 | struct acpi_object_list args = { 1, &arg0 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 |  | 
|  | 407 | *edid = NULL; | 
|  | 408 |  | 
|  | 409 | if (!device) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 410 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | if (length == 128) | 
|  | 412 | arg0.integer.value = 1; | 
|  | 413 | else if (length == 256) | 
|  | 414 | arg0.integer.value = 2; | 
|  | 415 | else | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 416 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 418 | status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | if (ACPI_FAILURE(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 420 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 422 | obj = buffer.pointer; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 |  | 
|  | 424 | if (obj && obj->type == ACPI_TYPE_BUFFER) | 
|  | 425 | *edid = obj; | 
|  | 426 | else { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 427 | printk(KERN_ERR PREFIX "Invalid _DDC data\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | status = -EFAULT; | 
|  | 429 | kfree(obj); | 
|  | 430 | } | 
|  | 431 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 432 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } | 
|  | 434 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | /* bus */ | 
|  | 436 |  | 
|  | 437 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 438 | acpi_video_bus_set_POST(struct acpi_video_bus *video, unsigned long option) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 440 | int status; | 
|  | 441 | unsigned long tmp; | 
|  | 442 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; | 
|  | 443 | struct acpi_object_list args = { 1, &arg0 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 |  | 
|  | 446 | arg0.integer.value = option; | 
|  | 447 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 448 | status = acpi_evaluate_integer(video->device->handle, "_SPD", &args, &tmp); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | if (ACPI_SUCCESS(status)) | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 450 | status = tmp ? (-EINVAL) : (AE_OK); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 452 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } | 
|  | 454 |  | 
|  | 455 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 456 | acpi_video_bus_get_POST(struct acpi_video_bus *video, unsigned long *id) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { | 
|  | 458 | int status; | 
|  | 459 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 460 | status = acpi_evaluate_integer(video->device->handle, "_GPD", NULL, id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 462 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | } | 
|  | 464 |  | 
|  | 465 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 466 | acpi_video_bus_POST_options(struct acpi_video_bus *video, | 
|  | 467 | unsigned long *options) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 469 | int status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 471 | status = acpi_evaluate_integer(video->device->handle, "_VPO", NULL, options); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | *options &= 3; | 
|  | 473 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 474 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | } | 
|  | 476 |  | 
|  | 477 | /* | 
|  | 478 | *  Arg: | 
|  | 479 | *  	video		: video bus device pointer | 
|  | 480 | *	bios_flag	: | 
|  | 481 | *		0.	The system BIOS should NOT automatically switch(toggle) | 
|  | 482 | *			the active display output. | 
|  | 483 | *		1.	The system BIOS should automatically switch (toggle) the | 
|  | 484 | *			active display output. No swich event. | 
|  | 485 | *		2.	The _DGS value should be locked. | 
|  | 486 | *		3.	The system BIOS should not automatically switch (toggle) the | 
|  | 487 | *			active display output, but instead generate the display switch | 
|  | 488 | *			event notify code. | 
|  | 489 | *	lcd_flag	: | 
|  | 490 | *		0.	The system BIOS should automatically control the brightness level | 
|  | 491 | *			of the LCD, when the power changes from AC to DC | 
|  | 492 | *		1. 	The system BIOS should NOT automatically control the brightness | 
|  | 493 | *			level of the LCD, when the power changes from AC to DC. | 
|  | 494 | * Return Value: | 
|  | 495 | * 		-1	wrong arg. | 
|  | 496 | */ | 
|  | 497 |  | 
|  | 498 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 499 | acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 501 | acpi_integer status = 0; | 
|  | 502 | union acpi_object arg0 = { ACPI_TYPE_INTEGER }; | 
|  | 503 | struct acpi_object_list args = { 1, &arg0 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 506 | if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | status = -1; | 
|  | 508 | goto Failed; | 
|  | 509 | } | 
|  | 510 | arg0.integer.value = (lcd_flag << 2) | bios_flag; | 
|  | 511 | video->dos_setting = arg0.integer.value; | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 512 | acpi_evaluate_object(video->device->handle, "_DOS", &args, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 514 | Failed: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 515 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } | 
|  | 517 |  | 
|  | 518 | /* | 
|  | 519 | *  Arg: | 
|  | 520 | *  	device	: video output device (LCD, CRT, ..) | 
|  | 521 | * | 
|  | 522 | *  Return Value: | 
|  | 523 | *  	None | 
|  | 524 | * | 
|  | 525 | *  Find out all required AML method defined under the output | 
|  | 526 | *  device. | 
|  | 527 | */ | 
|  | 528 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 529 | static void acpi_video_device_find_cap(struct acpi_video_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 531 | acpi_integer status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | acpi_handle h_dummy1; | 
|  | 533 | int i; | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 534 | u32 max_level = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | union acpi_object *obj = NULL; | 
|  | 536 | struct acpi_video_device_brightness *br = NULL; | 
|  | 537 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 539 | memset(&device->cap, 0, 4); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 541 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_ADR", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | device->cap._ADR = 1; | 
|  | 543 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 544 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCL", &h_dummy1))) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 545 | device->cap._BCL = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 547 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCM", &h_dummy1))) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 548 | device->cap._BCM = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 550 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle,"_BQC",&h_dummy1))) | 
|  | 551 | device->cap._BQC = 1; | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 552 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DDC", &h_dummy1))) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 553 | device->cap._DDC = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 555 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DCS", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | device->cap._DCS = 1; | 
|  | 557 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 558 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DGS", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | device->cap._DGS = 1; | 
|  | 560 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 561 | if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DSS", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | device->cap._DSS = 1; | 
|  | 563 | } | 
|  | 564 |  | 
|  | 565 | status = acpi_video_device_lcd_query_levels(device, &obj); | 
|  | 566 |  | 
|  | 567 | if (obj && obj->type == ACPI_TYPE_PACKAGE && obj->package.count >= 2) { | 
|  | 568 | int count = 0; | 
|  | 569 | union acpi_object *o; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 570 |  | 
| Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 571 | br = kzalloc(sizeof(*br), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | if (!br) { | 
|  | 573 | printk(KERN_ERR "can't allocate memory\n"); | 
|  | 574 | } else { | 
| Paulo Marques | d1dd0c2 | 2005-03-30 22:39:49 -0500 | [diff] [blame] | 575 | br->levels = kmalloc(obj->package.count * | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 576 | sizeof *(br->levels), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | if (!br->levels) | 
|  | 578 | goto out; | 
|  | 579 |  | 
|  | 580 | for (i = 0; i < obj->package.count; i++) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 581 | o = (union acpi_object *)&obj->package. | 
|  | 582 | elements[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if (o->type != ACPI_TYPE_INTEGER) { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 584 | printk(KERN_ERR PREFIX "Invalid data\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | continue; | 
|  | 586 | } | 
|  | 587 | br->levels[count] = (u32) o->integer.value; | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 588 | if (br->levels[count] > max_level) | 
|  | 589 | max_level = br->levels[count]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | count++; | 
|  | 591 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 592 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | if (count < 2) { | 
| Paulo Marques | d1dd0c2 | 2005-03-30 22:39:49 -0500 | [diff] [blame] | 594 | kfree(br->levels); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | kfree(br); | 
|  | 596 | } else { | 
|  | 597 | br->count = count; | 
|  | 598 | device->brightness = br; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 599 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
|  | 600 | "found %d brightness levels\n", | 
|  | 601 | count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } | 
|  | 603 | } | 
|  | 604 | } | 
|  | 605 |  | 
| Paulo Marques | d1dd0c2 | 2005-03-30 22:39:49 -0500 | [diff] [blame] | 606 | kfree(obj); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 |  | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 608 | if (device->cap._BCL && device->cap._BCM && device->cap._BQC){ | 
|  | 609 | unsigned long tmp; | 
|  | 610 | static int count = 0; | 
|  | 611 | char *name; | 
|  | 612 | struct backlight_properties *acpi_video_data; | 
|  | 613 |  | 
|  | 614 | name = kzalloc(MAX_NAME_LEN, GFP_KERNEL); | 
|  | 615 | if (!name) | 
|  | 616 | return; | 
|  | 617 |  | 
|  | 618 | acpi_video_data = kzalloc( | 
|  | 619 | sizeof(struct backlight_properties), | 
|  | 620 | GFP_KERNEL); | 
|  | 621 | if (!acpi_video_data){ | 
|  | 622 | kfree(name); | 
|  | 623 | return; | 
|  | 624 | } | 
|  | 625 | acpi_video_data->owner = THIS_MODULE; | 
|  | 626 | acpi_video_data->get_brightness = | 
|  | 627 | acpi_video_get_brightness; | 
|  | 628 | acpi_video_data->update_status = | 
|  | 629 | acpi_video_set_brightness; | 
|  | 630 | sprintf(name, "acpi_video%d", count++); | 
|  | 631 | device->data = acpi_video_data; | 
|  | 632 | acpi_video_data->max_brightness = max_level; | 
|  | 633 | acpi_video_device_lcd_get_level_current(device, &tmp); | 
|  | 634 | acpi_video_data->brightness = (int)tmp; | 
|  | 635 | device->backlight = backlight_device_register(name, | 
|  | 636 | NULL, device, acpi_video_data); | 
|  | 637 | kfree(name); | 
|  | 638 | } | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 639 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | } | 
|  | 641 |  | 
|  | 642 | /* | 
|  | 643 | *  Arg: | 
|  | 644 | *  	device	: video output device (VGA) | 
|  | 645 | * | 
|  | 646 | *  Return Value: | 
|  | 647 | *  	None | 
|  | 648 | * | 
|  | 649 | *  Find out all required AML method defined under the video bus device. | 
|  | 650 | */ | 
|  | 651 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 652 | static void acpi_video_bus_find_cap(struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 654 | acpi_handle h_dummy1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 656 | memset(&video->cap, 0, 4); | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 657 | if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOS", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | video->cap._DOS = 1; | 
|  | 659 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 660 | if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOD", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | video->cap._DOD = 1; | 
|  | 662 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 663 | if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_ROM", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | video->cap._ROM = 1; | 
|  | 665 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 666 | if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_GPD", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | video->cap._GPD = 1; | 
|  | 668 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 669 | if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_SPD", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | video->cap._SPD = 1; | 
|  | 671 | } | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 672 | if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_VPO", &h_dummy1))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | video->cap._VPO = 1; | 
|  | 674 | } | 
|  | 675 | } | 
|  | 676 |  | 
|  | 677 | /* | 
|  | 678 | * Check whether the video bus device has required AML method to | 
|  | 679 | * support the desired features | 
|  | 680 | */ | 
|  | 681 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 682 | static int acpi_video_bus_check(struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 684 | acpi_status status = -ENOENT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 |  | 
|  | 687 | if (!video) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 688 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 |  | 
|  | 690 | /* Since there is no HID, CID and so on for VGA driver, we have | 
|  | 691 | * to check well known required nodes. | 
|  | 692 | */ | 
|  | 693 |  | 
|  | 694 | /* Does this device able to support video switching ? */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 695 | if (video->cap._DOS) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | video->flags.multihead = 1; | 
|  | 697 | status = 0; | 
|  | 698 | } | 
|  | 699 |  | 
|  | 700 | /* Does this device able to retrieve a retrieve a video ROM ? */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 701 | if (video->cap._ROM) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | video->flags.rom = 1; | 
|  | 703 | status = 0; | 
|  | 704 | } | 
|  | 705 |  | 
|  | 706 | /* Does this device able to configure which video device to POST ? */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 707 | if (video->cap._GPD && video->cap._SPD && video->cap._VPO) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | video->flags.post = 1; | 
|  | 709 | status = 0; | 
|  | 710 | } | 
|  | 711 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 712 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } | 
|  | 714 |  | 
|  | 715 | /* -------------------------------------------------------------------------- | 
|  | 716 | FS Interface (/proc) | 
|  | 717 | -------------------------------------------------------------------------- */ | 
|  | 718 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 719 | static struct proc_dir_entry *acpi_video_dir; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 |  | 
|  | 721 | /* video devices */ | 
|  | 722 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 723 | static int acpi_video_device_info_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 725 | struct acpi_video_device *dev = seq->private; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 |  | 
|  | 728 | if (!dev) | 
|  | 729 | goto end; | 
|  | 730 |  | 
|  | 731 | seq_printf(seq, "device_id:    0x%04x\n", (u32) dev->device_id); | 
|  | 732 | seq_printf(seq, "type:         "); | 
|  | 733 | if (dev->flags.crt) | 
|  | 734 | seq_printf(seq, "CRT\n"); | 
|  | 735 | else if (dev->flags.lcd) | 
|  | 736 | seq_printf(seq, "LCD\n"); | 
|  | 737 | else if (dev->flags.tvout) | 
|  | 738 | seq_printf(seq, "TVOUT\n"); | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 739 | else if (dev->flags.dvi) | 
|  | 740 | seq_printf(seq, "DVI\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | else | 
|  | 742 | seq_printf(seq, "UNKNOWN\n"); | 
|  | 743 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 744 | seq_printf(seq, "known by bios: %s\n", dev->flags.bios ? "yes" : "no"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 746 | end: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 747 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | } | 
|  | 749 |  | 
|  | 750 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 751 | acpi_video_device_info_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | { | 
|  | 753 | return single_open(file, acpi_video_device_info_seq_show, | 
|  | 754 | PDE(inode)->data); | 
|  | 755 | } | 
|  | 756 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 757 | static int acpi_video_device_state_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 759 | int status; | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 760 | struct acpi_video_device *dev = seq->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 761 | unsigned long state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 |  | 
|  | 764 | if (!dev) | 
|  | 765 | goto end; | 
|  | 766 |  | 
|  | 767 | status = acpi_video_device_get_state(dev, &state); | 
|  | 768 | seq_printf(seq, "state:     "); | 
|  | 769 | if (ACPI_SUCCESS(status)) | 
|  | 770 | seq_printf(seq, "0x%02lx\n", state); | 
|  | 771 | else | 
|  | 772 | seq_printf(seq, "<not supported>\n"); | 
|  | 773 |  | 
|  | 774 | status = acpi_video_device_query(dev, &state); | 
|  | 775 | seq_printf(seq, "query:     "); | 
|  | 776 | if (ACPI_SUCCESS(status)) | 
|  | 777 | seq_printf(seq, "0x%02lx\n", state); | 
|  | 778 | else | 
|  | 779 | seq_printf(seq, "<not supported>\n"); | 
|  | 780 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 781 | end: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 782 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } | 
|  | 784 |  | 
|  | 785 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 786 | acpi_video_device_state_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | { | 
|  | 788 | return single_open(file, acpi_video_device_state_seq_show, | 
|  | 789 | PDE(inode)->data); | 
|  | 790 | } | 
|  | 791 |  | 
|  | 792 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 793 | acpi_video_device_write_state(struct file *file, | 
|  | 794 | const char __user * buffer, | 
|  | 795 | size_t count, loff_t * data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 797 | int status; | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 798 | struct seq_file *m = file->private_data; | 
|  | 799 | struct acpi_video_device *dev = m->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 800 | char str[12] = { 0 }; | 
|  | 801 | u32 state = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 |  | 
|  | 804 | if (!dev || count + 1 > sizeof str) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 805 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 |  | 
|  | 807 | if (copy_from_user(str, buffer, count)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 808 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 |  | 
|  | 810 | str[count] = 0; | 
|  | 811 | state = simple_strtoul(str, NULL, 0); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 812 | state &= ((1ul << 31) | (1ul << 30) | (1ul << 0)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 |  | 
|  | 814 | status = acpi_video_device_set_state(dev, state); | 
|  | 815 |  | 
|  | 816 | if (status) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 817 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 819 | return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | } | 
|  | 821 |  | 
|  | 822 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 823 | acpi_video_device_brightness_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 825 | struct acpi_video_device *dev = seq->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 826 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 |  | 
|  | 829 | if (!dev || !dev->brightness) { | 
|  | 830 | seq_printf(seq, "<not supported>\n"); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 831 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } | 
|  | 833 |  | 
|  | 834 | seq_printf(seq, "levels: "); | 
|  | 835 | for (i = 0; i < dev->brightness->count; i++) | 
|  | 836 | seq_printf(seq, " %d", dev->brightness->levels[i]); | 
|  | 837 | seq_printf(seq, "\ncurrent: %d\n", dev->brightness->curr); | 
|  | 838 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 839 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | } | 
|  | 841 |  | 
|  | 842 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 843 | acpi_video_device_brightness_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | { | 
|  | 845 | return single_open(file, acpi_video_device_brightness_seq_show, | 
|  | 846 | PDE(inode)->data); | 
|  | 847 | } | 
|  | 848 |  | 
|  | 849 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 850 | acpi_video_device_write_brightness(struct file *file, | 
|  | 851 | const char __user * buffer, | 
|  | 852 | size_t count, loff_t * data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 854 | struct seq_file *m = file->private_data; | 
|  | 855 | struct acpi_video_device *dev = m->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 856 | char str[4] = { 0 }; | 
|  | 857 | unsigned int level = 0; | 
|  | 858 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 |  | 
| Thomas Renninger | 59d399d | 2005-11-08 05:27:00 -0500 | [diff] [blame] | 861 | if (!dev || !dev->brightness || count + 1 > sizeof str) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 862 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 |  | 
|  | 864 | if (copy_from_user(str, buffer, count)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 865 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 |  | 
|  | 867 | str[count] = 0; | 
|  | 868 | level = simple_strtoul(str, NULL, 0); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 869 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | if (level > 100) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 871 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 |  | 
|  | 873 | /* validate though the list of available levels */ | 
|  | 874 | for (i = 0; i < dev->brightness->count; i++) | 
|  | 875 | if (level == dev->brightness->levels[i]) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 876 | if (ACPI_SUCCESS | 
|  | 877 | (acpi_video_device_lcd_set_level(dev, level))) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | dev->brightness->curr = level; | 
|  | 879 | break; | 
|  | 880 | } | 
|  | 881 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 882 | return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | } | 
|  | 884 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 885 | static int acpi_video_device_EDID_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 887 | struct acpi_video_device *dev = seq->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 888 | int status; | 
|  | 889 | int i; | 
|  | 890 | union acpi_object *edid = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 |  | 
|  | 893 | if (!dev) | 
|  | 894 | goto out; | 
|  | 895 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 896 | status = acpi_video_device_EDID(dev, &edid, 128); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | if (ACPI_FAILURE(status)) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 898 | status = acpi_video_device_EDID(dev, &edid, 256); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | } | 
|  | 900 |  | 
|  | 901 | if (ACPI_FAILURE(status)) { | 
|  | 902 | goto out; | 
|  | 903 | } | 
|  | 904 |  | 
|  | 905 | if (edid && edid->type == ACPI_TYPE_BUFFER) { | 
|  | 906 | for (i = 0; i < edid->buffer.length; i++) | 
|  | 907 | seq_putc(seq, edid->buffer.pointer[i]); | 
|  | 908 | } | 
|  | 909 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 910 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | if (!edid) | 
|  | 912 | seq_printf(seq, "<not supported>\n"); | 
|  | 913 | else | 
|  | 914 | kfree(edid); | 
|  | 915 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 916 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } | 
|  | 918 |  | 
|  | 919 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 920 | acpi_video_device_EDID_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | { | 
|  | 922 | return single_open(file, acpi_video_device_EDID_seq_show, | 
|  | 923 | PDE(inode)->data); | 
|  | 924 | } | 
|  | 925 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 926 | static int acpi_video_device_add_fs(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 928 | struct proc_dir_entry *entry = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | struct acpi_video_device *vid_dev; | 
|  | 930 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 |  | 
|  | 932 | if (!device) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 933 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 935 | vid_dev = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | if (!vid_dev) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 937 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 |  | 
|  | 939 | if (!acpi_device_dir(device)) { | 
|  | 940 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 941 | vid_dev->video->dir); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | if (!acpi_device_dir(device)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 943 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | acpi_device_dir(device)->owner = THIS_MODULE; | 
|  | 945 | } | 
|  | 946 |  | 
|  | 947 | /* 'info' [R] */ | 
|  | 948 | entry = create_proc_entry("info", S_IRUGO, acpi_device_dir(device)); | 
|  | 949 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 950 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | else { | 
|  | 952 | entry->proc_fops = &acpi_video_device_info_fops; | 
|  | 953 | entry->data = acpi_driver_data(device); | 
|  | 954 | entry->owner = THIS_MODULE; | 
|  | 955 | } | 
|  | 956 |  | 
|  | 957 | /* 'state' [R/W] */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 958 | entry = | 
|  | 959 | create_proc_entry("state", S_IFREG | S_IRUGO | S_IWUSR, | 
|  | 960 | acpi_device_dir(device)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 962 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | else { | 
| Arjan van de Ven | d479e90 | 2006-01-06 16:47:00 -0500 | [diff] [blame] | 964 | acpi_video_device_state_fops.write = acpi_video_device_write_state; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | entry->proc_fops = &acpi_video_device_state_fops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | entry->data = acpi_driver_data(device); | 
|  | 967 | entry->owner = THIS_MODULE; | 
|  | 968 | } | 
|  | 969 |  | 
|  | 970 | /* 'brightness' [R/W] */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 971 | entry = | 
|  | 972 | create_proc_entry("brightness", S_IFREG | S_IRUGO | S_IWUSR, | 
|  | 973 | acpi_device_dir(device)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 975 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | else { | 
| Arjan van de Ven | d479e90 | 2006-01-06 16:47:00 -0500 | [diff] [blame] | 977 | acpi_video_device_brightness_fops.write = acpi_video_device_write_brightness; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | entry->proc_fops = &acpi_video_device_brightness_fops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | entry->data = acpi_driver_data(device); | 
|  | 980 | entry->owner = THIS_MODULE; | 
|  | 981 | } | 
|  | 982 |  | 
|  | 983 | /* 'EDID' [R] */ | 
|  | 984 | entry = create_proc_entry("EDID", S_IRUGO, acpi_device_dir(device)); | 
|  | 985 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 986 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | else { | 
|  | 988 | entry->proc_fops = &acpi_video_device_EDID_fops; | 
|  | 989 | entry->data = acpi_driver_data(device); | 
|  | 990 | entry->owner = THIS_MODULE; | 
|  | 991 | } | 
|  | 992 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 993 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | } | 
|  | 995 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 996 | static int acpi_video_device_remove_fs(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | { | 
|  | 998 | struct acpi_video_device *vid_dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1000 | vid_dev = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | if (!vid_dev || !vid_dev->video || !vid_dev->video->dir) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1002 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 |  | 
|  | 1004 | if (acpi_device_dir(device)) { | 
|  | 1005 | remove_proc_entry("info", acpi_device_dir(device)); | 
|  | 1006 | remove_proc_entry("state", acpi_device_dir(device)); | 
|  | 1007 | remove_proc_entry("brightness", acpi_device_dir(device)); | 
|  | 1008 | remove_proc_entry("EDID", acpi_device_dir(device)); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1009 | remove_proc_entry(acpi_device_bid(device), vid_dev->video->dir); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | acpi_device_dir(device) = NULL; | 
|  | 1011 | } | 
|  | 1012 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1013 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } | 
|  | 1015 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | /* video bus */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1017 | static int acpi_video_bus_info_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1019 | struct acpi_video_bus *video = seq->private; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 |  | 
|  | 1022 | if (!video) | 
|  | 1023 | goto end; | 
|  | 1024 |  | 
|  | 1025 | seq_printf(seq, "Switching heads:              %s\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1026 | video->flags.multihead ? "yes" : "no"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | seq_printf(seq, "Video ROM:                    %s\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1028 | video->flags.rom ? "yes" : "no"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | seq_printf(seq, "Device to be POSTed on boot:  %s\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1030 | video->flags.post ? "yes" : "no"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1032 | end: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1033 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | } | 
|  | 1035 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1036 | static int acpi_video_bus_info_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1038 | return single_open(file, acpi_video_bus_info_seq_show, | 
|  | 1039 | PDE(inode)->data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | } | 
|  | 1041 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1042 | static int acpi_video_bus_ROM_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1044 | struct acpi_video_bus *video = seq->private; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 |  | 
|  | 1047 | if (!video) | 
|  | 1048 | goto end; | 
|  | 1049 |  | 
|  | 1050 | printk(KERN_INFO PREFIX "Please implement %s\n", __FUNCTION__); | 
|  | 1051 | seq_printf(seq, "<TODO>\n"); | 
|  | 1052 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1053 | end: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1054 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | } | 
|  | 1056 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1057 | static int acpi_video_bus_ROM_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | { | 
|  | 1059 | return single_open(file, acpi_video_bus_ROM_seq_show, PDE(inode)->data); | 
|  | 1060 | } | 
|  | 1061 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1062 | static int acpi_video_bus_POST_info_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1064 | struct acpi_video_bus *video = seq->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1065 | unsigned long options; | 
|  | 1066 | int status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 |  | 
|  | 1069 | if (!video) | 
|  | 1070 | goto end; | 
|  | 1071 |  | 
|  | 1072 | status = acpi_video_bus_POST_options(video, &options); | 
|  | 1073 | if (ACPI_SUCCESS(status)) { | 
|  | 1074 | if (!(options & 1)) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1075 | printk(KERN_WARNING PREFIX | 
|  | 1076 | "The motherboard VGA device is not listed as a possible POST device.\n"); | 
|  | 1077 | printk(KERN_WARNING PREFIX | 
|  | 1078 | "This indicate a BIOS bug.  Please contact the manufacturer.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | } | 
|  | 1080 | printk("%lx\n", options); | 
|  | 1081 | seq_printf(seq, "can POST: <intgrated video>"); | 
|  | 1082 | if (options & 2) | 
|  | 1083 | seq_printf(seq, " <PCI video>"); | 
|  | 1084 | if (options & 4) | 
|  | 1085 | seq_printf(seq, " <AGP video>"); | 
|  | 1086 | seq_putc(seq, '\n'); | 
|  | 1087 | } else | 
|  | 1088 | seq_printf(seq, "<not supported>\n"); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1089 | end: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1090 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | } | 
|  | 1092 |  | 
|  | 1093 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1094 | acpi_video_bus_POST_info_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1096 | return single_open(file, acpi_video_bus_POST_info_seq_show, | 
|  | 1097 | PDE(inode)->data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | } | 
|  | 1099 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1100 | static int acpi_video_bus_POST_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1102 | struct acpi_video_bus *video = seq->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1103 | int status; | 
|  | 1104 | unsigned long id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 |  | 
|  | 1107 | if (!video) | 
|  | 1108 | goto end; | 
|  | 1109 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1110 | status = acpi_video_bus_get_POST(video, &id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | if (!ACPI_SUCCESS(status)) { | 
|  | 1112 | seq_printf(seq, "<not supported>\n"); | 
|  | 1113 | goto end; | 
|  | 1114 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1115 | seq_printf(seq, "device posted is <%s>\n", device_decode[id & 3]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1117 | end: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1118 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } | 
|  | 1120 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1121 | static int acpi_video_bus_DOS_seq_show(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1123 | struct acpi_video_bus *video = seq->private; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1126 | seq_printf(seq, "DOS setting: <%d>\n", video->dos_setting); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1128 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | } | 
|  | 1130 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1131 | static int acpi_video_bus_POST_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1133 | return single_open(file, acpi_video_bus_POST_seq_show, | 
|  | 1134 | PDE(inode)->data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | } | 
|  | 1136 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1137 | static int acpi_video_bus_DOS_open_fs(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | { | 
|  | 1139 | return single_open(file, acpi_video_bus_DOS_seq_show, PDE(inode)->data); | 
|  | 1140 | } | 
|  | 1141 |  | 
|  | 1142 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1143 | acpi_video_bus_write_POST(struct file *file, | 
|  | 1144 | const char __user * buffer, | 
|  | 1145 | size_t count, loff_t * data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1147 | int status; | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1148 | struct seq_file *m = file->private_data; | 
|  | 1149 | struct acpi_video_bus *video = m->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1150 | char str[12] = { 0 }; | 
|  | 1151 | unsigned long opt, options; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | if (!video || count + 1 > sizeof str) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1155 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 |  | 
|  | 1157 | status = acpi_video_bus_POST_options(video, &options); | 
|  | 1158 | if (!ACPI_SUCCESS(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1159 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 |  | 
|  | 1161 | if (copy_from_user(str, buffer, count)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1162 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 |  | 
|  | 1164 | str[count] = 0; | 
|  | 1165 | opt = strtoul(str, NULL, 0); | 
|  | 1166 | if (opt > 3) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1167 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 |  | 
|  | 1169 | /* just in case an OEM 'forget' the motherboard... */ | 
|  | 1170 | options |= 1; | 
|  | 1171 |  | 
|  | 1172 | if (options & (1ul << opt)) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1173 | status = acpi_video_bus_set_POST(video, opt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | if (!ACPI_SUCCESS(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1175 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 |  | 
|  | 1177 | } | 
|  | 1178 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1179 | return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | } | 
|  | 1181 |  | 
|  | 1182 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1183 | acpi_video_bus_write_DOS(struct file *file, | 
|  | 1184 | const char __user * buffer, | 
|  | 1185 | size_t count, loff_t * data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1187 | int status; | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1188 | struct seq_file *m = file->private_data; | 
|  | 1189 | struct acpi_video_bus *video = m->private; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1190 | char str[12] = { 0 }; | 
|  | 1191 | unsigned long opt; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | if (!video || count + 1 > sizeof str) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1195 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 |  | 
|  | 1197 | if (copy_from_user(str, buffer, count)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1198 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 |  | 
|  | 1200 | str[count] = 0; | 
|  | 1201 | opt = strtoul(str, NULL, 0); | 
|  | 1202 | if (opt > 7) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1203 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1205 | status = acpi_video_bus_DOS(video, opt & 0x3, (opt & 0x4) >> 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 |  | 
|  | 1207 | if (!ACPI_SUCCESS(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1208 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1210 | return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | } | 
|  | 1212 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1213 | static int acpi_video_bus_add_fs(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1215 | struct proc_dir_entry *entry = NULL; | 
|  | 1216 | struct acpi_video_bus *video; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1219 | video = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 |  | 
|  | 1221 | if (!acpi_device_dir(device)) { | 
|  | 1222 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1223 | acpi_video_dir); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | if (!acpi_device_dir(device)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1225 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | video->dir = acpi_device_dir(device); | 
|  | 1227 | acpi_device_dir(device)->owner = THIS_MODULE; | 
|  | 1228 | } | 
|  | 1229 |  | 
|  | 1230 | /* 'info' [R] */ | 
|  | 1231 | entry = create_proc_entry("info", S_IRUGO, acpi_device_dir(device)); | 
|  | 1232 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1233 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | else { | 
|  | 1235 | entry->proc_fops = &acpi_video_bus_info_fops; | 
|  | 1236 | entry->data = acpi_driver_data(device); | 
|  | 1237 | entry->owner = THIS_MODULE; | 
|  | 1238 | } | 
|  | 1239 |  | 
|  | 1240 | /* 'ROM' [R] */ | 
|  | 1241 | entry = create_proc_entry("ROM", S_IRUGO, acpi_device_dir(device)); | 
|  | 1242 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1243 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | else { | 
|  | 1245 | entry->proc_fops = &acpi_video_bus_ROM_fops; | 
|  | 1246 | entry->data = acpi_driver_data(device); | 
|  | 1247 | entry->owner = THIS_MODULE; | 
|  | 1248 | } | 
|  | 1249 |  | 
|  | 1250 | /* 'POST_info' [R] */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1251 | entry = | 
|  | 1252 | create_proc_entry("POST_info", S_IRUGO, acpi_device_dir(device)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1254 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | else { | 
|  | 1256 | entry->proc_fops = &acpi_video_bus_POST_info_fops; | 
|  | 1257 | entry->data = acpi_driver_data(device); | 
|  | 1258 | entry->owner = THIS_MODULE; | 
|  | 1259 | } | 
|  | 1260 |  | 
|  | 1261 | /* 'POST' [R/W] */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1262 | entry = | 
|  | 1263 | create_proc_entry("POST", S_IFREG | S_IRUGO | S_IRUSR, | 
|  | 1264 | acpi_device_dir(device)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1266 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | else { | 
| Arjan van de Ven | d479e90 | 2006-01-06 16:47:00 -0500 | [diff] [blame] | 1268 | acpi_video_bus_POST_fops.write = acpi_video_bus_write_POST; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | entry->proc_fops = &acpi_video_bus_POST_fops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | entry->data = acpi_driver_data(device); | 
|  | 1271 | entry->owner = THIS_MODULE; | 
|  | 1272 | } | 
|  | 1273 |  | 
|  | 1274 | /* 'DOS' [R/W] */ | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1275 | entry = | 
|  | 1276 | create_proc_entry("DOS", S_IFREG | S_IRUGO | S_IRUSR, | 
|  | 1277 | acpi_device_dir(device)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | if (!entry) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1279 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | else { | 
| Arjan van de Ven | d479e90 | 2006-01-06 16:47:00 -0500 | [diff] [blame] | 1281 | acpi_video_bus_DOS_fops.write = acpi_video_bus_write_DOS; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | entry->proc_fops = &acpi_video_bus_DOS_fops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | entry->data = acpi_driver_data(device); | 
|  | 1284 | entry->owner = THIS_MODULE; | 
|  | 1285 | } | 
|  | 1286 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1287 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | } | 
|  | 1289 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1290 | static int acpi_video_bus_remove_fs(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1292 | struct acpi_video_bus *video; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1295 | video = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 |  | 
|  | 1297 | if (acpi_device_dir(device)) { | 
|  | 1298 | remove_proc_entry("info", acpi_device_dir(device)); | 
|  | 1299 | remove_proc_entry("ROM", acpi_device_dir(device)); | 
|  | 1300 | remove_proc_entry("POST_info", acpi_device_dir(device)); | 
|  | 1301 | remove_proc_entry("POST", acpi_device_dir(device)); | 
|  | 1302 | remove_proc_entry("DOS", acpi_device_dir(device)); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1303 | remove_proc_entry(acpi_device_bid(device), acpi_video_dir); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | acpi_device_dir(device) = NULL; | 
|  | 1305 | } | 
|  | 1306 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1307 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | } | 
|  | 1309 |  | 
|  | 1310 | /* -------------------------------------------------------------------------- | 
|  | 1311 | Driver Interface | 
|  | 1312 | -------------------------------------------------------------------------- */ | 
|  | 1313 |  | 
|  | 1314 | /* device interface */ | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1315 | static struct acpi_video_device_attrib* | 
|  | 1316 | acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id) | 
|  | 1317 | { | 
|  | 1318 | int count; | 
|  | 1319 |  | 
|  | 1320 | for(count = 0; count < video->attached_count; count++) | 
|  | 1321 | if((video->attached_array[count].value.int_val & 0xffff) == device_id) | 
|  | 1322 | return &(video->attached_array[count].value.attrib); | 
|  | 1323 | return NULL; | 
|  | 1324 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 |  | 
|  | 1326 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1327 | acpi_video_bus_get_one_device(struct acpi_device *device, | 
|  | 1328 | struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1330 | unsigned long device_id; | 
| Yu, Luming | 973bf49 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1331 | int status; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1332 | struct acpi_video_device *data; | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1333 | struct acpi_video_device_attrib* attribute; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 |  | 
|  | 1335 | if (!device || !video) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1336 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1338 | status = | 
|  | 1339 | acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | if (ACPI_SUCCESS(status)) { | 
|  | 1341 |  | 
| Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1342 | data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | if (!data) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1344 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME); | 
|  | 1347 | strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS); | 
|  | 1348 | acpi_driver_data(device) = data; | 
|  | 1349 |  | 
|  | 1350 | data->device_id = device_id; | 
|  | 1351 | data->video = video; | 
|  | 1352 | data->dev = device; | 
|  | 1353 |  | 
| Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1354 | attribute = acpi_video_get_device_attr(video, device_id); | 
|  | 1355 |  | 
|  | 1356 | if((attribute != NULL) && attribute->device_id_scheme) { | 
|  | 1357 | switch (attribute->display_type) { | 
|  | 1358 | case ACPI_VIDEO_DISPLAY_CRT: | 
|  | 1359 | data->flags.crt = 1; | 
|  | 1360 | break; | 
|  | 1361 | case ACPI_VIDEO_DISPLAY_TV: | 
|  | 1362 | data->flags.tvout = 1; | 
|  | 1363 | break; | 
|  | 1364 | case ACPI_VIDEO_DISPLAY_DVI: | 
|  | 1365 | data->flags.dvi = 1; | 
|  | 1366 | break; | 
|  | 1367 | case ACPI_VIDEO_DISPLAY_LCD: | 
|  | 1368 | data->flags.lcd = 1; | 
|  | 1369 | break; | 
|  | 1370 | default: | 
|  | 1371 | data->flags.unknown = 1; | 
|  | 1372 | break; | 
|  | 1373 | } | 
|  | 1374 | if(attribute->bios_can_detect) | 
|  | 1375 | data->flags.bios = 1; | 
|  | 1376 | } else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | data->flags.unknown = 1; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1378 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | acpi_video_device_bind(video, data); | 
|  | 1380 | acpi_video_device_find_cap(data); | 
|  | 1381 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1382 | status = acpi_install_notify_handler(device->handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1383 | ACPI_DEVICE_NOTIFY, | 
|  | 1384 | acpi_video_device_notify, | 
|  | 1385 | data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | if (ACPI_FAILURE(status)) { | 
|  | 1387 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1388 | "Error installing notify handler\n")); | 
| Yu, Luming | 973bf49 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1389 | if(data->brightness) | 
|  | 1390 | kfree(data->brightness->levels); | 
|  | 1391 | kfree(data->brightness); | 
|  | 1392 | kfree(data); | 
|  | 1393 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | } | 
|  | 1395 |  | 
|  | 1396 | down(&video->sem); | 
|  | 1397 | list_add_tail(&data->entry, &video->video_device_list); | 
|  | 1398 | up(&video->sem); | 
|  | 1399 |  | 
|  | 1400 | acpi_video_device_add_fs(device); | 
|  | 1401 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1402 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | } | 
|  | 1404 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1405 | return -ENOENT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | } | 
|  | 1407 |  | 
|  | 1408 | /* | 
|  | 1409 | *  Arg: | 
|  | 1410 | *  	video	: video bus device | 
|  | 1411 | * | 
|  | 1412 | *  Return: | 
|  | 1413 | *  	none | 
|  | 1414 | * | 
|  | 1415 | *  Enumerate the video device list of the video bus, | 
|  | 1416 | *  bind the ids with the corresponding video devices | 
|  | 1417 | *  under the video bus. | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1418 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1420 | static void acpi_video_device_rebind(struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1421 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1422 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | list_for_each_safe(node, next, &video->video_device_list) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1424 | struct acpi_video_device *dev = | 
|  | 1425 | container_of(node, struct acpi_video_device, entry); | 
|  | 1426 | acpi_video_device_bind(video, dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | } | 
|  | 1428 | } | 
|  | 1429 |  | 
|  | 1430 | /* | 
|  | 1431 | *  Arg: | 
|  | 1432 | *  	video	: video bus device | 
|  | 1433 | *  	device	: video output device under the video | 
|  | 1434 | *  		bus | 
|  | 1435 | * | 
|  | 1436 | *  Return: | 
|  | 1437 | *  	none | 
|  | 1438 | * | 
|  | 1439 | *  Bind the ids with the corresponding video devices | 
|  | 1440 | *  under the video bus. | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1441 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 |  | 
|  | 1443 | static void | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1444 | acpi_video_device_bind(struct acpi_video_bus *video, | 
|  | 1445 | struct acpi_video_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1447 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 |  | 
|  | 1449 | #define IDS_VAL(i) video->attached_array[i].value.int_val | 
|  | 1450 | #define IDS_BIND(i) video->attached_array[i].bind_info | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1451 |  | 
|  | 1452 | for (i = 0; IDS_VAL(i) != ACPI_VIDEO_HEAD_INVALID && | 
|  | 1453 | i < video->attached_count; i++) { | 
|  | 1454 | if (device->device_id == (IDS_VAL(i) & 0xffff)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | IDS_BIND(i) = device; | 
|  | 1456 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i)); | 
|  | 1457 | } | 
|  | 1458 | } | 
|  | 1459 | #undef IDS_VAL | 
|  | 1460 | #undef IDS_BIND | 
|  | 1461 | } | 
|  | 1462 |  | 
|  | 1463 | /* | 
|  | 1464 | *  Arg: | 
|  | 1465 | *  	video	: video bus device | 
|  | 1466 | * | 
|  | 1467 | *  Return: | 
|  | 1468 | *  	< 0	: error | 
|  | 1469 | * | 
|  | 1470 | *  Call _DOD to enumerate all devices attached to display adapter | 
|  | 1471 | * | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1472 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 |  | 
|  | 1474 | static int acpi_video_device_enumerate(struct acpi_video_bus *video) | 
|  | 1475 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1476 | int status; | 
|  | 1477 | int count; | 
|  | 1478 | int i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1479 | struct acpi_video_enumerated_device *active_device_list; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1480 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 
|  | 1481 | union acpi_object *dod = NULL; | 
|  | 1482 | union acpi_object *obj; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1484 | status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | if (!ACPI_SUCCESS(status)) { | 
| Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1486 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD")); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1487 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | } | 
|  | 1489 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1490 | dod = buffer.pointer; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) { | 
| Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1492 | ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | status = -EFAULT; | 
|  | 1494 | goto out; | 
|  | 1495 | } | 
|  | 1496 |  | 
|  | 1497 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1498 | dod->package.count)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1500 | active_device_list = kmalloc((1 + | 
|  | 1501 | dod->package.count) * | 
|  | 1502 | sizeof(struct | 
|  | 1503 | acpi_video_enumerated_device), | 
|  | 1504 | GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 |  | 
|  | 1506 | if (!active_device_list) { | 
|  | 1507 | status = -ENOMEM; | 
|  | 1508 | goto out; | 
|  | 1509 | } | 
|  | 1510 |  | 
|  | 1511 | count = 0; | 
|  | 1512 | for (i = 0; i < dod->package.count; i++) { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1513 | obj = &dod->package.elements[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 |  | 
|  | 1515 | if (obj->type != ACPI_TYPE_INTEGER) { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1516 | printk(KERN_ERR PREFIX "Invalid _DOD data\n"); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1517 | active_device_list[i].value.int_val = | 
|  | 1518 | ACPI_VIDEO_HEAD_INVALID; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | } | 
|  | 1520 | active_device_list[i].value.int_val = obj->integer.value; | 
|  | 1521 | active_device_list[i].bind_info = NULL; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1522 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i, | 
|  | 1523 | (int)obj->integer.value)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | count++; | 
|  | 1525 | } | 
|  | 1526 | active_device_list[count].value.int_val = ACPI_VIDEO_HEAD_END; | 
|  | 1527 |  | 
| Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 1528 | kfree(video->attached_array); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1529 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | video->attached_array = active_device_list; | 
|  | 1531 | video->attached_count = count; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1532 | out: | 
| Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 1533 | kfree(buffer.pointer); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1534 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | } | 
|  | 1536 |  | 
|  | 1537 | /* | 
|  | 1538 | *  Arg: | 
|  | 1539 | *  	video	: video bus device | 
|  | 1540 | *  	event	: Nontify Event | 
|  | 1541 | * | 
|  | 1542 | *  Return: | 
|  | 1543 | *  	< 0	: error | 
|  | 1544 | * | 
|  | 1545 | *	1. Find out the current active output device. | 
|  | 1546 | *	2. Identify the next output device to switch | 
|  | 1547 | *	3. call _DSS to do actual switch. | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1548 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1550 | static int acpi_video_switch_output(struct acpi_video_bus *video, int event) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1552 | struct list_head *node, *next; | 
|  | 1553 | struct acpi_video_device *dev = NULL; | 
|  | 1554 | struct acpi_video_device *dev_next = NULL; | 
|  | 1555 | struct acpi_video_device *dev_prev = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | unsigned long state; | 
|  | 1557 | int status = 0; | 
|  | 1558 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 |  | 
|  | 1560 | list_for_each_safe(node, next, &video->video_device_list) { | 
| Adrian Bunk | 7334571 | 2005-03-30 22:31:35 -0500 | [diff] [blame] | 1561 | dev = container_of(node, struct acpi_video_device, entry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | status = acpi_video_device_get_state(dev, &state); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1563 | if (state & 0x2) { | 
|  | 1564 | dev_next = | 
|  | 1565 | container_of(node->next, struct acpi_video_device, | 
|  | 1566 | entry); | 
|  | 1567 | dev_prev = | 
|  | 1568 | container_of(node->prev, struct acpi_video_device, | 
|  | 1569 | entry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | goto out; | 
|  | 1571 | } | 
|  | 1572 | } | 
|  | 1573 | dev_next = container_of(node->next, struct acpi_video_device, entry); | 
|  | 1574 | dev_prev = container_of(node->prev, struct acpi_video_device, entry); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1575 | out: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | switch (event) { | 
|  | 1577 | case ACPI_VIDEO_NOTIFY_CYCLE: | 
|  | 1578 | case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: | 
|  | 1579 | acpi_video_device_set_state(dev, 0); | 
|  | 1580 | acpi_video_device_set_state(dev_next, 0x80000001); | 
|  | 1581 | break; | 
|  | 1582 | case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: | 
|  | 1583 | acpi_video_device_set_state(dev, 0); | 
|  | 1584 | acpi_video_device_set_state(dev_prev, 0x80000001); | 
|  | 1585 | default: | 
|  | 1586 | break; | 
|  | 1587 | } | 
|  | 1588 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1589 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | } | 
|  | 1591 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1592 | static int | 
|  | 1593 | acpi_video_get_next_level(struct acpi_video_device *device, | 
|  | 1594 | u32 level_current, u32 event) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | { | 
| Thomas Tuttle | f471518 | 2006-12-19 12:56:14 -0800 | [diff] [blame] | 1596 | int min, max, min_above, max_below, i, l; | 
|  | 1597 | max = max_below = 0; | 
|  | 1598 | min = min_above = 255; | 
|  | 1599 | for (i = 0; i < device->brightness->count; i++) { | 
|  | 1600 | l = device->brightness->levels[i]; | 
|  | 1601 | if (l < min) | 
|  | 1602 | min = l; | 
|  | 1603 | if (l > max) | 
|  | 1604 | max = l; | 
|  | 1605 | if (l < min_above && l > level_current) | 
|  | 1606 | min_above = l; | 
|  | 1607 | if (l > max_below && l < level_current) | 
|  | 1608 | max_below = l; | 
|  | 1609 | } | 
|  | 1610 |  | 
|  | 1611 | switch (event) { | 
|  | 1612 | case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: | 
|  | 1613 | return (level_current < max) ? min_above : min; | 
|  | 1614 | case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: | 
|  | 1615 | return (level_current < max) ? min_above : max; | 
|  | 1616 | case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: | 
|  | 1617 | return (level_current > min) ? max_below : min; | 
|  | 1618 | case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: | 
|  | 1619 | case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: | 
|  | 1620 | return 0; | 
|  | 1621 | default: | 
|  | 1622 | return level_current; | 
|  | 1623 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | } | 
|  | 1625 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | static void | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1627 | acpi_video_switch_brightness(struct acpi_video_device *device, int event) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | { | 
|  | 1629 | unsigned long level_current, level_next; | 
|  | 1630 | acpi_video_device_lcd_get_level_current(device, &level_current); | 
|  | 1631 | level_next = acpi_video_get_next_level(device, level_current, event); | 
|  | 1632 | acpi_video_device_lcd_set_level(device, level_next); | 
|  | 1633 | } | 
|  | 1634 |  | 
|  | 1635 | static int | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1636 | acpi_video_bus_get_devices(struct acpi_video_bus *video, | 
|  | 1637 | struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1639 | int status = 0; | 
|  | 1640 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 |  | 
|  | 1643 | acpi_video_device_enumerate(video); | 
|  | 1644 |  | 
|  | 1645 | list_for_each_safe(node, next, &device->children) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1646 | struct acpi_device *dev = | 
|  | 1647 | list_entry(node, struct acpi_device, node); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 |  | 
|  | 1649 | if (!dev) | 
|  | 1650 | continue; | 
|  | 1651 |  | 
|  | 1652 | status = acpi_video_bus_get_one_device(dev, video); | 
|  | 1653 | if (ACPI_FAILURE(status)) { | 
| Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1654 | ACPI_EXCEPTION((AE_INFO, status, "Cant attach device")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | continue; | 
|  | 1656 | } | 
|  | 1657 |  | 
|  | 1658 | } | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1659 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | } | 
|  | 1661 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1662 | static int acpi_video_bus_put_one_device(struct acpi_video_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | { | 
| Karol Kozimor | 031ec77 | 2005-07-30 04:18:00 -0400 | [diff] [blame] | 1664 | acpi_status status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1665 | struct acpi_video_bus *video; | 
|  | 1666 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 |  | 
|  | 1668 | if (!device || !device->video) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1669 | return -ENOENT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 |  | 
|  | 1671 | video = device->video; | 
|  | 1672 |  | 
|  | 1673 | down(&video->sem); | 
|  | 1674 | list_del(&device->entry); | 
|  | 1675 | up(&video->sem); | 
|  | 1676 | acpi_video_device_remove_fs(device->dev); | 
|  | 1677 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1678 | status = acpi_remove_notify_handler(device->dev->handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1679 | ACPI_DEVICE_NOTIFY, | 
|  | 1680 | acpi_video_device_notify); | 
| Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 1681 | if (device->backlight){ | 
|  | 1682 | backlight_device_unregister(device->backlight); | 
|  | 1683 | kfree(device->data); | 
|  | 1684 | } | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1685 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | } | 
|  | 1687 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1688 | static int acpi_video_bus_put_devices(struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1690 | int status; | 
|  | 1691 | struct list_head *node, *next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 |  | 
|  | 1694 | list_for_each_safe(node, next, &video->video_device_list) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1695 | struct acpi_video_device *data = | 
|  | 1696 | list_entry(node, struct acpi_video_device, entry); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | if (!data) | 
|  | 1698 | continue; | 
|  | 1699 |  | 
|  | 1700 | status = acpi_video_bus_put_one_device(data); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1701 | if (ACPI_FAILURE(status)) | 
|  | 1702 | printk(KERN_WARNING PREFIX | 
|  | 1703 | "hhuuhhuu bug in acpi video driver.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 |  | 
| Dave Jones | d384ea6 | 2006-06-24 00:33:08 -0400 | [diff] [blame] | 1705 | if (data->brightness) | 
| Yu, Luming | 973bf49 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1706 | kfree(data->brightness->levels); | 
| Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 1707 | kfree(data->brightness); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | kfree(data); | 
|  | 1709 | } | 
|  | 1710 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1711 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | } | 
|  | 1713 |  | 
|  | 1714 | /* acpi_video interface */ | 
|  | 1715 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1716 | static int acpi_video_bus_start_devices(struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | { | 
|  | 1718 | return acpi_video_bus_DOS(video, 1, 0); | 
|  | 1719 | } | 
|  | 1720 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1721 | static int acpi_video_bus_stop_devices(struct acpi_video_bus *video) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1722 | { | 
|  | 1723 | return acpi_video_bus_DOS(video, 0, 1); | 
|  | 1724 | } | 
|  | 1725 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1726 | static void acpi_video_bus_notify(acpi_handle handle, u32 event, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1728 | struct acpi_video_bus *video = data; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1729 | struct acpi_device *device = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1730 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | printk("video bus notify\n"); | 
|  | 1732 |  | 
|  | 1733 | if (!video) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1734 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 |  | 
| Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1736 | device = video->device; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 |  | 
|  | 1738 | switch (event) { | 
|  | 1739 | case ACPI_VIDEO_NOTIFY_SWITCH:	/* User request that a switch occur, | 
|  | 1740 | * most likely via hotkey. */ | 
|  | 1741 | acpi_bus_generate_event(device, event, 0); | 
|  | 1742 | break; | 
|  | 1743 |  | 
|  | 1744 | case ACPI_VIDEO_NOTIFY_PROBE:	/* User plug or remove a video | 
|  | 1745 | * connector. */ | 
|  | 1746 | acpi_video_device_enumerate(video); | 
|  | 1747 | acpi_video_device_rebind(video); | 
|  | 1748 | acpi_video_switch_output(video, event); | 
|  | 1749 | acpi_bus_generate_event(device, event, 0); | 
|  | 1750 | break; | 
|  | 1751 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1752 | case ACPI_VIDEO_NOTIFY_CYCLE:	/* Cycle Display output hotkey pressed. */ | 
|  | 1753 | case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT:	/* Next Display output hotkey pressed. */ | 
|  | 1754 | case ACPI_VIDEO_NOTIFY_PREV_OUTPUT:	/* previous Display output hotkey pressed. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | acpi_video_switch_output(video, event); | 
|  | 1756 | acpi_bus_generate_event(device, event, 0); | 
|  | 1757 | break; | 
|  | 1758 |  | 
|  | 1759 | default: | 
|  | 1760 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1761 | "Unsupported event [0x%x]\n", event)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | break; | 
|  | 1763 | } | 
|  | 1764 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1765 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | } | 
|  | 1767 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1768 | static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | { | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1770 | struct acpi_video_device *video_device = data; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1771 | struct acpi_device *device = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | if (!video_device) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1774 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 |  | 
| Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1776 | device = video_device->dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 |  | 
|  | 1778 | switch (event) { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1779 | case ACPI_VIDEO_NOTIFY_SWITCH:	/* change in status (cycle output device) */ | 
|  | 1780 | case ACPI_VIDEO_NOTIFY_PROBE:	/* change in status (output device status) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | acpi_bus_generate_event(device, event, 0); | 
|  | 1782 | break; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1783 | case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:	/* Cycle brightness */ | 
|  | 1784 | case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:	/* Increase brightness */ | 
|  | 1785 | case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:	/* Decrease brightness */ | 
|  | 1786 | case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:	/* zero brightnesss */ | 
|  | 1787 | case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:	/* display device off */ | 
|  | 1788 | acpi_video_switch_brightness(video_device, event); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | acpi_bus_generate_event(device, event, 0); | 
|  | 1790 | break; | 
|  | 1791 | default: | 
|  | 1792 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1793 | "Unsupported event [0x%x]\n", event)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | break; | 
|  | 1795 | } | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1796 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | } | 
|  | 1798 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1799 | static int acpi_video_bus_add(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1801 | int result = 0; | 
|  | 1802 | acpi_status status = 0; | 
|  | 1803 | struct acpi_video_bus *video = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1805 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | if (!device) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1807 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 |  | 
| Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1809 | video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | if (!video) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1811 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 |  | 
| Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1813 | video->device = device; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME); | 
|  | 1815 | strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS); | 
|  | 1816 | acpi_driver_data(device) = video; | 
|  | 1817 |  | 
|  | 1818 | acpi_video_bus_find_cap(video); | 
|  | 1819 | result = acpi_video_bus_check(video); | 
|  | 1820 | if (result) | 
|  | 1821 | goto end; | 
|  | 1822 |  | 
|  | 1823 | result = acpi_video_bus_add_fs(device); | 
|  | 1824 | if (result) | 
|  | 1825 | goto end; | 
|  | 1826 |  | 
|  | 1827 | init_MUTEX(&video->sem); | 
|  | 1828 | INIT_LIST_HEAD(&video->video_device_list); | 
|  | 1829 |  | 
|  | 1830 | acpi_video_bus_get_devices(video, device); | 
|  | 1831 | acpi_video_bus_start_devices(video); | 
|  | 1832 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1833 | status = acpi_install_notify_handler(device->handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1834 | ACPI_DEVICE_NOTIFY, | 
|  | 1835 | acpi_video_bus_notify, video); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | if (ACPI_FAILURE(status)) { | 
|  | 1837 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1838 | "Error installing notify handler\n")); | 
| Yu, Luming | 973bf49 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1839 | acpi_video_bus_stop_devices(video); | 
|  | 1840 | acpi_video_bus_put_devices(video); | 
|  | 1841 | kfree(video->attached_array); | 
|  | 1842 | acpi_video_bus_remove_fs(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | result = -ENODEV; | 
|  | 1844 | goto end; | 
|  | 1845 | } | 
|  | 1846 |  | 
|  | 1847 | printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s  rom: %s  post: %s)\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1848 | ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device), | 
|  | 1849 | video->flags.multihead ? "yes" : "no", | 
|  | 1850 | video->flags.rom ? "yes" : "no", | 
|  | 1851 | video->flags.post ? "yes" : "no"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1853 | end: | 
| Yu, Luming | 973bf49 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 1854 | if (result) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1855 | kfree(video); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1857 | return result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | } | 
|  | 1859 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1860 | static int acpi_video_bus_remove(struct acpi_device *device, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1862 | acpi_status status = 0; | 
|  | 1863 | struct acpi_video_bus *video = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 |  | 
|  | 1866 | if (!device || !acpi_driver_data(device)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1867 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1869 | video = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 |  | 
|  | 1871 | acpi_video_bus_stop_devices(video); | 
|  | 1872 |  | 
| Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1873 | status = acpi_remove_notify_handler(video->device->handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1874 | ACPI_DEVICE_NOTIFY, | 
|  | 1875 | acpi_video_bus_notify); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 |  | 
|  | 1877 | acpi_video_bus_put_devices(video); | 
|  | 1878 | acpi_video_bus_remove_fs(device); | 
|  | 1879 |  | 
| Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 1880 | kfree(video->attached_array); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | kfree(video); | 
|  | 1882 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1883 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | } | 
|  | 1885 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1886 | static int __init acpi_video_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1888 | int result = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 |  | 
|  | 1891 | /* | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1892 | acpi_dbg_level = 0xFFFFFFFF; | 
|  | 1893 | acpi_dbg_layer = 0x08000000; | 
|  | 1894 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 |  | 
|  | 1896 | acpi_video_dir = proc_mkdir(ACPI_VIDEO_CLASS, acpi_root_dir); | 
|  | 1897 | if (!acpi_video_dir) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1898 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | acpi_video_dir->owner = THIS_MODULE; | 
|  | 1900 |  | 
|  | 1901 | result = acpi_bus_register_driver(&acpi_video_bus); | 
|  | 1902 | if (result < 0) { | 
|  | 1903 | remove_proc_entry(ACPI_VIDEO_CLASS, acpi_root_dir); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1904 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | } | 
|  | 1906 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1907 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | } | 
|  | 1909 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1910 | static void __exit acpi_video_exit(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 |  | 
|  | 1913 | acpi_bus_unregister_driver(&acpi_video_bus); | 
|  | 1914 |  | 
|  | 1915 | remove_proc_entry(ACPI_VIDEO_CLASS, acpi_root_dir); | 
|  | 1916 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1917 | return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | } | 
|  | 1919 |  | 
|  | 1920 | module_init(acpi_video_init); | 
|  | 1921 | module_exit(acpi_video_exit); |