blob: 3b063a6ac52ea38f7cc9bce45a4e8fb98cf32035 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Tuttlef4715182006-12-19 12:56:14 -08006 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/proc_fs.h>
34#include <linux/seq_file.h>
Luming Yue9dab192007-08-20 18:23:53 +080035#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080036#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080037#include <linux/thermal.h>
Luming Yu23b0f012007-05-09 21:07:05 +080038#include <linux/video_output.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050039#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000040#include <linux/pci.h>
41#include <linux/pci_ids.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/uaccess.h>
Len Browneb27cae2009-07-06 23:40:19 -040043#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi_bus.h>
45#include <acpi/acpi_drivers.h>
46
Len Browna192a952009-07-28 16:45:54 -040047#define PREFIX "ACPI: "
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define ACPI_VIDEO_CLASS "video"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#define ACPI_VIDEO_BUS_NAME "Video Bus"
51#define ACPI_VIDEO_DEVICE_NAME "Video Device"
52#define ACPI_VIDEO_NOTIFY_SWITCH 0x80
53#define ACPI_VIDEO_NOTIFY_PROBE 0x81
54#define ACPI_VIDEO_NOTIFY_CYCLE 0x82
55#define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
56#define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
57
Thomas Tuttlef4715182006-12-19 12:56:14 -080058#define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
59#define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
60#define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
61#define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
62#define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Yu Luming2f3d0002006-11-11 02:40:34 +080064#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Rui Zhang82cae992007-01-03 23:40:53 -050066#define ACPI_VIDEO_DISPLAY_CRT 1
67#define ACPI_VIDEO_DISPLAY_TV 2
68#define ACPI_VIDEO_DISPLAY_DVI 3
69#define ACPI_VIDEO_DISPLAY_LCD 4
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050072ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Len Brownf52fd662007-02-12 22:42:12 -050074MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050075MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070076MODULE_LICENSE("GPL");
77
Zhang Rui8a681a42008-01-25 14:47:49 +080078static int brightness_switch_enabled = 1;
79module_param(brightness_switch_enabled, bool, 0644);
80
Zhao Yakui86e437f2009-06-16 11:23:13 +080081static int register_count = 0;
Len Brown4be44fc2005-08-05 00:44:28 -040082static int acpi_video_bus_add(struct acpi_device *device);
83static int acpi_video_bus_remove(struct acpi_device *device, int type);
Matthew Garrett863c1492008-02-04 23:31:24 -080084static int acpi_video_resume(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000085static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Thomas Renninger1ba90e32007-07-23 14:44:41 +020087static const struct acpi_device_id video_device_ids[] = {
88 {ACPI_VIDEO_HID, 0},
89 {"", 0},
90};
91MODULE_DEVICE_TABLE(acpi, video_device_ids);
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -050094 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020096 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .ops = {
98 .add = acpi_video_bus_add,
99 .remove = acpi_video_bus_remove,
Matthew Garrett863c1492008-02-04 23:31:24 -0800100 .resume = acpi_video_resume,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000101 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400102 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
105struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400106 u8 multihead:1; /* can switch video heads */
107 u8 rom:1; /* can retrieve a video rom */
108 u8 post:1; /* can configure the head to */
109 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
112struct acpi_video_bus_cap {
Len Brown4be44fc2005-08-05 00:44:28 -0400113 u8 _DOS:1; /*Enable/Disable output switching */
114 u8 _DOD:1; /*Enumerate all devices attached to display adapter */
115 u8 _ROM:1; /*Get ROM Data */
116 u8 _GPD:1; /*Get POST Device */
117 u8 _SPD:1; /*Set POST Device */
118 u8 _VPO:1; /*Video POST Options */
119 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Len Brown4be44fc2005-08-05 00:44:28 -0400122struct acpi_video_device_attrib {
123 u32 display_index:4; /* A zero-based instance of the Display */
Julius Volz98fb8fe2007-02-20 16:38:40 +0100124 u32 display_port_attachment:4; /*This field differentiates the display type */
Len Brown4be44fc2005-08-05 00:44:28 -0400125 u32 display_type:4; /*Describe the specific type in use */
Julius Volz98fb8fe2007-02-20 16:38:40 +0100126 u32 vendor_specific:4; /*Chipset Vendor Specific */
Len Brown4be44fc2005-08-05 00:44:28 -0400127 u32 bios_can_detect:1; /*BIOS can detect the device */
128 u32 depend_on_vga:1; /*Non-VGA output device whose power is related to
129 the VGA device. */
130 u32 pipe_id:3; /*For VGA multiple-head devices. */
131 u32 reserved:10; /*Must be 0 */
132 u32 device_id_scheme:1; /*Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
135struct acpi_video_enumerated_device {
136 union {
137 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400138 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 } value;
140 struct acpi_video_device *bind_info;
141};
142
143struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400144 struct acpi_device *device;
Len Brown4be44fc2005-08-05 00:44:28 -0400145 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400147 u8 attached_count;
148 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400150 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500151 struct mutex device_list_lock; /* protects video_device_list */
Len Brown4be44fc2005-08-05 00:44:28 -0400152 struct proc_dir_entry *dir;
Luming Yue9dab192007-08-20 18:23:53 +0800153 struct input_dev *input;
154 char phys[32]; /* for input device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
157struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400158 u8 crt:1;
159 u8 lcd:1;
160 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500161 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400162 u8 bios:1;
163 u8 unknown:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500164 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167struct acpi_video_device_cap {
Len Brown4be44fc2005-08-05 00:44:28 -0400168 u8 _ADR:1; /*Return the unique ID */
169 u8 _BCL:1; /*Query list of brightness control levels supported */
170 u8 _BCM:1; /*Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800171 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800172 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Len Brown4be44fc2005-08-05 00:44:28 -0400173 u8 _DDC:1; /*Return the EDID for this device */
174 u8 _DCS:1; /*Return status of output device */
175 u8 _DGS:1; /*Query graphics state */
176 u8 _DSS:1; /*Device state set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
Zhang Ruid32f6942009-03-18 16:27:12 +0800179struct acpi_video_brightness_flags {
180 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Zhang Ruid80fb992009-03-18 16:27:14 +0800181 u8 _BCL_reversed:1; /* _BCL package is in a reversed order*/
Zhang Rui1a7c6182009-03-18 16:27:16 +0800182 u8 _BCL_use_index:1; /* levels in _BCL are index values */
183 u8 _BCM_use_index:1; /* input of _BCM is an index value */
184 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800185};
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400188 int curr;
189 int count;
190 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800191 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
193
194struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400195 unsigned long device_id;
196 struct acpi_video_device_flags flags;
197 struct acpi_video_device_cap cap;
198 struct list_head entry;
199 struct acpi_video_bus *video;
200 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800202 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400203 struct thermal_cooling_device *cooling_dev;
Luming Yu23b0f012007-05-09 21:07:05 +0800204 struct output_device *output_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* bus */
208static int acpi_video_bus_info_open_fs(struct inode *inode, struct file *file);
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100209static const struct file_operations acpi_video_bus_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700210 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400211 .open = acpi_video_bus_info_open_fs,
212 .read = seq_read,
213 .llseek = seq_lseek,
214 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
217static int acpi_video_bus_ROM_open_fs(struct inode *inode, struct file *file);
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100218static const struct file_operations acpi_video_bus_ROM_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700219 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400220 .open = acpi_video_bus_ROM_open_fs,
221 .read = seq_read,
222 .llseek = seq_lseek,
223 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224};
225
Len Brown4be44fc2005-08-05 00:44:28 -0400226static int acpi_video_bus_POST_info_open_fs(struct inode *inode,
227 struct file *file);
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100228static const struct file_operations acpi_video_bus_POST_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700229 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400230 .open = acpi_video_bus_POST_info_open_fs,
231 .read = seq_read,
232 .llseek = seq_lseek,
233 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
236static int acpi_video_bus_POST_open_fs(struct inode *inode, struct file *file);
Len Brownc07c9a72009-04-04 03:33:45 -0400237static ssize_t acpi_video_bus_write_POST(struct file *file,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100238 const char __user *buffer, size_t count, loff_t *data);
239static const struct file_operations acpi_video_bus_POST_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700240 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400241 .open = acpi_video_bus_POST_open_fs,
242 .read = seq_read,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100243 .write = acpi_video_bus_write_POST,
Len Brown4be44fc2005-08-05 00:44:28 -0400244 .llseek = seq_lseek,
245 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246};
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248static int acpi_video_bus_DOS_open_fs(struct inode *inode, struct file *file);
Len Brownc07c9a72009-04-04 03:33:45 -0400249static ssize_t acpi_video_bus_write_DOS(struct file *file,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100250 const char __user *buffer, size_t count, loff_t *data);
251static const struct file_operations acpi_video_bus_DOS_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700252 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400253 .open = acpi_video_bus_DOS_open_fs,
254 .read = seq_read,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100255 .write = acpi_video_bus_write_DOS,
Len Brown4be44fc2005-08-05 00:44:28 -0400256 .llseek = seq_lseek,
257 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
260/* device */
Len Brown4be44fc2005-08-05 00:44:28 -0400261static int acpi_video_device_info_open_fs(struct inode *inode,
262 struct file *file);
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100263static const struct file_operations acpi_video_device_info_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700264 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400265 .open = acpi_video_device_info_open_fs,
266 .read = seq_read,
267 .llseek = seq_lseek,
268 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Len Brown4be44fc2005-08-05 00:44:28 -0400271static int acpi_video_device_state_open_fs(struct inode *inode,
272 struct file *file);
Len Brownc07c9a72009-04-04 03:33:45 -0400273static ssize_t acpi_video_device_write_state(struct file *file,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100274 const char __user *buffer, size_t count, loff_t *data);
275static const struct file_operations acpi_video_device_state_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700276 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400277 .open = acpi_video_device_state_open_fs,
278 .read = seq_read,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100279 .write = acpi_video_device_write_state,
Len Brown4be44fc2005-08-05 00:44:28 -0400280 .llseek = seq_lseek,
281 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282};
283
Len Brown4be44fc2005-08-05 00:44:28 -0400284static int acpi_video_device_brightness_open_fs(struct inode *inode,
285 struct file *file);
Len Brownc07c9a72009-04-04 03:33:45 -0400286static ssize_t acpi_video_device_write_brightness(struct file *file,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100287 const char __user *buffer, size_t count, loff_t *data);
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700288static const struct file_operations acpi_video_device_brightness_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700289 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400290 .open = acpi_video_device_brightness_open_fs,
291 .read = seq_read,
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100292 .write = acpi_video_device_write_brightness,
Len Brown4be44fc2005-08-05 00:44:28 -0400293 .llseek = seq_lseek,
294 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
Len Brown4be44fc2005-08-05 00:44:28 -0400297static int acpi_video_device_EDID_open_fs(struct inode *inode,
298 struct file *file);
Jan Engelhardt070d8eb2009-01-12 00:07:55 +0100299static const struct file_operations acpi_video_device_EDID_fops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700300 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400301 .open = acpi_video_device_EDID_open_fs,
302 .read = seq_read,
303 .llseek = seq_lseek,
304 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100307static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 "motherboard VGA device",
309 "PCI VGA device",
310 "AGP VGA device",
311 "UNKNOWN",
312};
313
Len Brown4be44fc2005-08-05 00:44:28 -0400314static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
315static void acpi_video_device_rebind(struct acpi_video_bus *video);
316static void acpi_video_device_bind(struct acpi_video_bus *video,
317 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800319static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
320 int level);
321static int acpi_video_device_lcd_get_level_current(
322 struct acpi_video_device *device,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400323 unsigned long long *level);
Len Brown4be44fc2005-08-05 00:44:28 -0400324static int acpi_video_get_next_level(struct acpi_video_device *device,
325 u32 level_current, u32 event);
Zhang Ruic8890f92009-03-18 16:27:08 +0800326static int acpi_video_switch_brightness(struct acpi_video_device *device,
Len Brown4be44fc2005-08-05 00:44:28 -0400327 int event);
Luming Yu23b0f012007-05-09 21:07:05 +0800328static int acpi_video_device_get_state(struct acpi_video_device *device,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400329 unsigned long long *state);
Luming Yu23b0f012007-05-09 21:07:05 +0800330static int acpi_video_output_get(struct output_device *od);
331static int acpi_video_device_set_state(struct acpi_video_device *device, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Yu Luming2f3d0002006-11-11 02:40:34 +0800333/*backlight device sysfs support*/
334static int acpi_video_get_brightness(struct backlight_device *bd)
335{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400336 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000337 int i;
Yu Luming2f3d0002006-11-11 02:40:34 +0800338 struct acpi_video_device *vd =
Richard Purdie655bfd72007-07-09 12:17:24 +0100339 (struct acpi_video_device *)bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800340
341 if (acpi_video_device_lcd_get_level_current(vd, &cur_level))
342 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000343 for (i = 2; i < vd->brightness->count; i++) {
344 if (vd->brightness->levels[i] == cur_level)
345 /* The first two entries are special - see page 575
346 of the ACPI spec 3.0 */
347 return i-2;
348 }
349 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800350}
351
352static int acpi_video_set_brightness(struct backlight_device *bd)
353{
Zhang Rui24450c72009-03-18 16:27:10 +0800354 int request_level = bd->props.brightness + 2;
Yu Luming2f3d0002006-11-11 02:40:34 +0800355 struct acpi_video_device *vd =
Richard Purdie655bfd72007-07-09 12:17:24 +0100356 (struct acpi_video_device *)bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800357
358 return acpi_video_device_lcd_set_level(vd,
359 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800360}
361
Richard Purdie599a52d2007-02-10 23:07:48 +0000362static struct backlight_ops acpi_backlight_ops = {
363 .get_brightness = acpi_video_get_brightness,
364 .update_status = acpi_video_set_brightness,
365};
366
Luming Yu23b0f012007-05-09 21:07:05 +0800367/*video output device sysfs support*/
368static int acpi_video_output_get(struct output_device *od)
369{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400370 unsigned long long state;
Luming Yu23b0f012007-05-09 21:07:05 +0800371 struct acpi_video_device *vd =
tonyj@suse.de60043422007-08-07 22:28:47 -0700372 (struct acpi_video_device *)dev_get_drvdata(&od->dev);
Luming Yu23b0f012007-05-09 21:07:05 +0800373 acpi_video_device_get_state(vd, &state);
374 return (int)state;
375}
376
377static int acpi_video_output_set(struct output_device *od)
378{
379 unsigned long state = od->request_state;
380 struct acpi_video_device *vd=
tonyj@suse.de60043422007-08-07 22:28:47 -0700381 (struct acpi_video_device *)dev_get_drvdata(&od->dev);
Luming Yu23b0f012007-05-09 21:07:05 +0800382 return acpi_video_device_set_state(vd, state);
383}
384
385static struct output_properties acpi_output_properties = {
386 .set_state = acpi_video_output_set,
387 .get_status = acpi_video_output_get,
388};
Zhang Rui702ed512008-01-17 15:51:22 +0800389
390
391/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400392static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000393 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800394{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400395 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800396 struct acpi_video_device *video = acpi_driver_data(device);
397
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000398 *state = video->brightness->count - 3;
399 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800400}
401
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400402static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000403 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800404{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400405 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800406 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400407 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000408 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800409
Zhang Ruic8890f92009-03-18 16:27:08 +0800410 if (acpi_video_device_lcd_get_level_current(video, &level))
411 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000412 for (offset = 2; offset < video->brightness->count; offset++)
413 if (level == video->brightness->levels[offset]) {
414 *state = video->brightness->count - offset - 1;
415 return 0;
416 }
Zhang Rui702ed512008-01-17 15:51:22 +0800417
418 return -EINVAL;
419}
420
421static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400422video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800423{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400424 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800425 struct acpi_video_device *video = acpi_driver_data(device);
426 int level;
427
428 if ( state >= video->brightness->count - 2)
429 return -EINVAL;
430
431 state = video->brightness->count - state;
432 level = video->brightness->levels[state -1];
433 return acpi_video_device_lcd_set_level(video, level);
434}
435
436static struct thermal_cooling_device_ops video_cooling_ops = {
437 .get_max_state = video_get_max_state,
438 .get_cur_state = video_get_cur_state,
439 .set_cur_state = video_set_cur_state,
440};
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/* --------------------------------------------------------------------------
443 Video Management
444 -------------------------------------------------------------------------- */
445
446/* device */
447
448static int
Matthew Wilcox27663c52008-10-10 02:22:59 -0400449acpi_video_device_query(struct acpi_video_device *device, unsigned long long *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Len Brown4be44fc2005-08-05 00:44:28 -0400451 int status;
Patrick Mochel90130262006-05-19 16:54:48 -0400452
453 status = acpi_evaluate_integer(device->dev->handle, "_DGS", NULL, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Patrick Mocheld550d982006-06-27 00:41:40 -0400455 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458static int
Len Brown4be44fc2005-08-05 00:44:28 -0400459acpi_video_device_get_state(struct acpi_video_device *device,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400460 unsigned long long *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Len Brown4be44fc2005-08-05 00:44:28 -0400462 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Patrick Mochel90130262006-05-19 16:54:48 -0400464 status = acpi_evaluate_integer(device->dev->handle, "_DCS", NULL, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Patrick Mocheld550d982006-06-27 00:41:40 -0400466 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469static int
Len Brown4be44fc2005-08-05 00:44:28 -0400470acpi_video_device_set_state(struct acpi_video_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Len Brown4be44fc2005-08-05 00:44:28 -0400472 int status;
473 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
474 struct acpi_object_list args = { 1, &arg0 };
Matthew Wilcox27663c52008-10-10 02:22:59 -0400475 unsigned long long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 arg0.integer.value = state;
Patrick Mochel90130262006-05-19 16:54:48 -0400479 status = acpi_evaluate_integer(device->dev->handle, "_DSS", &args, &ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Patrick Mocheld550d982006-06-27 00:41:40 -0400481 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484static int
Len Brown4be44fc2005-08-05 00:44:28 -0400485acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
486 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Len Brown4be44fc2005-08-05 00:44:28 -0400488 int status;
489 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
490 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 *levels = NULL;
494
Patrick Mochel90130262006-05-19 16:54:48 -0400495 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400497 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400498 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500499 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400500 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 status = -EFAULT;
502 goto err;
503 }
504
505 *levels = obj;
506
Patrick Mocheld550d982006-06-27 00:41:40 -0400507 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Len Brown4be44fc2005-08-05 00:44:28 -0400509 err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800510 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Patrick Mocheld550d982006-06-27 00:41:40 -0400512 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515static int
Len Brown4be44fc2005-08-05 00:44:28 -0400516acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Zhang Rui24450c72009-03-18 16:27:10 +0800518 int status;
Len Brown4be44fc2005-08-05 00:44:28 -0400519 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
520 struct acpi_object_list args = { 1, &arg0 };
Zhang Rui9e6dada2008-12-31 10:58:48 +0800521 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 arg0.integer.value = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Zhang Rui24450c72009-03-18 16:27:10 +0800525 status = acpi_evaluate_object(device->dev->handle, "_BCM",
526 &args, NULL);
527 if (ACPI_FAILURE(status)) {
528 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
529 return -EIO;
530 }
531
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400532 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800533 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800534 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800535 if (device->backlight)
536 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800537 return 0;
538 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800539
Zhang Rui24450c72009-03-18 16:27:10 +0800540 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
541 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Zhang Rui45cb50e2009-04-24 12:13:18 -0400544/*
545 * For some buggy _BQC methods, we need to add a constant value to
546 * the _BQC return value to get the actual current brightness level
547 */
548
549static int bqc_offset_aml_bug_workaround;
550static int __init video_set_bqc_offset(const struct dmi_system_id *d)
551{
552 bqc_offset_aml_bug_workaround = 9;
553 return 0;
554}
555
556static struct dmi_system_id video_dmi_table[] __initdata = {
557 /*
558 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
559 */
560 {
561 .callback = video_set_bqc_offset,
562 .ident = "Acer Aspire 5720",
563 .matches = {
564 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
565 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
566 },
567 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400568 {
569 .callback = video_set_bqc_offset,
570 .ident = "Acer Aspire 5710Z",
571 .matches = {
572 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
573 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
574 },
575 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400576 {
577 .callback = video_set_bqc_offset,
578 .ident = "eMachines E510",
579 .matches = {
580 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
581 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
582 },
583 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400584 {
585 .callback = video_set_bqc_offset,
586 .ident = "Acer Aspire 5315",
587 .matches = {
588 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
589 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
590 },
591 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800592 {
593 .callback = video_set_bqc_offset,
594 .ident = "Acer Aspire 7720",
595 .matches = {
596 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
597 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
598 },
599 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400600 {}
601};
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603static int
Len Brown4be44fc2005-08-05 00:44:28 -0400604acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400605 unsigned long long *level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Zhang Ruic8890f92009-03-18 16:27:08 +0800607 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800608 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800609
Zhang Ruic60d6382009-03-18 16:27:18 +0800610 if (device->cap._BQC || device->cap._BCQ) {
611 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
612
613 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800614 NULL, level);
615 if (ACPI_SUCCESS(status)) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800616 if (device->brightness->flags._BQC_use_index) {
617 if (device->brightness->flags._BCL_reversed)
618 *level = device->brightness->count
619 - 3 - (*level);
620 *level = device->brightness->levels[*level + 2];
621
622 }
Zhang Rui45cb50e2009-04-24 12:13:18 -0400623 *level += bqc_offset_aml_bug_workaround;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800624 for (i = 2; i < device->brightness->count; i++)
625 if (device->brightness->levels[i] == *level) {
626 device->brightness->curr = *level;
627 return 0;
628 }
629 /* BQC returned an invalid level. Stop using it. */
630 ACPI_WARNING((AE_INFO, "%s returned an invalid level",
631 buf));
632 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800633 } else {
634 /* Fixme:
635 * should we return an error or ignore this failure?
636 * dev->brightness->curr is a cached value which stores
637 * the correct current backlight level in most cases.
638 * ACPI video backlight still works w/ buggy _BQC.
639 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
640 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800641 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
642 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800643 }
644 }
645
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400646 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650static int
Len Brown4be44fc2005-08-05 00:44:28 -0400651acpi_video_device_EDID(struct acpi_video_device *device,
652 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Len Brown4be44fc2005-08-05 00:44:28 -0400654 int status;
655 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
656 union acpi_object *obj;
657 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
658 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 *edid = NULL;
662
663 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400664 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (length == 128)
666 arg0.integer.value = 1;
667 else if (length == 256)
668 arg0.integer.value = 2;
669 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400670 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Patrick Mochel90130262006-05-19 16:54:48 -0400672 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400674 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200676 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 if (obj && obj->type == ACPI_TYPE_BUFFER)
679 *edid = obj;
680 else {
Len Brown64684632006-06-26 23:41:38 -0400681 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 status = -EFAULT;
683 kfree(obj);
684 }
685
Patrick Mocheld550d982006-06-27 00:41:40 -0400686 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/* bus */
690
691static int
Len Brown4be44fc2005-08-05 00:44:28 -0400692acpi_video_bus_set_POST(struct acpi_video_bus *video, unsigned long option)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Len Brown4be44fc2005-08-05 00:44:28 -0400694 int status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400695 unsigned long long tmp;
Len Brown4be44fc2005-08-05 00:44:28 -0400696 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
697 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 arg0.integer.value = option;
701
Patrick Mochel90130262006-05-19 16:54:48 -0400702 status = acpi_evaluate_integer(video->device->handle, "_SPD", &args, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (ACPI_SUCCESS(status))
Len Brown4be44fc2005-08-05 00:44:28 -0400704 status = tmp ? (-EINVAL) : (AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Patrick Mocheld550d982006-06-27 00:41:40 -0400706 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
709static int
Matthew Wilcox27663c52008-10-10 02:22:59 -0400710acpi_video_bus_get_POST(struct acpi_video_bus *video, unsigned long long *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 int status;
713
Patrick Mochel90130262006-05-19 16:54:48 -0400714 status = acpi_evaluate_integer(video->device->handle, "_GPD", NULL, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Patrick Mocheld550d982006-06-27 00:41:40 -0400716 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719static int
Len Brown4be44fc2005-08-05 00:44:28 -0400720acpi_video_bus_POST_options(struct acpi_video_bus *video,
Matthew Wilcox27663c52008-10-10 02:22:59 -0400721 unsigned long long *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Len Brown4be44fc2005-08-05 00:44:28 -0400723 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Patrick Mochel90130262006-05-19 16:54:48 -0400725 status = acpi_evaluate_integer(video->device->handle, "_VPO", NULL, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 *options &= 3;
727
Patrick Mocheld550d982006-06-27 00:41:40 -0400728 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
731/*
732 * Arg:
733 * video : video bus device pointer
734 * bios_flag :
735 * 0. The system BIOS should NOT automatically switch(toggle)
736 * the active display output.
737 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100738 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * 2. The _DGS value should be locked.
740 * 3. The system BIOS should not automatically switch (toggle) the
741 * active display output, but instead generate the display switch
742 * event notify code.
743 * lcd_flag :
744 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100745 * of the LCD when the power changes from AC to DC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100747 * level of the LCD when the power changes from AC to DC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * Return Value:
749 * -1 wrong arg.
750 */
751
752static int
Len Brown4be44fc2005-08-05 00:44:28 -0400753acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Len Brown4be44fc2005-08-05 00:44:28 -0400755 acpi_integer status = 0;
756 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
757 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Len Brown4be44fc2005-08-05 00:44:28 -0400760 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 status = -1;
762 goto Failed;
763 }
764 arg0.integer.value = (lcd_flag << 2) | bios_flag;
765 video->dos_setting = arg0.integer.value;
Patrick Mochel90130262006-05-19 16:54:48 -0400766 acpi_evaluate_object(video->device->handle, "_DOS", &args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Len Brown4be44fc2005-08-05 00:44:28 -0400768 Failed:
Patrick Mocheld550d982006-06-27 00:41:40 -0400769 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
772/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500773 * Simple comparison function used to sort backlight levels.
774 */
775
776static int
777acpi_video_cmp_level(const void *a, const void *b)
778{
779 return *(int *)a - *(int *)b;
780}
781
782/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * Arg:
784 * device : video output device (LCD, CRT, ..)
785 *
786 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100787 * Maximum brightness level
788 *
789 * Allocate and initialize device->brightness.
790 */
791
792static int
793acpi_video_init_brightness(struct acpi_video_device *device)
794{
795 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800796 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800797 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100798 union acpi_object *o;
799 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800800 int result = -EINVAL;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100801
802 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
803 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
804 "LCD brightness level\n"));
805 goto out;
806 }
807
808 if (obj->package.count < 2)
809 goto out;
810
811 br = kzalloc(sizeof(*br), GFP_KERNEL);
812 if (!br) {
813 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800814 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100815 goto out;
816 }
817
Zhang Ruid32f6942009-03-18 16:27:12 +0800818 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100819 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800820 if (!br->levels) {
821 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100822 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800823 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100824
825 for (i = 0; i < obj->package.count; i++) {
826 o = (union acpi_object *)&obj->package.elements[i];
827 if (o->type != ACPI_TYPE_INTEGER) {
828 printk(KERN_ERR PREFIX "Invalid data\n");
829 continue;
830 }
831 br->levels[count] = (u32) o->integer.value;
832
833 if (br->levels[count] > max_level)
834 max_level = br->levels[count];
835 count++;
836 }
837
Zhang Ruid32f6942009-03-18 16:27:12 +0800838 /*
839 * some buggy BIOS don't export the levels
840 * when machine is on AC/Battery in _BCL package.
841 * In this case, the first two elements in _BCL packages
842 * are also supported brightness levels that OS should take care of.
843 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800844 for (i = 2; i < count; i++) {
845 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800846 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800847 if (br->levels[i] == br->levels[1])
848 level_ac_battery++;
849 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500850
Zhang Ruid32f6942009-03-18 16:27:12 +0800851 if (level_ac_battery < 2) {
852 level_ac_battery = 2 - level_ac_battery;
853 br->flags._BCL_no_ac_battery_levels = 1;
854 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
855 br->levels[i] = br->levels[i - level_ac_battery];
856 count += level_ac_battery;
857 } else if (level_ac_battery > 2)
858 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package\n"));
859
Zhang Ruid80fb992009-03-18 16:27:14 +0800860 /* Check if the _BCL package is in a reversed order */
861 if (max_level == br->levels[2]) {
862 br->flags._BCL_reversed = 1;
863 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
864 acpi_video_cmp_level, NULL);
865 } else if (max_level != br->levels[count - 1])
866 ACPI_ERROR((AE_INFO,
867 "Found unordered _BCL package\n"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100868
869 br->count = count;
870 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800871
872 /* Check the input/output of _BQC/_BCL/_BCM */
873 if ((max_level < 100) && (max_level <= (count - 2)))
874 br->flags._BCL_use_index = 1;
875
876 /*
877 * _BCM is always consistent with _BCL,
878 * at least for all the laptops we have ever seen.
879 */
880 br->flags._BCM_use_index = br->flags._BCL_use_index;
881
882 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400883 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800884
885 if (!device->cap._BQC)
886 goto set_level;
887
Zhang Rui1a7c6182009-03-18 16:27:16 +0800888 result = acpi_video_device_lcd_get_level_current(device, &level_old);
889 if (result)
890 goto out_free_levels;
891
Zhang Ruie047cca2009-04-09 14:24:35 +0800892 /*
893 * Set the level to maximum and check if _BQC uses indexed value
894 */
895 result = acpi_video_device_lcd_set_level(device, max_level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800896 if (result)
897 goto out_free_levels;
898
899 result = acpi_video_device_lcd_get_level_current(device, &level);
900 if (result)
901 goto out_free_levels;
902
Zhang Ruie047cca2009-04-09 14:24:35 +0800903 br->flags._BQC_use_index = (level == max_level ? 0 : 1);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800904
Zhang Rui90c53ca2009-08-31 12:39:54 -0400905 if (!br->flags._BQC_use_index) {
906 /*
907 * Set the backlight to the initial state.
908 * On some buggy laptops, _BQC returns an uninitialized value
909 * when invoked for the first time, i.e. level_old is invalid.
910 * set the backlight to max_level in this case
911 */
912 for (i = 2; i < br->count; i++)
913 if (level_old == br->levels[i])
914 level = level_old;
Zhang Ruie047cca2009-04-09 14:24:35 +0800915 goto set_level;
Zhang Rui90c53ca2009-08-31 12:39:54 -0400916 }
Zhang Ruie047cca2009-04-09 14:24:35 +0800917
918 if (br->flags._BCL_reversed)
919 level_old = (br->count - 1) - level_old;
Zhang Rui90c53ca2009-08-31 12:39:54 -0400920 level = br->levels[level_old];
Zhang Ruie047cca2009-04-09 14:24:35 +0800921
922set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400923 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800924 if (result)
925 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800926
Zhang Ruid32f6942009-03-18 16:27:12 +0800927 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
928 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100929 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800930 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100931
932out_free_levels:
933 kfree(br->levels);
934out_free:
935 kfree(br);
936out:
937 device->brightness = NULL;
938 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800939 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100940}
941
942/*
943 * Arg:
944 * device : video output device (LCD, CRT, ..)
945 *
946 * Return Value:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 * None
948 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100949 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 * device.
951 */
952
Len Brown4be44fc2005-08-05 00:44:28 -0400953static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 acpi_handle h_dummy1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Patrick Mochel90130262006-05-19 16:54:48 -0400957 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_ADR", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 device->cap._ADR = 1;
959 }
Patrick Mochel90130262006-05-19 16:54:48 -0400960 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCL", &h_dummy1))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400961 device->cap._BCL = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
Patrick Mochel90130262006-05-19 16:54:48 -0400963 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCM", &h_dummy1))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400964 device->cap._BCM = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Yu Luming2f3d0002006-11-11 02:40:34 +0800966 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle,"_BQC",&h_dummy1)))
967 device->cap._BQC = 1;
Zhang Ruic60d6382009-03-18 16:27:18 +0800968 else if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCQ",
969 &h_dummy1))) {
970 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
971 device->cap._BCQ = 1;
972 }
973
Patrick Mochel90130262006-05-19 16:54:48 -0400974 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DDC", &h_dummy1))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400975 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Patrick Mochel90130262006-05-19 16:54:48 -0400977 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DCS", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 device->cap._DCS = 1;
979 }
Patrick Mochel90130262006-05-19 16:54:48 -0400980 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DGS", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 device->cap._DGS = 1;
982 }
Patrick Mochel90130262006-05-19 16:54:48 -0400983 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DSS", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 device->cap._DSS = 1;
985 }
986
Zhang Rui1a7c6182009-03-18 16:27:16 +0800987 if (acpi_video_backlight_support()) {
Zhang Rui702ed512008-01-17 15:51:22 +0800988 int result;
Yu Luming2f3d0002006-11-11 02:40:34 +0800989 static int count = 0;
990 char *name;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800991
992 result = acpi_video_init_brightness(device);
993 if (result)
994 return;
Yu Luming2f3d0002006-11-11 02:40:34 +0800995 name = kzalloc(MAX_NAME_LEN, GFP_KERNEL);
996 if (!name)
997 return;
998
Yu Luming2f3d0002006-11-11 02:40:34 +0800999 sprintf(name, "acpi_video%d", count++);
Yu Luming2f3d0002006-11-11 02:40:34 +08001000 device->backlight = backlight_device_register(name,
Richard Purdie599a52d2007-02-10 23:07:48 +00001001 NULL, device, &acpi_backlight_ops);
Matthew Garrett38531e62007-12-26 02:03:26 +00001002 device->backlight->props.max_brightness = device->brightness->count-3;
Yu Luming2f3d0002006-11-11 02:40:34 +08001003 kfree(name);
Zhang Rui702ed512008-01-17 15:51:22 +08001004
Zhang Rui056c3082009-06-22 11:31:14 +08001005 result = sysfs_create_link(&device->backlight->dev.kobj,
1006 &device->dev->dev.kobj, "device");
1007 if (result)
1008 printk(KERN_ERR PREFIX "Create sysfs link\n");
1009
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001010 device->cooling_dev = thermal_cooling_device_register("LCD",
Zhang Rui702ed512008-01-17 15:51:22 +08001011 device->dev, &video_cooling_ops);
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001012 if (IS_ERR(device->cooling_dev)) {
Dmitry Torokhov4b4fe3b2009-08-08 00:26:25 -07001013 /*
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001014 * Set cooling_dev to NULL so we don't crash trying to
Dmitry Torokhov4b4fe3b2009-08-08 00:26:25 -07001015 * free it.
1016 * Also, why the hell we are returning early and
1017 * not attempt to register video output if cooling
1018 * device registration failed?
1019 * -- dtor
1020 */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001021 device->cooling_dev = NULL;
Thomas Sujith43ff39f2008-02-15 18:29:18 -05001022 return;
Dmitry Torokhov4b4fe3b2009-08-08 00:26:25 -07001023 }
Thomas Sujith43ff39f2008-02-15 18:29:18 -05001024
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +02001025 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001026 device->cooling_dev->id);
Julia Lawall90300622008-04-11 10:09:24 +08001027 result = sysfs_create_link(&device->dev->dev.kobj,
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001028 &device->cooling_dev->device.kobj,
Julia Lawall90300622008-04-11 10:09:24 +08001029 "thermal_cooling");
1030 if (result)
1031 printk(KERN_ERR PREFIX "Create sysfs link\n");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001032 result = sysfs_create_link(&device->cooling_dev->device.kobj,
Julia Lawall90300622008-04-11 10:09:24 +08001033 &device->dev->dev.kobj, "device");
1034 if (result)
1035 printk(KERN_ERR PREFIX "Create sysfs link\n");
1036
Yu Luming2f3d0002006-11-11 02:40:34 +08001037 }
Thomas Renningerc3d6de62008-08-01 17:37:55 +02001038
1039 if (acpi_video_display_switch_support()) {
1040
1041 if (device->cap._DCS && device->cap._DSS) {
1042 static int count;
1043 char *name;
1044 name = kzalloc(MAX_NAME_LEN, GFP_KERNEL);
1045 if (!name)
1046 return;
1047 sprintf(name, "acpi_video%d", count++);
1048 device->output_dev = video_output_register(name,
1049 NULL, device, &acpi_output_properties);
1050 kfree(name);
1051 }
Luming Yu23b0f012007-05-09 21:07:05 +08001052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
1055/*
1056 * Arg:
1057 * device : video output device (VGA)
1058 *
1059 * Return Value:
1060 * None
1061 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001062 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
1064
Len Brown4be44fc2005-08-05 00:44:28 -04001065static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Len Brown4be44fc2005-08-05 00:44:28 -04001067 acpi_handle h_dummy1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Patrick Mochel90130262006-05-19 16:54:48 -04001069 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOS", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 video->cap._DOS = 1;
1071 }
Patrick Mochel90130262006-05-19 16:54:48 -04001072 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 video->cap._DOD = 1;
1074 }
Patrick Mochel90130262006-05-19 16:54:48 -04001075 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_ROM", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 video->cap._ROM = 1;
1077 }
Patrick Mochel90130262006-05-19 16:54:48 -04001078 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_GPD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 video->cap._GPD = 1;
1080 }
Patrick Mochel90130262006-05-19 16:54:48 -04001081 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_SPD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 video->cap._SPD = 1;
1083 }
Patrick Mochel90130262006-05-19 16:54:48 -04001084 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_VPO", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 video->cap._VPO = 1;
1086 }
1087}
1088
1089/*
1090 * Check whether the video bus device has required AML method to
1091 * support the desired features
1092 */
1093
Len Brown4be44fc2005-08-05 00:44:28 -04001094static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Len Brown4be44fc2005-08-05 00:44:28 -04001096 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001097 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001100 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001102 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001103 if (!dev)
1104 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001105 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /* Since there is no HID, CID and so on for VGA driver, we have
1108 * to check well known required nodes.
1109 */
1110
Julius Volz98fb8fe2007-02-20 16:38:40 +01001111 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001112 if (video->cap._DOS || video->cap._DOD) {
1113 if (!video->cap._DOS) {
1114 printk(KERN_WARNING FW_BUG
1115 "ACPI(%s) defines _DOD but not _DOS\n",
1116 acpi_device_bid(video->device));
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 video->flags.multihead = 1;
1119 status = 0;
1120 }
1121
Julius Volz98fb8fe2007-02-20 16:38:40 +01001122 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001123 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 video->flags.rom = 1;
1125 status = 0;
1126 }
1127
Julius Volz98fb8fe2007-02-20 16:38:40 +01001128 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001129 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 video->flags.post = 1;
1131 status = 0;
1132 }
1133
Patrick Mocheld550d982006-06-27 00:41:40 -04001134 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
1137/* --------------------------------------------------------------------------
1138 FS Interface (/proc)
1139 -------------------------------------------------------------------------- */
1140
Len Brown4be44fc2005-08-05 00:44:28 -04001141static struct proc_dir_entry *acpi_video_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143/* video devices */
1144
Len Brown4be44fc2005-08-05 00:44:28 -04001145static int acpi_video_device_info_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001147 struct acpi_video_device *dev = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 if (!dev)
1151 goto end;
1152
1153 seq_printf(seq, "device_id: 0x%04x\n", (u32) dev->device_id);
1154 seq_printf(seq, "type: ");
1155 if (dev->flags.crt)
1156 seq_printf(seq, "CRT\n");
1157 else if (dev->flags.lcd)
1158 seq_printf(seq, "LCD\n");
1159 else if (dev->flags.tvout)
1160 seq_printf(seq, "TVOUT\n");
Rui Zhang82cae992007-01-03 23:40:53 -05001161 else if (dev->flags.dvi)
1162 seq_printf(seq, "DVI\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 else
1164 seq_printf(seq, "UNKNOWN\n");
1165
Len Brown4be44fc2005-08-05 00:44:28 -04001166 seq_printf(seq, "known by bios: %s\n", dev->flags.bios ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Len Brown4be44fc2005-08-05 00:44:28 -04001168 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001169 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
1172static int
Len Brown4be44fc2005-08-05 00:44:28 -04001173acpi_video_device_info_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
1175 return single_open(file, acpi_video_device_info_seq_show,
1176 PDE(inode)->data);
1177}
1178
Len Brown4be44fc2005-08-05 00:44:28 -04001179static int acpi_video_device_state_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Len Brown4be44fc2005-08-05 00:44:28 -04001181 int status;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001182 struct acpi_video_device *dev = seq->private;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001183 unsigned long long state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 if (!dev)
1187 goto end;
1188
1189 status = acpi_video_device_get_state(dev, &state);
1190 seq_printf(seq, "state: ");
1191 if (ACPI_SUCCESS(status))
Matthew Wilcox27663c52008-10-10 02:22:59 -04001192 seq_printf(seq, "0x%02llx\n", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 else
1194 seq_printf(seq, "<not supported>\n");
1195
1196 status = acpi_video_device_query(dev, &state);
1197 seq_printf(seq, "query: ");
1198 if (ACPI_SUCCESS(status))
Matthew Wilcox27663c52008-10-10 02:22:59 -04001199 seq_printf(seq, "0x%02llx\n", state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 else
1201 seq_printf(seq, "<not supported>\n");
1202
Len Brown4be44fc2005-08-05 00:44:28 -04001203 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207static int
Len Brown4be44fc2005-08-05 00:44:28 -04001208acpi_video_device_state_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
1210 return single_open(file, acpi_video_device_state_seq_show,
1211 PDE(inode)->data);
1212}
1213
1214static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001215acpi_video_device_write_state(struct file *file,
1216 const char __user * buffer,
1217 size_t count, loff_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Len Brown4be44fc2005-08-05 00:44:28 -04001219 int status;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001220 struct seq_file *m = file->private_data;
1221 struct acpi_video_device *dev = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001222 char str[12] = { 0 };
1223 u32 state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Arjan van de Ven52a2b112009-10-01 15:48:40 -07001226 if (!dev || count >= sizeof(str))
Patrick Mocheld550d982006-06-27 00:41:40 -04001227 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (copy_from_user(str, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001230 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 str[count] = 0;
1233 state = simple_strtoul(str, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001234 state &= ((1ul << 31) | (1ul << 30) | (1ul << 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 status = acpi_video_device_set_state(dev, state);
1237
1238 if (status)
Patrick Mocheld550d982006-06-27 00:41:40 -04001239 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Patrick Mocheld550d982006-06-27 00:41:40 -04001241 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244static int
Len Brown4be44fc2005-08-05 00:44:28 -04001245acpi_video_device_brightness_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001247 struct acpi_video_device *dev = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001248 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 if (!dev || !dev->brightness) {
1252 seq_printf(seq, "<not supported>\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255
1256 seq_printf(seq, "levels: ");
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001257 for (i = 2; i < dev->brightness->count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 seq_printf(seq, " %d", dev->brightness->levels[i]);
1259 seq_printf(seq, "\ncurrent: %d\n", dev->brightness->curr);
1260
Patrick Mocheld550d982006-06-27 00:41:40 -04001261 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
1264static int
Len Brown4be44fc2005-08-05 00:44:28 -04001265acpi_video_device_brightness_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
1267 return single_open(file, acpi_video_device_brightness_seq_show,
1268 PDE(inode)->data);
1269}
1270
1271static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001272acpi_video_device_write_brightness(struct file *file,
1273 const char __user * buffer,
1274 size_t count, loff_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001276 struct seq_file *m = file->private_data;
1277 struct acpi_video_device *dev = m->private;
Danny Baumannc88c5782007-11-02 13:47:53 +01001278 char str[5] = { 0 };
Len Brown4be44fc2005-08-05 00:44:28 -04001279 unsigned int level = 0;
1280 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Arjan van de Ven52a2b112009-10-01 15:48:40 -07001283 if (!dev || !dev->brightness || count >= sizeof(str))
Patrick Mocheld550d982006-06-27 00:41:40 -04001284 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 if (copy_from_user(str, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001287 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 str[count] = 0;
1290 level = simple_strtoul(str, NULL, 0);
Len Brown4be44fc2005-08-05 00:44:28 -04001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (level > 100)
Patrick Mocheld550d982006-06-27 00:41:40 -04001293 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Julius Volz98fb8fe2007-02-20 16:38:40 +01001295 /* validate through the list of available levels */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001296 for (i = 2; i < dev->brightness->count; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (level == dev->brightness->levels[i]) {
Zhang Rui24450c72009-03-18 16:27:10 +08001298 if (!acpi_video_device_lcd_set_level(dev, level))
1299 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 break;
1301 }
1302
Zhang Rui24450c72009-03-18 16:27:10 +08001303 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Len Brown4be44fc2005-08-05 00:44:28 -04001306static int acpi_video_device_EDID_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001308 struct acpi_video_device *dev = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001309 int status;
1310 int i;
1311 union acpi_object *edid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 if (!dev)
1315 goto out;
1316
Len Brown4be44fc2005-08-05 00:44:28 -04001317 status = acpi_video_device_EDID(dev, &edid, 128);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001319 status = acpi_video_device_EDID(dev, &edid, 256);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
1322 if (ACPI_FAILURE(status)) {
1323 goto out;
1324 }
1325
1326 if (edid && edid->type == ACPI_TYPE_BUFFER) {
1327 for (i = 0; i < edid->buffer.length; i++)
1328 seq_putc(seq, edid->buffer.pointer[i]);
1329 }
1330
Len Brown4be44fc2005-08-05 00:44:28 -04001331 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (!edid)
1333 seq_printf(seq, "<not supported>\n");
1334 else
1335 kfree(edid);
1336
Patrick Mocheld550d982006-06-27 00:41:40 -04001337 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340static int
Len Brown4be44fc2005-08-05 00:44:28 -04001341acpi_video_device_EDID_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
1343 return single_open(file, acpi_video_device_EDID_seq_show,
1344 PDE(inode)->data);
1345}
1346
Len Brown4be44fc2005-08-05 00:44:28 -04001347static int acpi_video_device_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001349 struct proc_dir_entry *entry, *device_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 struct acpi_video_device *vid_dev;
1351
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001352 vid_dev = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (!vid_dev)
Patrick Mocheld550d982006-06-27 00:41:40 -04001354 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001356 device_dir = proc_mkdir(acpi_device_bid(device),
1357 vid_dev->video->dir);
1358 if (!device_dir)
1359 return -ENOMEM;
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /* 'info' [R] */
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001362 entry = proc_create_data("info", S_IRUGO, device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001363 &acpi_video_device_info_fops, acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001365 goto err_remove_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /* 'state' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001368 entry = proc_create_data("state", S_IFREG | S_IRUGO | S_IWUSR,
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001369 device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001370 &acpi_video_device_state_fops,
1371 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001373 goto err_remove_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 /* 'brightness' [R/W] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001376 entry = proc_create_data("brightness", S_IFREG | S_IRUGO | S_IWUSR,
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001377 device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001378 &acpi_video_device_brightness_fops,
1379 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001381 goto err_remove_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /* 'EDID' [R] */
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001384 entry = proc_create_data("EDID", S_IRUGO, device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001385 &acpi_video_device_EDID_fops,
1386 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001388 goto err_remove_brightness;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001390 acpi_device_dir(device) = device_dir;
1391
Patrick Mocheld550d982006-06-27 00:41:40 -04001392 return 0;
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001393
1394 err_remove_brightness:
1395 remove_proc_entry("brightness", device_dir);
1396 err_remove_state:
1397 remove_proc_entry("state", device_dir);
1398 err_remove_info:
1399 remove_proc_entry("info", device_dir);
1400 err_remove_dir:
1401 remove_proc_entry(acpi_device_bid(device), vid_dev->video->dir);
1402 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Len Brown4be44fc2005-08-05 00:44:28 -04001405static int acpi_video_device_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 struct acpi_video_device *vid_dev;
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001408 struct proc_dir_entry *device_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001410 vid_dev = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (!vid_dev || !vid_dev->video || !vid_dev->video->dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04001412 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001414 device_dir = acpi_device_dir(device);
1415 if (device_dir) {
1416 remove_proc_entry("info", device_dir);
1417 remove_proc_entry("state", device_dir);
1418 remove_proc_entry("brightness", device_dir);
1419 remove_proc_entry("EDID", device_dir);
Len Brown4be44fc2005-08-05 00:44:28 -04001420 remove_proc_entry(acpi_device_bid(device), vid_dev->video->dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 acpi_device_dir(device) = NULL;
1422 }
1423
Patrick Mocheld550d982006-06-27 00:41:40 -04001424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427/* video bus */
Len Brown4be44fc2005-08-05 00:44:28 -04001428static int acpi_video_bus_info_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001430 struct acpi_video_bus *video = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 if (!video)
1434 goto end;
1435
1436 seq_printf(seq, "Switching heads: %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001437 video->flags.multihead ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 seq_printf(seq, "Video ROM: %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001439 video->flags.rom ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 seq_printf(seq, "Device to be POSTed on boot: %s\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001441 video->flags.post ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Len Brown4be44fc2005-08-05 00:44:28 -04001443 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
Len Brown4be44fc2005-08-05 00:44:28 -04001447static int acpi_video_bus_info_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
Len Brown4be44fc2005-08-05 00:44:28 -04001449 return single_open(file, acpi_video_bus_info_seq_show,
1450 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Len Brown4be44fc2005-08-05 00:44:28 -04001453static int acpi_video_bus_ROM_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001455 struct acpi_video_bus *video = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 if (!video)
1459 goto end;
1460
Harvey Harrison96b2dd12008-03-05 18:24:51 -08001461 printk(KERN_INFO PREFIX "Please implement %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 seq_printf(seq, "<TODO>\n");
1463
Len Brown4be44fc2005-08-05 00:44:28 -04001464 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
Len Brown4be44fc2005-08-05 00:44:28 -04001468static int acpi_video_bus_ROM_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
1470 return single_open(file, acpi_video_bus_ROM_seq_show, PDE(inode)->data);
1471}
1472
Len Brown4be44fc2005-08-05 00:44:28 -04001473static int acpi_video_bus_POST_info_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001475 struct acpi_video_bus *video = seq->private;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001476 unsigned long long options;
Len Brown4be44fc2005-08-05 00:44:28 -04001477 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 if (!video)
1481 goto end;
1482
1483 status = acpi_video_bus_POST_options(video, &options);
1484 if (ACPI_SUCCESS(status)) {
1485 if (!(options & 1)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001486 printk(KERN_WARNING PREFIX
1487 "The motherboard VGA device is not listed as a possible POST device.\n");
1488 printk(KERN_WARNING PREFIX
Julius Volz98fb8fe2007-02-20 16:38:40 +01001489 "This indicates a BIOS bug. Please contact the manufacturer.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
Frank Seidel4d939152009-02-04 17:03:07 +01001491 printk(KERN_WARNING "%llx\n", options);
Julius Volz98fb8fe2007-02-20 16:38:40 +01001492 seq_printf(seq, "can POST: <integrated video>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (options & 2)
1494 seq_printf(seq, " <PCI video>");
1495 if (options & 4)
1496 seq_printf(seq, " <AGP video>");
1497 seq_putc(seq, '\n');
1498 } else
1499 seq_printf(seq, "<not supported>\n");
Len Brown4be44fc2005-08-05 00:44:28 -04001500 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502}
1503
1504static int
Len Brown4be44fc2005-08-05 00:44:28 -04001505acpi_video_bus_POST_info_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Len Brown4be44fc2005-08-05 00:44:28 -04001507 return single_open(file, acpi_video_bus_POST_info_seq_show,
1508 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Len Brown4be44fc2005-08-05 00:44:28 -04001511static int acpi_video_bus_POST_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001513 struct acpi_video_bus *video = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001514 int status;
Matthew Wilcox27663c52008-10-10 02:22:59 -04001515 unsigned long long id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 if (!video)
1519 goto end;
1520
Len Brown4be44fc2005-08-05 00:44:28 -04001521 status = acpi_video_bus_get_POST(video, &id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (!ACPI_SUCCESS(status)) {
1523 seq_printf(seq, "<not supported>\n");
1524 goto end;
1525 }
Julius Volz98fb8fe2007-02-20 16:38:40 +01001526 seq_printf(seq, "device POSTed is <%s>\n", device_decode[id & 3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Len Brown4be44fc2005-08-05 00:44:28 -04001528 end:
Patrick Mocheld550d982006-06-27 00:41:40 -04001529 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530}
1531
Len Brown4be44fc2005-08-05 00:44:28 -04001532static int acpi_video_bus_DOS_seq_show(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001534 struct acpi_video_bus *video = seq->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Len Brown4be44fc2005-08-05 00:44:28 -04001537 seq_printf(seq, "DOS setting: <%d>\n", video->dos_setting);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Patrick Mocheld550d982006-06-27 00:41:40 -04001539 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Len Brown4be44fc2005-08-05 00:44:28 -04001542static int acpi_video_bus_POST_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
Len Brown4be44fc2005-08-05 00:44:28 -04001544 return single_open(file, acpi_video_bus_POST_seq_show,
1545 PDE(inode)->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Len Brown4be44fc2005-08-05 00:44:28 -04001548static int acpi_video_bus_DOS_open_fs(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 return single_open(file, acpi_video_bus_DOS_seq_show, PDE(inode)->data);
1551}
1552
1553static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001554acpi_video_bus_write_POST(struct file *file,
1555 const char __user * buffer,
1556 size_t count, loff_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Len Brown4be44fc2005-08-05 00:44:28 -04001558 int status;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001559 struct seq_file *m = file->private_data;
1560 struct acpi_video_bus *video = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001561 char str[12] = { 0 };
Matthew Wilcox27663c52008-10-10 02:22:59 -04001562 unsigned long long opt, options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Arjan van de Ven52a2b112009-10-01 15:48:40 -07001565 if (!video || count >= sizeof(str))
Patrick Mocheld550d982006-06-27 00:41:40 -04001566 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 status = acpi_video_bus_POST_options(video, &options);
1569 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -04001570 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 if (copy_from_user(str, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001573 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 str[count] = 0;
1576 opt = strtoul(str, NULL, 0);
1577 if (opt > 3)
Patrick Mocheld550d982006-06-27 00:41:40 -04001578 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Julius Volz98fb8fe2007-02-20 16:38:40 +01001580 /* just in case an OEM 'forgot' the motherboard... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 options |= 1;
1582
1583 if (options & (1ul << opt)) {
Len Brown4be44fc2005-08-05 00:44:28 -04001584 status = acpi_video_bus_set_POST(video, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -04001586 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 }
1589
Patrick Mocheld550d982006-06-27 00:41:40 -04001590 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -04001594acpi_video_bus_write_DOS(struct file *file,
1595 const char __user * buffer,
1596 size_t count, loff_t * data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
Len Brown4be44fc2005-08-05 00:44:28 -04001598 int status;
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001599 struct seq_file *m = file->private_data;
1600 struct acpi_video_bus *video = m->private;
Len Brown4be44fc2005-08-05 00:44:28 -04001601 char str[12] = { 0 };
1602 unsigned long opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Arjan van de Ven52a2b112009-10-01 15:48:40 -07001605 if (!video || count >= sizeof(str))
Patrick Mocheld550d982006-06-27 00:41:40 -04001606 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 if (copy_from_user(str, buffer, count))
Patrick Mocheld550d982006-06-27 00:41:40 -04001609 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 str[count] = 0;
1612 opt = strtoul(str, NULL, 0);
1613 if (opt > 7)
Patrick Mocheld550d982006-06-27 00:41:40 -04001614 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Len Brown4be44fc2005-08-05 00:44:28 -04001616 status = acpi_video_bus_DOS(video, opt & 0x3, (opt & 0x4) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
1618 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -04001619 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Patrick Mocheld550d982006-06-27 00:41:40 -04001621 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
1623
Len Brown4be44fc2005-08-05 00:44:28 -04001624static int acpi_video_bus_add_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001626 struct acpi_video_bus *video = acpi_driver_data(device);
1627 struct proc_dir_entry *device_dir;
1628 struct proc_dir_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001630 device_dir = proc_mkdir(acpi_device_bid(device), acpi_video_dir);
1631 if (!device_dir)
1632 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /* 'info' [R] */
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001635 entry = proc_create_data("info", S_IRUGO, device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001636 &acpi_video_bus_info_fops,
1637 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001639 goto err_remove_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 /* 'ROM' [R] */
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001642 entry = proc_create_data("ROM", S_IRUGO, device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001643 &acpi_video_bus_ROM_fops,
1644 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001646 goto err_remove_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /* 'POST_info' [R] */
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001649 entry = proc_create_data("POST_info", S_IRUGO, device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001650 &acpi_video_bus_POST_info_fops,
1651 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001653 goto err_remove_rom;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 /* 'POST' [R/W] */
Linus Torvalds08acd4f82008-04-30 11:52:52 -07001656 entry = proc_create_data("POST", S_IFREG | S_IRUGO | S_IWUSR,
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001657 device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001658 &acpi_video_bus_POST_fops,
1659 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001661 goto err_remove_post_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 /* 'DOS' [R/W] */
Linus Torvalds08acd4f82008-04-30 11:52:52 -07001664 entry = proc_create_data("DOS", S_IFREG | S_IRUGO | S_IWUSR,
Alexey Dobriyane0066c4e2008-05-01 04:10:02 +04001665 device_dir,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -07001666 &acpi_video_bus_DOS_fops,
1667 acpi_driver_data(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (!entry)
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001669 goto err_remove_post;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001671 video->dir = acpi_device_dir(device) = device_dir;
Patrick Mocheld550d982006-06-27 00:41:40 -04001672 return 0;
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001673
1674 err_remove_post:
1675 remove_proc_entry("POST", device_dir);
1676 err_remove_post_info:
1677 remove_proc_entry("POST_info", device_dir);
1678 err_remove_rom:
1679 remove_proc_entry("ROM", device_dir);
1680 err_remove_info:
1681 remove_proc_entry("info", device_dir);
1682 err_remove_dir:
1683 remove_proc_entry(acpi_device_bid(device), acpi_video_dir);
1684 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
Len Brown4be44fc2005-08-05 00:44:28 -04001687static int acpi_video_bus_remove_fs(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001689 struct proc_dir_entry *device_dir = acpi_device_dir(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Dmitry Torokhov251cb0b2007-11-05 11:43:34 -05001691 if (device_dir) {
1692 remove_proc_entry("info", device_dir);
1693 remove_proc_entry("ROM", device_dir);
1694 remove_proc_entry("POST_info", device_dir);
1695 remove_proc_entry("POST", device_dir);
1696 remove_proc_entry("DOS", device_dir);
Len Brown4be44fc2005-08-05 00:44:28 -04001697 remove_proc_entry(acpi_device_bid(device), acpi_video_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 acpi_device_dir(device) = NULL;
1699 }
1700
Patrick Mocheld550d982006-06-27 00:41:40 -04001701 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702}
1703
1704/* --------------------------------------------------------------------------
1705 Driver Interface
1706 -------------------------------------------------------------------------- */
1707
1708/* device interface */
Rui Zhang82cae992007-01-03 23:40:53 -05001709static struct acpi_video_device_attrib*
1710acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1711{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001712 struct acpi_video_enumerated_device *ids;
1713 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001714
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001715 for (i = 0; i < video->attached_count; i++) {
1716 ids = &video->attached_array[i];
1717 if ((ids->value.int_val & 0xffff) == device_id)
1718 return &ids->value.attrib;
1719 }
1720
Rui Zhang82cae992007-01-03 23:40:53 -05001721 return NULL;
1722}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724static int
Len Brown4be44fc2005-08-05 00:44:28 -04001725acpi_video_bus_get_one_device(struct acpi_device *device,
1726 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001728 unsigned long long device_id;
Yu, Luming973bf492006-04-27 05:25:00 -04001729 int status;
Len Brown4be44fc2005-08-05 00:44:28 -04001730 struct acpi_video_device *data;
Rui Zhang82cae992007-01-03 23:40:53 -05001731 struct acpi_video_device_attrib* attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 if (!device || !video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001734 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Len Brown4be44fc2005-08-05 00:44:28 -04001736 status =
1737 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (ACPI_SUCCESS(status)) {
1739
Burman Yan36bcbec2006-12-19 12:56:11 -08001740 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (!data)
Patrick Mocheld550d982006-06-27 00:41:40 -04001742 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1745 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001746 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 data->device_id = device_id;
1749 data->video = video;
1750 data->dev = device;
1751
Rui Zhang82cae992007-01-03 23:40:53 -05001752 attribute = acpi_video_get_device_attr(video, device_id);
1753
1754 if((attribute != NULL) && attribute->device_id_scheme) {
1755 switch (attribute->display_type) {
1756 case ACPI_VIDEO_DISPLAY_CRT:
1757 data->flags.crt = 1;
1758 break;
1759 case ACPI_VIDEO_DISPLAY_TV:
1760 data->flags.tvout = 1;
1761 break;
1762 case ACPI_VIDEO_DISPLAY_DVI:
1763 data->flags.dvi = 1;
1764 break;
1765 case ACPI_VIDEO_DISPLAY_LCD:
1766 data->flags.lcd = 1;
1767 break;
1768 default:
1769 data->flags.unknown = 1;
1770 break;
1771 }
1772 if(attribute->bios_can_detect)
1773 data->flags.bios = 1;
1774 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 data->flags.unknown = 1;
Len Brown4be44fc2005-08-05 00:44:28 -04001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 acpi_video_device_bind(video, data);
1778 acpi_video_device_find_cap(data);
1779
Patrick Mochel90130262006-05-19 16:54:48 -04001780 status = acpi_install_notify_handler(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04001781 ACPI_DEVICE_NOTIFY,
1782 acpi_video_device_notify,
1783 data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (ACPI_FAILURE(status)) {
Lin Ming55ac9a02008-09-28 14:51:56 +08001785 printk(KERN_ERR PREFIX
1786 "Error installing notify handler\n");
Yu, Luming973bf492006-04-27 05:25:00 -04001787 if(data->brightness)
1788 kfree(data->brightness->levels);
1789 kfree(data->brightness);
1790 kfree(data);
1791 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
1793
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001794 mutex_lock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 list_add_tail(&data->entry, &video->video_device_list);
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001796 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 acpi_video_device_add_fs(device);
1799
Patrick Mocheld550d982006-06-27 00:41:40 -04001800 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802
Patrick Mocheld550d982006-06-27 00:41:40 -04001803 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
1806/*
1807 * Arg:
1808 * video : video bus device
1809 *
1810 * Return:
1811 * none
1812 *
1813 * Enumerate the video device list of the video bus,
1814 * bind the ids with the corresponding video devices
1815 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001816 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Len Brown4be44fc2005-08-05 00:44:28 -04001818static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001820 struct acpi_video_device *dev;
1821
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001822 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001823
1824 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001825 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001826
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001827 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828}
1829
1830/*
1831 * Arg:
1832 * video : video bus device
1833 * device : video output device under the video
1834 * bus
1835 *
1836 * Return:
1837 * none
1838 *
1839 * Bind the ids with the corresponding video devices
1840 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001841 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843static void
Len Brown4be44fc2005-08-05 00:44:28 -04001844acpi_video_device_bind(struct acpi_video_bus *video,
1845 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001847 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001848 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001850 for (i = 0; i < video->attached_count; i++) {
1851 ids = &video->attached_array[i];
1852 if (device->device_id == (ids->value.int_val & 0xffff)) {
1853 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1855 }
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
1859/*
1860 * Arg:
1861 * video : video bus device
1862 *
1863 * Return:
1864 * < 0 : error
1865 *
1866 * Call _DOD to enumerate all devices attached to display adapter
1867 *
Len Brown4be44fc2005-08-05 00:44:28 -04001868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1871{
Len Brown4be44fc2005-08-05 00:44:28 -04001872 int status;
1873 int count;
1874 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001875 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001876 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1877 union acpi_object *dod = NULL;
1878 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Patrick Mochel90130262006-05-19 16:54:48 -04001880 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001882 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001883 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001886 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001888 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 status = -EFAULT;
1890 goto out;
1891 }
1892
1893 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001894 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001896 active_list = kcalloc(1 + dod->package.count,
1897 sizeof(struct acpi_video_enumerated_device),
1898 GFP_KERNEL);
1899 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 status = -ENOMEM;
1901 goto out;
1902 }
1903
1904 count = 0;
1905 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001906 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001909 printk(KERN_ERR PREFIX
1910 "Invalid _DOD data in element %d\n", i);
1911 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001913
1914 active_list[count].value.int_val = obj->integer.value;
1915 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001916 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1917 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 count++;
1919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Jesper Juhl6044ec82005-11-07 01:01:32 -08001921 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001922
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001923 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001925
1926 out:
Len Brown02438d82006-06-30 03:19:10 -04001927 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001928 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Len Brown4be44fc2005-08-05 00:44:28 -04001931static int
1932acpi_video_get_next_level(struct acpi_video_device *device,
1933 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001935 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001936 max = max_below = 0;
1937 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001938 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001939 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001940 l = device->brightness->levels[i];
1941 if (abs(l - level_current) < abs(delta)) {
1942 delta = l - level_current;
1943 if (!delta)
1944 break;
1945 }
1946 }
1947 /* Ajust level_current to closest available level */
1948 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001949 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001950 l = device->brightness->levels[i];
1951 if (l < min)
1952 min = l;
1953 if (l > max)
1954 max = l;
1955 if (l < min_above && l > level_current)
1956 min_above = l;
1957 if (l > max_below && l < level_current)
1958 max_below = l;
1959 }
1960
1961 switch (event) {
1962 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1963 return (level_current < max) ? min_above : min;
1964 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1965 return (level_current < max) ? min_above : max;
1966 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1967 return (level_current > min) ? max_below : min;
1968 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1969 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1970 return 0;
1971 default:
1972 return level_current;
1973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974}
1975
Zhang Ruic8890f92009-03-18 16:27:08 +08001976static int
Len Brown4be44fc2005-08-05 00:44:28 -04001977acpi_video_switch_brightness(struct acpi_video_device *device, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001979 unsigned long long level_current, level_next;
Zhang Ruic8890f92009-03-18 16:27:08 +08001980 int result = -EINVAL;
1981
Zhang Rui28c32e92009-07-13 10:33:24 +08001982 /* no warning message if acpi_backlight=vendor is used */
1983 if (!acpi_video_backlight_support())
1984 return 0;
1985
Julia Jomantaite469778c2008-06-23 22:50:42 +01001986 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001987 goto out;
1988
1989 result = acpi_video_device_lcd_get_level_current(device,
1990 &level_current);
1991 if (result)
1992 goto out;
1993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001995
Zhang Rui24450c72009-03-18 16:27:10 +08001996 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001997
Matthew Garrett36342742009-07-14 17:06:03 +01001998 if (!result)
1999 backlight_force_update(device->backlight,
2000 BACKLIGHT_UPDATE_HOTKEY);
2001
Zhang Ruic8890f92009-03-18 16:27:08 +08002002out:
2003 if (result)
2004 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
2005
2006 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
2009static int
Len Brown4be44fc2005-08-05 00:44:28 -04002010acpi_video_bus_get_devices(struct acpi_video_bus *video,
2011 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
Len Brown4be44fc2005-08-05 00:44:28 -04002013 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002014 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 acpi_video_device_enumerate(video);
2017
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002018 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 status = acpi_video_bus_get_one_device(dev, video);
2021 if (ACPI_FAILURE(status)) {
Lin Ming55ac9a02008-09-28 14:51:56 +08002022 printk(KERN_WARNING PREFIX
2023 "Cant attach device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 continue;
2025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
Patrick Mocheld550d982006-06-27 00:41:40 -04002027 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
Len Brown4be44fc2005-08-05 00:44:28 -04002030static int acpi_video_bus_put_one_device(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Karol Kozimor031ec772005-07-30 04:18:00 -04002032 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 struct acpi_video_bus *video;
2034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 if (!device || !device->video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002037 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 video = device->video;
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 acpi_video_device_remove_fs(device->dev);
2042
Patrick Mochel90130262006-05-19 16:54:48 -04002043 status = acpi_remove_notify_handler(device->dev->handle,
Len Brown4be44fc2005-08-05 00:44:28 -04002044 ACPI_DEVICE_NOTIFY,
2045 acpi_video_device_notify);
Keith Packarde29b3ee2009-08-06 15:57:54 -07002046 if (device->backlight) {
2047 sysfs_remove_link(&device->backlight->dev.kobj, "device");
2048 backlight_device_unregister(device->backlight);
2049 device->backlight = NULL;
2050 }
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04002051 if (device->cooling_dev) {
Zhang Rui702ed512008-01-17 15:51:22 +08002052 sysfs_remove_link(&device->dev->dev.kobj,
2053 "thermal_cooling");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04002054 sysfs_remove_link(&device->cooling_dev->device.kobj,
Zhang Rui702ed512008-01-17 15:51:22 +08002055 "device");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04002056 thermal_cooling_device_unregister(device->cooling_dev);
2057 device->cooling_dev = NULL;
Zhang Rui702ed512008-01-17 15:51:22 +08002058 }
Luming Yu23b0f012007-05-09 21:07:05 +08002059 video_output_unregister(device->output_dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002060
Patrick Mocheld550d982006-06-27 00:41:40 -04002061 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Len Brown4be44fc2005-08-05 00:44:28 -04002064static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
Len Brown4be44fc2005-08-05 00:44:28 -04002066 int status;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002067 struct acpi_video_device *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002069 mutex_lock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002071 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002073 status = acpi_video_bus_put_one_device(dev);
Len Brown4be44fc2005-08-05 00:44:28 -04002074 if (ACPI_FAILURE(status))
2075 printk(KERN_WARNING PREFIX
2076 "hhuuhhuu bug in acpi video driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002078 if (dev->brightness) {
2079 kfree(dev->brightness->levels);
2080 kfree(dev->brightness);
2081 }
2082 list_del(&dev->entry);
2083 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002086 mutex_unlock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05002087
Patrick Mocheld550d982006-06-27 00:41:40 -04002088 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089}
2090
2091/* acpi_video interface */
2092
Len Brown4be44fc2005-08-05 00:44:28 -04002093static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Zhang Ruia21101c2007-09-14 11:46:22 +08002095 return acpi_video_bus_DOS(video, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Len Brown4be44fc2005-08-05 00:44:28 -04002098static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
2100 return acpi_video_bus_DOS(video, 0, 1);
2101}
2102
Bjorn Helgaas70155582009-04-07 15:37:11 +00002103static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
Bjorn Helgaas70155582009-04-07 15:37:11 +00002105 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08002106 struct input_dev *input;
2107 int keycode;
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002110 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Luming Yue9dab192007-08-20 18:23:53 +08002112 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01002115 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 * most likely via hotkey. */
Len Brown14e04fb2007-08-23 15:20:26 -04002117 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002118 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 break;
2120
Julius Volz98fb8fe2007-02-20 16:38:40 +01002121 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 * connector. */
2123 acpi_video_device_enumerate(video);
2124 acpi_video_device_rebind(video);
Len Brown14e04fb2007-08-23 15:20:26 -04002125 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002126 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 break;
2128
Len Brown4be44fc2005-08-05 00:44:28 -04002129 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Len Brown25c87f72007-08-25 01:44:01 -04002130 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002131 keycode = KEY_SWITCHVIDEOMODE;
2132 break;
Len Brown4be44fc2005-08-05 00:44:28 -04002133 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Len Brown25c87f72007-08-25 01:44:01 -04002134 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002135 keycode = KEY_VIDEO_NEXT;
2136 break;
Len Brown4be44fc2005-08-05 00:44:28 -04002137 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Len Brown14e04fb2007-08-23 15:20:26 -04002138 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002139 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 break;
2141
2142 default:
Luming Yue9dab192007-08-20 18:23:53 +08002143 keycode = KEY_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04002145 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 break;
2147 }
2148
Zhang Rui7761f632008-01-25 14:48:12 +08002149 acpi_notifier_call_chain(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002150 input_report_key(input, keycode, 1);
2151 input_sync(input);
2152 input_report_key(input, keycode, 0);
2153 input_sync(input);
2154
Patrick Mocheld550d982006-06-27 00:41:40 -04002155 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
Len Brown4be44fc2005-08-05 00:44:28 -04002158static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002160 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04002161 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08002162 struct acpi_video_bus *bus;
2163 struct input_dev *input;
2164 int keycode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04002167 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002169 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08002170 bus = video_device->video;
2171 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04002174 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08002175 if (brightness_switch_enabled)
2176 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04002177 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002178 keycode = KEY_BRIGHTNESS_CYCLE;
2179 break;
Len Brown4be44fc2005-08-05 00:44:28 -04002180 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08002181 if (brightness_switch_enabled)
2182 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04002183 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002184 keycode = KEY_BRIGHTNESSUP;
2185 break;
Len Brown4be44fc2005-08-05 00:44:28 -04002186 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08002187 if (brightness_switch_enabled)
2188 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04002189 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002190 keycode = KEY_BRIGHTNESSDOWN;
2191 break;
Len Brown4be44fc2005-08-05 00:44:28 -04002192 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightnesss */
Zhang Rui8a681a42008-01-25 14:47:49 +08002193 if (brightness_switch_enabled)
2194 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04002195 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002196 keycode = KEY_BRIGHTNESS_ZERO;
2197 break;
Len Brown4be44fc2005-08-05 00:44:28 -04002198 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Zhang Rui8a681a42008-01-25 14:47:49 +08002199 if (brightness_switch_enabled)
2200 acpi_video_switch_brightness(video_device, event);
Len Brown14e04fb2007-08-23 15:20:26 -04002201 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002202 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 break;
2204 default:
Luming Yue9dab192007-08-20 18:23:53 +08002205 keycode = KEY_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04002207 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 break;
2209 }
Luming Yue9dab192007-08-20 18:23:53 +08002210
Zhang Rui7761f632008-01-25 14:48:12 +08002211 acpi_notifier_call_chain(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08002212 input_report_key(input, keycode, 1);
2213 input_sync(input);
2214 input_report_key(input, keycode, 0);
2215 input_sync(input);
2216
Patrick Mocheld550d982006-06-27 00:41:40 -04002217 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
Zhang Ruie6d9da12007-08-25 02:23:31 -04002220static int instance;
Matthew Garrett863c1492008-02-04 23:31:24 -08002221static int acpi_video_resume(struct acpi_device *device)
2222{
2223 struct acpi_video_bus *video;
2224 struct acpi_video_device *video_device;
2225 int i;
2226
2227 if (!device || !acpi_driver_data(device))
2228 return -EINVAL;
2229
2230 video = acpi_driver_data(device);
2231
2232 for (i = 0; i < video->attached_count; i++) {
2233 video_device = video->attached_array[i].bind_info;
2234 if (video_device && video_device->backlight)
2235 acpi_video_set_brightness(video_device->backlight);
2236 }
2237 return AE_OK;
2238}
2239
Len Brown4be44fc2005-08-05 00:44:28 -04002240static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002242 struct acpi_video_bus *video;
Luming Yue9dab192007-08-20 18:23:53 +08002243 struct input_dev *input;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002244 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Burman Yan36bcbec2006-12-19 12:56:11 -08002246 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002248 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Zhang Ruie6d9da12007-08-25 02:23:31 -04002250 /* a hack to fix the duplicate name "VID" problem on T61 */
2251 if (!strcmp(device->pnp.bus_id, "VID")) {
2252 if (instance)
2253 device->pnp.bus_id[3] = '0' + instance;
2254 instance ++;
2255 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05002256 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2257 if (!strcmp(device->pnp.bus_id, "VGA")) {
2258 if (instance)
2259 device->pnp.bus_id[3] = '0' + instance;
2260 instance++;
2261 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04002262
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002263 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2265 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002266 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002269 error = acpi_video_bus_check(video);
2270 if (error)
2271 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002273 error = acpi_video_bus_add_fs(device);
2274 if (error)
2275 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002277 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 INIT_LIST_HEAD(&video->video_device_list);
2279
2280 acpi_video_bus_get_devices(video, device);
2281 acpi_video_bus_start_devices(video);
2282
Luming Yue9dab192007-08-20 18:23:53 +08002283 video->input = input = input_allocate_device();
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002284 if (!input) {
2285 error = -ENOMEM;
Bjorn Helgaas70155582009-04-07 15:37:11 +00002286 goto err_stop_video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002287 }
Luming Yue9dab192007-08-20 18:23:53 +08002288
2289 snprintf(video->phys, sizeof(video->phys),
2290 "%s/video/input0", acpi_device_hid(video->device));
2291
2292 input->name = acpi_device_name(video->device);
2293 input->phys = video->phys;
2294 input->id.bustype = BUS_HOST;
2295 input->id.product = 0x06;
Dmitry Torokhov91c05c62007-11-05 11:43:29 -05002296 input->dev.parent = &device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08002297 input->evbit[0] = BIT(EV_KEY);
2298 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
2299 set_bit(KEY_VIDEO_NEXT, input->keybit);
2300 set_bit(KEY_VIDEO_PREV, input->keybit);
2301 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
2302 set_bit(KEY_BRIGHTNESSUP, input->keybit);
2303 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
2304 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
2305 set_bit(KEY_DISPLAY_OFF, input->keybit);
2306 set_bit(KEY_UNKNOWN, input->keybit);
Luming Yue9dab192007-08-20 18:23:53 +08002307
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002308 error = input_register_device(input);
2309 if (error)
2310 goto err_free_input_dev;
Luming Yue9dab192007-08-20 18:23:53 +08002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002313 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2314 video->flags.multihead ? "yes" : "no",
2315 video->flags.rom ? "yes" : "no",
2316 video->flags.post ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002320 err_free_input_dev:
2321 input_free_device(input);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002322 err_stop_video:
2323 acpi_video_bus_stop_devices(video);
2324 acpi_video_bus_put_devices(video);
2325 kfree(video->attached_array);
2326 acpi_video_bus_remove_fs(device);
2327 err_free_video:
2328 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002329 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002330
2331 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332}
2333
Len Brown4be44fc2005-08-05 00:44:28 -04002334static int acpi_video_bus_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335{
Len Brown4be44fc2005-08-05 00:44:28 -04002336 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002340 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002342 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 acpi_video_bus_stop_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 acpi_video_bus_put_devices(video);
2346 acpi_video_bus_remove_fs(device);
2347
Luming Yue9dab192007-08-20 18:23:53 +08002348 input_unregister_device(video->input);
Jesper Juhl6044ec82005-11-07 01:01:32 -08002349 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 kfree(video);
2351
Patrick Mocheld550d982006-06-27 00:41:40 -04002352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
Matthew Garrett74a365b2009-03-19 21:35:39 +00002355static int __init intel_opregion_present(void)
2356{
2357#if defined(CONFIG_DRM_I915) || defined(CONFIG_DRM_I915_MODULE)
2358 struct pci_dev *dev = NULL;
2359 u32 address;
2360
2361 for_each_pci_dev(dev) {
2362 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2363 continue;
2364 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2365 continue;
2366 pci_read_config_dword(dev, 0xfc, &address);
2367 if (!address)
2368 continue;
2369 return 1;
2370 }
2371#endif
2372 return 0;
2373}
2374
2375int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
Len Brown4be44fc2005-08-05 00:44:28 -04002377 int result = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002378 if (register_count) {
2379 /*
2380 * if the function of acpi_video_register is already called,
2381 * don't register the acpi_vide_bus again and return no error.
2382 */
2383 return 0;
2384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 acpi_video_dir = proc_mkdir(ACPI_VIDEO_CLASS, acpi_root_dir);
2387 if (!acpi_video_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -04002388 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390 result = acpi_bus_register_driver(&acpi_video_bus);
2391 if (result < 0) {
2392 remove_proc_entry(ACPI_VIDEO_CLASS, acpi_root_dir);
Patrick Mocheld550d982006-06-27 00:41:40 -04002393 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 }
2395
Zhao Yakui86e437f2009-06-16 11:23:13 +08002396 /*
2397 * When the acpi_video_bus is loaded successfully, increase
2398 * the counter reference.
2399 */
2400 register_count = 1;
2401
Patrick Mocheld550d982006-06-27 00:41:40 -04002402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
Matthew Garrett74a365b2009-03-19 21:35:39 +00002404EXPORT_SYMBOL(acpi_video_register);
2405
Zhao Yakui86e437f2009-06-16 11:23:13 +08002406void acpi_video_unregister(void)
2407{
2408 if (!register_count) {
2409 /*
2410 * If the acpi video bus is already unloaded, don't
2411 * unload it again and return directly.
2412 */
2413 return;
2414 }
2415 acpi_bus_unregister_driver(&acpi_video_bus);
2416
2417 remove_proc_entry(ACPI_VIDEO_CLASS, acpi_root_dir);
2418
2419 register_count = 0;
2420
2421 return;
2422}
2423EXPORT_SYMBOL(acpi_video_unregister);
2424
Matthew Garrett74a365b2009-03-19 21:35:39 +00002425/*
2426 * This is kind of nasty. Hardware using Intel chipsets may require
2427 * the video opregion code to be run first in order to initialise
2428 * state before any ACPI video calls are made. To handle this we defer
2429 * registration of the video class until the opregion code has run.
2430 */
2431
2432static int __init acpi_video_init(void)
2433{
Zhang Rui45cb50e2009-04-24 12:13:18 -04002434 dmi_check_system(video_dmi_table);
2435
Matthew Garrett74a365b2009-03-19 21:35:39 +00002436 if (intel_opregion_present())
2437 return 0;
2438
2439 return acpi_video_register();
2440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Zhao Yakui86e437f2009-06-16 11:23:13 +08002442static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Zhao Yakui86e437f2009-06-16 11:23:13 +08002444 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Patrick Mocheld550d982006-06-27 00:41:40 -04002446 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
2449module_init(acpi_video_init);
2450module_exit(acpi_video_exit);