blob: fb9ffe9adc645601361092c7252778a1aacf2e43 [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
Hans de Goede886129a2014-05-06 14:46:23 +020071static bool brightness_switch_enabled;
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 */
Rafael J. Wysocki751109a2014-06-05 22:47:35 +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);
87static bool use_native_backlight_dmi = false;
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;
158 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500161 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800162 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800163 struct input_dev *input;
164 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200165 struct notifier_block pm_nb;
Hans de Goede53a92ba2014-05-21 15:39:55 +0200166 struct notifier_block backlight_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
169struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400170 u8 crt:1;
171 u8 lcd:1;
172 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500173 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400174 u8 bios:1;
175 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000176 u8 notify:1;
177 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
180struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500181 u8 _ADR:1; /* Return the unique ID */
182 u8 _BCL:1; /* Query list of brightness control levels supported */
183 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800184 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800185 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500186 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
Zhang Ruid32f6942009-03-18 16:27:12 +0800189struct acpi_video_brightness_flags {
190 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500191 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */
Zhang Rui1a7c6182009-03-18 16:27:16 +0800192 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800193};
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400196 int curr;
197 int count;
198 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800199 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
202struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400203 unsigned long device_id;
204 struct acpi_video_device_flags flags;
205 struct acpi_video_device_cap cap;
206 struct list_head entry;
207 struct acpi_video_bus *video;
208 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800210 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400211 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100214static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 "motherboard VGA device",
216 "PCI VGA device",
217 "AGP VGA device",
218 "UNKNOWN",
219};
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
222static void acpi_video_device_rebind(struct acpi_video_bus *video);
223static void acpi_video_device_bind(struct acpi_video_bus *video,
224 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800226static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
227 int level);
228static int acpi_video_device_lcd_get_level_current(
229 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000230 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400231static int acpi_video_get_next_level(struct acpi_video_device *device,
232 u32 level_current, u32 event);
Zhang Ruic8890f92009-03-18 16:27:08 +0800233static int acpi_video_switch_brightness(struct acpi_video_device *device,
Len Brown4be44fc2005-08-05 00:44:28 -0400234 int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800236static bool acpi_video_use_native_backlight(void)
237{
238 if (use_native_backlight_param != -1)
239 return use_native_backlight_param;
240 else
241 return use_native_backlight_dmi;
242}
243
Aaron Lufbc9fe12013-10-11 21:27:45 +0800244static bool acpi_video_verify_backlight_support(void)
245{
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800246 if (acpi_osi_is_win8() && acpi_video_use_native_backlight() &&
Aaron Lufbc9fe12013-10-11 21:27:45 +0800247 backlight_device_registered(BACKLIGHT_RAW))
248 return false;
249 return acpi_video_backlight_support();
250}
251
Felipe Contreras21fcb342013-08-01 18:43:59 -0500252/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800253static int acpi_video_get_brightness(struct backlight_device *bd)
254{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400255 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000256 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200257 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800258
Danny Baumanna89803d2013-03-19 16:22:50 +0000259 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800260 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000261 for (i = 2; i < vd->brightness->count; i++) {
262 if (vd->brightness->levels[i] == cur_level)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500263 /*
264 * The first two entries are special - see page 575
265 * of the ACPI spec 3.0
266 */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200267 return i - 2;
Matthew Garrett38531e62007-12-26 02:03:26 +0000268 }
269 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800270}
271
272static int acpi_video_set_brightness(struct backlight_device *bd)
273{
Zhang Rui24450c72009-03-18 16:27:10 +0800274 int request_level = bd->props.brightness + 2;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200275 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800276
277 return acpi_video_device_lcd_set_level(vd,
278 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800279}
280
Lionel Debrouxacc24722010-11-16 14:14:02 +0100281static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000282 .get_brightness = acpi_video_get_brightness,
283 .update_status = acpi_video_set_brightness,
284};
285
Zhang Rui702ed512008-01-17 15:51:22 +0800286/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400287static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000288 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800289{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400290 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800291 struct acpi_video_device *video = acpi_driver_data(device);
292
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000293 *state = video->brightness->count - 3;
294 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800295}
296
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400297static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000298 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800299{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400300 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800301 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400302 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000303 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800304
Danny Baumanna89803d2013-03-19 16:22:50 +0000305 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800306 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000307 for (offset = 2; offset < video->brightness->count; offset++)
308 if (level == video->brightness->levels[offset]) {
309 *state = video->brightness->count - offset - 1;
310 return 0;
311 }
Zhang Rui702ed512008-01-17 15:51:22 +0800312
313 return -EINVAL;
314}
315
316static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400317video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800318{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400319 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800320 struct acpi_video_device *video = acpi_driver_data(device);
321 int level;
322
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200323 if (state >= video->brightness->count - 2)
Zhang Rui702ed512008-01-17 15:51:22 +0800324 return -EINVAL;
325
326 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200327 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800328 return acpi_video_device_lcd_set_level(video, level);
329}
330
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400331static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800332 .get_max_state = video_get_max_state,
333 .get_cur_state = video_get_cur_state,
334 .set_cur_state = video_set_cur_state,
335};
336
Felipe Contreras21fcb342013-08-01 18:43:59 -0500337/*
338 * --------------------------------------------------------------------------
339 * Video Management
340 * --------------------------------------------------------------------------
341 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static int
Len Brown4be44fc2005-08-05 00:44:28 -0400344acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
345 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Len Brown4be44fc2005-08-05 00:44:28 -0400347 int status;
348 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
349 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 *levels = NULL;
353
Patrick Mochel90130262006-05-19 16:54:48 -0400354 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400356 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400357 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500358 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400359 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 status = -EFAULT;
361 goto err;
362 }
363
364 *levels = obj;
365
Patrick Mocheld550d982006-06-27 00:41:40 -0400366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200368err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800369 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Patrick Mocheld550d982006-06-27 00:41:40 -0400371 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374static int
Len Brown4be44fc2005-08-05 00:44:28 -0400375acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Zhang Rui24450c72009-03-18 16:27:10 +0800377 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800378 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Jiang Liu0db98202013-06-29 00:24:39 +0800380 status = acpi_execute_simple_method(device->dev->handle,
381 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800382 if (ACPI_FAILURE(status)) {
383 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
384 return -EIO;
385 }
386
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400387 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800388 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800389 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800390 if (device->backlight)
391 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800392 return 0;
393 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800394
Zhang Rui24450c72009-03-18 16:27:10 +0800395 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
396 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Zhang Rui45cb50e2009-04-24 12:13:18 -0400399/*
400 * For some buggy _BQC methods, we need to add a constant value to
401 * the _BQC return value to get the actual current brightness level
402 */
403
404static int bqc_offset_aml_bug_workaround;
405static int __init video_set_bqc_offset(const struct dmi_system_id *d)
406{
407 bqc_offset_aml_bug_workaround = 9;
408 return 0;
409}
410
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800411static int __init video_set_use_native_backlight(const struct dmi_system_id *d)
412{
413 use_native_backlight_dmi = true;
414 return 0;
415}
416
Zhang Rui45cb50e2009-04-24 12:13:18 -0400417static struct dmi_system_id video_dmi_table[] __initdata = {
418 /*
419 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
420 */
421 {
422 .callback = video_set_bqc_offset,
423 .ident = "Acer Aspire 5720",
424 .matches = {
425 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
426 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
427 },
428 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400429 {
430 .callback = video_set_bqc_offset,
431 .ident = "Acer Aspire 5710Z",
432 .matches = {
433 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
434 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
435 },
436 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400437 {
438 .callback = video_set_bqc_offset,
439 .ident = "eMachines E510",
440 .matches = {
441 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
442 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
443 },
444 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400445 {
446 .callback = video_set_bqc_offset,
447 .ident = "Acer Aspire 5315",
448 .matches = {
449 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
450 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
451 },
452 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800453 {
454 .callback = video_set_bqc_offset,
455 .ident = "Acer Aspire 7720",
456 .matches = {
457 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
458 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
459 },
460 },
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800461 {
462 .callback = video_set_use_native_backlight,
Hans de Goede43d94902014-05-05 11:38:08 +0200463 .ident = "ThinkPad T430 and T430s",
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800464 .matches = {
465 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
Hans de Goede43d94902014-05-05 11:38:08 +0200466 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T430"),
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800467 },
468 },
469 {
470 .callback = video_set_use_native_backlight,
471 .ident = "ThinkPad X230",
472 .matches = {
473 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
474 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X230"),
475 },
476 },
477 {
Hans de Goede43d94902014-05-05 11:38:08 +0200478 .callback = video_set_use_native_backlight,
Hans de Goede1e815db2014-05-21 15:39:56 +0200479 .ident = "ThinkPad W530",
480 .matches = {
481 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
482 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad W530"),
483 },
484 },
485 {
486 .callback = video_set_use_native_backlight,
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800487 .ident = "ThinkPad X1 Carbon",
488 .matches = {
489 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
490 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X1 Carbon"),
491 },
492 },
493 {
494 .callback = video_set_use_native_backlight,
495 .ident = "Lenovo Yoga 13",
496 .matches = {
497 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
498 DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo IdeaPad Yoga 13"),
499 },
500 },
501 {
Hans de Goede0dc6b962014-05-26 13:44:29 +0200502 .callback = video_set_use_native_backlight,
503 .ident = "Lenovo Yoga 2 11",
504 .matches = {
505 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
506 DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo Yoga 2 11"),
507 },
508 },
509 {
Stephen Chandler Paul997dd7f2014-04-04 10:44:46 -0400510 .callback = video_set_use_native_backlight,
511 .ident = "Thinkpad Helix",
512 .matches = {
513 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
514 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad Helix"),
515 },
516 },
517 {
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800518 .callback = video_set_use_native_backlight,
519 .ident = "Dell Inspiron 7520",
520 .matches = {
521 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
Aaron Lu5ff365f2014-05-13 09:51:50 +0800522 DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7520"),
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800523 },
524 },
525 {
526 .callback = video_set_use_native_backlight,
527 .ident = "Acer Aspire 5733Z",
528 .matches = {
529 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
530 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5733Z"),
531 },
532 },
533 {
534 .callback = video_set_use_native_backlight,
Hans de Goede43d94902014-05-05 11:38:08 +0200535 .ident = "Acer Aspire 5742G",
536 .matches = {
537 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
538 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5742G"),
539 },
540 },
541 {
542 .callback = video_set_use_native_backlight,
Hans de Goede0dc6b962014-05-26 13:44:29 +0200543 .ident = "Acer Aspire V5-171",
544 .matches = {
545 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
546 DMI_MATCH(DMI_PRODUCT_NAME, "V5-171"),
547 },
548 },
549 {
550 .callback = video_set_use_native_backlight,
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800551 .ident = "Acer Aspire V5-431",
552 .matches = {
553 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
554 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-431"),
555 },
556 },
557 {
Hans de Goede0dc6b962014-05-26 13:44:29 +0200558 .callback = video_set_use_native_backlight,
559 .ident = "Acer Aspire V5-471G",
560 .matches = {
561 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
562 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-471G"),
563 },
564 },
565 {
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800566 .callback = video_set_use_native_backlight,
567 .ident = "HP ProBook 4340s",
568 .matches = {
569 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
570 DMI_MATCH(DMI_PRODUCT_VERSION, "HP ProBook 4340s"),
571 },
572 },
573 {
574 .callback = video_set_use_native_backlight,
575 .ident = "HP ProBook 2013 models",
576 .matches = {
577 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
578 DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook "),
579 DMI_MATCH(DMI_PRODUCT_NAME, " G1"),
580 },
581 },
582 {
583 .callback = video_set_use_native_backlight,
584 .ident = "HP EliteBook 2013 models",
585 .matches = {
586 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
587 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook "),
588 DMI_MATCH(DMI_PRODUCT_NAME, " G1"),
589 },
590 },
591 {
592 .callback = video_set_use_native_backlight,
593 .ident = "HP ZBook 14",
594 .matches = {
595 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
596 DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 14"),
597 },
598 },
599 {
600 .callback = video_set_use_native_backlight,
601 .ident = "HP ZBook 15",
602 .matches = {
603 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
604 DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 15"),
605 },
606 },
607 {
608 .callback = video_set_use_native_backlight,
609 .ident = "HP ZBook 17",
610 .matches = {
611 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
612 DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 17"),
613 },
614 },
615 {
616 .callback = video_set_use_native_backlight,
Hans de Goede0dc6b962014-05-26 13:44:29 +0200617 .ident = "HP EliteBook 8470p",
618 .matches = {
619 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
620 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 8470p"),
621 },
622 },
623 {
624 .callback = video_set_use_native_backlight,
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800625 .ident = "HP EliteBook 8780w",
626 .matches = {
627 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
628 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 8780w"),
629 },
630 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400631 {}
632};
633
Danny Baumann994fa632013-03-19 16:22:52 +0000634static unsigned long long
635acpi_video_bqc_value_to_level(struct acpi_video_device *device,
636 unsigned long long bqc_value)
637{
638 unsigned long long level;
639
640 if (device->brightness->flags._BQC_use_index) {
641 /*
642 * _BQC returns an index that doesn't account for
643 * the first 2 items with special meaning, so we need
644 * to compensate for that by offsetting ourselves
645 */
646 if (device->brightness->flags._BCL_reversed)
647 bqc_value = device->brightness->count - 3 - bqc_value;
648
649 level = device->brightness->levels[bqc_value + 2];
650 } else {
651 level = bqc_value;
652 }
653
654 level += bqc_offset_aml_bug_workaround;
655
656 return level;
657}
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659static int
Len Brown4be44fc2005-08-05 00:44:28 -0400660acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000661 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Zhang Ruic8890f92009-03-18 16:27:08 +0800663 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800664 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800665
Zhang Ruic60d6382009-03-18 16:27:18 +0800666 if (device->cap._BQC || device->cap._BCQ) {
667 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
668
669 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800670 NULL, level);
671 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000672 if (raw) {
673 /*
674 * Caller has indicated he wants the raw
675 * value returned by _BQC, so don't furtherly
676 * mess with the value.
677 */
678 return 0;
679 }
680
Danny Baumann994fa632013-03-19 16:22:52 +0000681 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800682
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800683 for (i = 2; i < device->brightness->count; i++)
684 if (device->brightness->levels[i] == *level) {
685 device->brightness->curr = *level;
686 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200687 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000688 /*
689 * BQC returned an invalid level.
690 * Stop using it.
691 */
692 ACPI_WARNING((AE_INFO,
693 "%s returned an invalid level",
694 buf));
695 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800696 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500697 /*
698 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800699 * should we return an error or ignore this failure?
700 * dev->brightness->curr is a cached value which stores
701 * the correct current backlight level in most cases.
702 * ACPI video backlight still works w/ buggy _BQC.
703 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
704 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800705 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
706 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800707 }
708 }
709
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400710 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714static int
Len Brown4be44fc2005-08-05 00:44:28 -0400715acpi_video_device_EDID(struct acpi_video_device *device,
716 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Len Brown4be44fc2005-08-05 00:44:28 -0400718 int status;
719 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
720 union acpi_object *obj;
721 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
722 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 *edid = NULL;
726
727 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400728 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (length == 128)
730 arg0.integer.value = 1;
731 else if (length == 256)
732 arg0.integer.value = 2;
733 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400734 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Patrick Mochel90130262006-05-19 16:54:48 -0400736 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400738 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200740 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742 if (obj && obj->type == ACPI_TYPE_BUFFER)
743 *edid = obj;
744 else {
Len Brown64684632006-06-26 23:41:38 -0400745 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 status = -EFAULT;
747 kfree(obj);
748 }
749
Patrick Mocheld550d982006-06-27 00:41:40 -0400750 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/* bus */
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755/*
756 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500757 * video : video bus device pointer
758 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 * 0. The system BIOS should NOT automatically switch(toggle)
760 * the active display output.
761 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100762 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * 2. The _DGS value should be locked.
764 * 3. The system BIOS should not automatically switch (toggle) the
765 * active display output, but instead generate the display switch
766 * event notify code.
767 * lcd_flag :
768 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100769 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500770 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100771 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500772 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400773 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 */
775
776static int
Len Brown4be44fc2005-08-05 00:44:28 -0400777acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Igor Murzovea9f8852012-03-30 21:32:08 +0400779 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Zhang Ruib0373842012-06-20 09:48:43 +0800781 if (!video->cap._DOS)
782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Igor Murzovea9f8852012-03-30 21:32:08 +0400784 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
785 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800786 video->dos_setting = (lcd_flag << 2) | bios_flag;
787 status = acpi_execute_simple_method(video->device->handle, "_DOS",
788 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400789 if (ACPI_FAILURE(status))
790 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Igor Murzovea9f8852012-03-30 21:32:08 +0400792 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500796 * Simple comparison function used to sort backlight levels.
797 */
798
799static int
800acpi_video_cmp_level(const void *a, const void *b)
801{
802 return *(int *)a - *(int *)b;
803}
804
805/*
Aaron Lua50188d2013-04-22 14:08:32 +0200806 * Decides if _BQC/_BCQ for this system is usable
807 *
808 * We do this by changing the level first and then read out the current
809 * brightness level, if the value does not match, find out if it is using
810 * index. If not, clear the _BQC/_BCQ capability.
811 */
812static int acpi_video_bqc_quirk(struct acpi_video_device *device,
813 int max_level, int current_level)
814{
815 struct acpi_video_device_brightness *br = device->brightness;
816 int result;
817 unsigned long long level;
818 int test_level;
819
820 /* don't mess with existing known broken systems */
821 if (bqc_offset_aml_bug_workaround)
822 return 0;
823
824 /*
825 * Some systems always report current brightness level as maximum
826 * through _BQC, we need to test another value for them.
827 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200828 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200829
830 result = acpi_video_device_lcd_set_level(device, test_level);
831 if (result)
832 return result;
833
834 result = acpi_video_device_lcd_get_level_current(device, &level, true);
835 if (result)
836 return result;
837
838 if (level != test_level) {
839 /* buggy _BQC found, need to find out if it uses index */
840 if (level < br->count) {
841 if (br->flags._BCL_reversed)
842 level = br->count - 3 - level;
843 if (br->levels[level + 2] == test_level)
844 br->flags._BQC_use_index = 1;
845 }
846
847 if (!br->flags._BQC_use_index)
848 device->cap._BQC = device->cap._BCQ = 0;
849 }
850
851 return 0;
852}
853
854
855/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500856 * Arg:
857 * device : video output device (LCD, CRT, ..)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 *
859 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100860 * Maximum brightness level
861 *
862 * Allocate and initialize device->brightness.
863 */
864
865static int
866acpi_video_init_brightness(struct acpi_video_device *device)
867{
868 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800869 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800870 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100871 union acpi_object *o;
872 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800873 int result = -EINVAL;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100874 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100875
876 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
877 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
878 "LCD brightness level\n"));
879 goto out;
880 }
881
882 if (obj->package.count < 2)
883 goto out;
884
885 br = kzalloc(sizeof(*br), GFP_KERNEL);
886 if (!br) {
887 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800888 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100889 goto out;
890 }
891
Zhang Ruid32f6942009-03-18 16:27:12 +0800892 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100893 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800894 if (!br->levels) {
895 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100896 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800897 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100898
899 for (i = 0; i < obj->package.count; i++) {
900 o = (union acpi_object *)&obj->package.elements[i];
901 if (o->type != ACPI_TYPE_INTEGER) {
902 printk(KERN_ERR PREFIX "Invalid data\n");
903 continue;
904 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100905 value = (u32) o->integer.value;
906 /* Skip duplicate entries */
907 if (count > 2 && br->levels[count - 1] == value)
908 continue;
909
910 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100911
912 if (br->levels[count] > max_level)
913 max_level = br->levels[count];
914 count++;
915 }
916
Zhang Ruid32f6942009-03-18 16:27:12 +0800917 /*
918 * some buggy BIOS don't export the levels
919 * when machine is on AC/Battery in _BCL package.
920 * In this case, the first two elements in _BCL packages
921 * are also supported brightness levels that OS should take care of.
922 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800923 for (i = 2; i < count; i++) {
924 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800925 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800926 if (br->levels[i] == br->levels[1])
927 level_ac_battery++;
928 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500929
Zhang Ruid32f6942009-03-18 16:27:12 +0800930 if (level_ac_battery < 2) {
931 level_ac_battery = 2 - level_ac_battery;
932 br->flags._BCL_no_ac_battery_levels = 1;
933 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
934 br->levels[i] = br->levels[i - level_ac_battery];
935 count += level_ac_battery;
936 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000937 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800938
Zhang Ruid80fb992009-03-18 16:27:14 +0800939 /* Check if the _BCL package is in a reversed order */
940 if (max_level == br->levels[2]) {
941 br->flags._BCL_reversed = 1;
942 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
943 acpi_video_cmp_level, NULL);
944 } else if (max_level != br->levels[count - 1])
945 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000946 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100947
948 br->count = count;
949 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800950
Zhang Rui1a7c6182009-03-18 16:27:16 +0800951 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400952 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800953
954 if (!device->cap._BQC)
955 goto set_level;
956
Danny Baumanna89803d2013-03-19 16:22:50 +0000957 result = acpi_video_device_lcd_get_level_current(device,
958 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800959 if (result)
960 goto out_free_levels;
961
Aaron Lua50188d2013-04-22 14:08:32 +0200962 result = acpi_video_bqc_quirk(device, max_level, level_old);
963 if (result)
964 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800965 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200966 * cap._BQC may get cleared due to _BQC is found to be broken
967 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800968 */
Aaron Lua50188d2013-04-22 14:08:32 +0200969 if (!device->cap._BQC)
970 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800971
Aaron Lu545ef362013-11-15 14:39:12 +0800972 level = acpi_video_bqc_value_to_level(device, level_old);
973 /*
974 * On some buggy laptops, _BQC returns an uninitialized
975 * value when invoked for the first time, i.e.
976 * level_old is invalid (no matter whether it's a level
977 * or an index). Set the backlight to max_level in this case.
978 */
979 for (i = 2; i < br->count; i++)
980 if (level == br->levels[i])
981 break;
982 if (i == br->count || !level)
983 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800984
Zhang Ruie047cca2009-04-09 14:24:35 +0800985set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400986 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800987 if (result)
988 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800989
Zhang Ruid32f6942009-03-18 16:27:12 +0800990 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
991 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100992 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800993 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100994
995out_free_levels:
996 kfree(br->levels);
997out_free:
998 kfree(br);
999out:
1000 device->brightness = NULL;
1001 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +08001002 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +01001003}
1004
1005/*
1006 * Arg:
1007 * device : video output device (LCD, CRT, ..)
1008 *
1009 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001010 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001012 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 * device.
1014 */
1015
Len Brown4be44fc2005-08-05 00:44:28 -04001016static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Jiang Liu952c63e2013-06-29 00:24:38 +08001018 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001020 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -04001021 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001022 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -04001023 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001024 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +08001025 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001026 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +08001027 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
1028 device->cap._BCQ = 1;
1029 }
1030
Jiang Liu952c63e2013-06-29 00:24:38 +08001031 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -04001032 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05001036 * Arg:
1037 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 *
1039 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001040 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001042 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 */
1044
Len Brown4be44fc2005-08-05 00:44:28 -04001045static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Jiang Liu952c63e2013-06-29 00:24:38 +08001047 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001049 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001051 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001053 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001055 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001057 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061/*
1062 * Check whether the video bus device has required AML method to
1063 * support the desired features
1064 */
1065
Len Brown4be44fc2005-08-05 00:44:28 -04001066static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Len Brown4be44fc2005-08-05 00:44:28 -04001068 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001069 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001072 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001074 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001075 if (!dev)
1076 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001077 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001078
Felipe Contreras21fcb342013-08-01 18:43:59 -05001079 /*
1080 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 * to check well known required nodes.
1082 */
1083
Julius Volz98fb8fe2007-02-20 16:38:40 +01001084 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001085 if (video->cap._DOS || video->cap._DOD) {
1086 if (!video->cap._DOS) {
1087 printk(KERN_WARNING FW_BUG
1088 "ACPI(%s) defines _DOD but not _DOS\n",
1089 acpi_device_bid(video->device));
1090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 video->flags.multihead = 1;
1092 status = 0;
1093 }
1094
Julius Volz98fb8fe2007-02-20 16:38:40 +01001095 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001096 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 video->flags.rom = 1;
1098 status = 0;
1099 }
1100
Julius Volz98fb8fe2007-02-20 16:38:40 +01001101 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001102 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 video->flags.post = 1;
1104 status = 0;
1105 }
1106
Patrick Mocheld550d982006-06-27 00:41:40 -04001107 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Felipe Contreras21fcb342013-08-01 18:43:59 -05001110/*
1111 * --------------------------------------------------------------------------
1112 * Driver Interface
1113 * --------------------------------------------------------------------------
1114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001117static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001118acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1119{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001120 struct acpi_video_enumerated_device *ids;
1121 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001122
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001123 for (i = 0; i < video->attached_count; i++) {
1124 ids = &video->attached_array[i];
1125 if ((ids->value.int_val & 0xffff) == device_id)
1126 return &ids->value.attrib;
1127 }
1128
Rui Zhang82cae992007-01-03 23:40:53 -05001129 return NULL;
1130}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001133acpi_video_get_device_type(struct acpi_video_bus *video,
1134 unsigned long device_id)
1135{
1136 struct acpi_video_enumerated_device *ids;
1137 int i;
1138
1139 for (i = 0; i < video->attached_count; i++) {
1140 ids = &video->attached_array[i];
1141 if ((ids->value.int_val & 0xffff) == device_id)
1142 return ids->value.int_val;
1143 }
1144
1145 return 0;
1146}
1147
1148static int
Len Brown4be44fc2005-08-05 00:44:28 -04001149acpi_video_bus_get_one_device(struct acpi_device *device,
1150 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001152 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001153 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001154 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001155 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Len Brown4be44fc2005-08-05 00:44:28 -04001157 status =
1158 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001159 /* Some device omits _ADR, we skip them instead of fail */
1160 if (ACPI_FAILURE(status))
1161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Aaron Lu91e13aa2013-04-25 02:47:49 +00001163 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1164 if (!data)
1165 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Aaron Lu91e13aa2013-04-25 02:47:49 +00001167 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1168 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1169 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Aaron Lu91e13aa2013-04-25 02:47:49 +00001171 data->device_id = device_id;
1172 data->video = video;
1173 data->dev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Aaron Lu91e13aa2013-04-25 02:47:49 +00001175 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001176
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001177 if (attribute && attribute->device_id_scheme) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001178 switch (attribute->display_type) {
1179 case ACPI_VIDEO_DISPLAY_CRT:
1180 data->flags.crt = 1;
1181 break;
1182 case ACPI_VIDEO_DISPLAY_TV:
1183 data->flags.tvout = 1;
1184 break;
1185 case ACPI_VIDEO_DISPLAY_DVI:
1186 data->flags.dvi = 1;
1187 break;
1188 case ACPI_VIDEO_DISPLAY_LCD:
1189 data->flags.lcd = 1;
1190 break;
1191 default:
1192 data->flags.unknown = 1;
1193 break;
1194 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001195 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001196 data->flags.bios = 1;
1197 } else {
1198 /* Check for legacy IDs */
1199 device_type = acpi_video_get_device_type(video, device_id);
1200 /* Ignore bits 16 and 18-20 */
1201 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001202 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1203 data->flags.crt = 1;
1204 break;
1205 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1206 data->flags.lcd = 1;
1207 break;
1208 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1209 data->flags.tvout = 1;
1210 break;
1211 default:
1212 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
Aaron Lu91e13aa2013-04-25 02:47:49 +00001216 acpi_video_device_bind(video, data);
1217 acpi_video_device_find_cap(data);
1218
Aaron Lu91e13aa2013-04-25 02:47:49 +00001219 mutex_lock(&video->device_list_lock);
1220 list_add_tail(&data->entry, &video->video_device_list);
1221 mutex_unlock(&video->device_list_lock);
1222
1223 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
1226/*
1227 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001228 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 *
1230 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001231 * none
1232 *
1233 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 * bind the ids with the corresponding video devices
1235 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001236 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Len Brown4be44fc2005-08-05 00:44:28 -04001238static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001240 struct acpi_video_device *dev;
1241
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001242 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001243
1244 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001245 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001246
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001247 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
1250/*
1251 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001252 * video : video bus device
1253 * device : video output device under the video
1254 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 *
1256 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001257 * none
1258 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 * Bind the ids with the corresponding video devices
1260 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001261 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263static void
Len Brown4be44fc2005-08-05 00:44:28 -04001264acpi_video_device_bind(struct acpi_video_bus *video,
1265 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001267 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001268 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001270 for (i = 0; i < video->attached_count; i++) {
1271 ids = &video->attached_array[i];
1272 if (device->device_id == (ids->value.int_val & 0xffff)) {
1273 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1275 }
1276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279/*
1280 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001281 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 *
1283 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001284 * < 0 : error
1285 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 * Call _DOD to enumerate all devices attached to display adapter
1287 *
Len Brown4be44fc2005-08-05 00:44:28 -04001288 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1291{
Len Brown4be44fc2005-08-05 00:44:28 -04001292 int status;
1293 int count;
1294 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001295 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001296 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1297 union acpi_object *dod = NULL;
1298 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Patrick Mochel90130262006-05-19 16:54:48 -04001300 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001302 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001303 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 }
1305
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001306 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001308 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 status = -EFAULT;
1310 goto out;
1311 }
1312
1313 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001314 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001316 active_list = kcalloc(1 + dod->package.count,
1317 sizeof(struct acpi_video_enumerated_device),
1318 GFP_KERNEL);
1319 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 status = -ENOMEM;
1321 goto out;
1322 }
1323
1324 count = 0;
1325 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001326 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001329 printk(KERN_ERR PREFIX
1330 "Invalid _DOD data in element %d\n", i);
1331 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001333
1334 active_list[count].value.int_val = obj->integer.value;
1335 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001336 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1337 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 count++;
1339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Jesper Juhl6044ec82005-11-07 01:01:32 -08001341 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001342
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001343 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001345
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001346out:
Len Brown02438d82006-06-30 03:19:10 -04001347 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001348 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
Len Brown4be44fc2005-08-05 00:44:28 -04001351static int
1352acpi_video_get_next_level(struct acpi_video_device *device,
1353 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001355 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001356 max = max_below = 0;
1357 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001358 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001359 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001360 l = device->brightness->levels[i];
1361 if (abs(l - level_current) < abs(delta)) {
1362 delta = l - level_current;
1363 if (!delta)
1364 break;
1365 }
1366 }
1367 /* Ajust level_current to closest available level */
1368 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001369 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001370 l = device->brightness->levels[i];
1371 if (l < min)
1372 min = l;
1373 if (l > max)
1374 max = l;
1375 if (l < min_above && l > level_current)
1376 min_above = l;
1377 if (l > max_below && l < level_current)
1378 max_below = l;
1379 }
1380
1381 switch (event) {
1382 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1383 return (level_current < max) ? min_above : min;
1384 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1385 return (level_current < max) ? min_above : max;
1386 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1387 return (level_current > min) ? max_below : min;
1388 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1389 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1390 return 0;
1391 default:
1392 return level_current;
1393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
Zhang Ruic8890f92009-03-18 16:27:08 +08001396static int
Len Brown4be44fc2005-08-05 00:44:28 -04001397acpi_video_switch_brightness(struct acpi_video_device *device, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001399 unsigned long long level_current, level_next;
Zhang Ruic8890f92009-03-18 16:27:08 +08001400 int result = -EINVAL;
1401
Aaron Lufbc9fe12013-10-11 21:27:45 +08001402 /* no warning message if acpi_backlight=vendor or a quirk is used */
1403 if (!acpi_video_verify_backlight_support())
Zhang Rui28c32e92009-07-13 10:33:24 +08001404 return 0;
1405
Julia Jomantaite469778c2008-06-23 22:50:42 +01001406 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001407 goto out;
1408
1409 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001410 &level_current,
1411 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001412 if (result)
1413 goto out;
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001416
Zhang Rui24450c72009-03-18 16:27:10 +08001417 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001418
Matthew Garrett36342742009-07-14 17:06:03 +01001419 if (!result)
1420 backlight_force_update(device->backlight,
1421 BACKLIGHT_UPDATE_HOTKEY);
1422
Zhang Ruic8890f92009-03-18 16:27:08 +08001423out:
1424 if (result)
1425 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
1426
1427 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
Matthew Garrette92a7162010-01-12 14:17:03 -05001430int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1431 void **edid)
1432{
1433 struct acpi_video_bus *video;
1434 struct acpi_video_device *video_device;
1435 union acpi_object *buffer = NULL;
1436 acpi_status status;
1437 int i, length;
1438
1439 if (!device || !acpi_driver_data(device))
1440 return -EINVAL;
1441
1442 video = acpi_driver_data(device);
1443
1444 for (i = 0; i < video->attached_count; i++) {
1445 video_device = video->attached_array[i].bind_info;
1446 length = 256;
1447
1448 if (!video_device)
1449 continue;
1450
Zhang Rui82069552010-12-06 15:04:24 +08001451 if (!video_device->cap._DDC)
1452 continue;
1453
Matthew Garrette92a7162010-01-12 14:17:03 -05001454 if (type) {
1455 switch (type) {
1456 case ACPI_VIDEO_DISPLAY_CRT:
1457 if (!video_device->flags.crt)
1458 continue;
1459 break;
1460 case ACPI_VIDEO_DISPLAY_TV:
1461 if (!video_device->flags.tvout)
1462 continue;
1463 break;
1464 case ACPI_VIDEO_DISPLAY_DVI:
1465 if (!video_device->flags.dvi)
1466 continue;
1467 break;
1468 case ACPI_VIDEO_DISPLAY_LCD:
1469 if (!video_device->flags.lcd)
1470 continue;
1471 break;
1472 }
1473 } else if (video_device->device_id != device_id) {
1474 continue;
1475 }
1476
1477 status = acpi_video_device_EDID(video_device, &buffer, length);
1478
1479 if (ACPI_FAILURE(status) || !buffer ||
1480 buffer->type != ACPI_TYPE_BUFFER) {
1481 length = 128;
1482 status = acpi_video_device_EDID(video_device, &buffer,
1483 length);
1484 if (ACPI_FAILURE(status) || !buffer ||
1485 buffer->type != ACPI_TYPE_BUFFER) {
1486 continue;
1487 }
1488 }
1489
1490 *edid = buffer->buffer.pointer;
1491 return length;
1492 }
1493
1494 return -ENODEV;
1495}
1496EXPORT_SYMBOL(acpi_video_get_edid);
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498static int
Len Brown4be44fc2005-08-05 00:44:28 -04001499acpi_video_bus_get_devices(struct acpi_video_bus *video,
1500 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Igor Murzovfba4e082012-10-13 04:41:25 +04001502 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001503 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Igor Murzovfba4e082012-10-13 04:41:25 +04001505 /*
1506 * There are systems where video module known to work fine regardless
1507 * of broken _DOD and ignoring returned value here doesn't cause
1508 * any issues later.
1509 */
1510 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001512 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001515 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001516 dev_err(&dev->dev, "Can't attach device\n");
1517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001520 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523/* acpi_video interface */
1524
Aaron Luefaa14c2013-07-16 13:08:05 +08001525/*
1526 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1527 * preform any automatic brightness change on receiving a notification.
1528 */
Len Brown4be44fc2005-08-05 00:44:28 -04001529static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Aaron Luefaa14c2013-07-16 13:08:05 +08001531 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001532 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533}
1534
Len Brown4be44fc2005-08-05 00:44:28 -04001535static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Aaron Luefaa14c2013-07-16 13:08:05 +08001537 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001538 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Bjorn Helgaas70155582009-04-07 15:37:11 +00001541static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001543 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001544 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001545 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001546
Aaron Lu67b662e2013-10-11 21:27:44 +08001547 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001548 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Luming Yue9dab192007-08-20 18:23:53 +08001550 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001553 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001555 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 break;
1557
Julius Volz98fb8fe2007-02-20 16:38:40 +01001558 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 * connector. */
1560 acpi_video_device_enumerate(video);
1561 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001562 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 break;
1564
Len Brown4be44fc2005-08-05 00:44:28 -04001565 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001566 keycode = KEY_SWITCHVIDEOMODE;
1567 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001568 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001569 keycode = KEY_VIDEO_NEXT;
1570 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001571 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001572 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 break;
1574
1575 default:
1576 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001577 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 break;
1579 }
1580
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001581 if (acpi_notifier_call_chain(device, event, 0))
1582 /* Something vetoed the keypress. */
1583 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001584
1585 if (keycode) {
1586 input_report_key(input, keycode, 1);
1587 input_sync(input);
1588 input_report_key(input, keycode, 0);
1589 input_sync(input);
1590 }
Luming Yue9dab192007-08-20 18:23:53 +08001591
Patrick Mocheld550d982006-06-27 00:41:40 -04001592 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
Len Brown4be44fc2005-08-05 00:44:28 -04001595static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001597 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001598 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001599 struct acpi_video_bus *bus;
1600 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001601 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001604 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001606 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001607 bus = video_device->video;
1608 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001611 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001612 if (brightness_switch_enabled)
1613 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001614 keycode = KEY_BRIGHTNESS_CYCLE;
1615 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001616 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001617 if (brightness_switch_enabled)
1618 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001619 keycode = KEY_BRIGHTNESSUP;
1620 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001621 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001622 if (brightness_switch_enabled)
1623 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001624 keycode = KEY_BRIGHTNESSDOWN;
1625 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001626 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001627 if (brightness_switch_enabled)
1628 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001629 keycode = KEY_BRIGHTNESS_ZERO;
1630 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001631 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Zhang Rui8a681a42008-01-25 14:47:49 +08001632 if (brightness_switch_enabled)
1633 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001634 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 break;
1636 default:
1637 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001638 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 break;
1640 }
Luming Yue9dab192007-08-20 18:23:53 +08001641
Zhang Rui7761f632008-01-25 14:48:12 +08001642 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001643
1644 if (keycode) {
1645 input_report_key(input, keycode, 1);
1646 input_sync(input);
1647 input_report_key(input, keycode, 0);
1648 input_sync(input);
1649 }
Luming Yue9dab192007-08-20 18:23:53 +08001650
Patrick Mocheld550d982006-06-27 00:41:40 -04001651 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001654static int acpi_video_resume(struct notifier_block *nb,
1655 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001656{
1657 struct acpi_video_bus *video;
1658 struct acpi_video_device *video_device;
1659 int i;
1660
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001661 switch (val) {
1662 case PM_HIBERNATION_PREPARE:
1663 case PM_SUSPEND_PREPARE:
1664 case PM_RESTORE_PREPARE:
1665 return NOTIFY_DONE;
1666 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001667
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001668 video = container_of(nb, struct acpi_video_bus, pm_nb);
1669
1670 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001671
1672 for (i = 0; i < video->attached_count; i++) {
1673 video_device = video->attached_array[i].bind_info;
1674 if (video_device && video_device->backlight)
1675 acpi_video_set_brightness(video_device->backlight);
1676 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001677
1678 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001679}
1680
Zhang Ruic504f8c2009-12-30 15:59:23 +08001681static acpi_status
1682acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1683 void **return_value)
1684{
1685 struct acpi_device *device = context;
1686 struct acpi_device *sibling;
1687 int result;
1688
1689 if (handle == device->handle)
1690 return AE_CTRL_TERMINATE;
1691
1692 result = acpi_bus_get_device(handle, &sibling);
1693 if (result)
1694 return AE_OK;
1695
1696 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1697 return AE_ALREADY_EXISTS;
1698
1699 return AE_OK;
1700}
1701
Aaron Lu67b662e2013-10-11 21:27:44 +08001702static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1703{
Hans de Goede99678ed2014-05-15 13:22:33 +02001704 struct backlight_properties props;
1705 struct pci_dev *pdev;
1706 acpi_handle acpi_parent;
1707 struct device *parent = NULL;
1708 int result;
1709 static int count;
1710 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001711
Hans de Goede99678ed2014-05-15 13:22:33 +02001712 result = acpi_video_init_brightness(device);
1713 if (result)
1714 return;
1715 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1716 if (!name)
1717 return;
1718 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001719
Hans de Goede99678ed2014-05-15 13:22:33 +02001720 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001721
Hans de Goede99678ed2014-05-15 13:22:33 +02001722 pdev = acpi_get_pci_dev(acpi_parent);
1723 if (pdev) {
1724 parent = &pdev->dev;
1725 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001726 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001727
1728 memset(&props, 0, sizeof(struct backlight_properties));
1729 props.type = BACKLIGHT_FIRMWARE;
1730 props.max_brightness = device->brightness->count - 3;
1731 device->backlight = backlight_device_register(name,
1732 parent,
1733 device,
1734 &acpi_backlight_ops,
1735 &props);
1736 kfree(name);
1737 if (IS_ERR(device->backlight))
1738 return;
1739
1740 /*
1741 * Save current brightness level in case we have to restore it
1742 * before acpi_video_device_lcd_set_level() is called next time.
1743 */
1744 device->backlight->props.brightness =
1745 acpi_video_get_brightness(device->backlight);
1746
1747 device->cooling_dev = thermal_cooling_device_register("LCD",
1748 device->dev, &video_cooling_ops);
1749 if (IS_ERR(device->cooling_dev)) {
1750 /*
1751 * Set cooling_dev to NULL so we don't crash trying to free it.
1752 * Also, why the hell we are returning early and not attempt to
1753 * register video output if cooling device registration failed?
1754 * -- dtor
1755 */
1756 device->cooling_dev = NULL;
1757 return;
1758 }
1759
1760 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1761 device->cooling_dev->id);
1762 result = sysfs_create_link(&device->dev->dev.kobj,
1763 &device->cooling_dev->device.kobj,
1764 "thermal_cooling");
1765 if (result)
1766 printk(KERN_ERR PREFIX "Create sysfs link\n");
1767 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1768 &device->dev->dev.kobj, "device");
1769 if (result)
1770 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001771}
1772
1773static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1774{
1775 struct acpi_video_device *dev;
1776
Hans de Goede53a92ba2014-05-21 15:39:55 +02001777 if (video->backlight_registered)
1778 return 0;
1779
Hans de Goede99678ed2014-05-15 13:22:33 +02001780 if (!acpi_video_verify_backlight_support())
1781 return 0;
1782
Aaron Lu67b662e2013-10-11 21:27:44 +08001783 mutex_lock(&video->device_list_lock);
1784 list_for_each_entry(dev, &video->video_device_list, entry)
1785 acpi_video_dev_register_backlight(dev);
1786 mutex_unlock(&video->device_list_lock);
1787
Hans de Goede99678ed2014-05-15 13:22:33 +02001788 video->backlight_registered = true;
1789
Aaron Lu67b662e2013-10-11 21:27:44 +08001790 video->pm_nb.notifier_call = acpi_video_resume;
1791 video->pm_nb.priority = 0;
1792 return register_pm_notifier(&video->pm_nb);
1793}
1794
1795static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1796{
1797 if (device->backlight) {
1798 backlight_device_unregister(device->backlight);
1799 device->backlight = NULL;
1800 }
1801 if (device->brightness) {
1802 kfree(device->brightness->levels);
1803 kfree(device->brightness);
1804 device->brightness = NULL;
1805 }
1806 if (device->cooling_dev) {
1807 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1808 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1809 thermal_cooling_device_unregister(device->cooling_dev);
1810 device->cooling_dev = NULL;
1811 }
1812}
1813
1814static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1815{
1816 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001817 int error;
1818
1819 if (!video->backlight_registered)
1820 return 0;
1821
1822 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001823
1824 mutex_lock(&video->device_list_lock);
1825 list_for_each_entry(dev, &video->video_device_list, entry)
1826 acpi_video_dev_unregister_backlight(dev);
1827 mutex_unlock(&video->device_list_lock);
1828
Hans de Goede99678ed2014-05-15 13:22:33 +02001829 video->backlight_registered = false;
1830
Aaron Lu67b662e2013-10-11 21:27:44 +08001831 return error;
1832}
1833
1834static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1835{
1836 acpi_status status;
1837 struct acpi_device *adev = device->dev;
1838
1839 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1840 acpi_video_device_notify, device);
1841 if (ACPI_FAILURE(status))
1842 dev_err(&adev->dev, "Error installing notify handler\n");
1843 else
1844 device->flags.notify = 1;
1845}
1846
1847static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1848{
1849 struct input_dev *input;
1850 struct acpi_video_device *dev;
1851 int error;
1852
1853 video->input = input = input_allocate_device();
1854 if (!input) {
1855 error = -ENOMEM;
1856 goto out;
1857 }
1858
1859 error = acpi_video_bus_start_devices(video);
1860 if (error)
1861 goto err_free_input;
1862
1863 snprintf(video->phys, sizeof(video->phys),
1864 "%s/video/input0", acpi_device_hid(video->device));
1865
1866 input->name = acpi_device_name(video->device);
1867 input->phys = video->phys;
1868 input->id.bustype = BUS_HOST;
1869 input->id.product = 0x06;
1870 input->dev.parent = &video->device->dev;
1871 input->evbit[0] = BIT(EV_KEY);
1872 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1873 set_bit(KEY_VIDEO_NEXT, input->keybit);
1874 set_bit(KEY_VIDEO_PREV, input->keybit);
1875 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1876 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1877 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1878 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1879 set_bit(KEY_DISPLAY_OFF, input->keybit);
1880
1881 error = input_register_device(input);
1882 if (error)
1883 goto err_stop_dev;
1884
1885 mutex_lock(&video->device_list_lock);
1886 list_for_each_entry(dev, &video->video_device_list, entry)
1887 acpi_video_dev_add_notify_handler(dev);
1888 mutex_unlock(&video->device_list_lock);
1889
1890 return 0;
1891
1892err_stop_dev:
1893 acpi_video_bus_stop_devices(video);
1894err_free_input:
1895 input_free_device(input);
1896 video->input = NULL;
1897out:
1898 return error;
1899}
1900
1901static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1902{
1903 if (dev->flags.notify) {
1904 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1905 acpi_video_device_notify);
1906 dev->flags.notify = 0;
1907 }
1908}
1909
1910static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1911{
1912 struct acpi_video_device *dev;
1913
1914 mutex_lock(&video->device_list_lock);
1915 list_for_each_entry(dev, &video->video_device_list, entry)
1916 acpi_video_dev_remove_notify_handler(dev);
1917 mutex_unlock(&video->device_list_lock);
1918
1919 acpi_video_bus_stop_devices(video);
1920 input_unregister_device(video->input);
1921 video->input = NULL;
1922}
1923
Hans de Goede53a92ba2014-05-21 15:39:55 +02001924static int acpi_video_backlight_notify(struct notifier_block *nb,
1925 unsigned long val, void *bd)
1926{
1927 struct backlight_device *backlight = bd;
1928 struct acpi_video_bus *video;
1929
1930 /* acpi_video_verify_backlight_support only cares about raw devices */
1931 if (backlight->props.type != BACKLIGHT_RAW)
1932 return NOTIFY_DONE;
1933
1934 video = container_of(nb, struct acpi_video_bus, backlight_nb);
1935
1936 switch (val) {
1937 case BACKLIGHT_REGISTERED:
1938 if (!acpi_video_verify_backlight_support())
1939 acpi_video_bus_unregister_backlight(video);
1940 break;
1941 case BACKLIGHT_UNREGISTERED:
1942 acpi_video_bus_register_backlight(video);
1943 break;
1944 }
1945
1946 return NOTIFY_OK;
1947}
1948
1949static int acpi_video_bus_add_backlight_notify_handler(
1950 struct acpi_video_bus *video)
1951{
1952 int error;
1953
1954 video->backlight_nb.notifier_call = acpi_video_backlight_notify;
1955 video->backlight_nb.priority = 0;
1956 error = backlight_register_notifier(&video->backlight_nb);
1957 if (error == 0)
1958 video->backlight_notifier_registered = true;
1959
1960 return error;
1961}
1962
1963static int acpi_video_bus_remove_backlight_notify_handler(
1964 struct acpi_video_bus *video)
1965{
1966 if (!video->backlight_notifier_registered)
1967 return 0;
1968
1969 video->backlight_notifier_registered = false;
1970
1971 return backlight_unregister_notifier(&video->backlight_nb);
1972}
1973
Aaron Lu67b662e2013-10-11 21:27:44 +08001974static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1975{
1976 struct acpi_video_device *dev, *next;
1977
1978 mutex_lock(&video->device_list_lock);
1979 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1980 list_del(&dev->entry);
1981 kfree(dev);
1982 }
1983 mutex_unlock(&video->device_list_lock);
1984
1985 return 0;
1986}
1987
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001988static int instance;
1989
Len Brown4be44fc2005-08-05 00:44:28 -04001990static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001992 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001993 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001994 acpi_status status;
1995
1996 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1997 device->parent->handle, 1,
1998 acpi_video_bus_match, NULL,
1999 device, NULL);
2000 if (status == AE_ALREADY_EXISTS) {
2001 printk(KERN_WARNING FW_BUG
2002 "Duplicate ACPI video bus devices for the"
2003 " same VGA controller, please try module "
2004 "parameter \"video.allow_duplicates=1\""
2005 "if the current driver doesn't work.\n");
2006 if (!allow_duplicates)
2007 return -ENODEV;
2008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Burman Yan36bcbec2006-12-19 12:56:11 -08002010 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002012 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Zhang Ruie6d9da12007-08-25 02:23:31 -04002014 /* a hack to fix the duplicate name "VID" problem on T61 */
2015 if (!strcmp(device->pnp.bus_id, "VID")) {
2016 if (instance)
2017 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02002018 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04002019 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05002020 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2021 if (!strcmp(device->pnp.bus_id, "VGA")) {
2022 if (instance)
2023 device->pnp.bus_id[3] = '0' + instance;
2024 instance++;
2025 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04002026
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002027 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2029 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002030 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002033 error = acpi_video_bus_check(video);
2034 if (error)
2035 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002037 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 INIT_LIST_HEAD(&video->video_device_list);
2039
Igor Murzovea9f8852012-03-30 21:32:08 +04002040 error = acpi_video_bus_get_devices(video, device);
2041 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00002042 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002045 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2046 video->flags.multihead ? "yes" : "no",
2047 video->flags.rom ? "yes" : "no",
2048 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08002049 mutex_lock(&video_list_lock);
2050 list_add_tail(&video->entry, &video_bus_head);
2051 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Aaron Lu67b662e2013-10-11 21:27:44 +08002053 acpi_video_bus_register_backlight(video);
2054 acpi_video_bus_add_notify_handler(video);
Hans de Goede53a92ba2014-05-21 15:39:55 +02002055 acpi_video_bus_add_backlight_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002056
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Aaron Lu67b662e2013-10-11 21:27:44 +08002059err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002060 acpi_video_bus_put_devices(video);
2061 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08002062err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002063 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002064 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002065
2066 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002069static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Len Brown4be44fc2005-08-05 00:44:28 -04002071 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002075 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002077 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Hans de Goede53a92ba2014-05-21 15:39:55 +02002079 acpi_video_bus_remove_backlight_notify_handler(video);
Aaron Lu67b662e2013-10-11 21:27:44 +08002080 acpi_video_bus_remove_notify_handler(video);
2081 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083
Aaron Lu67b662e2013-10-11 21:27:44 +08002084 mutex_lock(&video_list_lock);
2085 list_del(&video->entry);
2086 mutex_unlock(&video_list_lock);
2087
Jesper Juhl6044ec82005-11-07 01:01:32 -08002088 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 kfree(video);
2090
Patrick Mocheld550d982006-06-27 00:41:40 -04002091 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
Alan Coxc6996bd2012-04-25 14:33:48 +01002094static int __init is_i740(struct pci_dev *dev)
2095{
2096 if (dev->device == 0x00D1)
2097 return 1;
2098 if (dev->device == 0x7000)
2099 return 1;
2100 return 0;
2101}
2102
Matthew Garrett74a365b2009-03-19 21:35:39 +00002103static int __init intel_opregion_present(void)
2104{
Alan Coxc6996bd2012-04-25 14:33:48 +01002105 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002106 struct pci_dev *dev = NULL;
2107 u32 address;
2108
2109 for_each_pci_dev(dev) {
2110 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2111 continue;
2112 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2113 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002114 /* We don't want to poke around undefined i740 registers */
2115 if (is_i740(dev))
2116 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002117 pci_read_config_dword(dev, 0xfc, &address);
2118 if (!address)
2119 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002120 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002121 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002122 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002123}
2124
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002125int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002127 int result = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002128 if (register_count) {
2129 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002130 * if the function of acpi_video_register is already called,
2131 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002132 */
2133 return 0;
2134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Aaron Lu67b662e2013-10-11 21:27:44 +08002136 mutex_init(&video_list_lock);
2137 INIT_LIST_HEAD(&video_bus_head);
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 result = acpi_bus_register_driver(&acpi_video_bus);
Zhang Rui39fe3942010-10-08 13:55:11 +08002140 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -04002141 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Zhao Yakui86e437f2009-06-16 11:23:13 +08002143 /*
2144 * When the acpi_video_bus is loaded successfully, increase
2145 * the counter reference.
2146 */
2147 register_count = 1;
2148
Patrick Mocheld550d982006-06-27 00:41:40 -04002149 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002151EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002152
Zhao Yakui86e437f2009-06-16 11:23:13 +08002153void acpi_video_unregister(void)
2154{
2155 if (!register_count) {
2156 /*
2157 * If the acpi video bus is already unloaded, don't
2158 * unload it again and return directly.
2159 */
2160 return;
2161 }
2162 acpi_bus_unregister_driver(&acpi_video_bus);
2163
Zhao Yakui86e437f2009-06-16 11:23:13 +08002164 register_count = 0;
2165
2166 return;
2167}
2168EXPORT_SYMBOL(acpi_video_unregister);
2169
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002170void acpi_video_unregister_backlight(void)
2171{
2172 struct acpi_video_bus *video;
2173
2174 if (!register_count)
2175 return;
2176
2177 mutex_lock(&video_list_lock);
2178 list_for_each_entry(video, &video_bus_head, entry)
2179 acpi_video_bus_unregister_backlight(video);
2180 mutex_unlock(&video_list_lock);
2181}
2182EXPORT_SYMBOL(acpi_video_unregister_backlight);
2183
Matthew Garrett74a365b2009-03-19 21:35:39 +00002184/*
2185 * This is kind of nasty. Hardware using Intel chipsets may require
2186 * the video opregion code to be run first in order to initialise
2187 * state before any ACPI video calls are made. To handle this we defer
2188 * registration of the video class until the opregion code has run.
2189 */
2190
2191static int __init acpi_video_init(void)
2192{
Zhang Rui45cb50e2009-04-24 12:13:18 -04002193 dmi_check_system(video_dmi_table);
2194
Matthew Garrett74a365b2009-03-19 21:35:39 +00002195 if (intel_opregion_present())
2196 return 0;
2197
2198 return acpi_video_register();
2199}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Zhao Yakui86e437f2009-06-16 11:23:13 +08002201static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Zhao Yakui86e437f2009-06-16 11:23:13 +08002203 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Patrick Mocheld550d982006-06-27 00:41:40 -04002205 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
2208module_init(acpi_video_init);
2209module_exit(acpi_video_exit);