blob: 1eaadff2e198037ac9b8567517e8f37e37f09d4a [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 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050032#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080033#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080034#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080035#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050036#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000037#include <linux/pci.h>
38#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040040#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020041#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080042#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050043#include <acpi/video.h>
Lv Zheng8b484632013-12-03 08:49:16 +080044#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020046#include "internal.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_VIDEO_BUS_NAME "Video Bus"
49#define ACPI_VIDEO_DEVICE_NAME "Video Device"
50#define ACPI_VIDEO_NOTIFY_SWITCH 0x80
51#define ACPI_VIDEO_NOTIFY_PROBE 0x81
52#define ACPI_VIDEO_NOTIFY_CYCLE 0x82
53#define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
54#define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
55
Thomas Tuttlef4715182006-12-19 12:56:14 -080056#define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
57#define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
58#define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
59#define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
60#define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yu Luming2f3d0002006-11-11 02:40:34 +080062#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050065ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Len Brownf52fd662007-02-12 22:42:12 -050067MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050068MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069MODULE_LICENSE("GPL");
70
Rafael J. Wysocki28437682014-07-14 19:35:45 +020071static bool brightness_switch_enabled = 1;
Zhang Rui8a681a42008-01-25 14:47:49 +080072module_param(brightness_switch_enabled, bool, 0644);
73
Zhang Ruic504f8c2009-12-30 15:59:23 +080074/*
75 * By default, we don't allow duplicate ACPI video bus devices
76 * under the same VGA controller
77 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103078static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080079module_param(allow_duplicates, bool, 0644);
80
Zhang Rui99fd1892010-12-06 15:04:27 +080081/*
Aaron Lu0e9f81d2014-02-18 13:54:20 +080082 * For Windows 8 systems: used to decide if video module
83 * should skip registering backlight interface of its own.
Aaron Lufbc9fe12013-10-11 21:27:45 +080084 */
Hans de Goede25294e92014-08-28 10:20:45 +020085static int use_native_backlight_param = -1;
Aaron Lu0e9f81d2014-02-18 13:54:20 +080086module_param_named(use_native_backlight, use_native_backlight_param, int, 0444);
Hans de Goede25294e92014-08-28 10:20:45 +020087static bool use_native_backlight_dmi = true;
Aaron Lufbc9fe12013-10-11 21:27:45 +080088
Felipe Contreras915ea7e2013-08-03 22:12:50 +020089static int register_count;
Aaron Lu67b662e2013-10-11 21:27:44 +080090static struct mutex video_list_lock;
91static struct list_head video_bus_head;
Len Brown4be44fc2005-08-05 00:44:28 -040092static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010093static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000094static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Thomas Renninger1ba90e32007-07-23 14:44:41 +020096static const struct acpi_device_id video_device_ids[] = {
97 {ACPI_VIDEO_HID, 0},
98 {"", 0},
99};
100MODULE_DEVICE_TABLE(acpi, video_device_ids);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500103 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200105 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .ops = {
107 .add = acpi_video_bus_add,
108 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000109 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400110 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400114 u8 multihead:1; /* can switch video heads */
115 u8 rom:1; /* can retrieve a video rom */
116 u8 post:1; /* can configure the head to */
117 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500121 u8 _DOS:1; /* Enable/Disable output switching */
122 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
123 u8 _ROM:1; /* Get ROM Data */
124 u8 _GPD:1; /* Get POST Device */
125 u8 _SPD:1; /* Set POST Device */
126 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400127 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Len Brown4be44fc2005-08-05 00:44:28 -0400130struct acpi_video_device_attrib {
131 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500132 u32 display_port_attachment:4; /* This field differentiates the display type */
133 u32 display_type:4; /* Describe the specific type in use */
134 u32 vendor_specific:4; /* Chipset Vendor Specific */
135 u32 bios_can_detect:1; /* BIOS can detect the device */
136 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400137 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500138 u32 pipe_id:3; /* For VGA multiple-head devices. */
139 u32 reserved:10; /* Must be 0 */
140 u32 device_id_scheme:1; /* Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143struct acpi_video_enumerated_device {
144 union {
145 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400146 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 } value;
148 struct acpi_video_device *bind_info;
149};
150
151struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400152 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200153 bool backlight_registered;
Hans de Goede53a92ba2014-05-21 15:39:55 +0200154 bool backlight_notifier_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800158 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400159 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400161 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500162 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800163 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800164 struct input_dev *input;
165 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200166 struct notifier_block pm_nb;
Hans de Goede53a92ba2014-05-21 15:39:55 +0200167 struct notifier_block backlight_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
170struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400171 u8 crt:1;
172 u8 lcd:1;
173 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500174 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 u8 bios:1;
176 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000177 u8 notify:1;
178 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
181struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500182 u8 _ADR:1; /* Return the unique ID */
183 u8 _BCL:1; /* Query list of brightness control levels supported */
184 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800185 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800186 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500187 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Zhang Ruid32f6942009-03-18 16:27:12 +0800190struct acpi_video_brightness_flags {
191 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500192 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */
Zhang Rui1a7c6182009-03-18 16:27:16 +0800193 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400197 int curr;
198 int count;
199 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800200 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
203struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400204 unsigned long device_id;
205 struct acpi_video_device_flags flags;
206 struct acpi_video_device_cap cap;
207 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200208 struct delayed_work switch_brightness_work;
209 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400210 struct acpi_video_bus *video;
211 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800213 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400214 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100217static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 "motherboard VGA device",
219 "PCI VGA device",
220 "AGP VGA device",
221 "UNKNOWN",
222};
223
Len Brown4be44fc2005-08-05 00:44:28 -0400224static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
225static void acpi_video_device_rebind(struct acpi_video_bus *video);
226static void acpi_video_device_bind(struct acpi_video_bus *video,
227 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800229static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
230 int level);
231static int acpi_video_device_lcd_get_level_current(
232 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000233 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400234static int acpi_video_get_next_level(struct acpi_video_device *device,
235 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200236static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800238static bool acpi_video_use_native_backlight(void)
239{
240 if (use_native_backlight_param != -1)
241 return use_native_backlight_param;
242 else
243 return use_native_backlight_dmi;
244}
245
Aaron Lu0b9f7d92014-07-07 15:43:51 +0800246bool acpi_video_verify_backlight_support(void)
Aaron Lufbc9fe12013-10-11 21:27:45 +0800247{
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800248 if (acpi_osi_is_win8() && acpi_video_use_native_backlight() &&
Aaron Lufbc9fe12013-10-11 21:27:45 +0800249 backlight_device_registered(BACKLIGHT_RAW))
250 return false;
251 return acpi_video_backlight_support();
252}
Aaron Lu0b9f7d92014-07-07 15:43:51 +0800253EXPORT_SYMBOL_GPL(acpi_video_verify_backlight_support);
Aaron Lufbc9fe12013-10-11 21:27:45 +0800254
Felipe Contreras21fcb342013-08-01 18:43:59 -0500255/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800256static int acpi_video_get_brightness(struct backlight_device *bd)
257{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400258 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000259 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200260 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800261
Danny Baumanna89803d2013-03-19 16:22:50 +0000262 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800263 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000264 for (i = 2; i < vd->brightness->count; i++) {
265 if (vd->brightness->levels[i] == cur_level)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500266 /*
267 * The first two entries are special - see page 575
268 * of the ACPI spec 3.0
269 */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200270 return i - 2;
Matthew Garrett38531e62007-12-26 02:03:26 +0000271 }
272 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800273}
274
275static int acpi_video_set_brightness(struct backlight_device *bd)
276{
Zhang Rui24450c72009-03-18 16:27:10 +0800277 int request_level = bd->props.brightness + 2;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200278 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800279
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200280 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800281 return acpi_video_device_lcd_set_level(vd,
282 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800283}
284
Lionel Debrouxacc24722010-11-16 14:14:02 +0100285static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000286 .get_brightness = acpi_video_get_brightness,
287 .update_status = acpi_video_set_brightness,
288};
289
Zhang Rui702ed512008-01-17 15:51:22 +0800290/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400291static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000292 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800293{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400294 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800295 struct acpi_video_device *video = acpi_driver_data(device);
296
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000297 *state = video->brightness->count - 3;
298 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800299}
300
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400301static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000302 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800303{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400304 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800305 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400306 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000307 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800308
Danny Baumanna89803d2013-03-19 16:22:50 +0000309 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800310 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000311 for (offset = 2; offset < video->brightness->count; offset++)
312 if (level == video->brightness->levels[offset]) {
313 *state = video->brightness->count - offset - 1;
314 return 0;
315 }
Zhang Rui702ed512008-01-17 15:51:22 +0800316
317 return -EINVAL;
318}
319
320static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400321video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800322{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400323 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800324 struct acpi_video_device *video = acpi_driver_data(device);
325 int level;
326
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200327 if (state >= video->brightness->count - 2)
Zhang Rui702ed512008-01-17 15:51:22 +0800328 return -EINVAL;
329
330 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200331 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800332 return acpi_video_device_lcd_set_level(video, level);
333}
334
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400335static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800336 .get_max_state = video_get_max_state,
337 .get_cur_state = video_get_cur_state,
338 .set_cur_state = video_set_cur_state,
339};
340
Felipe Contreras21fcb342013-08-01 18:43:59 -0500341/*
342 * --------------------------------------------------------------------------
343 * Video Management
344 * --------------------------------------------------------------------------
345 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static int
Len Brown4be44fc2005-08-05 00:44:28 -0400348acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
349 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Len Brown4be44fc2005-08-05 00:44:28 -0400351 int status;
352 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
353 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 *levels = NULL;
357
Patrick Mochel90130262006-05-19 16:54:48 -0400358 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400361 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500362 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400363 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 status = -EFAULT;
365 goto err;
366 }
367
368 *levels = obj;
369
Patrick Mocheld550d982006-06-27 00:41:40 -0400370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200372err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800373 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Patrick Mocheld550d982006-06-27 00:41:40 -0400375 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378static int
Len Brown4be44fc2005-08-05 00:44:28 -0400379acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Zhang Rui24450c72009-03-18 16:27:10 +0800381 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800382 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jiang Liu0db98202013-06-29 00:24:39 +0800384 status = acpi_execute_simple_method(device->dev->handle,
385 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800386 if (ACPI_FAILURE(status)) {
387 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
388 return -EIO;
389 }
390
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400391 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800392 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800393 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800394 if (device->backlight)
395 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800396 return 0;
397 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800398
Zhang Rui24450c72009-03-18 16:27:10 +0800399 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
400 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Zhang Rui45cb50e2009-04-24 12:13:18 -0400403/*
404 * For some buggy _BQC methods, we need to add a constant value to
405 * the _BQC return value to get the actual current brightness level
406 */
407
408static int bqc_offset_aml_bug_workaround;
409static int __init video_set_bqc_offset(const struct dmi_system_id *d)
410{
411 bqc_offset_aml_bug_workaround = 9;
412 return 0;
413}
414
Hans de Goede5f240792014-08-28 10:20:46 +0200415static int __init video_disable_native_backlight(const struct dmi_system_id *d)
416{
417 use_native_backlight_dmi = false;
418 return 0;
419}
420
Zhang Rui45cb50e2009-04-24 12:13:18 -0400421static struct dmi_system_id video_dmi_table[] __initdata = {
422 /*
423 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
424 */
425 {
426 .callback = video_set_bqc_offset,
427 .ident = "Acer Aspire 5720",
428 .matches = {
429 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
430 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
431 },
432 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400433 {
434 .callback = video_set_bqc_offset,
435 .ident = "Acer Aspire 5710Z",
436 .matches = {
437 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
438 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
439 },
440 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400441 {
442 .callback = video_set_bqc_offset,
443 .ident = "eMachines E510",
444 .matches = {
445 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
446 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
447 },
448 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400449 {
450 .callback = video_set_bqc_offset,
451 .ident = "Acer Aspire 5315",
452 .matches = {
453 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
454 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
455 },
456 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800457 {
458 .callback = video_set_bqc_offset,
459 .ident = "Acer Aspire 7720",
460 .matches = {
461 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
462 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
463 },
464 },
Hans de Goede5f240792014-08-28 10:20:46 +0200465
466 /*
467 * These models have a working acpi_video backlight control, and using
468 * native backlight causes a regression where backlight does not work
469 * when userspace is not handling brightness key events. Disable
470 * native_backlight on these to fix this:
471 * https://bugzilla.kernel.org/show_bug.cgi?id=81691
472 */
473 {
474 .callback = video_disable_native_backlight,
475 .ident = "ThinkPad T420",
476 .matches = {
477 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
478 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T420"),
479 },
480 },
481 {
482 .callback = video_disable_native_backlight,
483 .ident = "ThinkPad T520",
484 .matches = {
485 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
486 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T520"),
487 },
488 },
Aaron Lu789eeea2014-09-19 10:01:18 +0800489 {
490 .callback = video_disable_native_backlight,
491 .ident = "ThinkPad X201s",
492 .matches = {
493 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
494 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X201s"),
495 },
496 },
Hans de Goede84c34852014-08-28 10:20:47 +0200497
498 /* The native backlight controls do not work on some older machines */
499 {
500 /* https://bugs.freedesktop.org/show_bug.cgi?id=81515 */
501 .callback = video_disable_native_backlight,
502 .ident = "HP ENVY 15 Notebook",
503 .matches = {
504 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
505 DMI_MATCH(DMI_PRODUCT_NAME, "HP ENVY 15 Notebook PC"),
506 },
507 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400508 {}
509};
510
Danny Baumann994fa632013-03-19 16:22:52 +0000511static unsigned long long
512acpi_video_bqc_value_to_level(struct acpi_video_device *device,
513 unsigned long long bqc_value)
514{
515 unsigned long long level;
516
517 if (device->brightness->flags._BQC_use_index) {
518 /*
519 * _BQC returns an index that doesn't account for
520 * the first 2 items with special meaning, so we need
521 * to compensate for that by offsetting ourselves
522 */
523 if (device->brightness->flags._BCL_reversed)
524 bqc_value = device->brightness->count - 3 - bqc_value;
525
526 level = device->brightness->levels[bqc_value + 2];
527 } else {
528 level = bqc_value;
529 }
530
531 level += bqc_offset_aml_bug_workaround;
532
533 return level;
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static int
Len Brown4be44fc2005-08-05 00:44:28 -0400537acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000538 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Zhang Ruic8890f92009-03-18 16:27:08 +0800540 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800541 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800542
Zhang Ruic60d6382009-03-18 16:27:18 +0800543 if (device->cap._BQC || device->cap._BCQ) {
544 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
545
546 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800547 NULL, level);
548 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000549 if (raw) {
550 /*
551 * Caller has indicated he wants the raw
552 * value returned by _BQC, so don't furtherly
553 * mess with the value.
554 */
555 return 0;
556 }
557
Danny Baumann994fa632013-03-19 16:22:52 +0000558 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800559
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800560 for (i = 2; i < device->brightness->count; i++)
561 if (device->brightness->levels[i] == *level) {
562 device->brightness->curr = *level;
563 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200564 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000565 /*
566 * BQC returned an invalid level.
567 * Stop using it.
568 */
569 ACPI_WARNING((AE_INFO,
570 "%s returned an invalid level",
571 buf));
572 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800573 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500574 /*
575 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800576 * should we return an error or ignore this failure?
577 * dev->brightness->curr is a cached value which stores
578 * the correct current backlight level in most cases.
579 * ACPI video backlight still works w/ buggy _BQC.
580 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
581 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800582 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
583 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800584 }
585 }
586
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400587 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800588 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591static int
Len Brown4be44fc2005-08-05 00:44:28 -0400592acpi_video_device_EDID(struct acpi_video_device *device,
593 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Len Brown4be44fc2005-08-05 00:44:28 -0400595 int status;
596 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
597 union acpi_object *obj;
598 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
599 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 *edid = NULL;
603
604 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400605 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (length == 128)
607 arg0.integer.value = 1;
608 else if (length == 256)
609 arg0.integer.value = 2;
610 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400611 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Patrick Mochel90130262006-05-19 16:54:48 -0400613 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400615 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200617 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 if (obj && obj->type == ACPI_TYPE_BUFFER)
620 *edid = obj;
621 else {
Len Brown64684632006-06-26 23:41:38 -0400622 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 status = -EFAULT;
624 kfree(obj);
625 }
626
Patrick Mocheld550d982006-06-27 00:41:40 -0400627 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630/* bus */
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/*
633 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500634 * video : video bus device pointer
635 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * 0. The system BIOS should NOT automatically switch(toggle)
637 * the active display output.
638 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100639 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * 2. The _DGS value should be locked.
641 * 3. The system BIOS should not automatically switch (toggle) the
642 * active display output, but instead generate the display switch
643 * event notify code.
644 * lcd_flag :
645 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100646 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500647 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100648 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500649 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400650 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 */
652
653static int
Len Brown4be44fc2005-08-05 00:44:28 -0400654acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Igor Murzovea9f8852012-03-30 21:32:08 +0400656 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Zhang Ruib0373842012-06-20 09:48:43 +0800658 if (!video->cap._DOS)
659 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Igor Murzovea9f8852012-03-30 21:32:08 +0400661 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
662 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800663 video->dos_setting = (lcd_flag << 2) | bios_flag;
664 status = acpi_execute_simple_method(video->device->handle, "_DOS",
665 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400666 if (ACPI_FAILURE(status))
667 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Igor Murzovea9f8852012-03-30 21:32:08 +0400669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500673 * Simple comparison function used to sort backlight levels.
674 */
675
676static int
677acpi_video_cmp_level(const void *a, const void *b)
678{
679 return *(int *)a - *(int *)b;
680}
681
682/*
Aaron Lua50188d2013-04-22 14:08:32 +0200683 * Decides if _BQC/_BCQ for this system is usable
684 *
685 * We do this by changing the level first and then read out the current
686 * brightness level, if the value does not match, find out if it is using
687 * index. If not, clear the _BQC/_BCQ capability.
688 */
689static int acpi_video_bqc_quirk(struct acpi_video_device *device,
690 int max_level, int current_level)
691{
692 struct acpi_video_device_brightness *br = device->brightness;
693 int result;
694 unsigned long long level;
695 int test_level;
696
697 /* don't mess with existing known broken systems */
698 if (bqc_offset_aml_bug_workaround)
699 return 0;
700
701 /*
702 * Some systems always report current brightness level as maximum
703 * through _BQC, we need to test another value for them.
704 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200705 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200706
707 result = acpi_video_device_lcd_set_level(device, test_level);
708 if (result)
709 return result;
710
711 result = acpi_video_device_lcd_get_level_current(device, &level, true);
712 if (result)
713 return result;
714
715 if (level != test_level) {
716 /* buggy _BQC found, need to find out if it uses index */
717 if (level < br->count) {
718 if (br->flags._BCL_reversed)
719 level = br->count - 3 - level;
720 if (br->levels[level + 2] == test_level)
721 br->flags._BQC_use_index = 1;
722 }
723
724 if (!br->flags._BQC_use_index)
725 device->cap._BQC = device->cap._BCQ = 0;
726 }
727
728 return 0;
729}
730
731
732/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500733 * Arg:
734 * device : video output device (LCD, CRT, ..)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 *
736 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100737 * Maximum brightness level
738 *
739 * Allocate and initialize device->brightness.
740 */
741
742static int
743acpi_video_init_brightness(struct acpi_video_device *device)
744{
745 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800746 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800747 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100748 union acpi_object *o;
749 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800750 int result = -EINVAL;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100751 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100752
753 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
754 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
755 "LCD brightness level\n"));
756 goto out;
757 }
758
759 if (obj->package.count < 2)
760 goto out;
761
762 br = kzalloc(sizeof(*br), GFP_KERNEL);
763 if (!br) {
764 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800765 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100766 goto out;
767 }
768
Zhang Ruid32f6942009-03-18 16:27:12 +0800769 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100770 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800771 if (!br->levels) {
772 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100773 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800774 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100775
776 for (i = 0; i < obj->package.count; i++) {
777 o = (union acpi_object *)&obj->package.elements[i];
778 if (o->type != ACPI_TYPE_INTEGER) {
779 printk(KERN_ERR PREFIX "Invalid data\n");
780 continue;
781 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100782 value = (u32) o->integer.value;
783 /* Skip duplicate entries */
784 if (count > 2 && br->levels[count - 1] == value)
785 continue;
786
787 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100788
789 if (br->levels[count] > max_level)
790 max_level = br->levels[count];
791 count++;
792 }
793
Zhang Ruid32f6942009-03-18 16:27:12 +0800794 /*
795 * some buggy BIOS don't export the levels
796 * when machine is on AC/Battery in _BCL package.
797 * In this case, the first two elements in _BCL packages
798 * are also supported brightness levels that OS should take care of.
799 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800800 for (i = 2; i < count; i++) {
801 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800802 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800803 if (br->levels[i] == br->levels[1])
804 level_ac_battery++;
805 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500806
Zhang Ruid32f6942009-03-18 16:27:12 +0800807 if (level_ac_battery < 2) {
808 level_ac_battery = 2 - level_ac_battery;
809 br->flags._BCL_no_ac_battery_levels = 1;
810 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
811 br->levels[i] = br->levels[i - level_ac_battery];
812 count += level_ac_battery;
813 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000814 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800815
Zhang Ruid80fb992009-03-18 16:27:14 +0800816 /* Check if the _BCL package is in a reversed order */
817 if (max_level == br->levels[2]) {
818 br->flags._BCL_reversed = 1;
819 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
820 acpi_video_cmp_level, NULL);
821 } else if (max_level != br->levels[count - 1])
822 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000823 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100824
825 br->count = count;
826 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800827
Zhang Rui1a7c6182009-03-18 16:27:16 +0800828 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400829 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800830
831 if (!device->cap._BQC)
832 goto set_level;
833
Danny Baumanna89803d2013-03-19 16:22:50 +0000834 result = acpi_video_device_lcd_get_level_current(device,
835 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800836 if (result)
837 goto out_free_levels;
838
Aaron Lua50188d2013-04-22 14:08:32 +0200839 result = acpi_video_bqc_quirk(device, max_level, level_old);
840 if (result)
841 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800842 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200843 * cap._BQC may get cleared due to _BQC is found to be broken
844 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800845 */
Aaron Lua50188d2013-04-22 14:08:32 +0200846 if (!device->cap._BQC)
847 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800848
Aaron Lu545ef362013-11-15 14:39:12 +0800849 level = acpi_video_bqc_value_to_level(device, level_old);
850 /*
851 * On some buggy laptops, _BQC returns an uninitialized
852 * value when invoked for the first time, i.e.
853 * level_old is invalid (no matter whether it's a level
854 * or an index). Set the backlight to max_level in this case.
855 */
856 for (i = 2; i < br->count; i++)
857 if (level == br->levels[i])
858 break;
859 if (i == br->count || !level)
860 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800861
Zhang Ruie047cca2009-04-09 14:24:35 +0800862set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400863 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800864 if (result)
865 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800866
Zhang Ruid32f6942009-03-18 16:27:12 +0800867 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
868 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100869 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800870 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100871
872out_free_levels:
873 kfree(br->levels);
874out_free:
875 kfree(br);
876out:
877 device->brightness = NULL;
878 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800879 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100880}
881
882/*
883 * Arg:
884 * device : video output device (LCD, CRT, ..)
885 *
886 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500887 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100889 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 * device.
891 */
892
Len Brown4be44fc2005-08-05 00:44:28 -0400893static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Jiang Liu952c63e2013-06-29 00:24:38 +0800895 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800897 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400898 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800899 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400900 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800901 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800902 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800903 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800904 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
905 device->cap._BCQ = 1;
906 }
907
Jiang Liu952c63e2013-06-29 00:24:38 +0800908 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400909 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500913 * Arg:
914 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 *
916 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500917 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100919 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 */
921
Len Brown4be44fc2005-08-05 00:44:28 -0400922static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Jiang Liu952c63e2013-06-29 00:24:38 +0800924 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800926 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800928 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800930 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800932 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800934 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
938/*
939 * Check whether the video bus device has required AML method to
940 * support the desired features
941 */
942
Len Brown4be44fc2005-08-05 00:44:28 -0400943static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Len Brown4be44fc2005-08-05 00:44:28 -0400945 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000946 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -0400949 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000951 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +0200952 if (!dev)
953 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000954 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +0200955
Felipe Contreras21fcb342013-08-01 18:43:59 -0500956 /*
957 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * to check well known required nodes.
959 */
960
Julius Volz98fb8fe2007-02-20 16:38:40 +0100961 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +0200962 if (video->cap._DOS || video->cap._DOD) {
963 if (!video->cap._DOS) {
964 printk(KERN_WARNING FW_BUG
965 "ACPI(%s) defines _DOD but not _DOS\n",
966 acpi_device_bid(video->device));
967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 video->flags.multihead = 1;
969 status = 0;
970 }
971
Julius Volz98fb8fe2007-02-20 16:38:40 +0100972 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -0400973 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 video->flags.rom = 1;
975 status = 0;
976 }
977
Julius Volz98fb8fe2007-02-20 16:38:40 +0100978 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -0400979 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 video->flags.post = 1;
981 status = 0;
982 }
983
Patrick Mocheld550d982006-06-27 00:41:40 -0400984 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Felipe Contreras21fcb342013-08-01 18:43:59 -0500987/*
988 * --------------------------------------------------------------------------
989 * Driver Interface
990 * --------------------------------------------------------------------------
991 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200994static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -0500995acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
996{
Dmitry Torokhov78eed022007-11-05 11:43:33 -0500997 struct acpi_video_enumerated_device *ids;
998 int i;
Rui Zhang82cae992007-01-03 23:40:53 -0500999
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001000 for (i = 0; i < video->attached_count; i++) {
1001 ids = &video->attached_array[i];
1002 if ((ids->value.int_val & 0xffff) == device_id)
1003 return &ids->value.attrib;
1004 }
1005
Rui Zhang82cae992007-01-03 23:40:53 -05001006 return NULL;
1007}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001010acpi_video_get_device_type(struct acpi_video_bus *video,
1011 unsigned long device_id)
1012{
1013 struct acpi_video_enumerated_device *ids;
1014 int i;
1015
1016 for (i = 0; i < video->attached_count; i++) {
1017 ids = &video->attached_array[i];
1018 if ((ids->value.int_val & 0xffff) == device_id)
1019 return ids->value.int_val;
1020 }
1021
1022 return 0;
1023}
1024
1025static int
Len Brown4be44fc2005-08-05 00:44:28 -04001026acpi_video_bus_get_one_device(struct acpi_device *device,
1027 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001029 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001030 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001031 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001032 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Len Brown4be44fc2005-08-05 00:44:28 -04001034 status =
1035 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001036 /* Some device omits _ADR, we skip them instead of fail */
1037 if (ACPI_FAILURE(status))
1038 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Aaron Lu91e13aa2013-04-25 02:47:49 +00001040 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1041 if (!data)
1042 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Aaron Lu91e13aa2013-04-25 02:47:49 +00001044 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1045 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1046 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Aaron Lu91e13aa2013-04-25 02:47:49 +00001048 data->device_id = device_id;
1049 data->video = video;
1050 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001051 INIT_DELAYED_WORK(&data->switch_brightness_work,
1052 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Aaron Lu91e13aa2013-04-25 02:47:49 +00001054 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001055
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001056 if (attribute && attribute->device_id_scheme) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001057 switch (attribute->display_type) {
1058 case ACPI_VIDEO_DISPLAY_CRT:
1059 data->flags.crt = 1;
1060 break;
1061 case ACPI_VIDEO_DISPLAY_TV:
1062 data->flags.tvout = 1;
1063 break;
1064 case ACPI_VIDEO_DISPLAY_DVI:
1065 data->flags.dvi = 1;
1066 break;
1067 case ACPI_VIDEO_DISPLAY_LCD:
1068 data->flags.lcd = 1;
1069 break;
1070 default:
1071 data->flags.unknown = 1;
1072 break;
1073 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001074 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001075 data->flags.bios = 1;
1076 } else {
1077 /* Check for legacy IDs */
1078 device_type = acpi_video_get_device_type(video, device_id);
1079 /* Ignore bits 16 and 18-20 */
1080 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001081 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1082 data->flags.crt = 1;
1083 break;
1084 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1085 data->flags.lcd = 1;
1086 break;
1087 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1088 data->flags.tvout = 1;
1089 break;
1090 default:
1091 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
1094
Aaron Lu91e13aa2013-04-25 02:47:49 +00001095 acpi_video_device_bind(video, data);
1096 acpi_video_device_find_cap(data);
1097
Aaron Lu91e13aa2013-04-25 02:47:49 +00001098 mutex_lock(&video->device_list_lock);
1099 list_add_tail(&data->entry, &video->video_device_list);
1100 mutex_unlock(&video->device_list_lock);
1101
1102 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105/*
1106 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001107 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 *
1109 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001110 * none
1111 *
1112 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 * bind the ids with the corresponding video devices
1114 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001115 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Len Brown4be44fc2005-08-05 00:44:28 -04001117static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001119 struct acpi_video_device *dev;
1120
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001121 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001122
1123 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001124 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001125
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001126 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
1129/*
1130 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001131 * video : video bus device
1132 * device : video output device under the video
1133 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 *
1135 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001136 * none
1137 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 * Bind the ids with the corresponding video devices
1139 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142static void
Len Brown4be44fc2005-08-05 00:44:28 -04001143acpi_video_device_bind(struct acpi_video_bus *video,
1144 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001146 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001147 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001149 for (i = 0; i < video->attached_count; i++) {
1150 ids = &video->attached_array[i];
1151 if (device->device_id == (ids->value.int_val & 0xffff)) {
1152 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1154 }
1155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
Aaron Lu0b8db272014-09-30 14:10:17 +08001158static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1159{
1160 struct acpi_video_bus *video = device->video;
1161 int i;
1162
Aaron Lub4df4632014-12-15 16:01:29 +08001163 /*
1164 * If we have a broken _DOD or we have more than 8 output devices
1165 * under the graphics controller node that we can't proper deal with
1166 * in the operation region code currently, no need to test.
1167 */
1168 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001169 return true;
1170
1171 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001172 if ((video->attached_array[i].value.int_val & 0xfff) ==
1173 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001174 return true;
1175 }
1176
1177 return false;
1178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180/*
1181 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001182 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 *
1184 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001185 * < 0 : error
1186 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * Call _DOD to enumerate all devices attached to display adapter
1188 *
Len Brown4be44fc2005-08-05 00:44:28 -04001189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1192{
Len Brown4be44fc2005-08-05 00:44:28 -04001193 int status;
1194 int count;
1195 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001196 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001197 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1198 union acpi_object *dod = NULL;
1199 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Patrick Mochel90130262006-05-19 16:54:48 -04001201 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001203 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001204 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001207 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001209 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 status = -EFAULT;
1211 goto out;
1212 }
1213
1214 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001215 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001217 active_list = kcalloc(1 + dod->package.count,
1218 sizeof(struct acpi_video_enumerated_device),
1219 GFP_KERNEL);
1220 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 status = -ENOMEM;
1222 goto out;
1223 }
1224
1225 count = 0;
1226 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001227 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001230 printk(KERN_ERR PREFIX
1231 "Invalid _DOD data in element %d\n", i);
1232 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001234
1235 active_list[count].value.int_val = obj->integer.value;
1236 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001237 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1238 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 count++;
1240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
Jesper Juhl6044ec82005-11-07 01:01:32 -08001242 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001243
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001244 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001246
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001247out:
Len Brown02438d82006-06-30 03:19:10 -04001248 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001249 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Len Brown4be44fc2005-08-05 00:44:28 -04001252static int
1253acpi_video_get_next_level(struct acpi_video_device *device,
1254 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001256 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001257 max = max_below = 0;
1258 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001259 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001260 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001261 l = device->brightness->levels[i];
1262 if (abs(l - level_current) < abs(delta)) {
1263 delta = l - level_current;
1264 if (!delta)
1265 break;
1266 }
1267 }
1268 /* Ajust level_current to closest available level */
1269 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001270 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001271 l = device->brightness->levels[i];
1272 if (l < min)
1273 min = l;
1274 if (l > max)
1275 max = l;
1276 if (l < min_above && l > level_current)
1277 min_above = l;
1278 if (l > max_below && l < level_current)
1279 max_below = l;
1280 }
1281
1282 switch (event) {
1283 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1284 return (level_current < max) ? min_above : min;
1285 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1286 return (level_current < max) ? min_above : max;
1287 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1288 return (level_current > min) ? max_below : min;
1289 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1290 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1291 return 0;
1292 default:
1293 return level_current;
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295}
1296
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001297static void
1298acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001300 struct acpi_video_device *device = container_of(to_delayed_work(work),
1301 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001302 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001303 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001304 int result = -EINVAL;
1305
Aaron Lufbc9fe12013-10-11 21:27:45 +08001306 /* no warning message if acpi_backlight=vendor or a quirk is used */
1307 if (!acpi_video_verify_backlight_support())
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001308 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001309
Julia Jomantaite469778c2008-06-23 22:50:42 +01001310 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001311 goto out;
1312
1313 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001314 &level_current,
1315 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001316 if (result)
1317 goto out;
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001320
Zhang Rui24450c72009-03-18 16:27:10 +08001321 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001322
Matthew Garrett36342742009-07-14 17:06:03 +01001323 if (!result)
1324 backlight_force_update(device->backlight,
1325 BACKLIGHT_UPDATE_HOTKEY);
1326
Zhang Ruic8890f92009-03-18 16:27:08 +08001327out:
1328 if (result)
1329 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Matthew Garrette92a7162010-01-12 14:17:03 -05001332int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1333 void **edid)
1334{
1335 struct acpi_video_bus *video;
1336 struct acpi_video_device *video_device;
1337 union acpi_object *buffer = NULL;
1338 acpi_status status;
1339 int i, length;
1340
1341 if (!device || !acpi_driver_data(device))
1342 return -EINVAL;
1343
1344 video = acpi_driver_data(device);
1345
1346 for (i = 0; i < video->attached_count; i++) {
1347 video_device = video->attached_array[i].bind_info;
1348 length = 256;
1349
1350 if (!video_device)
1351 continue;
1352
Zhang Rui82069552010-12-06 15:04:24 +08001353 if (!video_device->cap._DDC)
1354 continue;
1355
Matthew Garrette92a7162010-01-12 14:17:03 -05001356 if (type) {
1357 switch (type) {
1358 case ACPI_VIDEO_DISPLAY_CRT:
1359 if (!video_device->flags.crt)
1360 continue;
1361 break;
1362 case ACPI_VIDEO_DISPLAY_TV:
1363 if (!video_device->flags.tvout)
1364 continue;
1365 break;
1366 case ACPI_VIDEO_DISPLAY_DVI:
1367 if (!video_device->flags.dvi)
1368 continue;
1369 break;
1370 case ACPI_VIDEO_DISPLAY_LCD:
1371 if (!video_device->flags.lcd)
1372 continue;
1373 break;
1374 }
1375 } else if (video_device->device_id != device_id) {
1376 continue;
1377 }
1378
1379 status = acpi_video_device_EDID(video_device, &buffer, length);
1380
1381 if (ACPI_FAILURE(status) || !buffer ||
1382 buffer->type != ACPI_TYPE_BUFFER) {
1383 length = 128;
1384 status = acpi_video_device_EDID(video_device, &buffer,
1385 length);
1386 if (ACPI_FAILURE(status) || !buffer ||
1387 buffer->type != ACPI_TYPE_BUFFER) {
1388 continue;
1389 }
1390 }
1391
1392 *edid = buffer->buffer.pointer;
1393 return length;
1394 }
1395
1396 return -ENODEV;
1397}
1398EXPORT_SYMBOL(acpi_video_get_edid);
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400static int
Len Brown4be44fc2005-08-05 00:44:28 -04001401acpi_video_bus_get_devices(struct acpi_video_bus *video,
1402 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Igor Murzovfba4e082012-10-13 04:41:25 +04001404 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001405 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Igor Murzovfba4e082012-10-13 04:41:25 +04001407 /*
1408 * There are systems where video module known to work fine regardless
1409 * of broken _DOD and ignoring returned value here doesn't cause
1410 * any issues later.
1411 */
1412 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001414 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001417 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001418 dev_err(&dev->dev, "Can't attach device\n");
1419 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Aaron Lub4df4632014-12-15 16:01:29 +08001421 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001423 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/* acpi_video interface */
1427
Aaron Luefaa14c2013-07-16 13:08:05 +08001428/*
1429 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1430 * preform any automatic brightness change on receiving a notification.
1431 */
Len Brown4be44fc2005-08-05 00:44:28 -04001432static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433{
Aaron Luefaa14c2013-07-16 13:08:05 +08001434 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001435 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
Len Brown4be44fc2005-08-05 00:44:28 -04001438static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Aaron Luefaa14c2013-07-16 13:08:05 +08001440 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001441 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
Bjorn Helgaas70155582009-04-07 15:37:11 +00001444static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001446 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001447 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001448 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001449
Aaron Lu67b662e2013-10-11 21:27:44 +08001450 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001451 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Luming Yue9dab192007-08-20 18:23:53 +08001453 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001456 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001458 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
1460
Julius Volz98fb8fe2007-02-20 16:38:40 +01001461 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 * connector. */
1463 acpi_video_device_enumerate(video);
1464 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001465 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 break;
1467
Len Brown4be44fc2005-08-05 00:44:28 -04001468 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001469 keycode = KEY_SWITCHVIDEOMODE;
1470 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001471 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001472 keycode = KEY_VIDEO_NEXT;
1473 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001474 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001475 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 break;
1477
1478 default:
1479 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001480 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 break;
1482 }
1483
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001484 if (acpi_notifier_call_chain(device, event, 0))
1485 /* Something vetoed the keypress. */
1486 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001487
1488 if (keycode) {
1489 input_report_key(input, keycode, 1);
1490 input_sync(input);
1491 input_report_key(input, keycode, 0);
1492 input_sync(input);
1493 }
Luming Yue9dab192007-08-20 18:23:53 +08001494
Patrick Mocheld550d982006-06-27 00:41:40 -04001495 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001498static void brightness_switch_event(struct acpi_video_device *video_device,
1499 u32 event)
1500{
1501 if (!brightness_switch_enabled)
1502 return;
1503
1504 video_device->switch_brightness_event = event;
1505 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1506}
1507
Len Brown4be44fc2005-08-05 00:44:28 -04001508static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001510 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001511 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001512 struct acpi_video_bus *bus;
1513 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001514 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001517 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001519 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001520 bus = video_device->video;
1521 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001524 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001525 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001526 keycode = KEY_BRIGHTNESS_CYCLE;
1527 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001528 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001529 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001530 keycode = KEY_BRIGHTNESSUP;
1531 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001532 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001533 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001534 keycode = KEY_BRIGHTNESSDOWN;
1535 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001536 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001537 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001538 keycode = KEY_BRIGHTNESS_ZERO;
1539 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001540 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001541 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001542 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 break;
1544 default:
1545 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001546 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 break;
1548 }
Luming Yue9dab192007-08-20 18:23:53 +08001549
Zhang Rui7761f632008-01-25 14:48:12 +08001550 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001551
1552 if (keycode) {
1553 input_report_key(input, keycode, 1);
1554 input_sync(input);
1555 input_report_key(input, keycode, 0);
1556 input_sync(input);
1557 }
Luming Yue9dab192007-08-20 18:23:53 +08001558
Patrick Mocheld550d982006-06-27 00:41:40 -04001559 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001562static int acpi_video_resume(struct notifier_block *nb,
1563 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001564{
1565 struct acpi_video_bus *video;
1566 struct acpi_video_device *video_device;
1567 int i;
1568
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001569 switch (val) {
1570 case PM_HIBERNATION_PREPARE:
1571 case PM_SUSPEND_PREPARE:
1572 case PM_RESTORE_PREPARE:
1573 return NOTIFY_DONE;
1574 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001575
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001576 video = container_of(nb, struct acpi_video_bus, pm_nb);
1577
1578 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001579
1580 for (i = 0; i < video->attached_count; i++) {
1581 video_device = video->attached_array[i].bind_info;
1582 if (video_device && video_device->backlight)
1583 acpi_video_set_brightness(video_device->backlight);
1584 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001585
1586 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001587}
1588
Zhang Ruic504f8c2009-12-30 15:59:23 +08001589static acpi_status
1590acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1591 void **return_value)
1592{
1593 struct acpi_device *device = context;
1594 struct acpi_device *sibling;
1595 int result;
1596
1597 if (handle == device->handle)
1598 return AE_CTRL_TERMINATE;
1599
1600 result = acpi_bus_get_device(handle, &sibling);
1601 if (result)
1602 return AE_OK;
1603
1604 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1605 return AE_ALREADY_EXISTS;
1606
1607 return AE_OK;
1608}
1609
Aaron Lu67b662e2013-10-11 21:27:44 +08001610static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1611{
Hans de Goede99678ed2014-05-15 13:22:33 +02001612 struct backlight_properties props;
1613 struct pci_dev *pdev;
1614 acpi_handle acpi_parent;
1615 struct device *parent = NULL;
1616 int result;
1617 static int count;
1618 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001619
Aaron Lu0b8db272014-09-30 14:10:17 +08001620 /*
1621 * Do not create backlight device for video output
1622 * device that is not in the enumerated list.
1623 */
1624 if (!acpi_video_device_in_dod(device)) {
1625 dev_dbg(&device->dev->dev, "not in _DOD list, ignore\n");
1626 return;
1627 }
1628
Hans de Goede99678ed2014-05-15 13:22:33 +02001629 result = acpi_video_init_brightness(device);
1630 if (result)
1631 return;
1632 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1633 if (!name)
1634 return;
1635 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001636
Hans de Goede99678ed2014-05-15 13:22:33 +02001637 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001638
Hans de Goede99678ed2014-05-15 13:22:33 +02001639 pdev = acpi_get_pci_dev(acpi_parent);
1640 if (pdev) {
1641 parent = &pdev->dev;
1642 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001643 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001644
1645 memset(&props, 0, sizeof(struct backlight_properties));
1646 props.type = BACKLIGHT_FIRMWARE;
1647 props.max_brightness = device->brightness->count - 3;
1648 device->backlight = backlight_device_register(name,
1649 parent,
1650 device,
1651 &acpi_backlight_ops,
1652 &props);
1653 kfree(name);
1654 if (IS_ERR(device->backlight))
1655 return;
1656
1657 /*
1658 * Save current brightness level in case we have to restore it
1659 * before acpi_video_device_lcd_set_level() is called next time.
1660 */
1661 device->backlight->props.brightness =
1662 acpi_video_get_brightness(device->backlight);
1663
1664 device->cooling_dev = thermal_cooling_device_register("LCD",
1665 device->dev, &video_cooling_ops);
1666 if (IS_ERR(device->cooling_dev)) {
1667 /*
1668 * Set cooling_dev to NULL so we don't crash trying to free it.
1669 * Also, why the hell we are returning early and not attempt to
1670 * register video output if cooling device registration failed?
1671 * -- dtor
1672 */
1673 device->cooling_dev = NULL;
1674 return;
1675 }
1676
1677 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1678 device->cooling_dev->id);
1679 result = sysfs_create_link(&device->dev->dev.kobj,
1680 &device->cooling_dev->device.kobj,
1681 "thermal_cooling");
1682 if (result)
1683 printk(KERN_ERR PREFIX "Create sysfs link\n");
1684 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1685 &device->dev->dev.kobj, "device");
1686 if (result)
1687 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001688}
1689
Aaron Ludce4ec22014-10-28 14:35:59 +08001690static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1691{
1692 struct acpi_video_device *dev;
1693 union acpi_object *levels;
1694
1695 mutex_lock(&video->device_list_lock);
1696 list_for_each_entry(dev, &video->video_device_list, entry) {
1697 if (!acpi_video_device_lcd_query_levels(dev, &levels))
1698 kfree(levels);
1699 }
1700 mutex_unlock(&video->device_list_lock);
1701}
1702
Aaron Lu67b662e2013-10-11 21:27:44 +08001703static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1704{
1705 struct acpi_video_device *dev;
1706
Hans de Goede53a92ba2014-05-21 15:39:55 +02001707 if (video->backlight_registered)
1708 return 0;
1709
Aaron Ludce4ec22014-10-28 14:35:59 +08001710 acpi_video_run_bcl_for_osi(video);
1711
Hans de Goede99678ed2014-05-15 13:22:33 +02001712 if (!acpi_video_verify_backlight_support())
1713 return 0;
1714
Aaron Lu67b662e2013-10-11 21:27:44 +08001715 mutex_lock(&video->device_list_lock);
1716 list_for_each_entry(dev, &video->video_device_list, entry)
1717 acpi_video_dev_register_backlight(dev);
1718 mutex_unlock(&video->device_list_lock);
1719
Hans de Goede99678ed2014-05-15 13:22:33 +02001720 video->backlight_registered = true;
1721
Aaron Lu67b662e2013-10-11 21:27:44 +08001722 video->pm_nb.notifier_call = acpi_video_resume;
1723 video->pm_nb.priority = 0;
1724 return register_pm_notifier(&video->pm_nb);
1725}
1726
1727static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1728{
1729 if (device->backlight) {
1730 backlight_device_unregister(device->backlight);
1731 device->backlight = NULL;
1732 }
1733 if (device->brightness) {
1734 kfree(device->brightness->levels);
1735 kfree(device->brightness);
1736 device->brightness = NULL;
1737 }
1738 if (device->cooling_dev) {
1739 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1740 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1741 thermal_cooling_device_unregister(device->cooling_dev);
1742 device->cooling_dev = NULL;
1743 }
1744}
1745
1746static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1747{
1748 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001749 int error;
1750
1751 if (!video->backlight_registered)
1752 return 0;
1753
1754 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001755
1756 mutex_lock(&video->device_list_lock);
1757 list_for_each_entry(dev, &video->video_device_list, entry)
1758 acpi_video_dev_unregister_backlight(dev);
1759 mutex_unlock(&video->device_list_lock);
1760
Hans de Goede99678ed2014-05-15 13:22:33 +02001761 video->backlight_registered = false;
1762
Aaron Lu67b662e2013-10-11 21:27:44 +08001763 return error;
1764}
1765
1766static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1767{
1768 acpi_status status;
1769 struct acpi_device *adev = device->dev;
1770
1771 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1772 acpi_video_device_notify, device);
1773 if (ACPI_FAILURE(status))
1774 dev_err(&adev->dev, "Error installing notify handler\n");
1775 else
1776 device->flags.notify = 1;
1777}
1778
1779static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1780{
1781 struct input_dev *input;
1782 struct acpi_video_device *dev;
1783 int error;
1784
1785 video->input = input = input_allocate_device();
1786 if (!input) {
1787 error = -ENOMEM;
1788 goto out;
1789 }
1790
1791 error = acpi_video_bus_start_devices(video);
1792 if (error)
1793 goto err_free_input;
1794
1795 snprintf(video->phys, sizeof(video->phys),
1796 "%s/video/input0", acpi_device_hid(video->device));
1797
1798 input->name = acpi_device_name(video->device);
1799 input->phys = video->phys;
1800 input->id.bustype = BUS_HOST;
1801 input->id.product = 0x06;
1802 input->dev.parent = &video->device->dev;
1803 input->evbit[0] = BIT(EV_KEY);
1804 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1805 set_bit(KEY_VIDEO_NEXT, input->keybit);
1806 set_bit(KEY_VIDEO_PREV, input->keybit);
1807 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1808 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1809 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1810 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1811 set_bit(KEY_DISPLAY_OFF, input->keybit);
1812
1813 error = input_register_device(input);
1814 if (error)
1815 goto err_stop_dev;
1816
1817 mutex_lock(&video->device_list_lock);
1818 list_for_each_entry(dev, &video->video_device_list, entry)
1819 acpi_video_dev_add_notify_handler(dev);
1820 mutex_unlock(&video->device_list_lock);
1821
1822 return 0;
1823
1824err_stop_dev:
1825 acpi_video_bus_stop_devices(video);
1826err_free_input:
1827 input_free_device(input);
1828 video->input = NULL;
1829out:
1830 return error;
1831}
1832
1833static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1834{
1835 if (dev->flags.notify) {
1836 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1837 acpi_video_device_notify);
1838 dev->flags.notify = 0;
1839 }
1840}
1841
1842static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1843{
1844 struct acpi_video_device *dev;
1845
1846 mutex_lock(&video->device_list_lock);
1847 list_for_each_entry(dev, &video->video_device_list, entry)
1848 acpi_video_dev_remove_notify_handler(dev);
1849 mutex_unlock(&video->device_list_lock);
1850
1851 acpi_video_bus_stop_devices(video);
1852 input_unregister_device(video->input);
1853 video->input = NULL;
1854}
1855
Hans de Goede53a92ba2014-05-21 15:39:55 +02001856static int acpi_video_backlight_notify(struct notifier_block *nb,
1857 unsigned long val, void *bd)
1858{
1859 struct backlight_device *backlight = bd;
1860 struct acpi_video_bus *video;
1861
1862 /* acpi_video_verify_backlight_support only cares about raw devices */
1863 if (backlight->props.type != BACKLIGHT_RAW)
1864 return NOTIFY_DONE;
1865
1866 video = container_of(nb, struct acpi_video_bus, backlight_nb);
1867
1868 switch (val) {
1869 case BACKLIGHT_REGISTERED:
1870 if (!acpi_video_verify_backlight_support())
1871 acpi_video_bus_unregister_backlight(video);
1872 break;
1873 case BACKLIGHT_UNREGISTERED:
1874 acpi_video_bus_register_backlight(video);
1875 break;
1876 }
1877
1878 return NOTIFY_OK;
1879}
1880
1881static int acpi_video_bus_add_backlight_notify_handler(
1882 struct acpi_video_bus *video)
1883{
1884 int error;
1885
1886 video->backlight_nb.notifier_call = acpi_video_backlight_notify;
1887 video->backlight_nb.priority = 0;
1888 error = backlight_register_notifier(&video->backlight_nb);
1889 if (error == 0)
1890 video->backlight_notifier_registered = true;
1891
1892 return error;
1893}
1894
1895static int acpi_video_bus_remove_backlight_notify_handler(
1896 struct acpi_video_bus *video)
1897{
1898 if (!video->backlight_notifier_registered)
1899 return 0;
1900
1901 video->backlight_notifier_registered = false;
1902
1903 return backlight_unregister_notifier(&video->backlight_nb);
1904}
1905
Aaron Lu67b662e2013-10-11 21:27:44 +08001906static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1907{
1908 struct acpi_video_device *dev, *next;
1909
1910 mutex_lock(&video->device_list_lock);
1911 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1912 list_del(&dev->entry);
1913 kfree(dev);
1914 }
1915 mutex_unlock(&video->device_list_lock);
1916
1917 return 0;
1918}
1919
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001920static int instance;
1921
Len Brown4be44fc2005-08-05 00:44:28 -04001922static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001924 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001925 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001926 acpi_status status;
1927
1928 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1929 device->parent->handle, 1,
1930 acpi_video_bus_match, NULL,
1931 device, NULL);
1932 if (status == AE_ALREADY_EXISTS) {
1933 printk(KERN_WARNING FW_BUG
1934 "Duplicate ACPI video bus devices for the"
1935 " same VGA controller, please try module "
1936 "parameter \"video.allow_duplicates=1\""
1937 "if the current driver doesn't work.\n");
1938 if (!allow_duplicates)
1939 return -ENODEV;
1940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Burman Yan36bcbec2006-12-19 12:56:11 -08001942 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001944 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Zhang Ruie6d9da12007-08-25 02:23:31 -04001946 /* a hack to fix the duplicate name "VID" problem on T61 */
1947 if (!strcmp(device->pnp.bus_id, "VID")) {
1948 if (instance)
1949 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001950 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04001951 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001952 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1953 if (!strcmp(device->pnp.bus_id, "VGA")) {
1954 if (instance)
1955 device->pnp.bus_id[3] = '0' + instance;
1956 instance++;
1957 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001958
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001959 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1961 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001962 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001965 error = acpi_video_bus_check(video);
1966 if (error)
1967 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001969 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 INIT_LIST_HEAD(&video->video_device_list);
1971
Igor Murzovea9f8852012-03-30 21:32:08 +04001972 error = acpi_video_bus_get_devices(video, device);
1973 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001974 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001977 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
1978 video->flags.multihead ? "yes" : "no",
1979 video->flags.rom ? "yes" : "no",
1980 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08001981 mutex_lock(&video_list_lock);
1982 list_add_tail(&video->entry, &video_bus_head);
1983 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Aaron Lu67b662e2013-10-11 21:27:44 +08001985 acpi_video_bus_register_backlight(video);
1986 acpi_video_bus_add_notify_handler(video);
Hans de Goede53a92ba2014-05-21 15:39:55 +02001987 acpi_video_bus_add_backlight_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001988
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001989 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Aaron Lu67b662e2013-10-11 21:27:44 +08001991err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001992 acpi_video_bus_put_devices(video);
1993 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08001994err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001995 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001996 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001997
1998 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002001static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002{
Len Brown4be44fc2005-08-05 00:44:28 -04002003 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002007 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002009 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Hans de Goede53a92ba2014-05-21 15:39:55 +02002011 acpi_video_bus_remove_backlight_notify_handler(video);
Aaron Lu67b662e2013-10-11 21:27:44 +08002012 acpi_video_bus_remove_notify_handler(video);
2013 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Aaron Lu67b662e2013-10-11 21:27:44 +08002016 mutex_lock(&video_list_lock);
2017 list_del(&video->entry);
2018 mutex_unlock(&video_list_lock);
2019
Jesper Juhl6044ec82005-11-07 01:01:32 -08002020 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 kfree(video);
2022
Patrick Mocheld550d982006-06-27 00:41:40 -04002023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Alan Coxc6996bd2012-04-25 14:33:48 +01002026static int __init is_i740(struct pci_dev *dev)
2027{
2028 if (dev->device == 0x00D1)
2029 return 1;
2030 if (dev->device == 0x7000)
2031 return 1;
2032 return 0;
2033}
2034
Matthew Garrett74a365b2009-03-19 21:35:39 +00002035static int __init intel_opregion_present(void)
2036{
Alan Coxc6996bd2012-04-25 14:33:48 +01002037 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002038 struct pci_dev *dev = NULL;
2039 u32 address;
2040
2041 for_each_pci_dev(dev) {
2042 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2043 continue;
2044 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2045 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002046 /* We don't want to poke around undefined i740 registers */
2047 if (is_i740(dev))
2048 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002049 pci_read_config_dword(dev, 0xfc, &address);
2050 if (!address)
2051 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002052 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002053 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002054 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002055}
2056
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002057int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002059 int result = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002060 if (register_count) {
2061 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002062 * if the function of acpi_video_register is already called,
2063 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002064 */
2065 return 0;
2066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Aaron Lu67b662e2013-10-11 21:27:44 +08002068 mutex_init(&video_list_lock);
2069 INIT_LIST_HEAD(&video_bus_head);
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 result = acpi_bus_register_driver(&acpi_video_bus);
Zhang Rui39fe3942010-10-08 13:55:11 +08002072 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -04002073 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Zhao Yakui86e437f2009-06-16 11:23:13 +08002075 /*
2076 * When the acpi_video_bus is loaded successfully, increase
2077 * the counter reference.
2078 */
2079 register_count = 1;
2080
Patrick Mocheld550d982006-06-27 00:41:40 -04002081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002083EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002084
Zhao Yakui86e437f2009-06-16 11:23:13 +08002085void acpi_video_unregister(void)
2086{
2087 if (!register_count) {
2088 /*
2089 * If the acpi video bus is already unloaded, don't
2090 * unload it again and return directly.
2091 */
2092 return;
2093 }
2094 acpi_bus_unregister_driver(&acpi_video_bus);
2095
Zhao Yakui86e437f2009-06-16 11:23:13 +08002096 register_count = 0;
2097
2098 return;
2099}
2100EXPORT_SYMBOL(acpi_video_unregister);
2101
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002102void acpi_video_unregister_backlight(void)
2103{
2104 struct acpi_video_bus *video;
2105
2106 if (!register_count)
2107 return;
2108
2109 mutex_lock(&video_list_lock);
2110 list_for_each_entry(video, &video_bus_head, entry)
2111 acpi_video_bus_unregister_backlight(video);
2112 mutex_unlock(&video_list_lock);
2113}
2114EXPORT_SYMBOL(acpi_video_unregister_backlight);
2115
Matthew Garrett74a365b2009-03-19 21:35:39 +00002116/*
2117 * This is kind of nasty. Hardware using Intel chipsets may require
2118 * the video opregion code to be run first in order to initialise
2119 * state before any ACPI video calls are made. To handle this we defer
2120 * registration of the video class until the opregion code has run.
2121 */
2122
2123static int __init acpi_video_init(void)
2124{
Zhang Rui45cb50e2009-04-24 12:13:18 -04002125 dmi_check_system(video_dmi_table);
2126
Matthew Garrett74a365b2009-03-19 21:35:39 +00002127 if (intel_opregion_present())
2128 return 0;
2129
2130 return acpi_video_register();
2131}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Zhao Yakui86e437f2009-06-16 11:23:13 +08002133static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Zhao Yakui86e437f2009-06-16 11:23:13 +08002135 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Patrick Mocheld550d982006-06-27 00:41:40 -04002137 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140module_init(acpi_video_init);
2141module_exit(acpi_video_exit);