blob: 8c2fe2f2f9fdcae010f7df99e172ade584885847 [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
Hans de Goede14ca7a472015-06-16 16:27:47 +020046#define PREFIX "ACPI: "
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020047
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
Hans de Goede654a1822015-06-09 10:32:25 +020081static int disable_backlight_sysfs_if = -1;
82module_param(disable_backlight_sysfs_if, int, 0444);
83
Felipe Contreras915ea7e2013-08-03 22:12:50 +020084static int register_count;
Hans de Goede2a8b18e2015-06-16 16:27:54 +020085static DEFINE_MUTEX(register_count_mutex);
Aaron Lu67b662e2013-10-11 21:27:44 +080086static struct mutex video_list_lock;
87static struct list_head video_bus_head;
Len Brown4be44fc2005-08-05 00:44:28 -040088static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010089static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000090static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Hans de Goede93a291d2015-06-16 16:27:52 +020091void acpi_video_detect_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Thomas Renninger1ba90e32007-07-23 14:44:41 +020093static const struct acpi_device_id video_device_ids[] = {
94 {ACPI_VIDEO_HID, 0},
95 {"", 0},
96};
97MODULE_DEVICE_TABLE(acpi, video_device_ids);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500100 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200102 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .ops = {
104 .add = acpi_video_bus_add,
105 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000106 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400107 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400111 u8 multihead:1; /* can switch video heads */
112 u8 rom:1; /* can retrieve a video rom */
113 u8 post:1; /* can configure the head to */
114 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500118 u8 _DOS:1; /* Enable/Disable output switching */
119 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
120 u8 _ROM:1; /* Get ROM Data */
121 u8 _GPD:1; /* Get POST Device */
122 u8 _SPD:1; /* Set POST Device */
123 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400124 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
Len Brown4be44fc2005-08-05 00:44:28 -0400127struct acpi_video_device_attrib {
128 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500129 u32 display_port_attachment:4; /* This field differentiates the display type */
130 u32 display_type:4; /* Describe the specific type in use */
131 u32 vendor_specific:4; /* Chipset Vendor Specific */
132 u32 bios_can_detect:1; /* BIOS can detect the device */
133 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400134 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500135 u32 pipe_id:3; /* For VGA multiple-head devices. */
136 u32 reserved:10; /* Must be 0 */
137 u32 device_id_scheme:1; /* Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139
140struct acpi_video_enumerated_device {
141 union {
142 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400143 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 } value;
145 struct acpi_video_device *bind_info;
146};
147
148struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400149 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200150 bool backlight_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400151 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800154 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400157 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500158 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800159 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800160 struct input_dev *input;
161 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200162 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400166 u8 crt:1;
167 u8 lcd:1;
168 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500169 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400170 u8 bios:1;
171 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000172 u8 notify:1;
173 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
176struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500177 u8 _ADR:1; /* Return the unique ID */
178 u8 _BCL:1; /* Query list of brightness control levels supported */
179 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800180 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800181 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500182 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
Zhang Ruid32f6942009-03-18 16:27:12 +0800185struct acpi_video_brightness_flags {
186 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500187 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */
Zhang Rui1a7c6182009-03-18 16:27:16 +0800188 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800189};
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400192 int curr;
193 int count;
194 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800195 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
198struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400199 unsigned long device_id;
200 struct acpi_video_device_flags flags;
201 struct acpi_video_device_cap cap;
202 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200203 struct delayed_work switch_brightness_work;
204 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400205 struct acpi_video_bus *video;
206 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800208 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400209 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
211
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100212static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 "motherboard VGA device",
214 "PCI VGA device",
215 "AGP VGA device",
216 "UNKNOWN",
217};
218
Len Brown4be44fc2005-08-05 00:44:28 -0400219static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
220static void acpi_video_device_rebind(struct acpi_video_bus *video);
221static void acpi_video_device_bind(struct acpi_video_bus *video,
222 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800224static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
225 int level);
226static int acpi_video_device_lcd_get_level_current(
227 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000228 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400229static int acpi_video_get_next_level(struct acpi_video_device *device,
230 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200231static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Felipe Contreras21fcb342013-08-01 18:43:59 -0500233/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800234static int acpi_video_get_brightness(struct backlight_device *bd)
235{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400236 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000237 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200238 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800239
Danny Baumanna89803d2013-03-19 16:22:50 +0000240 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800241 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000242 for (i = 2; i < vd->brightness->count; i++) {
243 if (vd->brightness->levels[i] == cur_level)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500244 /*
245 * The first two entries are special - see page 575
246 * of the ACPI spec 3.0
247 */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200248 return i - 2;
Matthew Garrett38531e62007-12-26 02:03:26 +0000249 }
250 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800251}
252
253static int acpi_video_set_brightness(struct backlight_device *bd)
254{
Zhang Rui24450c72009-03-18 16:27:10 +0800255 int request_level = bd->props.brightness + 2;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200256 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800257
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200258 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800259 return acpi_video_device_lcd_set_level(vd,
260 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800261}
262
Lionel Debrouxacc24722010-11-16 14:14:02 +0100263static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000264 .get_brightness = acpi_video_get_brightness,
265 .update_status = acpi_video_set_brightness,
266};
267
Zhang Rui702ed512008-01-17 15:51:22 +0800268/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400269static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000270 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800271{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400272 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800273 struct acpi_video_device *video = acpi_driver_data(device);
274
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000275 *state = video->brightness->count - 3;
276 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800277}
278
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400279static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000280 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800281{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400282 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800283 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400284 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000285 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800286
Danny Baumanna89803d2013-03-19 16:22:50 +0000287 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800288 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000289 for (offset = 2; offset < video->brightness->count; offset++)
290 if (level == video->brightness->levels[offset]) {
291 *state = video->brightness->count - offset - 1;
292 return 0;
293 }
Zhang Rui702ed512008-01-17 15:51:22 +0800294
295 return -EINVAL;
296}
297
298static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400299video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800300{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400301 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800302 struct acpi_video_device *video = acpi_driver_data(device);
303 int level;
304
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200305 if (state >= video->brightness->count - 2)
Zhang Rui702ed512008-01-17 15:51:22 +0800306 return -EINVAL;
307
308 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200309 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800310 return acpi_video_device_lcd_set_level(video, level);
311}
312
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400313static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800314 .get_max_state = video_get_max_state,
315 .get_cur_state = video_get_cur_state,
316 .set_cur_state = video_set_cur_state,
317};
318
Felipe Contreras21fcb342013-08-01 18:43:59 -0500319/*
320 * --------------------------------------------------------------------------
321 * Video Management
322 * --------------------------------------------------------------------------
323 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static int
Len Brown4be44fc2005-08-05 00:44:28 -0400326acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
327 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Len Brown4be44fc2005-08-05 00:44:28 -0400329 int status;
330 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
331 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 *levels = NULL;
335
Patrick Mochel90130262006-05-19 16:54:48 -0400336 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400338 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400339 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500340 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400341 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 status = -EFAULT;
343 goto err;
344 }
345
346 *levels = obj;
347
Patrick Mocheld550d982006-06-27 00:41:40 -0400348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200350err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800351 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Patrick Mocheld550d982006-06-27 00:41:40 -0400353 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
356static int
Len Brown4be44fc2005-08-05 00:44:28 -0400357acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
Zhang Rui24450c72009-03-18 16:27:10 +0800359 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800360 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Jiang Liu0db98202013-06-29 00:24:39 +0800362 status = acpi_execute_simple_method(device->dev->handle,
363 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800364 if (ACPI_FAILURE(status)) {
365 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
366 return -EIO;
367 }
368
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400369 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800370 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800371 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800372 if (device->backlight)
373 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800374 return 0;
375 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800376
Zhang Rui24450c72009-03-18 16:27:10 +0800377 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
378 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Zhang Rui45cb50e2009-04-24 12:13:18 -0400381/*
382 * For some buggy _BQC methods, we need to add a constant value to
383 * the _BQC return value to get the actual current brightness level
384 */
385
386static int bqc_offset_aml_bug_workaround;
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200387static int video_set_bqc_offset(const struct dmi_system_id *d)
Zhang Rui45cb50e2009-04-24 12:13:18 -0400388{
389 bqc_offset_aml_bug_workaround = 9;
390 return 0;
391}
392
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200393static int video_disable_backlight_sysfs_if(
Hans de Goede654a1822015-06-09 10:32:25 +0200394 const struct dmi_system_id *d)
395{
396 if (disable_backlight_sysfs_if == -1)
397 disable_backlight_sysfs_if = 1;
398 return 0;
399}
400
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200401static struct dmi_system_id video_dmi_table[] = {
Zhang Rui45cb50e2009-04-24 12:13:18 -0400402 /*
403 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
404 */
405 {
406 .callback = video_set_bqc_offset,
407 .ident = "Acer Aspire 5720",
408 .matches = {
409 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
410 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
411 },
412 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400413 {
414 .callback = video_set_bqc_offset,
415 .ident = "Acer Aspire 5710Z",
416 .matches = {
417 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
418 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
419 },
420 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400421 {
422 .callback = video_set_bqc_offset,
423 .ident = "eMachines E510",
424 .matches = {
425 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
426 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
427 },
428 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400429 {
430 .callback = video_set_bqc_offset,
431 .ident = "Acer Aspire 5315",
432 .matches = {
433 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
434 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
435 },
436 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800437 {
438 .callback = video_set_bqc_offset,
439 .ident = "Acer Aspire 7720",
440 .matches = {
441 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
442 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
443 },
444 },
Hans de Goede5f240792014-08-28 10:20:46 +0200445
446 /*
Hans de Goede654a1822015-06-09 10:32:25 +0200447 * Some machines have a broken acpi-video interface for brightness
448 * control, but still need an acpi_video_device_lcd_set_level() call
449 * on resume to turn the backlight power on. We Enable backlight
450 * control on these systems, but do not register a backlight sysfs
451 * as brightness control does not work.
452 */
453 {
454 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
455 .callback = video_disable_backlight_sysfs_if,
456 .ident = "Toshiba Portege R830",
457 .matches = {
458 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
459 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
460 },
461 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400462 {}
463};
464
Danny Baumann994fa632013-03-19 16:22:52 +0000465static unsigned long long
466acpi_video_bqc_value_to_level(struct acpi_video_device *device,
467 unsigned long long bqc_value)
468{
469 unsigned long long level;
470
471 if (device->brightness->flags._BQC_use_index) {
472 /*
473 * _BQC returns an index that doesn't account for
474 * the first 2 items with special meaning, so we need
475 * to compensate for that by offsetting ourselves
476 */
477 if (device->brightness->flags._BCL_reversed)
478 bqc_value = device->brightness->count - 3 - bqc_value;
479
480 level = device->brightness->levels[bqc_value + 2];
481 } else {
482 level = bqc_value;
483 }
484
485 level += bqc_offset_aml_bug_workaround;
486
487 return level;
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static int
Len Brown4be44fc2005-08-05 00:44:28 -0400491acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000492 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Zhang Ruic8890f92009-03-18 16:27:08 +0800494 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800495 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800496
Zhang Ruic60d6382009-03-18 16:27:18 +0800497 if (device->cap._BQC || device->cap._BCQ) {
498 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
499
500 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800501 NULL, level);
502 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000503 if (raw) {
504 /*
505 * Caller has indicated he wants the raw
506 * value returned by _BQC, so don't furtherly
507 * mess with the value.
508 */
509 return 0;
510 }
511
Danny Baumann994fa632013-03-19 16:22:52 +0000512 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800513
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800514 for (i = 2; i < device->brightness->count; i++)
515 if (device->brightness->levels[i] == *level) {
516 device->brightness->curr = *level;
517 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200518 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000519 /*
520 * BQC returned an invalid level.
521 * Stop using it.
522 */
523 ACPI_WARNING((AE_INFO,
524 "%s returned an invalid level",
525 buf));
526 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800527 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500528 /*
529 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800530 * should we return an error or ignore this failure?
531 * dev->brightness->curr is a cached value which stores
532 * the correct current backlight level in most cases.
533 * ACPI video backlight still works w/ buggy _BQC.
534 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
535 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800536 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
537 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800538 }
539 }
540
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400541 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545static int
Len Brown4be44fc2005-08-05 00:44:28 -0400546acpi_video_device_EDID(struct acpi_video_device *device,
547 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Len Brown4be44fc2005-08-05 00:44:28 -0400549 int status;
550 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
551 union acpi_object *obj;
552 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
553 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 *edid = NULL;
557
558 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400559 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (length == 128)
561 arg0.integer.value = 1;
562 else if (length == 256)
563 arg0.integer.value = 2;
564 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400565 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Patrick Mochel90130262006-05-19 16:54:48 -0400567 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400569 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200571 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 if (obj && obj->type == ACPI_TYPE_BUFFER)
574 *edid = obj;
575 else {
Len Brown64684632006-06-26 23:41:38 -0400576 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 status = -EFAULT;
578 kfree(obj);
579 }
580
Patrick Mocheld550d982006-06-27 00:41:40 -0400581 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/* bus */
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/*
587 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500588 * video : video bus device pointer
589 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * 0. The system BIOS should NOT automatically switch(toggle)
591 * the active display output.
592 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100593 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * 2. The _DGS value should be locked.
595 * 3. The system BIOS should not automatically switch (toggle) the
596 * active display output, but instead generate the display switch
597 * event notify code.
598 * lcd_flag :
599 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100600 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500601 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100602 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500603 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400604 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
606
607static int
Len Brown4be44fc2005-08-05 00:44:28 -0400608acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Igor Murzovea9f8852012-03-30 21:32:08 +0400610 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Zhang Ruib0373842012-06-20 09:48:43 +0800612 if (!video->cap._DOS)
613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Igor Murzovea9f8852012-03-30 21:32:08 +0400615 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
616 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800617 video->dos_setting = (lcd_flag << 2) | bios_flag;
618 status = acpi_execute_simple_method(video->device->handle, "_DOS",
619 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400620 if (ACPI_FAILURE(status))
621 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Igor Murzovea9f8852012-03-30 21:32:08 +0400623 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500627 * Simple comparison function used to sort backlight levels.
628 */
629
630static int
631acpi_video_cmp_level(const void *a, const void *b)
632{
633 return *(int *)a - *(int *)b;
634}
635
636/*
Aaron Lua50188d2013-04-22 14:08:32 +0200637 * Decides if _BQC/_BCQ for this system is usable
638 *
639 * We do this by changing the level first and then read out the current
640 * brightness level, if the value does not match, find out if it is using
641 * index. If not, clear the _BQC/_BCQ capability.
642 */
643static int acpi_video_bqc_quirk(struct acpi_video_device *device,
644 int max_level, int current_level)
645{
646 struct acpi_video_device_brightness *br = device->brightness;
647 int result;
648 unsigned long long level;
649 int test_level;
650
651 /* don't mess with existing known broken systems */
652 if (bqc_offset_aml_bug_workaround)
653 return 0;
654
655 /*
656 * Some systems always report current brightness level as maximum
657 * through _BQC, we need to test another value for them.
658 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200659 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200660
661 result = acpi_video_device_lcd_set_level(device, test_level);
662 if (result)
663 return result;
664
665 result = acpi_video_device_lcd_get_level_current(device, &level, true);
666 if (result)
667 return result;
668
669 if (level != test_level) {
670 /* buggy _BQC found, need to find out if it uses index */
671 if (level < br->count) {
672 if (br->flags._BCL_reversed)
673 level = br->count - 3 - level;
674 if (br->levels[level + 2] == test_level)
675 br->flags._BQC_use_index = 1;
676 }
677
678 if (!br->flags._BQC_use_index)
679 device->cap._BQC = device->cap._BCQ = 0;
680 }
681
682 return 0;
683}
684
685
686/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500687 * Arg:
688 * device : video output device (LCD, CRT, ..)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
690 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100691 * Maximum brightness level
692 *
693 * Allocate and initialize device->brightness.
694 */
695
696static int
697acpi_video_init_brightness(struct acpi_video_device *device)
698{
699 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800700 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800701 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100702 union acpi_object *o;
703 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800704 int result = -EINVAL;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100705 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100706
707 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
708 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
709 "LCD brightness level\n"));
710 goto out;
711 }
712
713 if (obj->package.count < 2)
714 goto out;
715
716 br = kzalloc(sizeof(*br), GFP_KERNEL);
717 if (!br) {
718 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800719 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100720 goto out;
721 }
722
Zhang Ruid32f6942009-03-18 16:27:12 +0800723 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100724 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800725 if (!br->levels) {
726 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100727 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800728 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100729
730 for (i = 0; i < obj->package.count; i++) {
731 o = (union acpi_object *)&obj->package.elements[i];
732 if (o->type != ACPI_TYPE_INTEGER) {
733 printk(KERN_ERR PREFIX "Invalid data\n");
734 continue;
735 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100736 value = (u32) o->integer.value;
737 /* Skip duplicate entries */
738 if (count > 2 && br->levels[count - 1] == value)
739 continue;
740
741 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100742
743 if (br->levels[count] > max_level)
744 max_level = br->levels[count];
745 count++;
746 }
747
Zhang Ruid32f6942009-03-18 16:27:12 +0800748 /*
749 * some buggy BIOS don't export the levels
750 * when machine is on AC/Battery in _BCL package.
751 * In this case, the first two elements in _BCL packages
752 * are also supported brightness levels that OS should take care of.
753 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800754 for (i = 2; i < count; i++) {
755 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800756 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800757 if (br->levels[i] == br->levels[1])
758 level_ac_battery++;
759 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500760
Zhang Ruid32f6942009-03-18 16:27:12 +0800761 if (level_ac_battery < 2) {
762 level_ac_battery = 2 - level_ac_battery;
763 br->flags._BCL_no_ac_battery_levels = 1;
764 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
765 br->levels[i] = br->levels[i - level_ac_battery];
766 count += level_ac_battery;
767 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000768 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800769
Zhang Ruid80fb992009-03-18 16:27:14 +0800770 /* Check if the _BCL package is in a reversed order */
771 if (max_level == br->levels[2]) {
772 br->flags._BCL_reversed = 1;
773 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
774 acpi_video_cmp_level, NULL);
775 } else if (max_level != br->levels[count - 1])
776 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000777 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100778
779 br->count = count;
780 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800781
Zhang Rui1a7c6182009-03-18 16:27:16 +0800782 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400783 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800784
785 if (!device->cap._BQC)
786 goto set_level;
787
Danny Baumanna89803d2013-03-19 16:22:50 +0000788 result = acpi_video_device_lcd_get_level_current(device,
789 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800790 if (result)
791 goto out_free_levels;
792
Aaron Lua50188d2013-04-22 14:08:32 +0200793 result = acpi_video_bqc_quirk(device, max_level, level_old);
794 if (result)
795 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800796 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200797 * cap._BQC may get cleared due to _BQC is found to be broken
798 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800799 */
Aaron Lua50188d2013-04-22 14:08:32 +0200800 if (!device->cap._BQC)
801 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800802
Aaron Lu545ef362013-11-15 14:39:12 +0800803 level = acpi_video_bqc_value_to_level(device, level_old);
804 /*
805 * On some buggy laptops, _BQC returns an uninitialized
806 * value when invoked for the first time, i.e.
807 * level_old is invalid (no matter whether it's a level
808 * or an index). Set the backlight to max_level in this case.
809 */
810 for (i = 2; i < br->count; i++)
811 if (level == br->levels[i])
812 break;
813 if (i == br->count || !level)
814 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800815
Zhang Ruie047cca2009-04-09 14:24:35 +0800816set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400817 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800818 if (result)
819 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800820
Zhang Ruid32f6942009-03-18 16:27:12 +0800821 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
822 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100823 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800824 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100825
826out_free_levels:
827 kfree(br->levels);
828out_free:
829 kfree(br);
830out:
831 device->brightness = NULL;
832 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800833 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100834}
835
836/*
837 * Arg:
838 * device : video output device (LCD, CRT, ..)
839 *
840 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500841 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100843 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * device.
845 */
846
Len Brown4be44fc2005-08-05 00:44:28 -0400847static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Jiang Liu952c63e2013-06-29 00:24:38 +0800849 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800851 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400852 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800853 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400854 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800855 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800856 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800857 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800858 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
859 device->cap._BCQ = 1;
860 }
861
Jiang Liu952c63e2013-06-29 00:24:38 +0800862 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400863 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
866/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500867 * Arg:
868 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 *
870 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500871 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100873 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
875
Len Brown4be44fc2005-08-05 00:44:28 -0400876static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Jiang Liu952c63e2013-06-29 00:24:38 +0800878 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800880 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800882 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800884 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800886 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800888 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892/*
893 * Check whether the video bus device has required AML method to
894 * support the desired features
895 */
896
Len Brown4be44fc2005-08-05 00:44:28 -0400897static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Len Brown4be44fc2005-08-05 00:44:28 -0400899 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000900 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -0400903 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000905 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +0200906 if (!dev)
907 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +0000908 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +0200909
Felipe Contreras21fcb342013-08-01 18:43:59 -0500910 /*
911 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 * to check well known required nodes.
913 */
914
Julius Volz98fb8fe2007-02-20 16:38:40 +0100915 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +0200916 if (video->cap._DOS || video->cap._DOD) {
917 if (!video->cap._DOS) {
918 printk(KERN_WARNING FW_BUG
919 "ACPI(%s) defines _DOD but not _DOS\n",
920 acpi_device_bid(video->device));
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 video->flags.multihead = 1;
923 status = 0;
924 }
925
Julius Volz98fb8fe2007-02-20 16:38:40 +0100926 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -0400927 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 video->flags.rom = 1;
929 status = 0;
930 }
931
Julius Volz98fb8fe2007-02-20 16:38:40 +0100932 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -0400933 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 video->flags.post = 1;
935 status = 0;
936 }
937
Patrick Mocheld550d982006-06-27 00:41:40 -0400938 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
940
Felipe Contreras21fcb342013-08-01 18:43:59 -0500941/*
942 * --------------------------------------------------------------------------
943 * Driver Interface
944 * --------------------------------------------------------------------------
945 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200948static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -0500949acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
950{
Dmitry Torokhov78eed022007-11-05 11:43:33 -0500951 struct acpi_video_enumerated_device *ids;
952 int i;
Rui Zhang82cae992007-01-03 23:40:53 -0500953
Dmitry Torokhov78eed022007-11-05 11:43:33 -0500954 for (i = 0; i < video->attached_count; i++) {
955 ids = &video->attached_array[i];
956 if ((ids->value.int_val & 0xffff) == device_id)
957 return &ids->value.attrib;
958 }
959
Rui Zhang82cae992007-01-03 23:40:53 -0500960 return NULL;
961}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963static int
Matthew Garrette92a7162010-01-12 14:17:03 -0500964acpi_video_get_device_type(struct acpi_video_bus *video,
965 unsigned long device_id)
966{
967 struct acpi_video_enumerated_device *ids;
968 int i;
969
970 for (i = 0; i < video->attached_count; i++) {
971 ids = &video->attached_array[i];
972 if ((ids->value.int_val & 0xffff) == device_id)
973 return ids->value.int_val;
974 }
975
976 return 0;
977}
978
979static int
Len Brown4be44fc2005-08-05 00:44:28 -0400980acpi_video_bus_get_one_device(struct acpi_device *device,
981 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400983 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -0500984 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -0400985 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200986 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Len Brown4be44fc2005-08-05 00:44:28 -0400988 status =
989 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +0000990 /* Some device omits _ADR, we skip them instead of fail */
991 if (ACPI_FAILURE(status))
992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Aaron Lu91e13aa2013-04-25 02:47:49 +0000994 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
995 if (!data)
996 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Aaron Lu91e13aa2013-04-25 02:47:49 +0000998 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
999 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1000 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Aaron Lu91e13aa2013-04-25 02:47:49 +00001002 data->device_id = device_id;
1003 data->video = video;
1004 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001005 INIT_DELAYED_WORK(&data->switch_brightness_work,
1006 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Aaron Lu91e13aa2013-04-25 02:47:49 +00001008 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001009
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001010 if (attribute && attribute->device_id_scheme) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001011 switch (attribute->display_type) {
1012 case ACPI_VIDEO_DISPLAY_CRT:
1013 data->flags.crt = 1;
1014 break;
1015 case ACPI_VIDEO_DISPLAY_TV:
1016 data->flags.tvout = 1;
1017 break;
1018 case ACPI_VIDEO_DISPLAY_DVI:
1019 data->flags.dvi = 1;
1020 break;
1021 case ACPI_VIDEO_DISPLAY_LCD:
1022 data->flags.lcd = 1;
1023 break;
1024 default:
1025 data->flags.unknown = 1;
1026 break;
1027 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001028 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001029 data->flags.bios = 1;
1030 } else {
1031 /* Check for legacy IDs */
1032 device_type = acpi_video_get_device_type(video, device_id);
1033 /* Ignore bits 16 and 18-20 */
1034 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001035 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1036 data->flags.crt = 1;
1037 break;
1038 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1039 data->flags.lcd = 1;
1040 break;
1041 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1042 data->flags.tvout = 1;
1043 break;
1044 default:
1045 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048
Aaron Lu91e13aa2013-04-25 02:47:49 +00001049 acpi_video_device_bind(video, data);
1050 acpi_video_device_find_cap(data);
1051
Aaron Lu91e13aa2013-04-25 02:47:49 +00001052 mutex_lock(&video->device_list_lock);
1053 list_add_tail(&data->entry, &video->video_device_list);
1054 mutex_unlock(&video->device_list_lock);
1055
1056 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
1059/*
1060 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001061 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 *
1063 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001064 * none
1065 *
1066 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 * bind the ids with the corresponding video devices
1068 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001069 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Len Brown4be44fc2005-08-05 00:44:28 -04001071static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001073 struct acpi_video_device *dev;
1074
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001075 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001076
1077 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001078 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001079
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001080 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083/*
1084 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001085 * video : video bus device
1086 * device : video output device under the video
1087 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 *
1089 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001090 * none
1091 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 * Bind the ids with the corresponding video devices
1093 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001094 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096static void
Len Brown4be44fc2005-08-05 00:44:28 -04001097acpi_video_device_bind(struct acpi_video_bus *video,
1098 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001100 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001101 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001103 for (i = 0; i < video->attached_count; i++) {
1104 ids = &video->attached_array[i];
1105 if (device->device_id == (ids->value.int_val & 0xffff)) {
1106 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1108 }
1109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Aaron Lu0b8db272014-09-30 14:10:17 +08001112static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1113{
1114 struct acpi_video_bus *video = device->video;
1115 int i;
1116
Aaron Lub4df4632014-12-15 16:01:29 +08001117 /*
1118 * If we have a broken _DOD or we have more than 8 output devices
1119 * under the graphics controller node that we can't proper deal with
1120 * in the operation region code currently, no need to test.
1121 */
1122 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001123 return true;
1124
1125 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001126 if ((video->attached_array[i].value.int_val & 0xfff) ==
1127 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001128 return true;
1129 }
1130
1131 return false;
1132}
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134/*
1135 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001136 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 *
1138 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001139 * < 0 : error
1140 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 * Call _DOD to enumerate all devices attached to display adapter
1142 *
Len Brown4be44fc2005-08-05 00:44:28 -04001143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1146{
Len Brown4be44fc2005-08-05 00:44:28 -04001147 int status;
1148 int count;
1149 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001150 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001151 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1152 union acpi_object *dod = NULL;
1153 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Patrick Mochel90130262006-05-19 16:54:48 -04001155 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001157 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001158 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001161 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001163 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 status = -EFAULT;
1165 goto out;
1166 }
1167
1168 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001169 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001171 active_list = kcalloc(1 + dod->package.count,
1172 sizeof(struct acpi_video_enumerated_device),
1173 GFP_KERNEL);
1174 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 status = -ENOMEM;
1176 goto out;
1177 }
1178
1179 count = 0;
1180 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001181 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001184 printk(KERN_ERR PREFIX
1185 "Invalid _DOD data in element %d\n", i);
1186 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001188
1189 active_list[count].value.int_val = obj->integer.value;
1190 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001191 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1192 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 count++;
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Jesper Juhl6044ec82005-11-07 01:01:32 -08001196 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001197
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001198 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001200
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001201out:
Len Brown02438d82006-06-30 03:19:10 -04001202 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001203 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Len Brown4be44fc2005-08-05 00:44:28 -04001206static int
1207acpi_video_get_next_level(struct acpi_video_device *device,
1208 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001210 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001211 max = max_below = 0;
1212 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001213 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001214 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001215 l = device->brightness->levels[i];
1216 if (abs(l - level_current) < abs(delta)) {
1217 delta = l - level_current;
1218 if (!delta)
1219 break;
1220 }
1221 }
1222 /* Ajust level_current to closest available level */
1223 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001224 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001225 l = device->brightness->levels[i];
1226 if (l < min)
1227 min = l;
1228 if (l > max)
1229 max = l;
1230 if (l < min_above && l > level_current)
1231 min_above = l;
1232 if (l > max_below && l < level_current)
1233 max_below = l;
1234 }
1235
1236 switch (event) {
1237 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1238 return (level_current < max) ? min_above : min;
1239 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1240 return (level_current < max) ? min_above : max;
1241 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1242 return (level_current > min) ? max_below : min;
1243 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1244 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1245 return 0;
1246 default:
1247 return level_current;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001251static void
1252acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001254 struct acpi_video_device *device = container_of(to_delayed_work(work),
1255 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001256 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001257 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001258 int result = -EINVAL;
1259
Aaron Lufbc9fe12013-10-11 21:27:45 +08001260 /* no warning message if acpi_backlight=vendor or a quirk is used */
Hans de Goede654a1822015-06-09 10:32:25 +02001261 if (!device->backlight)
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001262 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001263
Julia Jomantaite469778c2008-06-23 22:50:42 +01001264 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001265 goto out;
1266
1267 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001268 &level_current,
1269 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001270 if (result)
1271 goto out;
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001274
Zhang Rui24450c72009-03-18 16:27:10 +08001275 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001276
Matthew Garrett36342742009-07-14 17:06:03 +01001277 if (!result)
1278 backlight_force_update(device->backlight,
1279 BACKLIGHT_UPDATE_HOTKEY);
1280
Zhang Ruic8890f92009-03-18 16:27:08 +08001281out:
1282 if (result)
1283 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Matthew Garrette92a7162010-01-12 14:17:03 -05001286int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1287 void **edid)
1288{
1289 struct acpi_video_bus *video;
1290 struct acpi_video_device *video_device;
1291 union acpi_object *buffer = NULL;
1292 acpi_status status;
1293 int i, length;
1294
1295 if (!device || !acpi_driver_data(device))
1296 return -EINVAL;
1297
1298 video = acpi_driver_data(device);
1299
1300 for (i = 0; i < video->attached_count; i++) {
1301 video_device = video->attached_array[i].bind_info;
1302 length = 256;
1303
1304 if (!video_device)
1305 continue;
1306
Zhang Rui82069552010-12-06 15:04:24 +08001307 if (!video_device->cap._DDC)
1308 continue;
1309
Matthew Garrette92a7162010-01-12 14:17:03 -05001310 if (type) {
1311 switch (type) {
1312 case ACPI_VIDEO_DISPLAY_CRT:
1313 if (!video_device->flags.crt)
1314 continue;
1315 break;
1316 case ACPI_VIDEO_DISPLAY_TV:
1317 if (!video_device->flags.tvout)
1318 continue;
1319 break;
1320 case ACPI_VIDEO_DISPLAY_DVI:
1321 if (!video_device->flags.dvi)
1322 continue;
1323 break;
1324 case ACPI_VIDEO_DISPLAY_LCD:
1325 if (!video_device->flags.lcd)
1326 continue;
1327 break;
1328 }
1329 } else if (video_device->device_id != device_id) {
1330 continue;
1331 }
1332
1333 status = acpi_video_device_EDID(video_device, &buffer, length);
1334
1335 if (ACPI_FAILURE(status) || !buffer ||
1336 buffer->type != ACPI_TYPE_BUFFER) {
1337 length = 128;
1338 status = acpi_video_device_EDID(video_device, &buffer,
1339 length);
1340 if (ACPI_FAILURE(status) || !buffer ||
1341 buffer->type != ACPI_TYPE_BUFFER) {
1342 continue;
1343 }
1344 }
1345
1346 *edid = buffer->buffer.pointer;
1347 return length;
1348 }
1349
1350 return -ENODEV;
1351}
1352EXPORT_SYMBOL(acpi_video_get_edid);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354static int
Len Brown4be44fc2005-08-05 00:44:28 -04001355acpi_video_bus_get_devices(struct acpi_video_bus *video,
1356 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Igor Murzovfba4e082012-10-13 04:41:25 +04001358 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001359 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Igor Murzovfba4e082012-10-13 04:41:25 +04001361 /*
1362 * There are systems where video module known to work fine regardless
1363 * of broken _DOD and ignoring returned value here doesn't cause
1364 * any issues later.
1365 */
1366 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001368 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001371 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001372 dev_err(&dev->dev, "Can't attach device\n");
1373 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
Aaron Lub4df4632014-12-15 16:01:29 +08001375 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001377 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/* acpi_video interface */
1381
Aaron Luefaa14c2013-07-16 13:08:05 +08001382/*
1383 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1384 * preform any automatic brightness change on receiving a notification.
1385 */
Len Brown4be44fc2005-08-05 00:44:28 -04001386static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Aaron Luefaa14c2013-07-16 13:08:05 +08001388 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001389 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Len Brown4be44fc2005-08-05 00:44:28 -04001392static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Aaron Luefaa14c2013-07-16 13:08:05 +08001394 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001395 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396}
1397
Bjorn Helgaas70155582009-04-07 15:37:11 +00001398static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001400 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001401 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001402 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001403
Aaron Lu67b662e2013-10-11 21:27:44 +08001404 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001405 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Luming Yue9dab192007-08-20 18:23:53 +08001407 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001410 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001412 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 break;
1414
Julius Volz98fb8fe2007-02-20 16:38:40 +01001415 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * connector. */
1417 acpi_video_device_enumerate(video);
1418 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001419 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 break;
1421
Len Brown4be44fc2005-08-05 00:44:28 -04001422 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001423 keycode = KEY_SWITCHVIDEOMODE;
1424 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001425 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001426 keycode = KEY_VIDEO_NEXT;
1427 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001428 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001429 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 break;
1431
1432 default:
1433 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001434 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 break;
1436 }
1437
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001438 if (acpi_notifier_call_chain(device, event, 0))
1439 /* Something vetoed the keypress. */
1440 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001441
1442 if (keycode) {
1443 input_report_key(input, keycode, 1);
1444 input_sync(input);
1445 input_report_key(input, keycode, 0);
1446 input_sync(input);
1447 }
Luming Yue9dab192007-08-20 18:23:53 +08001448
Patrick Mocheld550d982006-06-27 00:41:40 -04001449 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001452static void brightness_switch_event(struct acpi_video_device *video_device,
1453 u32 event)
1454{
1455 if (!brightness_switch_enabled)
1456 return;
1457
1458 video_device->switch_brightness_event = event;
1459 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1460}
1461
Len Brown4be44fc2005-08-05 00:44:28 -04001462static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001464 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001465 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001466 struct acpi_video_bus *bus;
1467 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001468 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001471 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001473 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001474 bus = video_device->video;
1475 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001478 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001479 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001480 keycode = KEY_BRIGHTNESS_CYCLE;
1481 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001482 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001483 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001484 keycode = KEY_BRIGHTNESSUP;
1485 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001486 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001487 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001488 keycode = KEY_BRIGHTNESSDOWN;
1489 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001490 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001491 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001492 keycode = KEY_BRIGHTNESS_ZERO;
1493 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001494 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001495 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001496 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 break;
1498 default:
1499 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001500 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 break;
1502 }
Luming Yue9dab192007-08-20 18:23:53 +08001503
Zhang Rui7761f632008-01-25 14:48:12 +08001504 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001505
1506 if (keycode) {
1507 input_report_key(input, keycode, 1);
1508 input_sync(input);
1509 input_report_key(input, keycode, 0);
1510 input_sync(input);
1511 }
Luming Yue9dab192007-08-20 18:23:53 +08001512
Patrick Mocheld550d982006-06-27 00:41:40 -04001513 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001516static int acpi_video_resume(struct notifier_block *nb,
1517 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001518{
1519 struct acpi_video_bus *video;
1520 struct acpi_video_device *video_device;
1521 int i;
1522
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001523 switch (val) {
1524 case PM_HIBERNATION_PREPARE:
1525 case PM_SUSPEND_PREPARE:
1526 case PM_RESTORE_PREPARE:
1527 return NOTIFY_DONE;
1528 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001529
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001530 video = container_of(nb, struct acpi_video_bus, pm_nb);
1531
1532 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001533
1534 for (i = 0; i < video->attached_count; i++) {
1535 video_device = video->attached_array[i].bind_info;
Hans de Goede654a1822015-06-09 10:32:25 +02001536 if (video_device && video_device->brightness)
1537 acpi_video_device_lcd_set_level(video_device,
1538 video_device->brightness->curr);
Matthew Garrett863c1492008-02-04 23:31:24 -08001539 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001540
1541 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001542}
1543
Zhang Ruic504f8c2009-12-30 15:59:23 +08001544static acpi_status
1545acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1546 void **return_value)
1547{
1548 struct acpi_device *device = context;
1549 struct acpi_device *sibling;
1550 int result;
1551
1552 if (handle == device->handle)
1553 return AE_CTRL_TERMINATE;
1554
1555 result = acpi_bus_get_device(handle, &sibling);
1556 if (result)
1557 return AE_OK;
1558
1559 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1560 return AE_ALREADY_EXISTS;
1561
1562 return AE_OK;
1563}
1564
Aaron Lu67b662e2013-10-11 21:27:44 +08001565static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1566{
Hans de Goede99678ed2014-05-15 13:22:33 +02001567 struct backlight_properties props;
1568 struct pci_dev *pdev;
1569 acpi_handle acpi_parent;
1570 struct device *parent = NULL;
1571 int result;
1572 static int count;
1573 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001574
Aaron Lu0b8db272014-09-30 14:10:17 +08001575 /*
1576 * Do not create backlight device for video output
1577 * device that is not in the enumerated list.
1578 */
1579 if (!acpi_video_device_in_dod(device)) {
1580 dev_dbg(&device->dev->dev, "not in _DOD list, ignore\n");
1581 return;
1582 }
1583
Hans de Goede99678ed2014-05-15 13:22:33 +02001584 result = acpi_video_init_brightness(device);
1585 if (result)
1586 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001587
1588 if (disable_backlight_sysfs_if > 0)
1589 return;
1590
Hans de Goede99678ed2014-05-15 13:22:33 +02001591 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1592 if (!name)
1593 return;
1594 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001595
Hans de Goede99678ed2014-05-15 13:22:33 +02001596 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001597
Hans de Goede99678ed2014-05-15 13:22:33 +02001598 pdev = acpi_get_pci_dev(acpi_parent);
1599 if (pdev) {
1600 parent = &pdev->dev;
1601 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001602 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001603
1604 memset(&props, 0, sizeof(struct backlight_properties));
1605 props.type = BACKLIGHT_FIRMWARE;
1606 props.max_brightness = device->brightness->count - 3;
1607 device->backlight = backlight_device_register(name,
1608 parent,
1609 device,
1610 &acpi_backlight_ops,
1611 &props);
1612 kfree(name);
Hans de Goede654a1822015-06-09 10:32:25 +02001613 if (IS_ERR(device->backlight)) {
1614 device->backlight = NULL;
Hans de Goede99678ed2014-05-15 13:22:33 +02001615 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001616 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001617
1618 /*
1619 * Save current brightness level in case we have to restore it
1620 * before acpi_video_device_lcd_set_level() is called next time.
1621 */
1622 device->backlight->props.brightness =
1623 acpi_video_get_brightness(device->backlight);
1624
1625 device->cooling_dev = thermal_cooling_device_register("LCD",
1626 device->dev, &video_cooling_ops);
1627 if (IS_ERR(device->cooling_dev)) {
1628 /*
1629 * Set cooling_dev to NULL so we don't crash trying to free it.
1630 * Also, why the hell we are returning early and not attempt to
1631 * register video output if cooling device registration failed?
1632 * -- dtor
1633 */
1634 device->cooling_dev = NULL;
1635 return;
1636 }
1637
1638 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1639 device->cooling_dev->id);
1640 result = sysfs_create_link(&device->dev->dev.kobj,
1641 &device->cooling_dev->device.kobj,
1642 "thermal_cooling");
1643 if (result)
1644 printk(KERN_ERR PREFIX "Create sysfs link\n");
1645 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1646 &device->dev->dev.kobj, "device");
1647 if (result)
1648 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001649}
1650
Aaron Ludce4ec22014-10-28 14:35:59 +08001651static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1652{
1653 struct acpi_video_device *dev;
1654 union acpi_object *levels;
1655
1656 mutex_lock(&video->device_list_lock);
1657 list_for_each_entry(dev, &video->video_device_list, entry) {
1658 if (!acpi_video_device_lcd_query_levels(dev, &levels))
1659 kfree(levels);
1660 }
1661 mutex_unlock(&video->device_list_lock);
1662}
1663
Aaron Lu67b662e2013-10-11 21:27:44 +08001664static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1665{
1666 struct acpi_video_device *dev;
1667
Hans de Goede53a92ba2014-05-21 15:39:55 +02001668 if (video->backlight_registered)
1669 return 0;
1670
Aaron Ludce4ec22014-10-28 14:35:59 +08001671 acpi_video_run_bcl_for_osi(video);
1672
Hans de Goede3bd6bce2015-06-16 16:27:51 +02001673 if (acpi_video_get_backlight_type() != acpi_backlight_video)
Hans de Goede99678ed2014-05-15 13:22:33 +02001674 return 0;
1675
Aaron Lu67b662e2013-10-11 21:27:44 +08001676 mutex_lock(&video->device_list_lock);
1677 list_for_each_entry(dev, &video->video_device_list, entry)
1678 acpi_video_dev_register_backlight(dev);
1679 mutex_unlock(&video->device_list_lock);
1680
Hans de Goede99678ed2014-05-15 13:22:33 +02001681 video->backlight_registered = true;
1682
Aaron Lu67b662e2013-10-11 21:27:44 +08001683 video->pm_nb.notifier_call = acpi_video_resume;
1684 video->pm_nb.priority = 0;
1685 return register_pm_notifier(&video->pm_nb);
1686}
1687
1688static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1689{
1690 if (device->backlight) {
1691 backlight_device_unregister(device->backlight);
1692 device->backlight = NULL;
1693 }
1694 if (device->brightness) {
1695 kfree(device->brightness->levels);
1696 kfree(device->brightness);
1697 device->brightness = NULL;
1698 }
1699 if (device->cooling_dev) {
1700 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1701 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1702 thermal_cooling_device_unregister(device->cooling_dev);
1703 device->cooling_dev = NULL;
1704 }
1705}
1706
1707static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1708{
1709 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001710 int error;
1711
1712 if (!video->backlight_registered)
1713 return 0;
1714
1715 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001716
1717 mutex_lock(&video->device_list_lock);
1718 list_for_each_entry(dev, &video->video_device_list, entry)
1719 acpi_video_dev_unregister_backlight(dev);
1720 mutex_unlock(&video->device_list_lock);
1721
Hans de Goede99678ed2014-05-15 13:22:33 +02001722 video->backlight_registered = false;
1723
Aaron Lu67b662e2013-10-11 21:27:44 +08001724 return error;
1725}
1726
1727static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1728{
1729 acpi_status status;
1730 struct acpi_device *adev = device->dev;
1731
1732 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1733 acpi_video_device_notify, device);
1734 if (ACPI_FAILURE(status))
1735 dev_err(&adev->dev, "Error installing notify handler\n");
1736 else
1737 device->flags.notify = 1;
1738}
1739
1740static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1741{
1742 struct input_dev *input;
1743 struct acpi_video_device *dev;
1744 int error;
1745
1746 video->input = input = input_allocate_device();
1747 if (!input) {
1748 error = -ENOMEM;
1749 goto out;
1750 }
1751
1752 error = acpi_video_bus_start_devices(video);
1753 if (error)
1754 goto err_free_input;
1755
1756 snprintf(video->phys, sizeof(video->phys),
1757 "%s/video/input0", acpi_device_hid(video->device));
1758
1759 input->name = acpi_device_name(video->device);
1760 input->phys = video->phys;
1761 input->id.bustype = BUS_HOST;
1762 input->id.product = 0x06;
1763 input->dev.parent = &video->device->dev;
1764 input->evbit[0] = BIT(EV_KEY);
1765 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1766 set_bit(KEY_VIDEO_NEXT, input->keybit);
1767 set_bit(KEY_VIDEO_PREV, input->keybit);
1768 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1769 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1770 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1771 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1772 set_bit(KEY_DISPLAY_OFF, input->keybit);
1773
1774 error = input_register_device(input);
1775 if (error)
1776 goto err_stop_dev;
1777
1778 mutex_lock(&video->device_list_lock);
1779 list_for_each_entry(dev, &video->video_device_list, entry)
1780 acpi_video_dev_add_notify_handler(dev);
1781 mutex_unlock(&video->device_list_lock);
1782
1783 return 0;
1784
1785err_stop_dev:
1786 acpi_video_bus_stop_devices(video);
1787err_free_input:
1788 input_free_device(input);
1789 video->input = NULL;
1790out:
1791 return error;
1792}
1793
1794static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1795{
1796 if (dev->flags.notify) {
1797 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1798 acpi_video_device_notify);
1799 dev->flags.notify = 0;
1800 }
1801}
1802
1803static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1804{
1805 struct acpi_video_device *dev;
1806
1807 mutex_lock(&video->device_list_lock);
1808 list_for_each_entry(dev, &video->video_device_list, entry)
1809 acpi_video_dev_remove_notify_handler(dev);
1810 mutex_unlock(&video->device_list_lock);
1811
1812 acpi_video_bus_stop_devices(video);
1813 input_unregister_device(video->input);
1814 video->input = NULL;
1815}
1816
1817static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1818{
1819 struct acpi_video_device *dev, *next;
1820
1821 mutex_lock(&video->device_list_lock);
1822 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1823 list_del(&dev->entry);
1824 kfree(dev);
1825 }
1826 mutex_unlock(&video->device_list_lock);
1827
1828 return 0;
1829}
1830
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001831static int instance;
1832
Len Brown4be44fc2005-08-05 00:44:28 -04001833static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001835 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001836 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001837 acpi_status status;
1838
1839 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1840 device->parent->handle, 1,
1841 acpi_video_bus_match, NULL,
1842 device, NULL);
1843 if (status == AE_ALREADY_EXISTS) {
1844 printk(KERN_WARNING FW_BUG
1845 "Duplicate ACPI video bus devices for the"
1846 " same VGA controller, please try module "
1847 "parameter \"video.allow_duplicates=1\""
1848 "if the current driver doesn't work.\n");
1849 if (!allow_duplicates)
1850 return -ENODEV;
1851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Burman Yan36bcbec2006-12-19 12:56:11 -08001853 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001855 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Zhang Ruie6d9da12007-08-25 02:23:31 -04001857 /* a hack to fix the duplicate name "VID" problem on T61 */
1858 if (!strcmp(device->pnp.bus_id, "VID")) {
1859 if (instance)
1860 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001861 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04001862 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001863 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1864 if (!strcmp(device->pnp.bus_id, "VGA")) {
1865 if (instance)
1866 device->pnp.bus_id[3] = '0' + instance;
1867 instance++;
1868 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001869
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001870 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1872 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001873 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001876 error = acpi_video_bus_check(video);
1877 if (error)
1878 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001880 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 INIT_LIST_HEAD(&video->video_device_list);
1882
Igor Murzovea9f8852012-03-30 21:32:08 +04001883 error = acpi_video_bus_get_devices(video, device);
1884 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001885 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001888 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
1889 video->flags.multihead ? "yes" : "no",
1890 video->flags.rom ? "yes" : "no",
1891 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08001892 mutex_lock(&video_list_lock);
1893 list_add_tail(&video->entry, &video_bus_head);
1894 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Aaron Lu67b662e2013-10-11 21:27:44 +08001896 acpi_video_bus_register_backlight(video);
1897 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001898
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001899 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Aaron Lu67b662e2013-10-11 21:27:44 +08001901err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001902 acpi_video_bus_put_devices(video);
1903 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08001904err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001905 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001906 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001907
1908 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001911static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912{
Len Brown4be44fc2005-08-05 00:44:28 -04001913 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
1916 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001917 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001919 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Aaron Lu67b662e2013-10-11 21:27:44 +08001921 acpi_video_bus_remove_notify_handler(video);
1922 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Aaron Lu67b662e2013-10-11 21:27:44 +08001925 mutex_lock(&video_list_lock);
1926 list_del(&video->entry);
1927 mutex_unlock(&video_list_lock);
1928
Jesper Juhl6044ec82005-11-07 01:01:32 -08001929 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 kfree(video);
1931
Patrick Mocheld550d982006-06-27 00:41:40 -04001932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
Alan Coxc6996bd2012-04-25 14:33:48 +01001935static int __init is_i740(struct pci_dev *dev)
1936{
1937 if (dev->device == 0x00D1)
1938 return 1;
1939 if (dev->device == 0x7000)
1940 return 1;
1941 return 0;
1942}
1943
Matthew Garrett74a365b2009-03-19 21:35:39 +00001944static int __init intel_opregion_present(void)
1945{
Alan Coxc6996bd2012-04-25 14:33:48 +01001946 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001947 struct pci_dev *dev = NULL;
1948 u32 address;
1949
1950 for_each_pci_dev(dev) {
1951 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1952 continue;
1953 if (dev->vendor != PCI_VENDOR_ID_INTEL)
1954 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001955 /* We don't want to poke around undefined i740 registers */
1956 if (is_i740(dev))
1957 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001958 pci_read_config_dword(dev, 0xfc, &address);
1959 if (!address)
1960 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001961 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001962 }
Alan Coxc6996bd2012-04-25 14:33:48 +01001963 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001964}
1965
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001966int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02001968 int ret = 0;
Chris Wilson28d63402015-03-01 10:41:38 +00001969
Hans de Goede2a8b18e2015-06-16 16:27:54 +02001970 mutex_lock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08001971 if (register_count) {
1972 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001973 * if the function of acpi_video_register is already called,
1974 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08001975 */
Hans de Goede2a8b18e2015-06-16 16:27:54 +02001976 goto leave;
Zhao Yakui86e437f2009-06-16 11:23:13 +08001977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Aaron Lu67b662e2013-10-11 21:27:44 +08001979 mutex_init(&video_list_lock);
1980 INIT_LIST_HEAD(&video_bus_head);
1981
Hans de Goede7ee33ba2015-06-16 16:27:53 +02001982 dmi_check_system(video_dmi_table);
1983
Chris Wilson28d63402015-03-01 10:41:38 +00001984 ret = acpi_bus_register_driver(&acpi_video_bus);
1985 if (ret)
Hans de Goede2a8b18e2015-06-16 16:27:54 +02001986 goto leave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Zhao Yakui86e437f2009-06-16 11:23:13 +08001988 /*
1989 * When the acpi_video_bus is loaded successfully, increase
1990 * the counter reference.
1991 */
1992 register_count = 1;
1993
Hans de Goede2a8b18e2015-06-16 16:27:54 +02001994leave:
1995 mutex_unlock(&register_count_mutex);
1996 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001998EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00001999
Zhao Yakui86e437f2009-06-16 11:23:13 +08002000void acpi_video_unregister(void)
2001{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002002 mutex_lock(&register_count_mutex);
2003 if (register_count) {
2004 acpi_bus_unregister_driver(&acpi_video_bus);
2005 register_count = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002006 }
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002007 mutex_unlock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002008}
2009EXPORT_SYMBOL(acpi_video_unregister);
2010
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002011void acpi_video_unregister_backlight(void)
2012{
2013 struct acpi_video_bus *video;
2014
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002015 mutex_lock(&register_count_mutex);
2016 if (register_count) {
2017 mutex_lock(&video_list_lock);
2018 list_for_each_entry(video, &video_bus_head, entry)
2019 acpi_video_bus_unregister_backlight(video);
2020 mutex_unlock(&video_list_lock);
2021 }
2022 mutex_unlock(&register_count_mutex);
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002023}
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002024
Matthew Garrett74a365b2009-03-19 21:35:39 +00002025/*
2026 * This is kind of nasty. Hardware using Intel chipsets may require
2027 * the video opregion code to be run first in order to initialise
2028 * state before any ACPI video calls are made. To handle this we defer
2029 * registration of the video class until the opregion code has run.
2030 */
2031
2032static int __init acpi_video_init(void)
2033{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002034 /*
2035 * Let the module load even if ACPI is disabled (e.g. due to
2036 * a broken BIOS) so that i915.ko can still be loaded on such
2037 * old systems without an AcpiOpRegion.
2038 *
2039 * acpi_video_register() will report -ENODEV later as well due
2040 * to acpi_disabled when i915.ko tries to register itself afterwards.
2041 */
2042 if (acpi_disabled)
2043 return 0;
2044
Matthew Garrett74a365b2009-03-19 21:35:39 +00002045 if (intel_opregion_present())
2046 return 0;
2047
2048 return acpi_video_register();
2049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Zhao Yakui86e437f2009-06-16 11:23:13 +08002051static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Hans de Goede93a291d2015-06-16 16:27:52 +02002053 acpi_video_detect_exit();
Zhao Yakui86e437f2009-06-16 11:23:13 +08002054 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Patrick Mocheld550d982006-06-27 00:41:40 -04002056 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059module_init(acpi_video_init);
2060module_exit(acpi_video_exit);