blob: 26eb70c8f5184f878ae489c4130e1b382d7394a2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05002 * video.c - ACPI Video Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org>
Thomas Tuttlef4715182006-12-19 12:56:14 -08006 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050032#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080033#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080034#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080035#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050036#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000037#include <linux/pci.h>
38#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040040#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020041#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080042#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050043#include <acpi/video.h>
Lv Zheng8b484632013-12-03 08:49:16 +080044#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020046#include "internal.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_VIDEO_BUS_NAME "Video Bus"
49#define ACPI_VIDEO_DEVICE_NAME "Video Device"
50#define ACPI_VIDEO_NOTIFY_SWITCH 0x80
51#define ACPI_VIDEO_NOTIFY_PROBE 0x81
52#define ACPI_VIDEO_NOTIFY_CYCLE 0x82
53#define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
54#define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
55
Thomas Tuttlef4715182006-12-19 12:56:14 -080056#define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
57#define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
58#define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
59#define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
60#define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yu Luming2f3d0002006-11-11 02:40:34 +080062#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050065ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Len Brownf52fd662007-02-12 22:42:12 -050067MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050068MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069MODULE_LICENSE("GPL");
70
Rafael J. Wysocki28437682014-07-14 19:35:45 +020071static bool brightness_switch_enabled = 1;
Zhang Rui8a681a42008-01-25 14:47:49 +080072module_param(brightness_switch_enabled, bool, 0644);
73
Zhang Ruic504f8c2009-12-30 15:59:23 +080074/*
75 * By default, we don't allow duplicate ACPI video bus devices
76 * under the same VGA controller
77 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103078static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080079module_param(allow_duplicates, bool, 0644);
80
Zhang Rui99fd1892010-12-06 15:04:27 +080081/*
Aaron Lu0e9f81d2014-02-18 13:54:20 +080082 * For Windows 8 systems: used to decide if video module
83 * should skip registering backlight interface of its own.
Aaron Lufbc9fe12013-10-11 21:27:45 +080084 */
Hans de Goede25294e92014-08-28 10:20:45 +020085static int use_native_backlight_param = -1;
Aaron Lu0e9f81d2014-02-18 13:54:20 +080086module_param_named(use_native_backlight, use_native_backlight_param, int, 0444);
Hans de Goede25294e92014-08-28 10:20:45 +020087static bool use_native_backlight_dmi = true;
Aaron Lufbc9fe12013-10-11 21:27:45 +080088
Felipe Contreras915ea7e2013-08-03 22:12:50 +020089static int register_count;
Aaron Lu67b662e2013-10-11 21:27:44 +080090static struct mutex video_list_lock;
91static struct list_head video_bus_head;
Len Brown4be44fc2005-08-05 00:44:28 -040092static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010093static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000094static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Thomas Renninger1ba90e32007-07-23 14:44:41 +020096static const struct acpi_device_id video_device_ids[] = {
97 {ACPI_VIDEO_HID, 0},
98 {"", 0},
99};
100MODULE_DEVICE_TABLE(acpi, video_device_ids);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500103 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200105 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .ops = {
107 .add = acpi_video_bus_add,
108 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000109 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400110 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400114 u8 multihead:1; /* can switch video heads */
115 u8 rom:1; /* can retrieve a video rom */
116 u8 post:1; /* can configure the head to */
117 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500121 u8 _DOS:1; /* Enable/Disable output switching */
122 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
123 u8 _ROM:1; /* Get ROM Data */
124 u8 _GPD:1; /* Get POST Device */
125 u8 _SPD:1; /* Set POST Device */
126 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400127 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Len Brown4be44fc2005-08-05 00:44:28 -0400130struct acpi_video_device_attrib {
131 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500132 u32 display_port_attachment:4; /* This field differentiates the display type */
133 u32 display_type:4; /* Describe the specific type in use */
134 u32 vendor_specific:4; /* Chipset Vendor Specific */
135 u32 bios_can_detect:1; /* BIOS can detect the device */
136 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400137 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500138 u32 pipe_id:3; /* For VGA multiple-head devices. */
139 u32 reserved:10; /* Must be 0 */
140 u32 device_id_scheme:1; /* Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143struct acpi_video_enumerated_device {
144 union {
145 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400146 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 } value;
148 struct acpi_video_device *bind_info;
149};
150
151struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400152 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200153 bool backlight_registered;
Hans de Goede53a92ba2014-05-21 15:39:55 +0200154 bool backlight_notifier_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800158 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400159 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400161 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500162 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800163 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800164 struct input_dev *input;
165 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200166 struct notifier_block pm_nb;
Hans de Goede53a92ba2014-05-21 15:39:55 +0200167 struct notifier_block backlight_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168};
169
170struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400171 u8 crt:1;
172 u8 lcd:1;
173 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500174 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 u8 bios:1;
176 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000177 u8 notify:1;
178 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
181struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500182 u8 _ADR:1; /* Return the unique ID */
183 u8 _BCL:1; /* Query list of brightness control levels supported */
184 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800185 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800186 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500187 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
Zhang Ruid32f6942009-03-18 16:27:12 +0800190struct acpi_video_brightness_flags {
191 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500192 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */
Zhang Rui1a7c6182009-03-18 16:27:16 +0800193 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800194};
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400197 int curr;
198 int count;
199 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800200 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
203struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400204 unsigned long device_id;
205 struct acpi_video_device_flags flags;
206 struct acpi_video_device_cap cap;
207 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200208 struct delayed_work switch_brightness_work;
209 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400210 struct acpi_video_bus *video;
211 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800213 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400214 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215};
216
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100217static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 "motherboard VGA device",
219 "PCI VGA device",
220 "AGP VGA device",
221 "UNKNOWN",
222};
223
Len Brown4be44fc2005-08-05 00:44:28 -0400224static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
225static void acpi_video_device_rebind(struct acpi_video_bus *video);
226static void acpi_video_device_bind(struct acpi_video_bus *video,
227 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800229static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
230 int level);
231static int acpi_video_device_lcd_get_level_current(
232 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000233 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400234static int acpi_video_get_next_level(struct acpi_video_device *device,
235 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200236static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800238static bool acpi_video_use_native_backlight(void)
239{
240 if (use_native_backlight_param != -1)
241 return use_native_backlight_param;
242 else
243 return use_native_backlight_dmi;
244}
245
Aaron Lu0b9f7d92014-07-07 15:43:51 +0800246bool acpi_video_verify_backlight_support(void)
Aaron Lufbc9fe12013-10-11 21:27:45 +0800247{
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800248 if (acpi_osi_is_win8() && acpi_video_use_native_backlight() &&
Aaron Lufbc9fe12013-10-11 21:27:45 +0800249 backlight_device_registered(BACKLIGHT_RAW))
250 return false;
251 return acpi_video_backlight_support();
252}
Aaron Lu0b9f7d92014-07-07 15:43:51 +0800253EXPORT_SYMBOL_GPL(acpi_video_verify_backlight_support);
Aaron Lufbc9fe12013-10-11 21:27:45 +0800254
Felipe Contreras21fcb342013-08-01 18:43:59 -0500255/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800256static int acpi_video_get_brightness(struct backlight_device *bd)
257{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400258 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000259 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200260 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800261
Danny Baumanna89803d2013-03-19 16:22:50 +0000262 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800263 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000264 for (i = 2; i < vd->brightness->count; i++) {
265 if (vd->brightness->levels[i] == cur_level)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500266 /*
267 * The first two entries are special - see page 575
268 * of the ACPI spec 3.0
269 */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200270 return i - 2;
Matthew Garrett38531e62007-12-26 02:03:26 +0000271 }
272 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800273}
274
275static int acpi_video_set_brightness(struct backlight_device *bd)
276{
Zhang Rui24450c72009-03-18 16:27:10 +0800277 int request_level = bd->props.brightness + 2;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200278 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800279
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200280 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800281 return acpi_video_device_lcd_set_level(vd,
282 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800283}
284
Lionel Debrouxacc24722010-11-16 14:14:02 +0100285static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000286 .get_brightness = acpi_video_get_brightness,
287 .update_status = acpi_video_set_brightness,
288};
289
Zhang Rui702ed512008-01-17 15:51:22 +0800290/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400291static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000292 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800293{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400294 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800295 struct acpi_video_device *video = acpi_driver_data(device);
296
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000297 *state = video->brightness->count - 3;
298 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800299}
300
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400301static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000302 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800303{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400304 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800305 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400306 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000307 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800308
Danny Baumanna89803d2013-03-19 16:22:50 +0000309 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800310 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000311 for (offset = 2; offset < video->brightness->count; offset++)
312 if (level == video->brightness->levels[offset]) {
313 *state = video->brightness->count - offset - 1;
314 return 0;
315 }
Zhang Rui702ed512008-01-17 15:51:22 +0800316
317 return -EINVAL;
318}
319
320static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400321video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800322{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400323 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800324 struct acpi_video_device *video = acpi_driver_data(device);
325 int level;
326
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200327 if (state >= video->brightness->count - 2)
Zhang Rui702ed512008-01-17 15:51:22 +0800328 return -EINVAL;
329
330 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200331 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800332 return acpi_video_device_lcd_set_level(video, level);
333}
334
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400335static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800336 .get_max_state = video_get_max_state,
337 .get_cur_state = video_get_cur_state,
338 .set_cur_state = video_set_cur_state,
339};
340
Felipe Contreras21fcb342013-08-01 18:43:59 -0500341/*
342 * --------------------------------------------------------------------------
343 * Video Management
344 * --------------------------------------------------------------------------
345 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static int
Len Brown4be44fc2005-08-05 00:44:28 -0400348acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
349 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Len Brown4be44fc2005-08-05 00:44:28 -0400351 int status;
352 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
353 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 *levels = NULL;
357
Patrick Mochel90130262006-05-19 16:54:48 -0400358 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400360 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400361 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500362 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400363 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 status = -EFAULT;
365 goto err;
366 }
367
368 *levels = obj;
369
Patrick Mocheld550d982006-06-27 00:41:40 -0400370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200372err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800373 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Patrick Mocheld550d982006-06-27 00:41:40 -0400375 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378static int
Len Brown4be44fc2005-08-05 00:44:28 -0400379acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Zhang Rui24450c72009-03-18 16:27:10 +0800381 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800382 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Jiang Liu0db98202013-06-29 00:24:39 +0800384 status = acpi_execute_simple_method(device->dev->handle,
385 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800386 if (ACPI_FAILURE(status)) {
387 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
388 return -EIO;
389 }
390
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400391 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800392 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800393 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800394 if (device->backlight)
395 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800396 return 0;
397 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800398
Zhang Rui24450c72009-03-18 16:27:10 +0800399 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
400 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Zhang Rui45cb50e2009-04-24 12:13:18 -0400403/*
404 * For some buggy _BQC methods, we need to add a constant value to
405 * the _BQC return value to get the actual current brightness level
406 */
407
408static int bqc_offset_aml_bug_workaround;
409static int __init video_set_bqc_offset(const struct dmi_system_id *d)
410{
411 bqc_offset_aml_bug_workaround = 9;
412 return 0;
413}
414
Hans de Goede5f240792014-08-28 10:20:46 +0200415static int __init video_disable_native_backlight(const struct dmi_system_id *d)
416{
417 use_native_backlight_dmi = false;
418 return 0;
419}
420
Zhang Rui45cb50e2009-04-24 12:13:18 -0400421static struct dmi_system_id video_dmi_table[] __initdata = {
422 /*
423 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
424 */
425 {
426 .callback = video_set_bqc_offset,
427 .ident = "Acer Aspire 5720",
428 .matches = {
429 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
430 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
431 },
432 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400433 {
434 .callback = video_set_bqc_offset,
435 .ident = "Acer Aspire 5710Z",
436 .matches = {
437 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
438 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
439 },
440 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400441 {
442 .callback = video_set_bqc_offset,
443 .ident = "eMachines E510",
444 .matches = {
445 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
446 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
447 },
448 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400449 {
450 .callback = video_set_bqc_offset,
451 .ident = "Acer Aspire 5315",
452 .matches = {
453 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
454 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
455 },
456 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800457 {
458 .callback = video_set_bqc_offset,
459 .ident = "Acer Aspire 7720",
460 .matches = {
461 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
462 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
463 },
464 },
Hans de Goede5f240792014-08-28 10:20:46 +0200465
466 /*
467 * These models have a working acpi_video backlight control, and using
468 * native backlight causes a regression where backlight does not work
469 * when userspace is not handling brightness key events. Disable
470 * native_backlight on these to fix this:
471 * https://bugzilla.kernel.org/show_bug.cgi?id=81691
472 */
473 {
474 .callback = video_disable_native_backlight,
475 .ident = "ThinkPad T420",
476 .matches = {
477 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
478 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T420"),
479 },
480 },
481 {
482 .callback = video_disable_native_backlight,
483 .ident = "ThinkPad T520",
484 .matches = {
485 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
486 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T520"),
487 },
488 },
Aaron Lu789eeea2014-09-19 10:01:18 +0800489 {
490 .callback = video_disable_native_backlight,
491 .ident = "ThinkPad X201s",
492 .matches = {
493 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
494 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X201s"),
495 },
496 },
Hans de Goede84c34852014-08-28 10:20:47 +0200497
498 /* The native backlight controls do not work on some older machines */
499 {
500 /* https://bugs.freedesktop.org/show_bug.cgi?id=81515 */
501 .callback = video_disable_native_backlight,
502 .ident = "HP ENVY 15 Notebook",
503 .matches = {
504 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
505 DMI_MATCH(DMI_PRODUCT_NAME, "HP ENVY 15 Notebook PC"),
506 },
507 },
Aaron Lu7d0b9342014-12-22 15:18:05 +0800508
509 {
510 .callback = video_disable_native_backlight,
511 .ident = "SAMSUNG 870Z5E/880Z5E/680Z5E",
512 .matches = {
513 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
514 DMI_MATCH(DMI_PRODUCT_NAME, "870Z5E/880Z5E/680Z5E"),
515 },
516 },
517 {
518 .callback = video_disable_native_backlight,
519 .ident = "SAMSUNG 370R4E/370R4V/370R5E/3570RE/370R5V",
520 .matches = {
521 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
522 DMI_MATCH(DMI_PRODUCT_NAME, "370R4E/370R4V/370R5E/3570RE/370R5V"),
523 },
524 },
Hans de Goede3295d732015-01-09 16:22:57 +0100525 {
Hans de Goedee77a1632015-02-07 09:53:53 +0100526 /* https://bugzilla.redhat.com/show_bug.cgi?id=1186097 */
527 .callback = video_disable_native_backlight,
528 .ident = "SAMSUNG 3570R/370R/470R/450R/510R/4450RV",
529 .matches = {
530 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
531 DMI_MATCH(DMI_PRODUCT_NAME, "3570R/370R/470R/450R/510R/4450RV"),
532 },
533 },
534 {
Hans de Goede3295d732015-01-09 16:22:57 +0100535 /* https://bugzilla.redhat.com/show_bug.cgi?id=1094948 */
536 .callback = video_disable_native_backlight,
537 .ident = "SAMSUNG 730U3E/740U3E",
538 .matches = {
539 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
540 DMI_MATCH(DMI_PRODUCT_NAME, "730U3E/740U3E"),
541 },
542 },
Jens Reyer3120d032015-02-17 19:07:29 +0100543 {
544 /* https://bugs.freedesktop.org/show_bug.cgi?id=87286 */
545 .callback = video_disable_native_backlight,
546 .ident = "SAMSUNG 900X3C/900X3D/900X3E/900X4C/900X4D",
547 .matches = {
548 DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
549 DMI_MATCH(DMI_PRODUCT_NAME, "900X3C/900X3D/900X3E/900X4C/900X4D"),
550 },
551 },
Hans de Goede6a3ef102015-01-05 08:57:04 +0100552
553 {
554 /* https://bugzilla.redhat.com/show_bug.cgi?id=1163574 */
555 .callback = video_disable_native_backlight,
556 .ident = "Dell XPS15 L521X",
557 .matches = {
558 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
559 DMI_MATCH(DMI_PRODUCT_NAME, "XPS L521X"),
560 },
561 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400562 {}
563};
564
Danny Baumann994fa632013-03-19 16:22:52 +0000565static unsigned long long
566acpi_video_bqc_value_to_level(struct acpi_video_device *device,
567 unsigned long long bqc_value)
568{
569 unsigned long long level;
570
571 if (device->brightness->flags._BQC_use_index) {
572 /*
573 * _BQC returns an index that doesn't account for
574 * the first 2 items with special meaning, so we need
575 * to compensate for that by offsetting ourselves
576 */
577 if (device->brightness->flags._BCL_reversed)
578 bqc_value = device->brightness->count - 3 - bqc_value;
579
580 level = device->brightness->levels[bqc_value + 2];
581 } else {
582 level = bqc_value;
583 }
584
585 level += bqc_offset_aml_bug_workaround;
586
587 return level;
588}
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590static int
Len Brown4be44fc2005-08-05 00:44:28 -0400591acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000592 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Zhang Ruic8890f92009-03-18 16:27:08 +0800594 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800595 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800596
Zhang Ruic60d6382009-03-18 16:27:18 +0800597 if (device->cap._BQC || device->cap._BCQ) {
598 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
599
600 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800601 NULL, level);
602 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000603 if (raw) {
604 /*
605 * Caller has indicated he wants the raw
606 * value returned by _BQC, so don't furtherly
607 * mess with the value.
608 */
609 return 0;
610 }
611
Danny Baumann994fa632013-03-19 16:22:52 +0000612 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800613
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800614 for (i = 2; i < device->brightness->count; i++)
615 if (device->brightness->levels[i] == *level) {
616 device->brightness->curr = *level;
617 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200618 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000619 /*
620 * BQC returned an invalid level.
621 * Stop using it.
622 */
623 ACPI_WARNING((AE_INFO,
624 "%s returned an invalid level",
625 buf));
626 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800627 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500628 /*
629 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800630 * should we return an error or ignore this failure?
631 * dev->brightness->curr is a cached value which stores
632 * the correct current backlight level in most cases.
633 * ACPI video backlight still works w/ buggy _BQC.
634 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
635 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800636 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
637 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800638 }
639 }
640
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400641 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645static int
Len Brown4be44fc2005-08-05 00:44:28 -0400646acpi_video_device_EDID(struct acpi_video_device *device,
647 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Len Brown4be44fc2005-08-05 00:44:28 -0400649 int status;
650 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
651 union acpi_object *obj;
652 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
653 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 *edid = NULL;
657
658 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400659 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (length == 128)
661 arg0.integer.value = 1;
662 else if (length == 256)
663 arg0.integer.value = 2;
664 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400665 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Patrick Mochel90130262006-05-19 16:54:48 -0400667 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400669 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200671 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 if (obj && obj->type == ACPI_TYPE_BUFFER)
674 *edid = obj;
675 else {
Len Brown64684632006-06-26 23:41:38 -0400676 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 status = -EFAULT;
678 kfree(obj);
679 }
680
Patrick Mocheld550d982006-06-27 00:41:40 -0400681 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684/* bus */
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/*
687 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500688 * video : video bus device pointer
689 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 * 0. The system BIOS should NOT automatically switch(toggle)
691 * the active display output.
692 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100693 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 * 2. The _DGS value should be locked.
695 * 3. The system BIOS should not automatically switch (toggle) the
696 * active display output, but instead generate the display switch
697 * event notify code.
698 * lcd_flag :
699 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100700 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500701 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100702 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500703 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400704 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 */
706
707static int
Len Brown4be44fc2005-08-05 00:44:28 -0400708acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
Igor Murzovea9f8852012-03-30 21:32:08 +0400710 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Zhang Ruib0373842012-06-20 09:48:43 +0800712 if (!video->cap._DOS)
713 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Igor Murzovea9f8852012-03-30 21:32:08 +0400715 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
716 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800717 video->dos_setting = (lcd_flag << 2) | bios_flag;
718 status = acpi_execute_simple_method(video->device->handle, "_DOS",
719 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400720 if (ACPI_FAILURE(status))
721 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Igor Murzovea9f8852012-03-30 21:32:08 +0400723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
726/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500727 * Simple comparison function used to sort backlight levels.
728 */
729
730static int
731acpi_video_cmp_level(const void *a, const void *b)
732{
733 return *(int *)a - *(int *)b;
734}
735
736/*
Aaron Lua50188d2013-04-22 14:08:32 +0200737 * Decides if _BQC/_BCQ for this system is usable
738 *
739 * We do this by changing the level first and then read out the current
740 * brightness level, if the value does not match, find out if it is using
741 * index. If not, clear the _BQC/_BCQ capability.
742 */
743static int acpi_video_bqc_quirk(struct acpi_video_device *device,
744 int max_level, int current_level)
745{
746 struct acpi_video_device_brightness *br = device->brightness;
747 int result;
748 unsigned long long level;
749 int test_level;
750
751 /* don't mess with existing known broken systems */
752 if (bqc_offset_aml_bug_workaround)
753 return 0;
754
755 /*
756 * Some systems always report current brightness level as maximum
757 * through _BQC, we need to test another value for them.
758 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200759 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200760
761 result = acpi_video_device_lcd_set_level(device, test_level);
762 if (result)
763 return result;
764
765 result = acpi_video_device_lcd_get_level_current(device, &level, true);
766 if (result)
767 return result;
768
769 if (level != test_level) {
770 /* buggy _BQC found, need to find out if it uses index */
771 if (level < br->count) {
772 if (br->flags._BCL_reversed)
773 level = br->count - 3 - level;
774 if (br->levels[level + 2] == test_level)
775 br->flags._BQC_use_index = 1;
776 }
777
778 if (!br->flags._BQC_use_index)
779 device->cap._BQC = device->cap._BCQ = 0;
780 }
781
782 return 0;
783}
784
785
786/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500787 * Arg:
788 * device : video output device (LCD, CRT, ..)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 *
790 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100791 * Maximum brightness level
792 *
793 * Allocate and initialize device->brightness.
794 */
795
796static int
797acpi_video_init_brightness(struct acpi_video_device *device)
798{
799 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800800 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800801 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100802 union acpi_object *o;
803 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800804 int result = -EINVAL;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100805 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100806
807 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
808 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
809 "LCD brightness level\n"));
810 goto out;
811 }
812
813 if (obj->package.count < 2)
814 goto out;
815
816 br = kzalloc(sizeof(*br), GFP_KERNEL);
817 if (!br) {
818 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800819 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100820 goto out;
821 }
822
Zhang Ruid32f6942009-03-18 16:27:12 +0800823 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100824 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800825 if (!br->levels) {
826 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100827 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800828 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100829
830 for (i = 0; i < obj->package.count; i++) {
831 o = (union acpi_object *)&obj->package.elements[i];
832 if (o->type != ACPI_TYPE_INTEGER) {
833 printk(KERN_ERR PREFIX "Invalid data\n");
834 continue;
835 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100836 value = (u32) o->integer.value;
837 /* Skip duplicate entries */
838 if (count > 2 && br->levels[count - 1] == value)
839 continue;
840
841 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100842
843 if (br->levels[count] > max_level)
844 max_level = br->levels[count];
845 count++;
846 }
847
Zhang Ruid32f6942009-03-18 16:27:12 +0800848 /*
849 * some buggy BIOS don't export the levels
850 * when machine is on AC/Battery in _BCL package.
851 * In this case, the first two elements in _BCL packages
852 * are also supported brightness levels that OS should take care of.
853 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800854 for (i = 2; i < count; i++) {
855 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800856 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800857 if (br->levels[i] == br->levels[1])
858 level_ac_battery++;
859 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500860
Zhang Ruid32f6942009-03-18 16:27:12 +0800861 if (level_ac_battery < 2) {
862 level_ac_battery = 2 - level_ac_battery;
863 br->flags._BCL_no_ac_battery_levels = 1;
864 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
865 br->levels[i] = br->levels[i - level_ac_battery];
866 count += level_ac_battery;
867 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000868 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800869
Zhang Ruid80fb992009-03-18 16:27:14 +0800870 /* Check if the _BCL package is in a reversed order */
871 if (max_level == br->levels[2]) {
872 br->flags._BCL_reversed = 1;
873 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
874 acpi_video_cmp_level, NULL);
875 } else if (max_level != br->levels[count - 1])
876 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000877 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100878
879 br->count = count;
880 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800881
Zhang Rui1a7c6182009-03-18 16:27:16 +0800882 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400883 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800884
885 if (!device->cap._BQC)
886 goto set_level;
887
Danny Baumanna89803d2013-03-19 16:22:50 +0000888 result = acpi_video_device_lcd_get_level_current(device,
889 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800890 if (result)
891 goto out_free_levels;
892
Aaron Lua50188d2013-04-22 14:08:32 +0200893 result = acpi_video_bqc_quirk(device, max_level, level_old);
894 if (result)
895 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800896 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200897 * cap._BQC may get cleared due to _BQC is found to be broken
898 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800899 */
Aaron Lua50188d2013-04-22 14:08:32 +0200900 if (!device->cap._BQC)
901 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800902
Aaron Lu545ef362013-11-15 14:39:12 +0800903 level = acpi_video_bqc_value_to_level(device, level_old);
904 /*
905 * On some buggy laptops, _BQC returns an uninitialized
906 * value when invoked for the first time, i.e.
907 * level_old is invalid (no matter whether it's a level
908 * or an index). Set the backlight to max_level in this case.
909 */
910 for (i = 2; i < br->count; i++)
911 if (level == br->levels[i])
912 break;
913 if (i == br->count || !level)
914 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800915
Zhang Ruie047cca2009-04-09 14:24:35 +0800916set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400917 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800918 if (result)
919 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800920
Zhang Ruid32f6942009-03-18 16:27:12 +0800921 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
922 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100923 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800924 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100925
926out_free_levels:
927 kfree(br->levels);
928out_free:
929 kfree(br);
930out:
931 device->brightness = NULL;
932 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800933 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100934}
935
936/*
937 * Arg:
938 * device : video output device (LCD, CRT, ..)
939 *
940 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500941 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100943 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * device.
945 */
946
Len Brown4be44fc2005-08-05 00:44:28 -0400947static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
Jiang Liu952c63e2013-06-29 00:24:38 +0800949 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800951 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400952 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800953 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400954 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800955 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800956 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800957 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800958 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
959 device->cap._BCQ = 1;
960 }
961
Jiang Liu952c63e2013-06-29 00:24:38 +0800962 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400963 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
966/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500967 * Arg:
968 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 *
970 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500971 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100973 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
975
Len Brown4be44fc2005-08-05 00:44:28 -0400976static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Jiang Liu952c63e2013-06-29 00:24:38 +0800978 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800980 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800982 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800984 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800986 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800988 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
992/*
993 * Check whether the video bus device has required AML method to
994 * support the desired features
995 */
996
Len Brown4be44fc2005-08-05 00:44:28 -0400997static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Len Brown4be44fc2005-08-05 00:44:28 -0400999 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001000 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001003 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001005 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001006 if (!dev)
1007 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001008 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001009
Felipe Contreras21fcb342013-08-01 18:43:59 -05001010 /*
1011 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 * to check well known required nodes.
1013 */
1014
Julius Volz98fb8fe2007-02-20 16:38:40 +01001015 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001016 if (video->cap._DOS || video->cap._DOD) {
1017 if (!video->cap._DOS) {
1018 printk(KERN_WARNING FW_BUG
1019 "ACPI(%s) defines _DOD but not _DOS\n",
1020 acpi_device_bid(video->device));
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 video->flags.multihead = 1;
1023 status = 0;
1024 }
1025
Julius Volz98fb8fe2007-02-20 16:38:40 +01001026 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001027 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 video->flags.rom = 1;
1029 status = 0;
1030 }
1031
Julius Volz98fb8fe2007-02-20 16:38:40 +01001032 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001033 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 video->flags.post = 1;
1035 status = 0;
1036 }
1037
Patrick Mocheld550d982006-06-27 00:41:40 -04001038 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
Felipe Contreras21fcb342013-08-01 18:43:59 -05001041/*
1042 * --------------------------------------------------------------------------
1043 * Driver Interface
1044 * --------------------------------------------------------------------------
1045 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001048static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001049acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1050{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001051 struct acpi_video_enumerated_device *ids;
1052 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001053
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001054 for (i = 0; i < video->attached_count; i++) {
1055 ids = &video->attached_array[i];
1056 if ((ids->value.int_val & 0xffff) == device_id)
1057 return &ids->value.attrib;
1058 }
1059
Rui Zhang82cae992007-01-03 23:40:53 -05001060 return NULL;
1061}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001064acpi_video_get_device_type(struct acpi_video_bus *video,
1065 unsigned long device_id)
1066{
1067 struct acpi_video_enumerated_device *ids;
1068 int i;
1069
1070 for (i = 0; i < video->attached_count; i++) {
1071 ids = &video->attached_array[i];
1072 if ((ids->value.int_val & 0xffff) == device_id)
1073 return ids->value.int_val;
1074 }
1075
1076 return 0;
1077}
1078
1079static int
Len Brown4be44fc2005-08-05 00:44:28 -04001080acpi_video_bus_get_one_device(struct acpi_device *device,
1081 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001083 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001084 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001085 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001086 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Len Brown4be44fc2005-08-05 00:44:28 -04001088 status =
1089 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001090 /* Some device omits _ADR, we skip them instead of fail */
1091 if (ACPI_FAILURE(status))
1092 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Aaron Lu91e13aa2013-04-25 02:47:49 +00001094 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1095 if (!data)
1096 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Aaron Lu91e13aa2013-04-25 02:47:49 +00001098 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1099 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1100 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Aaron Lu91e13aa2013-04-25 02:47:49 +00001102 data->device_id = device_id;
1103 data->video = video;
1104 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001105 INIT_DELAYED_WORK(&data->switch_brightness_work,
1106 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Aaron Lu91e13aa2013-04-25 02:47:49 +00001108 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001109
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001110 if (attribute && attribute->device_id_scheme) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001111 switch (attribute->display_type) {
1112 case ACPI_VIDEO_DISPLAY_CRT:
1113 data->flags.crt = 1;
1114 break;
1115 case ACPI_VIDEO_DISPLAY_TV:
1116 data->flags.tvout = 1;
1117 break;
1118 case ACPI_VIDEO_DISPLAY_DVI:
1119 data->flags.dvi = 1;
1120 break;
1121 case ACPI_VIDEO_DISPLAY_LCD:
1122 data->flags.lcd = 1;
1123 break;
1124 default:
1125 data->flags.unknown = 1;
1126 break;
1127 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001128 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001129 data->flags.bios = 1;
1130 } else {
1131 /* Check for legacy IDs */
1132 device_type = acpi_video_get_device_type(video, device_id);
1133 /* Ignore bits 16 and 18-20 */
1134 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001135 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1136 data->flags.crt = 1;
1137 break;
1138 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1139 data->flags.lcd = 1;
1140 break;
1141 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1142 data->flags.tvout = 1;
1143 break;
1144 default:
1145 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148
Aaron Lu91e13aa2013-04-25 02:47:49 +00001149 acpi_video_device_bind(video, data);
1150 acpi_video_device_find_cap(data);
1151
Aaron Lu91e13aa2013-04-25 02:47:49 +00001152 mutex_lock(&video->device_list_lock);
1153 list_add_tail(&data->entry, &video->video_device_list);
1154 mutex_unlock(&video->device_list_lock);
1155
1156 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159/*
1160 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001161 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 *
1163 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001164 * none
1165 *
1166 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 * bind the ids with the corresponding video devices
1168 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Len Brown4be44fc2005-08-05 00:44:28 -04001171static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001173 struct acpi_video_device *dev;
1174
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001175 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001176
1177 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001178 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001179
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001180 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
1183/*
1184 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001185 * video : video bus device
1186 * device : video output device under the video
1187 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 *
1189 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001190 * none
1191 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * Bind the ids with the corresponding video devices
1193 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196static void
Len Brown4be44fc2005-08-05 00:44:28 -04001197acpi_video_device_bind(struct acpi_video_bus *video,
1198 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001200 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001201 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001203 for (i = 0; i < video->attached_count; i++) {
1204 ids = &video->attached_array[i];
1205 if (device->device_id == (ids->value.int_val & 0xffff)) {
1206 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1208 }
1209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Aaron Lu0b8db272014-09-30 14:10:17 +08001212static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1213{
1214 struct acpi_video_bus *video = device->video;
1215 int i;
1216
Aaron Lub4df4632014-12-15 16:01:29 +08001217 /*
1218 * If we have a broken _DOD or we have more than 8 output devices
1219 * under the graphics controller node that we can't proper deal with
1220 * in the operation region code currently, no need to test.
1221 */
1222 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001223 return true;
1224
1225 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001226 if ((video->attached_array[i].value.int_val & 0xfff) ==
1227 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001228 return true;
1229 }
1230
1231 return false;
1232}
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234/*
1235 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001236 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 *
1238 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001239 * < 0 : error
1240 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 * Call _DOD to enumerate all devices attached to display adapter
1242 *
Len Brown4be44fc2005-08-05 00:44:28 -04001243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1246{
Len Brown4be44fc2005-08-05 00:44:28 -04001247 int status;
1248 int count;
1249 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001250 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001251 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1252 union acpi_object *dod = NULL;
1253 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Patrick Mochel90130262006-05-19 16:54:48 -04001255 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001257 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001258 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001261 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001263 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 status = -EFAULT;
1265 goto out;
1266 }
1267
1268 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001269 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001271 active_list = kcalloc(1 + dod->package.count,
1272 sizeof(struct acpi_video_enumerated_device),
1273 GFP_KERNEL);
1274 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 status = -ENOMEM;
1276 goto out;
1277 }
1278
1279 count = 0;
1280 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001281 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001284 printk(KERN_ERR PREFIX
1285 "Invalid _DOD data in element %d\n", i);
1286 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001288
1289 active_list[count].value.int_val = obj->integer.value;
1290 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001291 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1292 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 count++;
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Jesper Juhl6044ec82005-11-07 01:01:32 -08001296 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001297
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001298 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001300
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001301out:
Len Brown02438d82006-06-30 03:19:10 -04001302 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001303 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Len Brown4be44fc2005-08-05 00:44:28 -04001306static int
1307acpi_video_get_next_level(struct acpi_video_device *device,
1308 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001310 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001311 max = max_below = 0;
1312 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001313 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001314 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001315 l = device->brightness->levels[i];
1316 if (abs(l - level_current) < abs(delta)) {
1317 delta = l - level_current;
1318 if (!delta)
1319 break;
1320 }
1321 }
1322 /* Ajust level_current to closest available level */
1323 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001324 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001325 l = device->brightness->levels[i];
1326 if (l < min)
1327 min = l;
1328 if (l > max)
1329 max = l;
1330 if (l < min_above && l > level_current)
1331 min_above = l;
1332 if (l > max_below && l < level_current)
1333 max_below = l;
1334 }
1335
1336 switch (event) {
1337 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1338 return (level_current < max) ? min_above : min;
1339 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1340 return (level_current < max) ? min_above : max;
1341 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1342 return (level_current > min) ? max_below : min;
1343 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1344 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1345 return 0;
1346 default:
1347 return level_current;
1348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001351static void
1352acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001354 struct acpi_video_device *device = container_of(to_delayed_work(work),
1355 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001356 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001357 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001358 int result = -EINVAL;
1359
Aaron Lufbc9fe12013-10-11 21:27:45 +08001360 /* no warning message if acpi_backlight=vendor or a quirk is used */
1361 if (!acpi_video_verify_backlight_support())
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001362 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001363
Julia Jomantaite469778c2008-06-23 22:50:42 +01001364 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001365 goto out;
1366
1367 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001368 &level_current,
1369 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001370 if (result)
1371 goto out;
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001374
Zhang Rui24450c72009-03-18 16:27:10 +08001375 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001376
Matthew Garrett36342742009-07-14 17:06:03 +01001377 if (!result)
1378 backlight_force_update(device->backlight,
1379 BACKLIGHT_UPDATE_HOTKEY);
1380
Zhang Ruic8890f92009-03-18 16:27:08 +08001381out:
1382 if (result)
1383 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384}
1385
Matthew Garrette92a7162010-01-12 14:17:03 -05001386int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1387 void **edid)
1388{
1389 struct acpi_video_bus *video;
1390 struct acpi_video_device *video_device;
1391 union acpi_object *buffer = NULL;
1392 acpi_status status;
1393 int i, length;
1394
1395 if (!device || !acpi_driver_data(device))
1396 return -EINVAL;
1397
1398 video = acpi_driver_data(device);
1399
1400 for (i = 0; i < video->attached_count; i++) {
1401 video_device = video->attached_array[i].bind_info;
1402 length = 256;
1403
1404 if (!video_device)
1405 continue;
1406
Zhang Rui82069552010-12-06 15:04:24 +08001407 if (!video_device->cap._DDC)
1408 continue;
1409
Matthew Garrette92a7162010-01-12 14:17:03 -05001410 if (type) {
1411 switch (type) {
1412 case ACPI_VIDEO_DISPLAY_CRT:
1413 if (!video_device->flags.crt)
1414 continue;
1415 break;
1416 case ACPI_VIDEO_DISPLAY_TV:
1417 if (!video_device->flags.tvout)
1418 continue;
1419 break;
1420 case ACPI_VIDEO_DISPLAY_DVI:
1421 if (!video_device->flags.dvi)
1422 continue;
1423 break;
1424 case ACPI_VIDEO_DISPLAY_LCD:
1425 if (!video_device->flags.lcd)
1426 continue;
1427 break;
1428 }
1429 } else if (video_device->device_id != device_id) {
1430 continue;
1431 }
1432
1433 status = acpi_video_device_EDID(video_device, &buffer, length);
1434
1435 if (ACPI_FAILURE(status) || !buffer ||
1436 buffer->type != ACPI_TYPE_BUFFER) {
1437 length = 128;
1438 status = acpi_video_device_EDID(video_device, &buffer,
1439 length);
1440 if (ACPI_FAILURE(status) || !buffer ||
1441 buffer->type != ACPI_TYPE_BUFFER) {
1442 continue;
1443 }
1444 }
1445
1446 *edid = buffer->buffer.pointer;
1447 return length;
1448 }
1449
1450 return -ENODEV;
1451}
1452EXPORT_SYMBOL(acpi_video_get_edid);
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454static int
Len Brown4be44fc2005-08-05 00:44:28 -04001455acpi_video_bus_get_devices(struct acpi_video_bus *video,
1456 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Igor Murzovfba4e082012-10-13 04:41:25 +04001458 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001459 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Igor Murzovfba4e082012-10-13 04:41:25 +04001461 /*
1462 * There are systems where video module known to work fine regardless
1463 * of broken _DOD and ignoring returned value here doesn't cause
1464 * any issues later.
1465 */
1466 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001468 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001471 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001472 dev_err(&dev->dev, "Can't attach device\n");
1473 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
Aaron Lub4df4632014-12-15 16:01:29 +08001475 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001477 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480/* acpi_video interface */
1481
Aaron Luefaa14c2013-07-16 13:08:05 +08001482/*
1483 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1484 * preform any automatic brightness change on receiving a notification.
1485 */
Len Brown4be44fc2005-08-05 00:44:28 -04001486static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Aaron Luefaa14c2013-07-16 13:08:05 +08001488 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001489 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Len Brown4be44fc2005-08-05 00:44:28 -04001492static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Aaron Luefaa14c2013-07-16 13:08:05 +08001494 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001495 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Bjorn Helgaas70155582009-04-07 15:37:11 +00001498static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001500 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001501 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001502 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001503
Aaron Lu67b662e2013-10-11 21:27:44 +08001504 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001505 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Luming Yue9dab192007-08-20 18:23:53 +08001507 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001510 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001512 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 break;
1514
Julius Volz98fb8fe2007-02-20 16:38:40 +01001515 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 * connector. */
1517 acpi_video_device_enumerate(video);
1518 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001519 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 break;
1521
Len Brown4be44fc2005-08-05 00:44:28 -04001522 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001523 keycode = KEY_SWITCHVIDEOMODE;
1524 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001525 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001526 keycode = KEY_VIDEO_NEXT;
1527 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001528 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001529 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 break;
1531
1532 default:
1533 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001534 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 break;
1536 }
1537
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001538 if (acpi_notifier_call_chain(device, event, 0))
1539 /* Something vetoed the keypress. */
1540 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001541
1542 if (keycode) {
1543 input_report_key(input, keycode, 1);
1544 input_sync(input);
1545 input_report_key(input, keycode, 0);
1546 input_sync(input);
1547 }
Luming Yue9dab192007-08-20 18:23:53 +08001548
Patrick Mocheld550d982006-06-27 00:41:40 -04001549 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550}
1551
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001552static void brightness_switch_event(struct acpi_video_device *video_device,
1553 u32 event)
1554{
1555 if (!brightness_switch_enabled)
1556 return;
1557
1558 video_device->switch_brightness_event = event;
1559 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1560}
1561
Len Brown4be44fc2005-08-05 00:44:28 -04001562static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001564 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001565 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001566 struct acpi_video_bus *bus;
1567 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001568 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001571 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001573 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001574 bus = video_device->video;
1575 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001578 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001579 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001580 keycode = KEY_BRIGHTNESS_CYCLE;
1581 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001582 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001583 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001584 keycode = KEY_BRIGHTNESSUP;
1585 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001586 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001587 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001588 keycode = KEY_BRIGHTNESSDOWN;
1589 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001590 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001591 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001592 keycode = KEY_BRIGHTNESS_ZERO;
1593 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001594 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001595 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001596 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 break;
1598 default:
1599 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001600 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 break;
1602 }
Luming Yue9dab192007-08-20 18:23:53 +08001603
Zhang Rui7761f632008-01-25 14:48:12 +08001604 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001605
1606 if (keycode) {
1607 input_report_key(input, keycode, 1);
1608 input_sync(input);
1609 input_report_key(input, keycode, 0);
1610 input_sync(input);
1611 }
Luming Yue9dab192007-08-20 18:23:53 +08001612
Patrick Mocheld550d982006-06-27 00:41:40 -04001613 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001616static int acpi_video_resume(struct notifier_block *nb,
1617 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001618{
1619 struct acpi_video_bus *video;
1620 struct acpi_video_device *video_device;
1621 int i;
1622
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001623 switch (val) {
1624 case PM_HIBERNATION_PREPARE:
1625 case PM_SUSPEND_PREPARE:
1626 case PM_RESTORE_PREPARE:
1627 return NOTIFY_DONE;
1628 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001629
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001630 video = container_of(nb, struct acpi_video_bus, pm_nb);
1631
1632 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001633
1634 for (i = 0; i < video->attached_count; i++) {
1635 video_device = video->attached_array[i].bind_info;
1636 if (video_device && video_device->backlight)
1637 acpi_video_set_brightness(video_device->backlight);
1638 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001639
1640 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001641}
1642
Zhang Ruic504f8c2009-12-30 15:59:23 +08001643static acpi_status
1644acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1645 void **return_value)
1646{
1647 struct acpi_device *device = context;
1648 struct acpi_device *sibling;
1649 int result;
1650
1651 if (handle == device->handle)
1652 return AE_CTRL_TERMINATE;
1653
1654 result = acpi_bus_get_device(handle, &sibling);
1655 if (result)
1656 return AE_OK;
1657
1658 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1659 return AE_ALREADY_EXISTS;
1660
1661 return AE_OK;
1662}
1663
Aaron Lu67b662e2013-10-11 21:27:44 +08001664static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1665{
Hans de Goede99678ed2014-05-15 13:22:33 +02001666 struct backlight_properties props;
1667 struct pci_dev *pdev;
1668 acpi_handle acpi_parent;
1669 struct device *parent = NULL;
1670 int result;
1671 static int count;
1672 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001673
Aaron Lu0b8db272014-09-30 14:10:17 +08001674 /*
1675 * Do not create backlight device for video output
1676 * device that is not in the enumerated list.
1677 */
1678 if (!acpi_video_device_in_dod(device)) {
1679 dev_dbg(&device->dev->dev, "not in _DOD list, ignore\n");
1680 return;
1681 }
1682
Hans de Goede99678ed2014-05-15 13:22:33 +02001683 result = acpi_video_init_brightness(device);
1684 if (result)
1685 return;
1686 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1687 if (!name)
1688 return;
1689 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001690
Hans de Goede99678ed2014-05-15 13:22:33 +02001691 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001692
Hans de Goede99678ed2014-05-15 13:22:33 +02001693 pdev = acpi_get_pci_dev(acpi_parent);
1694 if (pdev) {
1695 parent = &pdev->dev;
1696 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001697 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001698
1699 memset(&props, 0, sizeof(struct backlight_properties));
1700 props.type = BACKLIGHT_FIRMWARE;
1701 props.max_brightness = device->brightness->count - 3;
1702 device->backlight = backlight_device_register(name,
1703 parent,
1704 device,
1705 &acpi_backlight_ops,
1706 &props);
1707 kfree(name);
1708 if (IS_ERR(device->backlight))
1709 return;
1710
1711 /*
1712 * Save current brightness level in case we have to restore it
1713 * before acpi_video_device_lcd_set_level() is called next time.
1714 */
1715 device->backlight->props.brightness =
1716 acpi_video_get_brightness(device->backlight);
1717
1718 device->cooling_dev = thermal_cooling_device_register("LCD",
1719 device->dev, &video_cooling_ops);
1720 if (IS_ERR(device->cooling_dev)) {
1721 /*
1722 * Set cooling_dev to NULL so we don't crash trying to free it.
1723 * Also, why the hell we are returning early and not attempt to
1724 * register video output if cooling device registration failed?
1725 * -- dtor
1726 */
1727 device->cooling_dev = NULL;
1728 return;
1729 }
1730
1731 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1732 device->cooling_dev->id);
1733 result = sysfs_create_link(&device->dev->dev.kobj,
1734 &device->cooling_dev->device.kobj,
1735 "thermal_cooling");
1736 if (result)
1737 printk(KERN_ERR PREFIX "Create sysfs link\n");
1738 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1739 &device->dev->dev.kobj, "device");
1740 if (result)
1741 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001742}
1743
Aaron Ludce4ec22014-10-28 14:35:59 +08001744static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1745{
1746 struct acpi_video_device *dev;
1747 union acpi_object *levels;
1748
1749 mutex_lock(&video->device_list_lock);
1750 list_for_each_entry(dev, &video->video_device_list, entry) {
1751 if (!acpi_video_device_lcd_query_levels(dev, &levels))
1752 kfree(levels);
1753 }
1754 mutex_unlock(&video->device_list_lock);
1755}
1756
Aaron Lu67b662e2013-10-11 21:27:44 +08001757static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1758{
1759 struct acpi_video_device *dev;
1760
Hans de Goede53a92ba2014-05-21 15:39:55 +02001761 if (video->backlight_registered)
1762 return 0;
1763
Aaron Ludce4ec22014-10-28 14:35:59 +08001764 acpi_video_run_bcl_for_osi(video);
1765
Hans de Goede99678ed2014-05-15 13:22:33 +02001766 if (!acpi_video_verify_backlight_support())
1767 return 0;
1768
Aaron Lu67b662e2013-10-11 21:27:44 +08001769 mutex_lock(&video->device_list_lock);
1770 list_for_each_entry(dev, &video->video_device_list, entry)
1771 acpi_video_dev_register_backlight(dev);
1772 mutex_unlock(&video->device_list_lock);
1773
Hans de Goede99678ed2014-05-15 13:22:33 +02001774 video->backlight_registered = true;
1775
Aaron Lu67b662e2013-10-11 21:27:44 +08001776 video->pm_nb.notifier_call = acpi_video_resume;
1777 video->pm_nb.priority = 0;
1778 return register_pm_notifier(&video->pm_nb);
1779}
1780
1781static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1782{
1783 if (device->backlight) {
1784 backlight_device_unregister(device->backlight);
1785 device->backlight = NULL;
1786 }
1787 if (device->brightness) {
1788 kfree(device->brightness->levels);
1789 kfree(device->brightness);
1790 device->brightness = NULL;
1791 }
1792 if (device->cooling_dev) {
1793 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1794 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1795 thermal_cooling_device_unregister(device->cooling_dev);
1796 device->cooling_dev = NULL;
1797 }
1798}
1799
1800static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1801{
1802 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001803 int error;
1804
1805 if (!video->backlight_registered)
1806 return 0;
1807
1808 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001809
1810 mutex_lock(&video->device_list_lock);
1811 list_for_each_entry(dev, &video->video_device_list, entry)
1812 acpi_video_dev_unregister_backlight(dev);
1813 mutex_unlock(&video->device_list_lock);
1814
Hans de Goede99678ed2014-05-15 13:22:33 +02001815 video->backlight_registered = false;
1816
Aaron Lu67b662e2013-10-11 21:27:44 +08001817 return error;
1818}
1819
1820static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1821{
1822 acpi_status status;
1823 struct acpi_device *adev = device->dev;
1824
1825 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1826 acpi_video_device_notify, device);
1827 if (ACPI_FAILURE(status))
1828 dev_err(&adev->dev, "Error installing notify handler\n");
1829 else
1830 device->flags.notify = 1;
1831}
1832
1833static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1834{
1835 struct input_dev *input;
1836 struct acpi_video_device *dev;
1837 int error;
1838
1839 video->input = input = input_allocate_device();
1840 if (!input) {
1841 error = -ENOMEM;
1842 goto out;
1843 }
1844
1845 error = acpi_video_bus_start_devices(video);
1846 if (error)
1847 goto err_free_input;
1848
1849 snprintf(video->phys, sizeof(video->phys),
1850 "%s/video/input0", acpi_device_hid(video->device));
1851
1852 input->name = acpi_device_name(video->device);
1853 input->phys = video->phys;
1854 input->id.bustype = BUS_HOST;
1855 input->id.product = 0x06;
1856 input->dev.parent = &video->device->dev;
1857 input->evbit[0] = BIT(EV_KEY);
1858 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1859 set_bit(KEY_VIDEO_NEXT, input->keybit);
1860 set_bit(KEY_VIDEO_PREV, input->keybit);
1861 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1862 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1863 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1864 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1865 set_bit(KEY_DISPLAY_OFF, input->keybit);
1866
1867 error = input_register_device(input);
1868 if (error)
1869 goto err_stop_dev;
1870
1871 mutex_lock(&video->device_list_lock);
1872 list_for_each_entry(dev, &video->video_device_list, entry)
1873 acpi_video_dev_add_notify_handler(dev);
1874 mutex_unlock(&video->device_list_lock);
1875
1876 return 0;
1877
1878err_stop_dev:
1879 acpi_video_bus_stop_devices(video);
1880err_free_input:
1881 input_free_device(input);
1882 video->input = NULL;
1883out:
1884 return error;
1885}
1886
1887static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1888{
1889 if (dev->flags.notify) {
1890 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1891 acpi_video_device_notify);
1892 dev->flags.notify = 0;
1893 }
1894}
1895
1896static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1897{
1898 struct acpi_video_device *dev;
1899
1900 mutex_lock(&video->device_list_lock);
1901 list_for_each_entry(dev, &video->video_device_list, entry)
1902 acpi_video_dev_remove_notify_handler(dev);
1903 mutex_unlock(&video->device_list_lock);
1904
1905 acpi_video_bus_stop_devices(video);
1906 input_unregister_device(video->input);
1907 video->input = NULL;
1908}
1909
Hans de Goede53a92ba2014-05-21 15:39:55 +02001910static int acpi_video_backlight_notify(struct notifier_block *nb,
1911 unsigned long val, void *bd)
1912{
1913 struct backlight_device *backlight = bd;
1914 struct acpi_video_bus *video;
1915
1916 /* acpi_video_verify_backlight_support only cares about raw devices */
1917 if (backlight->props.type != BACKLIGHT_RAW)
1918 return NOTIFY_DONE;
1919
1920 video = container_of(nb, struct acpi_video_bus, backlight_nb);
1921
1922 switch (val) {
1923 case BACKLIGHT_REGISTERED:
1924 if (!acpi_video_verify_backlight_support())
1925 acpi_video_bus_unregister_backlight(video);
1926 break;
1927 case BACKLIGHT_UNREGISTERED:
1928 acpi_video_bus_register_backlight(video);
1929 break;
1930 }
1931
1932 return NOTIFY_OK;
1933}
1934
1935static int acpi_video_bus_add_backlight_notify_handler(
1936 struct acpi_video_bus *video)
1937{
1938 int error;
1939
1940 video->backlight_nb.notifier_call = acpi_video_backlight_notify;
1941 video->backlight_nb.priority = 0;
1942 error = backlight_register_notifier(&video->backlight_nb);
1943 if (error == 0)
1944 video->backlight_notifier_registered = true;
1945
1946 return error;
1947}
1948
1949static int acpi_video_bus_remove_backlight_notify_handler(
1950 struct acpi_video_bus *video)
1951{
1952 if (!video->backlight_notifier_registered)
1953 return 0;
1954
1955 video->backlight_notifier_registered = false;
1956
1957 return backlight_unregister_notifier(&video->backlight_nb);
1958}
1959
Aaron Lu67b662e2013-10-11 21:27:44 +08001960static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1961{
1962 struct acpi_video_device *dev, *next;
1963
1964 mutex_lock(&video->device_list_lock);
1965 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1966 list_del(&dev->entry);
1967 kfree(dev);
1968 }
1969 mutex_unlock(&video->device_list_lock);
1970
1971 return 0;
1972}
1973
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001974static int instance;
1975
Len Brown4be44fc2005-08-05 00:44:28 -04001976static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001978 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001979 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001980 acpi_status status;
1981
1982 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1983 device->parent->handle, 1,
1984 acpi_video_bus_match, NULL,
1985 device, NULL);
1986 if (status == AE_ALREADY_EXISTS) {
1987 printk(KERN_WARNING FW_BUG
1988 "Duplicate ACPI video bus devices for the"
1989 " same VGA controller, please try module "
1990 "parameter \"video.allow_duplicates=1\""
1991 "if the current driver doesn't work.\n");
1992 if (!allow_duplicates)
1993 return -ENODEV;
1994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Burman Yan36bcbec2006-12-19 12:56:11 -08001996 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001998 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Zhang Ruie6d9da12007-08-25 02:23:31 -04002000 /* a hack to fix the duplicate name "VID" problem on T61 */
2001 if (!strcmp(device->pnp.bus_id, "VID")) {
2002 if (instance)
2003 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02002004 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04002005 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05002006 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2007 if (!strcmp(device->pnp.bus_id, "VGA")) {
2008 if (instance)
2009 device->pnp.bus_id[3] = '0' + instance;
2010 instance++;
2011 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04002012
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002013 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2015 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002016 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002019 error = acpi_video_bus_check(video);
2020 if (error)
2021 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002023 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 INIT_LIST_HEAD(&video->video_device_list);
2025
Igor Murzovea9f8852012-03-30 21:32:08 +04002026 error = acpi_video_bus_get_devices(video, device);
2027 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00002028 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002031 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2032 video->flags.multihead ? "yes" : "no",
2033 video->flags.rom ? "yes" : "no",
2034 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08002035 mutex_lock(&video_list_lock);
2036 list_add_tail(&video->entry, &video_bus_head);
2037 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Aaron Lu67b662e2013-10-11 21:27:44 +08002039 acpi_video_bus_register_backlight(video);
2040 acpi_video_bus_add_notify_handler(video);
Hans de Goede53a92ba2014-05-21 15:39:55 +02002041 acpi_video_bus_add_backlight_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002042
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002043 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Aaron Lu67b662e2013-10-11 21:27:44 +08002045err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002046 acpi_video_bus_put_devices(video);
2047 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08002048err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002049 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002050 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002051
2052 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002055static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Len Brown4be44fc2005-08-05 00:44:28 -04002057 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
2060 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002061 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002063 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Hans de Goede53a92ba2014-05-21 15:39:55 +02002065 acpi_video_bus_remove_backlight_notify_handler(video);
Aaron Lu67b662e2013-10-11 21:27:44 +08002066 acpi_video_bus_remove_notify_handler(video);
2067 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Aaron Lu67b662e2013-10-11 21:27:44 +08002070 mutex_lock(&video_list_lock);
2071 list_del(&video->entry);
2072 mutex_unlock(&video_list_lock);
2073
Jesper Juhl6044ec82005-11-07 01:01:32 -08002074 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 kfree(video);
2076
Patrick Mocheld550d982006-06-27 00:41:40 -04002077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
Alan Coxc6996bd2012-04-25 14:33:48 +01002080static int __init is_i740(struct pci_dev *dev)
2081{
2082 if (dev->device == 0x00D1)
2083 return 1;
2084 if (dev->device == 0x7000)
2085 return 1;
2086 return 0;
2087}
2088
Matthew Garrett74a365b2009-03-19 21:35:39 +00002089static int __init intel_opregion_present(void)
2090{
Alan Coxc6996bd2012-04-25 14:33:48 +01002091 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002092 struct pci_dev *dev = NULL;
2093 u32 address;
2094
2095 for_each_pci_dev(dev) {
2096 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2097 continue;
2098 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2099 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002100 /* We don't want to poke around undefined i740 registers */
2101 if (is_i740(dev))
2102 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002103 pci_read_config_dword(dev, 0xfc, &address);
2104 if (!address)
2105 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002106 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002107 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002108 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002109}
2110
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002111int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
Chris Wilson28d63402015-03-01 10:41:38 +00002113 int ret;
2114
Zhao Yakui86e437f2009-06-16 11:23:13 +08002115 if (register_count) {
2116 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002117 * if the function of acpi_video_register is already called,
2118 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002119 */
2120 return 0;
2121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Aaron Lu67b662e2013-10-11 21:27:44 +08002123 mutex_init(&video_list_lock);
2124 INIT_LIST_HEAD(&video_bus_head);
2125
Chris Wilson28d63402015-03-01 10:41:38 +00002126 ret = acpi_bus_register_driver(&acpi_video_bus);
2127 if (ret)
2128 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Zhao Yakui86e437f2009-06-16 11:23:13 +08002130 /*
2131 * When the acpi_video_bus is loaded successfully, increase
2132 * the counter reference.
2133 */
2134 register_count = 1;
2135
Patrick Mocheld550d982006-06-27 00:41:40 -04002136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002138EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002139
Zhao Yakui86e437f2009-06-16 11:23:13 +08002140void acpi_video_unregister(void)
2141{
2142 if (!register_count) {
2143 /*
2144 * If the acpi video bus is already unloaded, don't
2145 * unload it again and return directly.
2146 */
2147 return;
2148 }
2149 acpi_bus_unregister_driver(&acpi_video_bus);
2150
Zhao Yakui86e437f2009-06-16 11:23:13 +08002151 register_count = 0;
2152
2153 return;
2154}
2155EXPORT_SYMBOL(acpi_video_unregister);
2156
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002157void acpi_video_unregister_backlight(void)
2158{
2159 struct acpi_video_bus *video;
2160
2161 if (!register_count)
2162 return;
2163
2164 mutex_lock(&video_list_lock);
2165 list_for_each_entry(video, &video_bus_head, entry)
2166 acpi_video_bus_unregister_backlight(video);
2167 mutex_unlock(&video_list_lock);
2168}
2169EXPORT_SYMBOL(acpi_video_unregister_backlight);
2170
Matthew Garrett74a365b2009-03-19 21:35:39 +00002171/*
2172 * This is kind of nasty. Hardware using Intel chipsets may require
2173 * the video opregion code to be run first in order to initialise
2174 * state before any ACPI video calls are made. To handle this we defer
2175 * registration of the video class until the opregion code has run.
2176 */
2177
2178static int __init acpi_video_init(void)
2179{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002180 /*
2181 * Let the module load even if ACPI is disabled (e.g. due to
2182 * a broken BIOS) so that i915.ko can still be loaded on such
2183 * old systems without an AcpiOpRegion.
2184 *
2185 * acpi_video_register() will report -ENODEV later as well due
2186 * to acpi_disabled when i915.ko tries to register itself afterwards.
2187 */
2188 if (acpi_disabled)
2189 return 0;
2190
Zhang Rui45cb50e2009-04-24 12:13:18 -04002191 dmi_check_system(video_dmi_table);
2192
Matthew Garrett74a365b2009-03-19 21:35:39 +00002193 if (intel_opregion_present())
2194 return 0;
2195
2196 return acpi_video_register();
2197}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Zhao Yakui86e437f2009-06-16 11:23:13 +08002199static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200{
Zhao Yakui86e437f2009-06-16 11:23:13 +08002201 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Patrick Mocheld550d982006-06-27 00:41:40 -04002203 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206module_init(acpi_video_init);
2207module_exit(acpi_video_exit);