blob: 3405f7a41e2576415d344eb0782323ba469ea0a4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05002 * video.c - ACPI Video Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 */
22
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/types.h>
27#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050028#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080029#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080030#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080031#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050032#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000033#include <linux/pci.h>
34#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040036#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020037#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080038#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050039#include <acpi/video.h>
Lv Zheng8b484632013-12-03 08:49:16 +080040#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Hans de Goede14ca7a472015-06-16 16:27:47 +020042#define PREFIX "ACPI: "
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ACPI_VIDEO_BUS_NAME "Video Bus"
45#define ACPI_VIDEO_DEVICE_NAME "Video Device"
46#define ACPI_VIDEO_NOTIFY_SWITCH 0x80
47#define ACPI_VIDEO_NOTIFY_PROBE 0x81
48#define ACPI_VIDEO_NOTIFY_CYCLE 0x82
49#define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
50#define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
51
Thomas Tuttlef4715182006-12-19 12:56:14 -080052#define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
53#define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
54#define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
55#define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
56#define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Yu Luming2f3d0002006-11-11 02:40:34 +080058#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050061ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Len Brownf52fd662007-02-12 22:42:12 -050063MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050064MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065MODULE_LICENSE("GPL");
66
Rafael J. Wysocki28437682014-07-14 19:35:45 +020067static bool brightness_switch_enabled = 1;
Zhang Rui8a681a42008-01-25 14:47:49 +080068module_param(brightness_switch_enabled, bool, 0644);
69
Zhang Ruic504f8c2009-12-30 15:59:23 +080070/*
71 * By default, we don't allow duplicate ACPI video bus devices
72 * under the same VGA controller
73 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103074static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080075module_param(allow_duplicates, bool, 0644);
76
Hans de Goede654a1822015-06-09 10:32:25 +020077static int disable_backlight_sysfs_if = -1;
78module_param(disable_backlight_sysfs_if, int, 0444);
79
Aaron Lue50b9be2015-10-28 15:09:23 +080080static bool device_id_scheme = false;
81module_param(device_id_scheme, bool, 0444);
82
83static bool only_lcd = false;
84module_param(only_lcd, bool, 0444);
85
Felipe Contreras915ea7e2013-08-03 22:12:50 +020086static int register_count;
Hans de Goede2a8b18e2015-06-16 16:27:54 +020087static DEFINE_MUTEX(register_count_mutex);
Aaron Lu67b662e2013-10-11 21:27:44 +080088static struct mutex video_list_lock;
89static struct list_head video_bus_head;
Len Brown4be44fc2005-08-05 00:44:28 -040090static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010091static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000092static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Hans de Goede93a291d2015-06-16 16:27:52 +020093void acpi_video_detect_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Thomas Renninger1ba90e32007-07-23 14:44:41 +020095static const struct acpi_device_id video_device_ids[] = {
96 {ACPI_VIDEO_HID, 0},
97 {"", 0},
98};
99MODULE_DEVICE_TABLE(acpi, video_device_ids);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500102 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200104 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .ops = {
106 .add = acpi_video_bus_add,
107 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000108 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400109 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
112struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400113 u8 multihead:1; /* can switch video heads */
114 u8 rom:1; /* can retrieve a video rom */
115 u8 post:1; /* can configure the head to */
116 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117};
118
119struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500120 u8 _DOS:1; /* Enable/Disable output switching */
121 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
122 u8 _ROM:1; /* Get ROM Data */
123 u8 _GPD:1; /* Get POST Device */
124 u8 _SPD:1; /* Set POST Device */
125 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400126 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
Len Brown4be44fc2005-08-05 00:44:28 -0400129struct acpi_video_device_attrib {
130 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500131 u32 display_port_attachment:4; /* This field differentiates the display type */
132 u32 display_type:4; /* Describe the specific type in use */
133 u32 vendor_specific:4; /* Chipset Vendor Specific */
134 u32 bios_can_detect:1; /* BIOS can detect the device */
135 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400136 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500137 u32 pipe_id:3; /* For VGA multiple-head devices. */
138 u32 reserved:10; /* Must be 0 */
139 u32 device_id_scheme:1; /* Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142struct acpi_video_enumerated_device {
143 union {
144 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400145 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 } value;
147 struct acpi_video_device *bind_info;
148};
149
150struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400151 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200152 bool backlight_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800156 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400159 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500160 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800161 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800162 struct input_dev *input;
163 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200164 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165};
166
167struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400168 u8 crt:1;
169 u8 lcd:1;
170 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500171 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400172 u8 bios:1;
173 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000174 u8 notify:1;
175 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176};
177
178struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500179 u8 _ADR:1; /* Return the unique ID */
180 u8 _BCL:1; /* Query list of brightness control levels supported */
181 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800182 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800183 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500184 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
Zhang Ruid32f6942009-03-18 16:27:12 +0800187struct acpi_video_brightness_flags {
188 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500189 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */
Zhang Rui1a7c6182009-03-18 16:27:16 +0800190 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800191};
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400194 int curr;
195 int count;
196 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800197 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
200struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 unsigned long device_id;
202 struct acpi_video_device_flags flags;
203 struct acpi_video_device_cap cap;
204 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200205 struct delayed_work switch_brightness_work;
206 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400207 struct acpi_video_bus *video;
208 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800210 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400211 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100214static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 "motherboard VGA device",
216 "PCI VGA device",
217 "AGP VGA device",
218 "UNKNOWN",
219};
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
222static void acpi_video_device_rebind(struct acpi_video_bus *video);
223static void acpi_video_device_bind(struct acpi_video_bus *video,
224 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800226static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
227 int level);
228static int acpi_video_device_lcd_get_level_current(
229 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000230 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400231static int acpi_video_get_next_level(struct acpi_video_device *device,
232 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200233static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Felipe Contreras21fcb342013-08-01 18:43:59 -0500235/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800236static int acpi_video_get_brightness(struct backlight_device *bd)
237{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400238 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000239 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200240 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800241
Danny Baumanna89803d2013-03-19 16:22:50 +0000242 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800243 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000244 for (i = 2; i < vd->brightness->count; i++) {
245 if (vd->brightness->levels[i] == cur_level)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500246 /*
247 * The first two entries are special - see page 575
248 * of the ACPI spec 3.0
249 */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200250 return i - 2;
Matthew Garrett38531e62007-12-26 02:03:26 +0000251 }
252 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800253}
254
255static int acpi_video_set_brightness(struct backlight_device *bd)
256{
Zhang Rui24450c72009-03-18 16:27:10 +0800257 int request_level = bd->props.brightness + 2;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200258 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800259
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200260 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800261 return acpi_video_device_lcd_set_level(vd,
262 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800263}
264
Lionel Debrouxacc24722010-11-16 14:14:02 +0100265static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000266 .get_brightness = acpi_video_get_brightness,
267 .update_status = acpi_video_set_brightness,
268};
269
Zhang Rui702ed512008-01-17 15:51:22 +0800270/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400271static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000272 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800273{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400274 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800275 struct acpi_video_device *video = acpi_driver_data(device);
276
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000277 *state = video->brightness->count - 3;
278 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800279}
280
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400281static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000282 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800283{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400284 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800285 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400286 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000287 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800288
Danny Baumanna89803d2013-03-19 16:22:50 +0000289 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800290 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000291 for (offset = 2; offset < video->brightness->count; offset++)
292 if (level == video->brightness->levels[offset]) {
293 *state = video->brightness->count - offset - 1;
294 return 0;
295 }
Zhang Rui702ed512008-01-17 15:51:22 +0800296
297 return -EINVAL;
298}
299
300static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400301video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800302{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400303 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800304 struct acpi_video_device *video = acpi_driver_data(device);
305 int level;
306
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200307 if (state >= video->brightness->count - 2)
Zhang Rui702ed512008-01-17 15:51:22 +0800308 return -EINVAL;
309
310 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200311 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800312 return acpi_video_device_lcd_set_level(video, level);
313}
314
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400315static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800316 .get_max_state = video_get_max_state,
317 .get_cur_state = video_get_cur_state,
318 .set_cur_state = video_set_cur_state,
319};
320
Felipe Contreras21fcb342013-08-01 18:43:59 -0500321/*
322 * --------------------------------------------------------------------------
323 * Video Management
324 * --------------------------------------------------------------------------
325 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327static int
Len Brown4be44fc2005-08-05 00:44:28 -0400328acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
329 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Len Brown4be44fc2005-08-05 00:44:28 -0400331 int status;
332 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
333 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 *levels = NULL;
337
Patrick Mochel90130262006-05-19 16:54:48 -0400338 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400340 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400341 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500342 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400343 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 status = -EFAULT;
345 goto err;
346 }
347
348 *levels = obj;
349
Patrick Mocheld550d982006-06-27 00:41:40 -0400350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200352err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800353 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Patrick Mocheld550d982006-06-27 00:41:40 -0400355 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
358static int
Len Brown4be44fc2005-08-05 00:44:28 -0400359acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Zhang Rui24450c72009-03-18 16:27:10 +0800361 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800362 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Jiang Liu0db98202013-06-29 00:24:39 +0800364 status = acpi_execute_simple_method(device->dev->handle,
365 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800366 if (ACPI_FAILURE(status)) {
367 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
368 return -EIO;
369 }
370
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400371 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800372 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800373 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800374 if (device->backlight)
375 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800376 return 0;
377 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800378
Zhang Rui24450c72009-03-18 16:27:10 +0800379 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
380 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Zhang Rui45cb50e2009-04-24 12:13:18 -0400383/*
384 * For some buggy _BQC methods, we need to add a constant value to
385 * the _BQC return value to get the actual current brightness level
386 */
387
388static int bqc_offset_aml_bug_workaround;
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200389static int video_set_bqc_offset(const struct dmi_system_id *d)
Zhang Rui45cb50e2009-04-24 12:13:18 -0400390{
391 bqc_offset_aml_bug_workaround = 9;
392 return 0;
393}
394
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200395static int video_disable_backlight_sysfs_if(
Hans de Goede654a1822015-06-09 10:32:25 +0200396 const struct dmi_system_id *d)
397{
398 if (disable_backlight_sysfs_if == -1)
399 disable_backlight_sysfs_if = 1;
400 return 0;
401}
402
Aaron Lue50b9be2015-10-28 15:09:23 +0800403static int video_set_device_id_scheme(const struct dmi_system_id *d)
404{
405 device_id_scheme = true;
406 return 0;
407}
408
409static int video_enable_only_lcd(const struct dmi_system_id *d)
410{
411 only_lcd = true;
412 return 0;
413}
414
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200415static struct dmi_system_id video_dmi_table[] = {
Zhang Rui45cb50e2009-04-24 12:13:18 -0400416 /*
417 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
418 */
419 {
420 .callback = video_set_bqc_offset,
421 .ident = "Acer Aspire 5720",
422 .matches = {
423 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
424 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
425 },
426 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400427 {
428 .callback = video_set_bqc_offset,
429 .ident = "Acer Aspire 5710Z",
430 .matches = {
431 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
432 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
433 },
434 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400435 {
436 .callback = video_set_bqc_offset,
437 .ident = "eMachines E510",
438 .matches = {
439 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
440 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
441 },
442 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400443 {
444 .callback = video_set_bqc_offset,
445 .ident = "Acer Aspire 5315",
446 .matches = {
447 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
448 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
449 },
450 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800451 {
452 .callback = video_set_bqc_offset,
453 .ident = "Acer Aspire 7720",
454 .matches = {
455 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
456 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
457 },
458 },
Hans de Goede5f240792014-08-28 10:20:46 +0200459
460 /*
Hans de Goede654a1822015-06-09 10:32:25 +0200461 * Some machines have a broken acpi-video interface for brightness
462 * control, but still need an acpi_video_device_lcd_set_level() call
463 * on resume to turn the backlight power on. We Enable backlight
464 * control on these systems, but do not register a backlight sysfs
465 * as brightness control does not work.
466 */
467 {
468 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
469 .callback = video_disable_backlight_sysfs_if,
470 .ident = "Toshiba Portege R830",
471 .matches = {
472 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
473 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
474 },
475 },
Aaron Lue50b9be2015-10-28 15:09:23 +0800476 /*
477 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
478 * but the IDs actually follow the Device ID Scheme.
479 */
480 {
481 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
482 .callback = video_set_device_id_scheme,
483 .ident = "ESPRIMO Mobile M9410",
484 .matches = {
485 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
486 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
487 },
488 },
489 /*
490 * Some machines have multiple video output devices, but only the one
491 * that is the type of LCD can do the backlight control so we should not
492 * register backlight interface for other video output devices.
493 */
494 {
495 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
496 .callback = video_enable_only_lcd,
497 .ident = "ESPRIMO Mobile M9410",
498 .matches = {
499 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
500 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
501 },
502 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400503 {}
504};
505
Danny Baumann994fa632013-03-19 16:22:52 +0000506static unsigned long long
507acpi_video_bqc_value_to_level(struct acpi_video_device *device,
508 unsigned long long bqc_value)
509{
510 unsigned long long level;
511
512 if (device->brightness->flags._BQC_use_index) {
513 /*
514 * _BQC returns an index that doesn't account for
515 * the first 2 items with special meaning, so we need
516 * to compensate for that by offsetting ourselves
517 */
518 if (device->brightness->flags._BCL_reversed)
519 bqc_value = device->brightness->count - 3 - bqc_value;
520
521 level = device->brightness->levels[bqc_value + 2];
522 } else {
523 level = bqc_value;
524 }
525
526 level += bqc_offset_aml_bug_workaround;
527
528 return level;
529}
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531static int
Len Brown4be44fc2005-08-05 00:44:28 -0400532acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000533 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Zhang Ruic8890f92009-03-18 16:27:08 +0800535 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800536 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800537
Zhang Ruic60d6382009-03-18 16:27:18 +0800538 if (device->cap._BQC || device->cap._BCQ) {
539 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
540
541 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800542 NULL, level);
543 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000544 if (raw) {
545 /*
546 * Caller has indicated he wants the raw
547 * value returned by _BQC, so don't furtherly
548 * mess with the value.
549 */
550 return 0;
551 }
552
Danny Baumann994fa632013-03-19 16:22:52 +0000553 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800554
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800555 for (i = 2; i < device->brightness->count; i++)
556 if (device->brightness->levels[i] == *level) {
557 device->brightness->curr = *level;
558 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200559 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000560 /*
561 * BQC returned an invalid level.
562 * Stop using it.
563 */
564 ACPI_WARNING((AE_INFO,
565 "%s returned an invalid level",
566 buf));
567 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800568 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500569 /*
570 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800571 * should we return an error or ignore this failure?
572 * dev->brightness->curr is a cached value which stores
573 * the correct current backlight level in most cases.
574 * ACPI video backlight still works w/ buggy _BQC.
575 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
576 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800577 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
578 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800579 }
580 }
581
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400582 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586static int
Len Brown4be44fc2005-08-05 00:44:28 -0400587acpi_video_device_EDID(struct acpi_video_device *device,
588 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Len Brown4be44fc2005-08-05 00:44:28 -0400590 int status;
591 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
592 union acpi_object *obj;
593 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
594 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 *edid = NULL;
598
599 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400600 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (length == 128)
602 arg0.integer.value = 1;
603 else if (length == 256)
604 arg0.integer.value = 2;
605 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400606 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Patrick Mochel90130262006-05-19 16:54:48 -0400608 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400610 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200612 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 if (obj && obj->type == ACPI_TYPE_BUFFER)
615 *edid = obj;
616 else {
Len Brown64684632006-06-26 23:41:38 -0400617 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 status = -EFAULT;
619 kfree(obj);
620 }
621
Patrick Mocheld550d982006-06-27 00:41:40 -0400622 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/* bus */
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
628 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500629 * video : video bus device pointer
630 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * 0. The system BIOS should NOT automatically switch(toggle)
632 * the active display output.
633 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100634 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * 2. The _DGS value should be locked.
636 * 3. The system BIOS should not automatically switch (toggle) the
637 * active display output, but instead generate the display switch
638 * event notify code.
639 * lcd_flag :
640 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100641 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500642 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100643 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500644 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400645 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 */
647
648static int
Len Brown4be44fc2005-08-05 00:44:28 -0400649acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Igor Murzovea9f8852012-03-30 21:32:08 +0400651 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Zhang Ruib0373842012-06-20 09:48:43 +0800653 if (!video->cap._DOS)
654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Igor Murzovea9f8852012-03-30 21:32:08 +0400656 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
657 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800658 video->dos_setting = (lcd_flag << 2) | bios_flag;
659 status = acpi_execute_simple_method(video->device->handle, "_DOS",
660 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400661 if (ACPI_FAILURE(status))
662 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Igor Murzovea9f8852012-03-30 21:32:08 +0400664 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500668 * Simple comparison function used to sort backlight levels.
669 */
670
671static int
672acpi_video_cmp_level(const void *a, const void *b)
673{
674 return *(int *)a - *(int *)b;
675}
676
677/*
Aaron Lua50188d2013-04-22 14:08:32 +0200678 * Decides if _BQC/_BCQ for this system is usable
679 *
680 * We do this by changing the level first and then read out the current
681 * brightness level, if the value does not match, find out if it is using
682 * index. If not, clear the _BQC/_BCQ capability.
683 */
684static int acpi_video_bqc_quirk(struct acpi_video_device *device,
685 int max_level, int current_level)
686{
687 struct acpi_video_device_brightness *br = device->brightness;
688 int result;
689 unsigned long long level;
690 int test_level;
691
692 /* don't mess with existing known broken systems */
693 if (bqc_offset_aml_bug_workaround)
694 return 0;
695
696 /*
697 * Some systems always report current brightness level as maximum
698 * through _BQC, we need to test another value for them.
699 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200700 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200701
702 result = acpi_video_device_lcd_set_level(device, test_level);
703 if (result)
704 return result;
705
706 result = acpi_video_device_lcd_get_level_current(device, &level, true);
707 if (result)
708 return result;
709
710 if (level != test_level) {
711 /* buggy _BQC found, need to find out if it uses index */
712 if (level < br->count) {
713 if (br->flags._BCL_reversed)
714 level = br->count - 3 - level;
715 if (br->levels[level + 2] == test_level)
716 br->flags._BQC_use_index = 1;
717 }
718
719 if (!br->flags._BQC_use_index)
720 device->cap._BQC = device->cap._BCQ = 0;
721 }
722
723 return 0;
724}
725
726
727/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500728 * Arg:
729 * device : video output device (LCD, CRT, ..)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *
731 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100732 * Maximum brightness level
733 *
734 * Allocate and initialize device->brightness.
735 */
736
737static int
738acpi_video_init_brightness(struct acpi_video_device *device)
739{
740 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800741 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800742 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100743 union acpi_object *o;
744 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800745 int result = -EINVAL;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100746 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100747
748 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
749 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
750 "LCD brightness level\n"));
751 goto out;
752 }
753
754 if (obj->package.count < 2)
755 goto out;
756
757 br = kzalloc(sizeof(*br), GFP_KERNEL);
758 if (!br) {
759 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800760 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100761 goto out;
762 }
763
Zhang Ruid32f6942009-03-18 16:27:12 +0800764 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100765 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800766 if (!br->levels) {
767 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100768 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800769 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100770
771 for (i = 0; i < obj->package.count; i++) {
772 o = (union acpi_object *)&obj->package.elements[i];
773 if (o->type != ACPI_TYPE_INTEGER) {
774 printk(KERN_ERR PREFIX "Invalid data\n");
775 continue;
776 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100777 value = (u32) o->integer.value;
778 /* Skip duplicate entries */
779 if (count > 2 && br->levels[count - 1] == value)
780 continue;
781
782 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100783
784 if (br->levels[count] > max_level)
785 max_level = br->levels[count];
786 count++;
787 }
788
Zhang Ruid32f6942009-03-18 16:27:12 +0800789 /*
790 * some buggy BIOS don't export the levels
791 * when machine is on AC/Battery in _BCL package.
792 * In this case, the first two elements in _BCL packages
793 * are also supported brightness levels that OS should take care of.
794 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800795 for (i = 2; i < count; i++) {
796 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800797 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800798 if (br->levels[i] == br->levels[1])
799 level_ac_battery++;
800 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500801
Zhang Ruid32f6942009-03-18 16:27:12 +0800802 if (level_ac_battery < 2) {
803 level_ac_battery = 2 - level_ac_battery;
804 br->flags._BCL_no_ac_battery_levels = 1;
805 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
806 br->levels[i] = br->levels[i - level_ac_battery];
807 count += level_ac_battery;
808 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000809 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800810
Zhang Ruid80fb992009-03-18 16:27:14 +0800811 /* Check if the _BCL package is in a reversed order */
812 if (max_level == br->levels[2]) {
813 br->flags._BCL_reversed = 1;
814 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
815 acpi_video_cmp_level, NULL);
816 } else if (max_level != br->levels[count - 1])
817 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000818 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100819
820 br->count = count;
821 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800822
Zhang Rui1a7c6182009-03-18 16:27:16 +0800823 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400824 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800825
826 if (!device->cap._BQC)
827 goto set_level;
828
Danny Baumanna89803d2013-03-19 16:22:50 +0000829 result = acpi_video_device_lcd_get_level_current(device,
830 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800831 if (result)
832 goto out_free_levels;
833
Aaron Lua50188d2013-04-22 14:08:32 +0200834 result = acpi_video_bqc_quirk(device, max_level, level_old);
835 if (result)
836 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800837 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200838 * cap._BQC may get cleared due to _BQC is found to be broken
839 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800840 */
Aaron Lua50188d2013-04-22 14:08:32 +0200841 if (!device->cap._BQC)
842 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800843
Aaron Lu545ef362013-11-15 14:39:12 +0800844 level = acpi_video_bqc_value_to_level(device, level_old);
845 /*
846 * On some buggy laptops, _BQC returns an uninitialized
847 * value when invoked for the first time, i.e.
848 * level_old is invalid (no matter whether it's a level
849 * or an index). Set the backlight to max_level in this case.
850 */
851 for (i = 2; i < br->count; i++)
852 if (level == br->levels[i])
853 break;
854 if (i == br->count || !level)
855 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800856
Zhang Ruie047cca2009-04-09 14:24:35 +0800857set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400858 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800859 if (result)
860 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800861
Zhang Ruid32f6942009-03-18 16:27:12 +0800862 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
863 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100864 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800865 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100866
867out_free_levels:
868 kfree(br->levels);
869out_free:
870 kfree(br);
871out:
872 device->brightness = NULL;
873 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800874 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100875}
876
877/*
878 * Arg:
879 * device : video output device (LCD, CRT, ..)
880 *
881 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500882 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100884 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 * device.
886 */
887
Len Brown4be44fc2005-08-05 00:44:28 -0400888static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Jiang Liu952c63e2013-06-29 00:24:38 +0800890 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800892 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400893 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800894 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400895 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800896 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800897 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800898 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800899 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
900 device->cap._BCQ = 1;
901 }
902
Jiang Liu952c63e2013-06-29 00:24:38 +0800903 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400904 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905}
906
907/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500908 * Arg:
909 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 *
911 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500912 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100914 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 */
916
Len Brown4be44fc2005-08-05 00:44:28 -0400917static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Jiang Liu952c63e2013-06-29 00:24:38 +0800919 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800921 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800923 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800925 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800927 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800929 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931}
932
933/*
934 * Check whether the video bus device has required AML method to
935 * support the desired features
936 */
937
Len Brown4be44fc2005-08-05 00:44:28 -0400938static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Len Brown4be44fc2005-08-05 00:44:28 -0400940 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000941 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -0400944 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000946 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +0200947 if (!dev)
948 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000949 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +0200950
Felipe Contreras21fcb342013-08-01 18:43:59 -0500951 /*
952 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 * to check well known required nodes.
954 */
955
Julius Volz98fb8fe2007-02-20 16:38:40 +0100956 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +0200957 if (video->cap._DOS || video->cap._DOD) {
958 if (!video->cap._DOS) {
959 printk(KERN_WARNING FW_BUG
960 "ACPI(%s) defines _DOD but not _DOS\n",
961 acpi_device_bid(video->device));
962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 video->flags.multihead = 1;
964 status = 0;
965 }
966
Julius Volz98fb8fe2007-02-20 16:38:40 +0100967 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -0400968 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 video->flags.rom = 1;
970 status = 0;
971 }
972
Julius Volz98fb8fe2007-02-20 16:38:40 +0100973 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -0400974 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 video->flags.post = 1;
976 status = 0;
977 }
978
Patrick Mocheld550d982006-06-27 00:41:40 -0400979 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
Felipe Contreras21fcb342013-08-01 18:43:59 -0500982/*
983 * --------------------------------------------------------------------------
984 * Driver Interface
985 * --------------------------------------------------------------------------
986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200989static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -0500990acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
991{
Dmitry Torokhov78eed022007-11-05 11:43:33 -0500992 struct acpi_video_enumerated_device *ids;
993 int i;
Rui Zhang82cae992007-01-03 23:40:53 -0500994
Dmitry Torokhov78eed022007-11-05 11:43:33 -0500995 for (i = 0; i < video->attached_count; i++) {
996 ids = &video->attached_array[i];
997 if ((ids->value.int_val & 0xffff) == device_id)
998 return &ids->value.attrib;
999 }
1000
Rui Zhang82cae992007-01-03 23:40:53 -05001001 return NULL;
1002}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001005acpi_video_get_device_type(struct acpi_video_bus *video,
1006 unsigned long device_id)
1007{
1008 struct acpi_video_enumerated_device *ids;
1009 int i;
1010
1011 for (i = 0; i < video->attached_count; i++) {
1012 ids = &video->attached_array[i];
1013 if ((ids->value.int_val & 0xffff) == device_id)
1014 return ids->value.int_val;
1015 }
1016
1017 return 0;
1018}
1019
1020static int
Len Brown4be44fc2005-08-05 00:44:28 -04001021acpi_video_bus_get_one_device(struct acpi_device *device,
1022 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001024 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001025 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001026 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001027 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Len Brown4be44fc2005-08-05 00:44:28 -04001029 status =
1030 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001031 /* Some device omits _ADR, we skip them instead of fail */
1032 if (ACPI_FAILURE(status))
1033 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Aaron Lu91e13aa2013-04-25 02:47:49 +00001035 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1036 if (!data)
1037 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Aaron Lu91e13aa2013-04-25 02:47:49 +00001039 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1040 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1041 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Aaron Lu91e13aa2013-04-25 02:47:49 +00001043 data->device_id = device_id;
1044 data->video = video;
1045 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001046 INIT_DELAYED_WORK(&data->switch_brightness_work,
1047 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Aaron Lu91e13aa2013-04-25 02:47:49 +00001049 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001050
Aaron Lue50b9be2015-10-28 15:09:23 +08001051 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001052 switch (attribute->display_type) {
1053 case ACPI_VIDEO_DISPLAY_CRT:
1054 data->flags.crt = 1;
1055 break;
1056 case ACPI_VIDEO_DISPLAY_TV:
1057 data->flags.tvout = 1;
1058 break;
1059 case ACPI_VIDEO_DISPLAY_DVI:
1060 data->flags.dvi = 1;
1061 break;
1062 case ACPI_VIDEO_DISPLAY_LCD:
1063 data->flags.lcd = 1;
1064 break;
1065 default:
1066 data->flags.unknown = 1;
1067 break;
1068 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001069 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001070 data->flags.bios = 1;
1071 } else {
1072 /* Check for legacy IDs */
1073 device_type = acpi_video_get_device_type(video, device_id);
1074 /* Ignore bits 16 and 18-20 */
1075 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001076 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1077 data->flags.crt = 1;
1078 break;
1079 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1080 data->flags.lcd = 1;
1081 break;
1082 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1083 data->flags.tvout = 1;
1084 break;
1085 default:
1086 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 }
1089
Aaron Lu91e13aa2013-04-25 02:47:49 +00001090 acpi_video_device_bind(video, data);
1091 acpi_video_device_find_cap(data);
1092
Aaron Lu91e13aa2013-04-25 02:47:49 +00001093 mutex_lock(&video->device_list_lock);
1094 list_add_tail(&data->entry, &video->video_device_list);
1095 mutex_unlock(&video->device_list_lock);
1096
1097 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100/*
1101 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001102 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 *
1104 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001105 * none
1106 *
1107 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 * bind the ids with the corresponding video devices
1109 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Len Brown4be44fc2005-08-05 00:44:28 -04001112static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001114 struct acpi_video_device *dev;
1115
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001116 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001117
1118 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001119 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001120
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001121 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
1124/*
1125 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001126 * video : video bus device
1127 * device : video output device under the video
1128 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 *
1130 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001131 * none
1132 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * Bind the ids with the corresponding video devices
1134 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137static void
Len Brown4be44fc2005-08-05 00:44:28 -04001138acpi_video_device_bind(struct acpi_video_bus *video,
1139 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001141 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001142 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001144 for (i = 0; i < video->attached_count; i++) {
1145 ids = &video->attached_array[i];
1146 if (device->device_id == (ids->value.int_val & 0xffff)) {
1147 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1149 }
1150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151}
1152
Aaron Lu0b8db272014-09-30 14:10:17 +08001153static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1154{
1155 struct acpi_video_bus *video = device->video;
1156 int i;
1157
Aaron Lub4df4632014-12-15 16:01:29 +08001158 /*
1159 * If we have a broken _DOD or we have more than 8 output devices
1160 * under the graphics controller node that we can't proper deal with
1161 * in the operation region code currently, no need to test.
1162 */
1163 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001164 return true;
1165
1166 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001167 if ((video->attached_array[i].value.int_val & 0xfff) ==
1168 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001169 return true;
1170 }
1171
1172 return false;
1173}
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/*
1176 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001177 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 *
1179 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001180 * < 0 : error
1181 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 * Call _DOD to enumerate all devices attached to display adapter
1183 *
Len Brown4be44fc2005-08-05 00:44:28 -04001184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1187{
Len Brown4be44fc2005-08-05 00:44:28 -04001188 int status;
1189 int count;
1190 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001191 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001192 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1193 union acpi_object *dod = NULL;
1194 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Patrick Mochel90130262006-05-19 16:54:48 -04001196 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001198 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001199 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001202 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001204 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 status = -EFAULT;
1206 goto out;
1207 }
1208
1209 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001210 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001212 active_list = kcalloc(1 + dod->package.count,
1213 sizeof(struct acpi_video_enumerated_device),
1214 GFP_KERNEL);
1215 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 status = -ENOMEM;
1217 goto out;
1218 }
1219
1220 count = 0;
1221 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001222 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001225 printk(KERN_ERR PREFIX
1226 "Invalid _DOD data in element %d\n", i);
1227 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001229
1230 active_list[count].value.int_val = obj->integer.value;
1231 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001232 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1233 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 count++;
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Jesper Juhl6044ec82005-11-07 01:01:32 -08001237 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001238
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001239 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001241
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001242out:
Len Brown02438d82006-06-30 03:19:10 -04001243 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001244 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Len Brown4be44fc2005-08-05 00:44:28 -04001247static int
1248acpi_video_get_next_level(struct acpi_video_device *device,
1249 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001251 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001252 max = max_below = 0;
1253 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001254 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001255 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001256 l = device->brightness->levels[i];
1257 if (abs(l - level_current) < abs(delta)) {
1258 delta = l - level_current;
1259 if (!delta)
1260 break;
1261 }
1262 }
1263 /* Ajust level_current to closest available level */
1264 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001265 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001266 l = device->brightness->levels[i];
1267 if (l < min)
1268 min = l;
1269 if (l > max)
1270 max = l;
1271 if (l < min_above && l > level_current)
1272 min_above = l;
1273 if (l > max_below && l < level_current)
1274 max_below = l;
1275 }
1276
1277 switch (event) {
1278 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1279 return (level_current < max) ? min_above : min;
1280 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1281 return (level_current < max) ? min_above : max;
1282 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1283 return (level_current > min) ? max_below : min;
1284 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1285 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1286 return 0;
1287 default:
1288 return level_current;
1289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001292static void
1293acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001295 struct acpi_video_device *device = container_of(to_delayed_work(work),
1296 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001297 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001298 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001299 int result = -EINVAL;
1300
Aaron Lufbc9fe12013-10-11 21:27:45 +08001301 /* no warning message if acpi_backlight=vendor or a quirk is used */
Hans de Goede654a1822015-06-09 10:32:25 +02001302 if (!device->backlight)
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001303 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001304
Julia Jomantaite469778c2008-06-23 22:50:42 +01001305 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001306 goto out;
1307
1308 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001309 &level_current,
1310 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001311 if (result)
1312 goto out;
1313
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001315
Zhang Rui24450c72009-03-18 16:27:10 +08001316 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001317
Matthew Garrett36342742009-07-14 17:06:03 +01001318 if (!result)
1319 backlight_force_update(device->backlight,
1320 BACKLIGHT_UPDATE_HOTKEY);
1321
Zhang Ruic8890f92009-03-18 16:27:08 +08001322out:
1323 if (result)
1324 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
Matthew Garrette92a7162010-01-12 14:17:03 -05001327int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1328 void **edid)
1329{
1330 struct acpi_video_bus *video;
1331 struct acpi_video_device *video_device;
1332 union acpi_object *buffer = NULL;
1333 acpi_status status;
1334 int i, length;
1335
1336 if (!device || !acpi_driver_data(device))
1337 return -EINVAL;
1338
1339 video = acpi_driver_data(device);
1340
1341 for (i = 0; i < video->attached_count; i++) {
1342 video_device = video->attached_array[i].bind_info;
1343 length = 256;
1344
1345 if (!video_device)
1346 continue;
1347
Zhang Rui82069552010-12-06 15:04:24 +08001348 if (!video_device->cap._DDC)
1349 continue;
1350
Matthew Garrette92a7162010-01-12 14:17:03 -05001351 if (type) {
1352 switch (type) {
1353 case ACPI_VIDEO_DISPLAY_CRT:
1354 if (!video_device->flags.crt)
1355 continue;
1356 break;
1357 case ACPI_VIDEO_DISPLAY_TV:
1358 if (!video_device->flags.tvout)
1359 continue;
1360 break;
1361 case ACPI_VIDEO_DISPLAY_DVI:
1362 if (!video_device->flags.dvi)
1363 continue;
1364 break;
1365 case ACPI_VIDEO_DISPLAY_LCD:
1366 if (!video_device->flags.lcd)
1367 continue;
1368 break;
1369 }
1370 } else if (video_device->device_id != device_id) {
1371 continue;
1372 }
1373
1374 status = acpi_video_device_EDID(video_device, &buffer, length);
1375
1376 if (ACPI_FAILURE(status) || !buffer ||
1377 buffer->type != ACPI_TYPE_BUFFER) {
1378 length = 128;
1379 status = acpi_video_device_EDID(video_device, &buffer,
1380 length);
1381 if (ACPI_FAILURE(status) || !buffer ||
1382 buffer->type != ACPI_TYPE_BUFFER) {
1383 continue;
1384 }
1385 }
1386
1387 *edid = buffer->buffer.pointer;
1388 return length;
1389 }
1390
1391 return -ENODEV;
1392}
1393EXPORT_SYMBOL(acpi_video_get_edid);
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395static int
Len Brown4be44fc2005-08-05 00:44:28 -04001396acpi_video_bus_get_devices(struct acpi_video_bus *video,
1397 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Igor Murzovfba4e082012-10-13 04:41:25 +04001399 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001400 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Igor Murzovfba4e082012-10-13 04:41:25 +04001402 /*
1403 * There are systems where video module known to work fine regardless
1404 * of broken _DOD and ignoring returned value here doesn't cause
1405 * any issues later.
1406 */
1407 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001409 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001412 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001413 dev_err(&dev->dev, "Can't attach device\n");
1414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 }
Aaron Lub4df4632014-12-15 16:01:29 +08001416 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001418 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421/* acpi_video interface */
1422
Aaron Luefaa14c2013-07-16 13:08:05 +08001423/*
1424 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1425 * preform any automatic brightness change on receiving a notification.
1426 */
Len Brown4be44fc2005-08-05 00:44:28 -04001427static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Aaron Luefaa14c2013-07-16 13:08:05 +08001429 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001430 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Len Brown4be44fc2005-08-05 00:44:28 -04001433static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Aaron Luefaa14c2013-07-16 13:08:05 +08001435 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001436 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437}
1438
Bjorn Helgaas70155582009-04-07 15:37:11 +00001439static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001441 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001442 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001443 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001444
Aaron Lu67b662e2013-10-11 21:27:44 +08001445 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001446 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Luming Yue9dab192007-08-20 18:23:53 +08001448 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001451 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001453 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
1455
Julius Volz98fb8fe2007-02-20 16:38:40 +01001456 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 * connector. */
1458 acpi_video_device_enumerate(video);
1459 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001460 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 break;
1462
Len Brown4be44fc2005-08-05 00:44:28 -04001463 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001464 keycode = KEY_SWITCHVIDEOMODE;
1465 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001466 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001467 keycode = KEY_VIDEO_NEXT;
1468 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001469 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001470 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 break;
1472
1473 default:
1474 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001475 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 break;
1477 }
1478
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001479 if (acpi_notifier_call_chain(device, event, 0))
1480 /* Something vetoed the keypress. */
1481 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001482
1483 if (keycode) {
1484 input_report_key(input, keycode, 1);
1485 input_sync(input);
1486 input_report_key(input, keycode, 0);
1487 input_sync(input);
1488 }
Luming Yue9dab192007-08-20 18:23:53 +08001489
Patrick Mocheld550d982006-06-27 00:41:40 -04001490 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491}
1492
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001493static void brightness_switch_event(struct acpi_video_device *video_device,
1494 u32 event)
1495{
1496 if (!brightness_switch_enabled)
1497 return;
1498
1499 video_device->switch_brightness_event = event;
1500 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1501}
1502
Len Brown4be44fc2005-08-05 00:44:28 -04001503static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001505 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001506 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001507 struct acpi_video_bus *bus;
1508 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001509 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001514 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001515 bus = video_device->video;
1516 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001519 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001520 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001521 keycode = KEY_BRIGHTNESS_CYCLE;
1522 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001523 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001524 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001525 keycode = KEY_BRIGHTNESSUP;
1526 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001527 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001528 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001529 keycode = KEY_BRIGHTNESSDOWN;
1530 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001531 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001532 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001533 keycode = KEY_BRIGHTNESS_ZERO;
1534 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001535 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001536 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001537 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 break;
1539 default:
1540 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001541 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 break;
1543 }
Luming Yue9dab192007-08-20 18:23:53 +08001544
Zhang Rui7761f632008-01-25 14:48:12 +08001545 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001546
1547 if (keycode) {
1548 input_report_key(input, keycode, 1);
1549 input_sync(input);
1550 input_report_key(input, keycode, 0);
1551 input_sync(input);
1552 }
Luming Yue9dab192007-08-20 18:23:53 +08001553
Patrick Mocheld550d982006-06-27 00:41:40 -04001554 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001557static int acpi_video_resume(struct notifier_block *nb,
1558 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001559{
1560 struct acpi_video_bus *video;
1561 struct acpi_video_device *video_device;
1562 int i;
1563
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001564 switch (val) {
1565 case PM_HIBERNATION_PREPARE:
1566 case PM_SUSPEND_PREPARE:
1567 case PM_RESTORE_PREPARE:
1568 return NOTIFY_DONE;
1569 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001570
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001571 video = container_of(nb, struct acpi_video_bus, pm_nb);
1572
1573 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001574
1575 for (i = 0; i < video->attached_count; i++) {
1576 video_device = video->attached_array[i].bind_info;
Hans de Goede654a1822015-06-09 10:32:25 +02001577 if (video_device && video_device->brightness)
1578 acpi_video_device_lcd_set_level(video_device,
1579 video_device->brightness->curr);
Matthew Garrett863c1492008-02-04 23:31:24 -08001580 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001581
1582 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001583}
1584
Zhang Ruic504f8c2009-12-30 15:59:23 +08001585static acpi_status
1586acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1587 void **return_value)
1588{
1589 struct acpi_device *device = context;
1590 struct acpi_device *sibling;
1591 int result;
1592
1593 if (handle == device->handle)
1594 return AE_CTRL_TERMINATE;
1595
1596 result = acpi_bus_get_device(handle, &sibling);
1597 if (result)
1598 return AE_OK;
1599
1600 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1601 return AE_ALREADY_EXISTS;
1602
1603 return AE_OK;
1604}
1605
Aaron Lu67b662e2013-10-11 21:27:44 +08001606static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1607{
Hans de Goede99678ed2014-05-15 13:22:33 +02001608 struct backlight_properties props;
1609 struct pci_dev *pdev;
1610 acpi_handle acpi_parent;
1611 struct device *parent = NULL;
1612 int result;
1613 static int count;
1614 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001615
Hans de Goede99678ed2014-05-15 13:22:33 +02001616 result = acpi_video_init_brightness(device);
1617 if (result)
1618 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001619
1620 if (disable_backlight_sysfs_if > 0)
1621 return;
1622
Hans de Goede99678ed2014-05-15 13:22:33 +02001623 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1624 if (!name)
1625 return;
1626 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001627
Hans de Goede99678ed2014-05-15 13:22:33 +02001628 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001629
Hans de Goede99678ed2014-05-15 13:22:33 +02001630 pdev = acpi_get_pci_dev(acpi_parent);
1631 if (pdev) {
1632 parent = &pdev->dev;
1633 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001634 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001635
1636 memset(&props, 0, sizeof(struct backlight_properties));
1637 props.type = BACKLIGHT_FIRMWARE;
1638 props.max_brightness = device->brightness->count - 3;
1639 device->backlight = backlight_device_register(name,
1640 parent,
1641 device,
1642 &acpi_backlight_ops,
1643 &props);
1644 kfree(name);
Hans de Goede654a1822015-06-09 10:32:25 +02001645 if (IS_ERR(device->backlight)) {
1646 device->backlight = NULL;
Hans de Goede99678ed2014-05-15 13:22:33 +02001647 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001648 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001649
1650 /*
1651 * Save current brightness level in case we have to restore it
1652 * before acpi_video_device_lcd_set_level() is called next time.
1653 */
1654 device->backlight->props.brightness =
1655 acpi_video_get_brightness(device->backlight);
1656
1657 device->cooling_dev = thermal_cooling_device_register("LCD",
1658 device->dev, &video_cooling_ops);
1659 if (IS_ERR(device->cooling_dev)) {
1660 /*
1661 * Set cooling_dev to NULL so we don't crash trying to free it.
1662 * Also, why the hell we are returning early and not attempt to
1663 * register video output if cooling device registration failed?
1664 * -- dtor
1665 */
1666 device->cooling_dev = NULL;
1667 return;
1668 }
1669
1670 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1671 device->cooling_dev->id);
1672 result = sysfs_create_link(&device->dev->dev.kobj,
1673 &device->cooling_dev->device.kobj,
1674 "thermal_cooling");
1675 if (result)
1676 printk(KERN_ERR PREFIX "Create sysfs link\n");
1677 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1678 &device->dev->dev.kobj, "device");
1679 if (result)
1680 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001681}
1682
Aaron Ludce4ec22014-10-28 14:35:59 +08001683static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1684{
1685 struct acpi_video_device *dev;
1686 union acpi_object *levels;
1687
1688 mutex_lock(&video->device_list_lock);
1689 list_for_each_entry(dev, &video->video_device_list, entry) {
1690 if (!acpi_video_device_lcd_query_levels(dev, &levels))
1691 kfree(levels);
1692 }
1693 mutex_unlock(&video->device_list_lock);
1694}
1695
Aaron Lue50b9be2015-10-28 15:09:23 +08001696static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1697{
1698 /*
1699 * Do not create backlight device for video output
1700 * device that is not in the enumerated list.
1701 */
1702 if (!acpi_video_device_in_dod(dev)) {
1703 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1704 return false;
1705 }
1706
1707 if (only_lcd)
1708 return dev->flags.lcd;
1709 return true;
1710}
1711
Aaron Lu67b662e2013-10-11 21:27:44 +08001712static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1713{
1714 struct acpi_video_device *dev;
1715
Hans de Goede53a92ba2014-05-21 15:39:55 +02001716 if (video->backlight_registered)
1717 return 0;
1718
Aaron Ludce4ec22014-10-28 14:35:59 +08001719 acpi_video_run_bcl_for_osi(video);
1720
Hans de Goede3bd6bce2015-06-16 16:27:51 +02001721 if (acpi_video_get_backlight_type() != acpi_backlight_video)
Hans de Goede99678ed2014-05-15 13:22:33 +02001722 return 0;
1723
Aaron Lu67b662e2013-10-11 21:27:44 +08001724 mutex_lock(&video->device_list_lock);
Aaron Lue50b9be2015-10-28 15:09:23 +08001725 list_for_each_entry(dev, &video->video_device_list, entry) {
1726 if (acpi_video_should_register_backlight(dev))
1727 acpi_video_dev_register_backlight(dev);
1728 }
Aaron Lu67b662e2013-10-11 21:27:44 +08001729 mutex_unlock(&video->device_list_lock);
1730
Hans de Goede99678ed2014-05-15 13:22:33 +02001731 video->backlight_registered = true;
1732
Aaron Lu67b662e2013-10-11 21:27:44 +08001733 video->pm_nb.notifier_call = acpi_video_resume;
1734 video->pm_nb.priority = 0;
1735 return register_pm_notifier(&video->pm_nb);
1736}
1737
1738static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1739{
1740 if (device->backlight) {
1741 backlight_device_unregister(device->backlight);
1742 device->backlight = NULL;
1743 }
1744 if (device->brightness) {
1745 kfree(device->brightness->levels);
1746 kfree(device->brightness);
1747 device->brightness = NULL;
1748 }
1749 if (device->cooling_dev) {
1750 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1751 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1752 thermal_cooling_device_unregister(device->cooling_dev);
1753 device->cooling_dev = NULL;
1754 }
1755}
1756
1757static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1758{
1759 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001760 int error;
1761
1762 if (!video->backlight_registered)
1763 return 0;
1764
1765 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001766
1767 mutex_lock(&video->device_list_lock);
1768 list_for_each_entry(dev, &video->video_device_list, entry)
1769 acpi_video_dev_unregister_backlight(dev);
1770 mutex_unlock(&video->device_list_lock);
1771
Hans de Goede99678ed2014-05-15 13:22:33 +02001772 video->backlight_registered = false;
1773
Aaron Lu67b662e2013-10-11 21:27:44 +08001774 return error;
1775}
1776
1777static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1778{
1779 acpi_status status;
1780 struct acpi_device *adev = device->dev;
1781
1782 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1783 acpi_video_device_notify, device);
1784 if (ACPI_FAILURE(status))
1785 dev_err(&adev->dev, "Error installing notify handler\n");
1786 else
1787 device->flags.notify = 1;
1788}
1789
1790static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1791{
1792 struct input_dev *input;
1793 struct acpi_video_device *dev;
1794 int error;
1795
1796 video->input = input = input_allocate_device();
1797 if (!input) {
1798 error = -ENOMEM;
1799 goto out;
1800 }
1801
1802 error = acpi_video_bus_start_devices(video);
1803 if (error)
1804 goto err_free_input;
1805
1806 snprintf(video->phys, sizeof(video->phys),
1807 "%s/video/input0", acpi_device_hid(video->device));
1808
1809 input->name = acpi_device_name(video->device);
1810 input->phys = video->phys;
1811 input->id.bustype = BUS_HOST;
1812 input->id.product = 0x06;
1813 input->dev.parent = &video->device->dev;
1814 input->evbit[0] = BIT(EV_KEY);
1815 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1816 set_bit(KEY_VIDEO_NEXT, input->keybit);
1817 set_bit(KEY_VIDEO_PREV, input->keybit);
1818 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1819 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1820 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1821 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1822 set_bit(KEY_DISPLAY_OFF, input->keybit);
1823
1824 error = input_register_device(input);
1825 if (error)
1826 goto err_stop_dev;
1827
1828 mutex_lock(&video->device_list_lock);
1829 list_for_each_entry(dev, &video->video_device_list, entry)
1830 acpi_video_dev_add_notify_handler(dev);
1831 mutex_unlock(&video->device_list_lock);
1832
1833 return 0;
1834
1835err_stop_dev:
1836 acpi_video_bus_stop_devices(video);
1837err_free_input:
1838 input_free_device(input);
1839 video->input = NULL;
1840out:
1841 return error;
1842}
1843
1844static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1845{
1846 if (dev->flags.notify) {
1847 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1848 acpi_video_device_notify);
1849 dev->flags.notify = 0;
1850 }
1851}
1852
1853static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1854{
1855 struct acpi_video_device *dev;
1856
1857 mutex_lock(&video->device_list_lock);
1858 list_for_each_entry(dev, &video->video_device_list, entry)
1859 acpi_video_dev_remove_notify_handler(dev);
1860 mutex_unlock(&video->device_list_lock);
1861
1862 acpi_video_bus_stop_devices(video);
1863 input_unregister_device(video->input);
1864 video->input = NULL;
1865}
1866
1867static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1868{
1869 struct acpi_video_device *dev, *next;
1870
1871 mutex_lock(&video->device_list_lock);
1872 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1873 list_del(&dev->entry);
1874 kfree(dev);
1875 }
1876 mutex_unlock(&video->device_list_lock);
1877
1878 return 0;
1879}
1880
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001881static int instance;
1882
Len Brown4be44fc2005-08-05 00:44:28 -04001883static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001885 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001886 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001887 acpi_status status;
1888
1889 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1890 device->parent->handle, 1,
1891 acpi_video_bus_match, NULL,
1892 device, NULL);
1893 if (status == AE_ALREADY_EXISTS) {
1894 printk(KERN_WARNING FW_BUG
1895 "Duplicate ACPI video bus devices for the"
1896 " same VGA controller, please try module "
1897 "parameter \"video.allow_duplicates=1\""
1898 "if the current driver doesn't work.\n");
1899 if (!allow_duplicates)
1900 return -ENODEV;
1901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Burman Yan36bcbec2006-12-19 12:56:11 -08001903 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001905 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Zhang Ruie6d9da12007-08-25 02:23:31 -04001907 /* a hack to fix the duplicate name "VID" problem on T61 */
1908 if (!strcmp(device->pnp.bus_id, "VID")) {
1909 if (instance)
1910 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001911 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04001912 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001913 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1914 if (!strcmp(device->pnp.bus_id, "VGA")) {
1915 if (instance)
1916 device->pnp.bus_id[3] = '0' + instance;
1917 instance++;
1918 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001919
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001920 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1922 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001923 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001926 error = acpi_video_bus_check(video);
1927 if (error)
1928 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001930 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 INIT_LIST_HEAD(&video->video_device_list);
1932
Igor Murzovea9f8852012-03-30 21:32:08 +04001933 error = acpi_video_bus_get_devices(video, device);
1934 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001935 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001938 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
1939 video->flags.multihead ? "yes" : "no",
1940 video->flags.rom ? "yes" : "no",
1941 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08001942 mutex_lock(&video_list_lock);
1943 list_add_tail(&video->entry, &video_bus_head);
1944 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Aaron Lu67b662e2013-10-11 21:27:44 +08001946 acpi_video_bus_register_backlight(video);
1947 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001948
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001949 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Aaron Lu67b662e2013-10-11 21:27:44 +08001951err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001952 acpi_video_bus_put_devices(video);
1953 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08001954err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001955 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001956 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001957
1958 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001961static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
Len Brown4be44fc2005-08-05 00:44:28 -04001963 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001967 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001969 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Aaron Lu67b662e2013-10-11 21:27:44 +08001971 acpi_video_bus_remove_notify_handler(video);
1972 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Aaron Lu67b662e2013-10-11 21:27:44 +08001975 mutex_lock(&video_list_lock);
1976 list_del(&video->entry);
1977 mutex_unlock(&video_list_lock);
1978
Jesper Juhl6044ec82005-11-07 01:01:32 -08001979 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 kfree(video);
1981
Patrick Mocheld550d982006-06-27 00:41:40 -04001982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983}
1984
Alan Coxc6996bd2012-04-25 14:33:48 +01001985static int __init is_i740(struct pci_dev *dev)
1986{
1987 if (dev->device == 0x00D1)
1988 return 1;
1989 if (dev->device == 0x7000)
1990 return 1;
1991 return 0;
1992}
1993
Matthew Garrett74a365b2009-03-19 21:35:39 +00001994static int __init intel_opregion_present(void)
1995{
Alan Coxc6996bd2012-04-25 14:33:48 +01001996 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001997 struct pci_dev *dev = NULL;
1998 u32 address;
1999
2000 for_each_pci_dev(dev) {
2001 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2002 continue;
2003 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2004 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002005 /* We don't want to poke around undefined i740 registers */
2006 if (is_i740(dev))
2007 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002008 pci_read_config_dword(dev, 0xfc, &address);
2009 if (!address)
2010 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002011 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002012 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002013 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002014}
2015
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002016int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002018 int ret = 0;
Chris Wilson28d63402015-03-01 10:41:38 +00002019
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002020 mutex_lock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002021 if (register_count) {
2022 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002023 * if the function of acpi_video_register is already called,
2024 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002025 */
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002026 goto leave;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Aaron Lu67b662e2013-10-11 21:27:44 +08002029 mutex_init(&video_list_lock);
2030 INIT_LIST_HEAD(&video_bus_head);
2031
Hans de Goede7ee33ba2015-06-16 16:27:53 +02002032 dmi_check_system(video_dmi_table);
2033
Chris Wilson28d63402015-03-01 10:41:38 +00002034 ret = acpi_bus_register_driver(&acpi_video_bus);
2035 if (ret)
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002036 goto leave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Zhao Yakui86e437f2009-06-16 11:23:13 +08002038 /*
2039 * When the acpi_video_bus is loaded successfully, increase
2040 * the counter reference.
2041 */
2042 register_count = 1;
2043
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002044leave:
2045 mutex_unlock(&register_count_mutex);
2046 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002048EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002049
Zhao Yakui86e437f2009-06-16 11:23:13 +08002050void acpi_video_unregister(void)
2051{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002052 mutex_lock(&register_count_mutex);
2053 if (register_count) {
2054 acpi_bus_unregister_driver(&acpi_video_bus);
2055 register_count = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002056 }
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002057 mutex_unlock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002058}
2059EXPORT_SYMBOL(acpi_video_unregister);
2060
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002061void acpi_video_unregister_backlight(void)
2062{
2063 struct acpi_video_bus *video;
2064
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002065 mutex_lock(&register_count_mutex);
2066 if (register_count) {
2067 mutex_lock(&video_list_lock);
2068 list_for_each_entry(video, &video_bus_head, entry)
2069 acpi_video_bus_unregister_backlight(video);
2070 mutex_unlock(&video_list_lock);
2071 }
2072 mutex_unlock(&register_count_mutex);
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002073}
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002074
Matthew Garrett74a365b2009-03-19 21:35:39 +00002075/*
2076 * This is kind of nasty. Hardware using Intel chipsets may require
2077 * the video opregion code to be run first in order to initialise
2078 * state before any ACPI video calls are made. To handle this we defer
2079 * registration of the video class until the opregion code has run.
2080 */
2081
2082static int __init acpi_video_init(void)
2083{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002084 /*
2085 * Let the module load even if ACPI is disabled (e.g. due to
2086 * a broken BIOS) so that i915.ko can still be loaded on such
2087 * old systems without an AcpiOpRegion.
2088 *
2089 * acpi_video_register() will report -ENODEV later as well due
2090 * to acpi_disabled when i915.ko tries to register itself afterwards.
2091 */
2092 if (acpi_disabled)
2093 return 0;
2094
Matthew Garrett74a365b2009-03-19 21:35:39 +00002095 if (intel_opregion_present())
2096 return 0;
2097
2098 return acpi_video_register();
2099}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Zhao Yakui86e437f2009-06-16 11:23:13 +08002101static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Hans de Goede93a291d2015-06-16 16:27:52 +02002103 acpi_video_detect_exit();
Zhao Yakui86e437f2009-06-16 11:23:13 +08002104 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Patrick Mocheld550d982006-06-27 00:41:40 -04002106 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109module_init(acpi_video_init);
2110module_exit(acpi_video_exit);