blob: 48c7e8af9c96cba545731cb0ab464cb4097dc44b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05002 * video.c - ACPI Video Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org>
Thomas Tuttlef4715182006-12-19 12:56:14 -08006 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 *
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 */
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050032#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080033#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080034#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080035#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050036#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000037#include <linux/pci.h>
38#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040040#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020041#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080042#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050043#include <acpi/video.h>
Lv Zheng8b484632013-12-03 08:49:16 +080044#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020046#include "internal.h"
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_VIDEO_BUS_NAME "Video Bus"
49#define ACPI_VIDEO_DEVICE_NAME "Video Device"
50#define ACPI_VIDEO_NOTIFY_SWITCH 0x80
51#define ACPI_VIDEO_NOTIFY_PROBE 0x81
52#define ACPI_VIDEO_NOTIFY_CYCLE 0x82
53#define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
54#define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
55
Thomas Tuttlef4715182006-12-19 12:56:14 -080056#define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
57#define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
58#define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
59#define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
60#define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Yu Luming2f3d0002006-11-11 02:40:34 +080062#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050065ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Len Brownf52fd662007-02-12 22:42:12 -050067MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050068MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069MODULE_LICENSE("GPL");
70
Rusty Russell90ab5ee2012-01-13 09:32:20 +103071static bool brightness_switch_enabled = 1;
Zhang Rui8a681a42008-01-25 14:47:49 +080072module_param(brightness_switch_enabled, bool, 0644);
73
Zhang Ruic504f8c2009-12-30 15:59:23 +080074/*
75 * By default, we don't allow duplicate ACPI video bus devices
76 * under the same VGA controller
77 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103078static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080079module_param(allow_duplicates, bool, 0644);
80
Zhang Rui99fd1892010-12-06 15:04:27 +080081/*
Aaron Lu0e9f81d2014-02-18 13:54:20 +080082 * For Windows 8 systems: used to decide if video module
83 * should skip registering backlight interface of its own.
Aaron Lufbc9fe12013-10-11 21:27:45 +080084 */
Aaron Lu0e9f81d2014-02-18 13:54:20 +080085static int use_native_backlight_param = -1;
86module_param_named(use_native_backlight, use_native_backlight_param, int, 0444);
87static bool use_native_backlight_dmi = false;
Aaron Lufbc9fe12013-10-11 21:27:45 +080088
Felipe Contreras915ea7e2013-08-03 22:12:50 +020089static int register_count;
Aaron Lu67b662e2013-10-11 21:27:44 +080090static struct mutex video_list_lock;
91static struct list_head video_bus_head;
Len Brown4be44fc2005-08-05 00:44:28 -040092static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010093static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000094static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Thomas Renninger1ba90e32007-07-23 14:44:41 +020096static const struct acpi_device_id video_device_ids[] = {
97 {ACPI_VIDEO_HID, 0},
98 {"", 0},
99};
100MODULE_DEVICE_TABLE(acpi, video_device_ids);
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500103 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200105 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 .ops = {
107 .add = acpi_video_bus_add,
108 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000109 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400110 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111};
112
113struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400114 u8 multihead:1; /* can switch video heads */
115 u8 rom:1; /* can retrieve a video rom */
116 u8 post:1; /* can configure the head to */
117 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500121 u8 _DOS:1; /* Enable/Disable output switching */
122 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
123 u8 _ROM:1; /* Get ROM Data */
124 u8 _GPD:1; /* Get POST Device */
125 u8 _SPD:1; /* Set POST Device */
126 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400127 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Len Brown4be44fc2005-08-05 00:44:28 -0400130struct acpi_video_device_attrib {
131 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500132 u32 display_port_attachment:4; /* This field differentiates the display type */
133 u32 display_type:4; /* Describe the specific type in use */
134 u32 vendor_specific:4; /* Chipset Vendor Specific */
135 u32 bios_can_detect:1; /* BIOS can detect the device */
136 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400137 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500138 u32 pipe_id:3; /* For VGA multiple-head devices. */
139 u32 reserved:10; /* Must be 0 */
140 u32 device_id_scheme:1; /* Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143struct acpi_video_enumerated_device {
144 union {
145 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400146 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 } value;
148 struct acpi_video_device *bind_info;
149};
150
151struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400152 struct acpi_device *device;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400155 u8 attached_count;
156 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400158 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500159 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800160 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800161 struct input_dev *input;
162 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200163 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164};
165
166struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400167 u8 crt:1;
168 u8 lcd:1;
169 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500170 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400171 u8 bios:1;
172 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000173 u8 notify:1;
174 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175};
176
177struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500178 u8 _ADR:1; /* Return the unique ID */
179 u8 _BCL:1; /* Query list of brightness control levels supported */
180 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800181 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800182 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500183 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
Zhang Ruid32f6942009-03-18 16:27:12 +0800186struct acpi_video_brightness_flags {
187 u8 _BCL_no_ac_battery_levels:1; /* no AC/Battery levels in _BCL */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500188 u8 _BCL_reversed:1; /* _BCL package is in a reversed order */
Zhang Rui1a7c6182009-03-18 16:27:16 +0800189 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800190};
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400193 int curr;
194 int count;
195 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800196 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
199struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400200 unsigned long device_id;
201 struct acpi_video_device_flags flags;
202 struct acpi_video_device_cap cap;
203 struct list_head entry;
204 struct acpi_video_bus *video;
205 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800207 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400208 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Jan Engelhardtb7171ae2009-01-12 00:08:19 +0100211static const char device_decode[][30] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 "motherboard VGA device",
213 "PCI VGA device",
214 "AGP VGA device",
215 "UNKNOWN",
216};
217
Len Brown4be44fc2005-08-05 00:44:28 -0400218static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
219static void acpi_video_device_rebind(struct acpi_video_bus *video);
220static void acpi_video_device_bind(struct acpi_video_bus *video,
221 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800223static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
224 int level);
225static int acpi_video_device_lcd_get_level_current(
226 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000227 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400228static int acpi_video_get_next_level(struct acpi_video_device *device,
229 u32 level_current, u32 event);
Zhang Ruic8890f92009-03-18 16:27:08 +0800230static int acpi_video_switch_brightness(struct acpi_video_device *device,
Len Brown4be44fc2005-08-05 00:44:28 -0400231 int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800233static bool acpi_video_use_native_backlight(void)
234{
235 if (use_native_backlight_param != -1)
236 return use_native_backlight_param;
237 else
238 return use_native_backlight_dmi;
239}
240
Aaron Lufbc9fe12013-10-11 21:27:45 +0800241static bool acpi_video_verify_backlight_support(void)
242{
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800243 if (acpi_osi_is_win8() && acpi_video_use_native_backlight() &&
Aaron Lufbc9fe12013-10-11 21:27:45 +0800244 backlight_device_registered(BACKLIGHT_RAW))
245 return false;
246 return acpi_video_backlight_support();
247}
248
Felipe Contreras21fcb342013-08-01 18:43:59 -0500249/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800250static int acpi_video_get_brightness(struct backlight_device *bd)
251{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400252 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000253 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200254 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800255
Danny Baumanna89803d2013-03-19 16:22:50 +0000256 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800257 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000258 for (i = 2; i < vd->brightness->count; i++) {
259 if (vd->brightness->levels[i] == cur_level)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500260 /*
261 * The first two entries are special - see page 575
262 * of the ACPI spec 3.0
263 */
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200264 return i - 2;
Matthew Garrett38531e62007-12-26 02:03:26 +0000265 }
266 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800267}
268
269static int acpi_video_set_brightness(struct backlight_device *bd)
270{
Zhang Rui24450c72009-03-18 16:27:10 +0800271 int request_level = bd->props.brightness + 2;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200272 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800273
274 return acpi_video_device_lcd_set_level(vd,
275 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800276}
277
Lionel Debrouxacc24722010-11-16 14:14:02 +0100278static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000279 .get_brightness = acpi_video_get_brightness,
280 .update_status = acpi_video_set_brightness,
281};
282
Zhang Rui702ed512008-01-17 15:51:22 +0800283/* thermal cooling device callbacks */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400284static int video_get_max_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000285 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800286{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400287 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800288 struct acpi_video_device *video = acpi_driver_data(device);
289
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000290 *state = video->brightness->count - 3;
291 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800292}
293
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400294static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, unsigned
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000295 long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800296{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400297 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800298 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400299 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000300 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800301
Danny Baumanna89803d2013-03-19 16:22:50 +0000302 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800303 return -EINVAL;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000304 for (offset = 2; offset < video->brightness->count; offset++)
305 if (level == video->brightness->levels[offset]) {
306 *state = video->brightness->count - offset - 1;
307 return 0;
308 }
Zhang Rui702ed512008-01-17 15:51:22 +0800309
310 return -EINVAL;
311}
312
313static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400314video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800315{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400316 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800317 struct acpi_video_device *video = acpi_driver_data(device);
318 int level;
319
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200320 if (state >= video->brightness->count - 2)
Zhang Rui702ed512008-01-17 15:51:22 +0800321 return -EINVAL;
322
323 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200324 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800325 return acpi_video_device_lcd_set_level(video, level);
326}
327
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400328static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800329 .get_max_state = video_get_max_state,
330 .get_cur_state = video_get_cur_state,
331 .set_cur_state = video_set_cur_state,
332};
333
Felipe Contreras21fcb342013-08-01 18:43:59 -0500334/*
335 * --------------------------------------------------------------------------
336 * Video Management
337 * --------------------------------------------------------------------------
338 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static int
Len Brown4be44fc2005-08-05 00:44:28 -0400341acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
342 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Len Brown4be44fc2005-08-05 00:44:28 -0400344 int status;
345 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
346 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 *levels = NULL;
350
Patrick Mochel90130262006-05-19 16:54:48 -0400351 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400353 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400354 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500355 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400356 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 status = -EFAULT;
358 goto err;
359 }
360
361 *levels = obj;
362
Patrick Mocheld550d982006-06-27 00:41:40 -0400363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200365err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800366 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Patrick Mocheld550d982006-06-27 00:41:40 -0400368 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
371static int
Len Brown4be44fc2005-08-05 00:44:28 -0400372acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Zhang Rui24450c72009-03-18 16:27:10 +0800374 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800375 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Jiang Liu0db98202013-06-29 00:24:39 +0800377 status = acpi_execute_simple_method(device->dev->handle,
378 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800379 if (ACPI_FAILURE(status)) {
380 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
381 return -EIO;
382 }
383
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400384 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800385 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800386 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800387 if (device->backlight)
388 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800389 return 0;
390 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800391
Zhang Rui24450c72009-03-18 16:27:10 +0800392 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
393 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Zhang Rui45cb50e2009-04-24 12:13:18 -0400396/*
397 * For some buggy _BQC methods, we need to add a constant value to
398 * the _BQC return value to get the actual current brightness level
399 */
400
401static int bqc_offset_aml_bug_workaround;
402static int __init video_set_bqc_offset(const struct dmi_system_id *d)
403{
404 bqc_offset_aml_bug_workaround = 9;
405 return 0;
406}
407
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800408static int __init video_set_use_native_backlight(const struct dmi_system_id *d)
409{
410 use_native_backlight_dmi = true;
411 return 0;
412}
413
Zhang Rui45cb50e2009-04-24 12:13:18 -0400414static struct dmi_system_id video_dmi_table[] __initdata = {
415 /*
416 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
417 */
418 {
419 .callback = video_set_bqc_offset,
420 .ident = "Acer Aspire 5720",
421 .matches = {
422 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
423 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
424 },
425 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400426 {
427 .callback = video_set_bqc_offset,
428 .ident = "Acer Aspire 5710Z",
429 .matches = {
430 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
431 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
432 },
433 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400434 {
435 .callback = video_set_bqc_offset,
436 .ident = "eMachines E510",
437 .matches = {
438 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
439 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
440 },
441 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400442 {
443 .callback = video_set_bqc_offset,
444 .ident = "Acer Aspire 5315",
445 .matches = {
446 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
447 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
448 },
449 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800450 {
451 .callback = video_set_bqc_offset,
452 .ident = "Acer Aspire 7720",
453 .matches = {
454 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
455 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
456 },
457 },
Aaron Lu0e9f81d2014-02-18 13:54:20 +0800458 {
459 .callback = video_set_use_native_backlight,
460 .ident = "ThinkPad T430s",
461 .matches = {
462 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
463 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T430s"),
464 },
465 },
466 {
467 .callback = video_set_use_native_backlight,
468 .ident = "ThinkPad X230",
469 .matches = {
470 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
471 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X230"),
472 },
473 },
474 {
475 .callback = video_set_use_native_backlight,
476 .ident = "ThinkPad X1 Carbon",
477 .matches = {
478 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
479 DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X1 Carbon"),
480 },
481 },
482 {
483 .callback = video_set_use_native_backlight,
484 .ident = "Lenovo Yoga 13",
485 .matches = {
486 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
487 DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo IdeaPad Yoga 13"),
488 },
489 },
490 {
491 .callback = video_set_use_native_backlight,
492 .ident = "Dell Inspiron 7520",
493 .matches = {
494 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
495 DMI_MATCH(DMI_PRODUCT_VERSION, "Inspiron 7520"),
496 },
497 },
498 {
499 .callback = video_set_use_native_backlight,
500 .ident = "Acer Aspire 5733Z",
501 .matches = {
502 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
503 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5733Z"),
504 },
505 },
506 {
507 .callback = video_set_use_native_backlight,
508 .ident = "Acer Aspire V5-431",
509 .matches = {
510 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
511 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire V5-431"),
512 },
513 },
514 {
515 .callback = video_set_use_native_backlight,
516 .ident = "HP ProBook 4340s",
517 .matches = {
518 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
519 DMI_MATCH(DMI_PRODUCT_VERSION, "HP ProBook 4340s"),
520 },
521 },
522 {
523 .callback = video_set_use_native_backlight,
524 .ident = "HP ProBook 2013 models",
525 .matches = {
526 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
527 DMI_MATCH(DMI_PRODUCT_NAME, "HP ProBook "),
528 DMI_MATCH(DMI_PRODUCT_NAME, " G1"),
529 },
530 },
531 {
532 .callback = video_set_use_native_backlight,
533 .ident = "HP EliteBook 2013 models",
534 .matches = {
535 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
536 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook "),
537 DMI_MATCH(DMI_PRODUCT_NAME, " G1"),
538 },
539 },
540 {
541 .callback = video_set_use_native_backlight,
542 .ident = "HP ZBook 14",
543 .matches = {
544 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
545 DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 14"),
546 },
547 },
548 {
549 .callback = video_set_use_native_backlight,
550 .ident = "HP ZBook 15",
551 .matches = {
552 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
553 DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 15"),
554 },
555 },
556 {
557 .callback = video_set_use_native_backlight,
558 .ident = "HP ZBook 17",
559 .matches = {
560 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
561 DMI_MATCH(DMI_PRODUCT_NAME, "HP ZBook 17"),
562 },
563 },
564 {
565 .callback = video_set_use_native_backlight,
566 .ident = "HP EliteBook 8780w",
567 .matches = {
568 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
569 DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook 8780w"),
570 },
571 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400572 {}
573};
574
Danny Baumann994fa632013-03-19 16:22:52 +0000575static unsigned long long
576acpi_video_bqc_value_to_level(struct acpi_video_device *device,
577 unsigned long long bqc_value)
578{
579 unsigned long long level;
580
581 if (device->brightness->flags._BQC_use_index) {
582 /*
583 * _BQC returns an index that doesn't account for
584 * the first 2 items with special meaning, so we need
585 * to compensate for that by offsetting ourselves
586 */
587 if (device->brightness->flags._BCL_reversed)
588 bqc_value = device->brightness->count - 3 - bqc_value;
589
590 level = device->brightness->levels[bqc_value + 2];
591 } else {
592 level = bqc_value;
593 }
594
595 level += bqc_offset_aml_bug_workaround;
596
597 return level;
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static int
Len Brown4be44fc2005-08-05 00:44:28 -0400601acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000602 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Zhang Ruic8890f92009-03-18 16:27:08 +0800604 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800605 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800606
Zhang Ruic60d6382009-03-18 16:27:18 +0800607 if (device->cap._BQC || device->cap._BCQ) {
608 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
609
610 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800611 NULL, level);
612 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000613 if (raw) {
614 /*
615 * Caller has indicated he wants the raw
616 * value returned by _BQC, so don't furtherly
617 * mess with the value.
618 */
619 return 0;
620 }
621
Danny Baumann994fa632013-03-19 16:22:52 +0000622 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800623
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800624 for (i = 2; i < device->brightness->count; i++)
625 if (device->brightness->levels[i] == *level) {
626 device->brightness->curr = *level;
627 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200628 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000629 /*
630 * BQC returned an invalid level.
631 * Stop using it.
632 */
633 ACPI_WARNING((AE_INFO,
634 "%s returned an invalid level",
635 buf));
636 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800637 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500638 /*
639 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800640 * should we return an error or ignore this failure?
641 * dev->brightness->curr is a cached value which stores
642 * the correct current backlight level in most cases.
643 * ACPI video backlight still works w/ buggy _BQC.
644 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
645 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800646 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
647 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800648 }
649 }
650
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400651 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800652 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
655static int
Len Brown4be44fc2005-08-05 00:44:28 -0400656acpi_video_device_EDID(struct acpi_video_device *device,
657 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Len Brown4be44fc2005-08-05 00:44:28 -0400659 int status;
660 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
661 union acpi_object *obj;
662 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
663 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 *edid = NULL;
667
668 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400669 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (length == 128)
671 arg0.integer.value = 1;
672 else if (length == 256)
673 arg0.integer.value = 2;
674 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400675 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Patrick Mochel90130262006-05-19 16:54:48 -0400677 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400679 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200681 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (obj && obj->type == ACPI_TYPE_BUFFER)
684 *edid = obj;
685 else {
Len Brown64684632006-06-26 23:41:38 -0400686 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 status = -EFAULT;
688 kfree(obj);
689 }
690
Patrick Mocheld550d982006-06-27 00:41:40 -0400691 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/* bus */
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696/*
697 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500698 * video : video bus device pointer
699 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 * 0. The system BIOS should NOT automatically switch(toggle)
701 * the active display output.
702 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100703 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * 2. The _DGS value should be locked.
705 * 3. The system BIOS should not automatically switch (toggle) the
706 * active display output, but instead generate the display switch
707 * event notify code.
708 * lcd_flag :
709 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100710 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500711 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100712 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500713 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400714 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 */
716
717static int
Len Brown4be44fc2005-08-05 00:44:28 -0400718acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Igor Murzovea9f8852012-03-30 21:32:08 +0400720 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Zhang Ruib0373842012-06-20 09:48:43 +0800722 if (!video->cap._DOS)
723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Igor Murzovea9f8852012-03-30 21:32:08 +0400725 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
726 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800727 video->dos_setting = (lcd_flag << 2) | bios_flag;
728 status = acpi_execute_simple_method(video->device->handle, "_DOS",
729 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400730 if (ACPI_FAILURE(status))
731 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Igor Murzovea9f8852012-03-30 21:32:08 +0400733 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500737 * Simple comparison function used to sort backlight levels.
738 */
739
740static int
741acpi_video_cmp_level(const void *a, const void *b)
742{
743 return *(int *)a - *(int *)b;
744}
745
746/*
Aaron Lua50188d2013-04-22 14:08:32 +0200747 * Decides if _BQC/_BCQ for this system is usable
748 *
749 * We do this by changing the level first and then read out the current
750 * brightness level, if the value does not match, find out if it is using
751 * index. If not, clear the _BQC/_BCQ capability.
752 */
753static int acpi_video_bqc_quirk(struct acpi_video_device *device,
754 int max_level, int current_level)
755{
756 struct acpi_video_device_brightness *br = device->brightness;
757 int result;
758 unsigned long long level;
759 int test_level;
760
761 /* don't mess with existing known broken systems */
762 if (bqc_offset_aml_bug_workaround)
763 return 0;
764
765 /*
766 * Some systems always report current brightness level as maximum
767 * through _BQC, we need to test another value for them.
768 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200769 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200770
771 result = acpi_video_device_lcd_set_level(device, test_level);
772 if (result)
773 return result;
774
775 result = acpi_video_device_lcd_get_level_current(device, &level, true);
776 if (result)
777 return result;
778
779 if (level != test_level) {
780 /* buggy _BQC found, need to find out if it uses index */
781 if (level < br->count) {
782 if (br->flags._BCL_reversed)
783 level = br->count - 3 - level;
784 if (br->levels[level + 2] == test_level)
785 br->flags._BQC_use_index = 1;
786 }
787
788 if (!br->flags._BQC_use_index)
789 device->cap._BQC = device->cap._BCQ = 0;
790 }
791
792 return 0;
793}
794
795
796/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500797 * Arg:
798 * device : video output device (LCD, CRT, ..)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
800 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100801 * Maximum brightness level
802 *
803 * Allocate and initialize device->brightness.
804 */
805
806static int
807acpi_video_init_brightness(struct acpi_video_device *device)
808{
809 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800810 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800811 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100812 union acpi_object *o;
813 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800814 int result = -EINVAL;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100815 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100816
817 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
818 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
819 "LCD brightness level\n"));
820 goto out;
821 }
822
823 if (obj->package.count < 2)
824 goto out;
825
826 br = kzalloc(sizeof(*br), GFP_KERNEL);
827 if (!br) {
828 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800829 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100830 goto out;
831 }
832
Zhang Ruid32f6942009-03-18 16:27:12 +0800833 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100834 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800835 if (!br->levels) {
836 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100837 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800838 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100839
840 for (i = 0; i < obj->package.count; i++) {
841 o = (union acpi_object *)&obj->package.elements[i];
842 if (o->type != ACPI_TYPE_INTEGER) {
843 printk(KERN_ERR PREFIX "Invalid data\n");
844 continue;
845 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100846 value = (u32) o->integer.value;
847 /* Skip duplicate entries */
848 if (count > 2 && br->levels[count - 1] == value)
849 continue;
850
851 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100852
853 if (br->levels[count] > max_level)
854 max_level = br->levels[count];
855 count++;
856 }
857
Zhang Ruid32f6942009-03-18 16:27:12 +0800858 /*
859 * some buggy BIOS don't export the levels
860 * when machine is on AC/Battery in _BCL package.
861 * In this case, the first two elements in _BCL packages
862 * are also supported brightness levels that OS should take care of.
863 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800864 for (i = 2; i < count; i++) {
865 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800866 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800867 if (br->levels[i] == br->levels[1])
868 level_ac_battery++;
869 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500870
Zhang Ruid32f6942009-03-18 16:27:12 +0800871 if (level_ac_battery < 2) {
872 level_ac_battery = 2 - level_ac_battery;
873 br->flags._BCL_no_ac_battery_levels = 1;
874 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
875 br->levels[i] = br->levels[i - level_ac_battery];
876 count += level_ac_battery;
877 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000878 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800879
Zhang Ruid80fb992009-03-18 16:27:14 +0800880 /* Check if the _BCL package is in a reversed order */
881 if (max_level == br->levels[2]) {
882 br->flags._BCL_reversed = 1;
883 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
884 acpi_video_cmp_level, NULL);
885 } else if (max_level != br->levels[count - 1])
886 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000887 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100888
889 br->count = count;
890 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800891
Zhang Rui1a7c6182009-03-18 16:27:16 +0800892 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400893 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800894
895 if (!device->cap._BQC)
896 goto set_level;
897
Danny Baumanna89803d2013-03-19 16:22:50 +0000898 result = acpi_video_device_lcd_get_level_current(device,
899 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800900 if (result)
901 goto out_free_levels;
902
Aaron Lua50188d2013-04-22 14:08:32 +0200903 result = acpi_video_bqc_quirk(device, max_level, level_old);
904 if (result)
905 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800906 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200907 * cap._BQC may get cleared due to _BQC is found to be broken
908 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800909 */
Aaron Lua50188d2013-04-22 14:08:32 +0200910 if (!device->cap._BQC)
911 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800912
Aaron Lu545ef362013-11-15 14:39:12 +0800913 level = acpi_video_bqc_value_to_level(device, level_old);
914 /*
915 * On some buggy laptops, _BQC returns an uninitialized
916 * value when invoked for the first time, i.e.
917 * level_old is invalid (no matter whether it's a level
918 * or an index). Set the backlight to max_level in this case.
919 */
920 for (i = 2; i < br->count; i++)
921 if (level == br->levels[i])
922 break;
923 if (i == br->count || !level)
924 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800925
Zhang Ruie047cca2009-04-09 14:24:35 +0800926set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400927 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800928 if (result)
929 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800930
Zhang Ruid32f6942009-03-18 16:27:12 +0800931 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
932 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100933 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800934 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100935
936out_free_levels:
937 kfree(br->levels);
938out_free:
939 kfree(br);
940out:
941 device->brightness = NULL;
942 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800943 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100944}
945
946/*
947 * Arg:
948 * device : video output device (LCD, CRT, ..)
949 *
950 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500951 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100953 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * device.
955 */
956
Len Brown4be44fc2005-08-05 00:44:28 -0400957static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Jiang Liu952c63e2013-06-29 00:24:38 +0800959 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800961 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400962 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800963 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400964 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800965 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800966 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800967 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800968 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
969 device->cap._BCQ = 1;
970 }
971
Jiang Liu952c63e2013-06-29 00:24:38 +0800972 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400973 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
976/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500977 * Arg:
978 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 *
980 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500981 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100983 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 */
985
Len Brown4be44fc2005-08-05 00:44:28 -0400986static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Jiang Liu952c63e2013-06-29 00:24:38 +0800988 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800990 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800992 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800994 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800996 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800998 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/*
1003 * Check whether the video bus device has required AML method to
1004 * support the desired features
1005 */
1006
Len Brown4be44fc2005-08-05 00:44:28 -04001007static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Len Brown4be44fc2005-08-05 00:44:28 -04001009 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001010 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001013 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001015 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001016 if (!dev)
1017 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001018 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001019
Felipe Contreras21fcb342013-08-01 18:43:59 -05001020 /*
1021 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 * to check well known required nodes.
1023 */
1024
Julius Volz98fb8fe2007-02-20 16:38:40 +01001025 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001026 if (video->cap._DOS || video->cap._DOD) {
1027 if (!video->cap._DOS) {
1028 printk(KERN_WARNING FW_BUG
1029 "ACPI(%s) defines _DOD but not _DOS\n",
1030 acpi_device_bid(video->device));
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 video->flags.multihead = 1;
1033 status = 0;
1034 }
1035
Julius Volz98fb8fe2007-02-20 16:38:40 +01001036 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001037 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 video->flags.rom = 1;
1039 status = 0;
1040 }
1041
Julius Volz98fb8fe2007-02-20 16:38:40 +01001042 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001043 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 video->flags.post = 1;
1045 status = 0;
1046 }
1047
Patrick Mocheld550d982006-06-27 00:41:40 -04001048 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
Felipe Contreras21fcb342013-08-01 18:43:59 -05001051/*
1052 * --------------------------------------------------------------------------
1053 * Driver Interface
1054 * --------------------------------------------------------------------------
1055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001058static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001059acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1060{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001061 struct acpi_video_enumerated_device *ids;
1062 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001063
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001064 for (i = 0; i < video->attached_count; i++) {
1065 ids = &video->attached_array[i];
1066 if ((ids->value.int_val & 0xffff) == device_id)
1067 return &ids->value.attrib;
1068 }
1069
Rui Zhang82cae992007-01-03 23:40:53 -05001070 return NULL;
1071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001074acpi_video_get_device_type(struct acpi_video_bus *video,
1075 unsigned long device_id)
1076{
1077 struct acpi_video_enumerated_device *ids;
1078 int i;
1079
1080 for (i = 0; i < video->attached_count; i++) {
1081 ids = &video->attached_array[i];
1082 if ((ids->value.int_val & 0xffff) == device_id)
1083 return ids->value.int_val;
1084 }
1085
1086 return 0;
1087}
1088
1089static int
Len Brown4be44fc2005-08-05 00:44:28 -04001090acpi_video_bus_get_one_device(struct acpi_device *device,
1091 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001093 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001094 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001095 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001096 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Len Brown4be44fc2005-08-05 00:44:28 -04001098 status =
1099 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001100 /* Some device omits _ADR, we skip them instead of fail */
1101 if (ACPI_FAILURE(status))
1102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Aaron Lu91e13aa2013-04-25 02:47:49 +00001104 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1105 if (!data)
1106 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Aaron Lu91e13aa2013-04-25 02:47:49 +00001108 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1109 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1110 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Aaron Lu91e13aa2013-04-25 02:47:49 +00001112 data->device_id = device_id;
1113 data->video = video;
1114 data->dev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Aaron Lu91e13aa2013-04-25 02:47:49 +00001116 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001117
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001118 if (attribute && attribute->device_id_scheme) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001119 switch (attribute->display_type) {
1120 case ACPI_VIDEO_DISPLAY_CRT:
1121 data->flags.crt = 1;
1122 break;
1123 case ACPI_VIDEO_DISPLAY_TV:
1124 data->flags.tvout = 1;
1125 break;
1126 case ACPI_VIDEO_DISPLAY_DVI:
1127 data->flags.dvi = 1;
1128 break;
1129 case ACPI_VIDEO_DISPLAY_LCD:
1130 data->flags.lcd = 1;
1131 break;
1132 default:
1133 data->flags.unknown = 1;
1134 break;
1135 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001136 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001137 data->flags.bios = 1;
1138 } else {
1139 /* Check for legacy IDs */
1140 device_type = acpi_video_get_device_type(video, device_id);
1141 /* Ignore bits 16 and 18-20 */
1142 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001143 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1144 data->flags.crt = 1;
1145 break;
1146 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1147 data->flags.lcd = 1;
1148 break;
1149 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1150 data->flags.tvout = 1;
1151 break;
1152 default:
1153 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156
Aaron Lu91e13aa2013-04-25 02:47:49 +00001157 acpi_video_device_bind(video, data);
1158 acpi_video_device_find_cap(data);
1159
Aaron Lu91e13aa2013-04-25 02:47:49 +00001160 mutex_lock(&video->device_list_lock);
1161 list_add_tail(&data->entry, &video->video_device_list);
1162 mutex_unlock(&video->device_list_lock);
1163
1164 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165}
1166
1167/*
1168 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001169 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 *
1171 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001172 * none
1173 *
1174 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 * bind the ids with the corresponding video devices
1176 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Len Brown4be44fc2005-08-05 00:44:28 -04001179static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001181 struct acpi_video_device *dev;
1182
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001183 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001184
1185 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001186 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001187
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001188 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
1191/*
1192 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001193 * video : video bus device
1194 * device : video output device under the video
1195 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 *
1197 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001198 * none
1199 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * Bind the ids with the corresponding video devices
1201 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204static void
Len Brown4be44fc2005-08-05 00:44:28 -04001205acpi_video_device_bind(struct acpi_video_bus *video,
1206 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001208 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001209 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001211 for (i = 0; i < video->attached_count; i++) {
1212 ids = &video->attached_array[i];
1213 if (device->device_id == (ids->value.int_val & 0xffff)) {
1214 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1216 }
1217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220/*
1221 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001222 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 *
1224 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001225 * < 0 : error
1226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * Call _DOD to enumerate all devices attached to display adapter
1228 *
Len Brown4be44fc2005-08-05 00:44:28 -04001229 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1232{
Len Brown4be44fc2005-08-05 00:44:28 -04001233 int status;
1234 int count;
1235 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001236 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001237 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1238 union acpi_object *dod = NULL;
1239 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Patrick Mochel90130262006-05-19 16:54:48 -04001241 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001243 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001244 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001247 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001249 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 status = -EFAULT;
1251 goto out;
1252 }
1253
1254 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001255 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001257 active_list = kcalloc(1 + dod->package.count,
1258 sizeof(struct acpi_video_enumerated_device),
1259 GFP_KERNEL);
1260 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 status = -ENOMEM;
1262 goto out;
1263 }
1264
1265 count = 0;
1266 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001267 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001270 printk(KERN_ERR PREFIX
1271 "Invalid _DOD data in element %d\n", i);
1272 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001274
1275 active_list[count].value.int_val = obj->integer.value;
1276 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001277 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1278 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 count++;
1280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Jesper Juhl6044ec82005-11-07 01:01:32 -08001282 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001283
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001284 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001286
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001287out:
Len Brown02438d82006-06-30 03:19:10 -04001288 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001289 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290}
1291
Len Brown4be44fc2005-08-05 00:44:28 -04001292static int
1293acpi_video_get_next_level(struct acpi_video_device *device,
1294 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001296 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001297 max = max_below = 0;
1298 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001299 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001300 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001301 l = device->brightness->levels[i];
1302 if (abs(l - level_current) < abs(delta)) {
1303 delta = l - level_current;
1304 if (!delta)
1305 break;
1306 }
1307 }
1308 /* Ajust level_current to closest available level */
1309 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001310 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001311 l = device->brightness->levels[i];
1312 if (l < min)
1313 min = l;
1314 if (l > max)
1315 max = l;
1316 if (l < min_above && l > level_current)
1317 min_above = l;
1318 if (l > max_below && l < level_current)
1319 max_below = l;
1320 }
1321
1322 switch (event) {
1323 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1324 return (level_current < max) ? min_above : min;
1325 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1326 return (level_current < max) ? min_above : max;
1327 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1328 return (level_current > min) ? max_below : min;
1329 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1330 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1331 return 0;
1332 default:
1333 return level_current;
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Zhang Ruic8890f92009-03-18 16:27:08 +08001337static int
Len Brown4be44fc2005-08-05 00:44:28 -04001338acpi_video_switch_brightness(struct acpi_video_device *device, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001340 unsigned long long level_current, level_next;
Zhang Ruic8890f92009-03-18 16:27:08 +08001341 int result = -EINVAL;
1342
Aaron Lufbc9fe12013-10-11 21:27:45 +08001343 /* no warning message if acpi_backlight=vendor or a quirk is used */
1344 if (!acpi_video_verify_backlight_support())
Zhang Rui28c32e92009-07-13 10:33:24 +08001345 return 0;
1346
Julia Jomantaite469778c2008-06-23 22:50:42 +01001347 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001348 goto out;
1349
1350 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001351 &level_current,
1352 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001353 if (result)
1354 goto out;
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001357
Zhang Rui24450c72009-03-18 16:27:10 +08001358 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001359
Matthew Garrett36342742009-07-14 17:06:03 +01001360 if (!result)
1361 backlight_force_update(device->backlight,
1362 BACKLIGHT_UPDATE_HOTKEY);
1363
Zhang Ruic8890f92009-03-18 16:27:08 +08001364out:
1365 if (result)
1366 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
1367
1368 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369}
1370
Matthew Garrette92a7162010-01-12 14:17:03 -05001371int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1372 void **edid)
1373{
1374 struct acpi_video_bus *video;
1375 struct acpi_video_device *video_device;
1376 union acpi_object *buffer = NULL;
1377 acpi_status status;
1378 int i, length;
1379
1380 if (!device || !acpi_driver_data(device))
1381 return -EINVAL;
1382
1383 video = acpi_driver_data(device);
1384
1385 for (i = 0; i < video->attached_count; i++) {
1386 video_device = video->attached_array[i].bind_info;
1387 length = 256;
1388
1389 if (!video_device)
1390 continue;
1391
Zhang Rui82069552010-12-06 15:04:24 +08001392 if (!video_device->cap._DDC)
1393 continue;
1394
Matthew Garrette92a7162010-01-12 14:17:03 -05001395 if (type) {
1396 switch (type) {
1397 case ACPI_VIDEO_DISPLAY_CRT:
1398 if (!video_device->flags.crt)
1399 continue;
1400 break;
1401 case ACPI_VIDEO_DISPLAY_TV:
1402 if (!video_device->flags.tvout)
1403 continue;
1404 break;
1405 case ACPI_VIDEO_DISPLAY_DVI:
1406 if (!video_device->flags.dvi)
1407 continue;
1408 break;
1409 case ACPI_VIDEO_DISPLAY_LCD:
1410 if (!video_device->flags.lcd)
1411 continue;
1412 break;
1413 }
1414 } else if (video_device->device_id != device_id) {
1415 continue;
1416 }
1417
1418 status = acpi_video_device_EDID(video_device, &buffer, length);
1419
1420 if (ACPI_FAILURE(status) || !buffer ||
1421 buffer->type != ACPI_TYPE_BUFFER) {
1422 length = 128;
1423 status = acpi_video_device_EDID(video_device, &buffer,
1424 length);
1425 if (ACPI_FAILURE(status) || !buffer ||
1426 buffer->type != ACPI_TYPE_BUFFER) {
1427 continue;
1428 }
1429 }
1430
1431 *edid = buffer->buffer.pointer;
1432 return length;
1433 }
1434
1435 return -ENODEV;
1436}
1437EXPORT_SYMBOL(acpi_video_get_edid);
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439static int
Len Brown4be44fc2005-08-05 00:44:28 -04001440acpi_video_bus_get_devices(struct acpi_video_bus *video,
1441 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Igor Murzovfba4e082012-10-13 04:41:25 +04001443 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001444 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Igor Murzovfba4e082012-10-13 04:41:25 +04001446 /*
1447 * There are systems where video module known to work fine regardless
1448 * of broken _DOD and ignoring returned value here doesn't cause
1449 * any issues later.
1450 */
1451 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001453 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001456 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001457 dev_err(&dev->dev, "Can't attach device\n");
1458 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001461 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464/* acpi_video interface */
1465
Aaron Luefaa14c2013-07-16 13:08:05 +08001466/*
1467 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1468 * preform any automatic brightness change on receiving a notification.
1469 */
Len Brown4be44fc2005-08-05 00:44:28 -04001470static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Aaron Luefaa14c2013-07-16 13:08:05 +08001472 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001473 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474}
1475
Len Brown4be44fc2005-08-05 00:44:28 -04001476static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Aaron Luefaa14c2013-07-16 13:08:05 +08001478 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001479 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Bjorn Helgaas70155582009-04-07 15:37:11 +00001482static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001484 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001485 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001486 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001487
Aaron Lu67b662e2013-10-11 21:27:44 +08001488 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001489 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Luming Yue9dab192007-08-20 18:23:53 +08001491 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001494 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001496 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 break;
1498
Julius Volz98fb8fe2007-02-20 16:38:40 +01001499 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * connector. */
1501 acpi_video_device_enumerate(video);
1502 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001503 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 break;
1505
Len Brown4be44fc2005-08-05 00:44:28 -04001506 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001507 keycode = KEY_SWITCHVIDEOMODE;
1508 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001509 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001510 keycode = KEY_VIDEO_NEXT;
1511 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001512 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001513 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 break;
1515
1516 default:
1517 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001518 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 break;
1520 }
1521
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001522 if (acpi_notifier_call_chain(device, event, 0))
1523 /* Something vetoed the keypress. */
1524 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001525
1526 if (keycode) {
1527 input_report_key(input, keycode, 1);
1528 input_sync(input);
1529 input_report_key(input, keycode, 0);
1530 input_sync(input);
1531 }
Luming Yue9dab192007-08-20 18:23:53 +08001532
Patrick Mocheld550d982006-06-27 00:41:40 -04001533 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Len Brown4be44fc2005-08-05 00:44:28 -04001536static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001538 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001539 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001540 struct acpi_video_bus *bus;
1541 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001542 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001545 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001547 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001548 bus = video_device->video;
1549 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001552 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001553 if (brightness_switch_enabled)
1554 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001555 keycode = KEY_BRIGHTNESS_CYCLE;
1556 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001557 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001558 if (brightness_switch_enabled)
1559 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001560 keycode = KEY_BRIGHTNESSUP;
1561 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001562 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001563 if (brightness_switch_enabled)
1564 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001565 keycode = KEY_BRIGHTNESSDOWN;
1566 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001567 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001568 if (brightness_switch_enabled)
1569 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001570 keycode = KEY_BRIGHTNESS_ZERO;
1571 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001572 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Zhang Rui8a681a42008-01-25 14:47:49 +08001573 if (brightness_switch_enabled)
1574 acpi_video_switch_brightness(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001575 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 break;
1577 default:
1578 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001579 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 break;
1581 }
Luming Yue9dab192007-08-20 18:23:53 +08001582
Zhang Rui7761f632008-01-25 14:48:12 +08001583 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001584
1585 if (keycode) {
1586 input_report_key(input, keycode, 1);
1587 input_sync(input);
1588 input_report_key(input, keycode, 0);
1589 input_sync(input);
1590 }
Luming Yue9dab192007-08-20 18:23:53 +08001591
Patrick Mocheld550d982006-06-27 00:41:40 -04001592 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593}
1594
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001595static int acpi_video_resume(struct notifier_block *nb,
1596 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001597{
1598 struct acpi_video_bus *video;
1599 struct acpi_video_device *video_device;
1600 int i;
1601
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001602 switch (val) {
1603 case PM_HIBERNATION_PREPARE:
1604 case PM_SUSPEND_PREPARE:
1605 case PM_RESTORE_PREPARE:
1606 return NOTIFY_DONE;
1607 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001608
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001609 video = container_of(nb, struct acpi_video_bus, pm_nb);
1610
1611 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001612
1613 for (i = 0; i < video->attached_count; i++) {
1614 video_device = video->attached_array[i].bind_info;
1615 if (video_device && video_device->backlight)
1616 acpi_video_set_brightness(video_device->backlight);
1617 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001618
1619 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001620}
1621
Zhang Ruic504f8c2009-12-30 15:59:23 +08001622static acpi_status
1623acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1624 void **return_value)
1625{
1626 struct acpi_device *device = context;
1627 struct acpi_device *sibling;
1628 int result;
1629
1630 if (handle == device->handle)
1631 return AE_CTRL_TERMINATE;
1632
1633 result = acpi_bus_get_device(handle, &sibling);
1634 if (result)
1635 return AE_OK;
1636
1637 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1638 return AE_ALREADY_EXISTS;
1639
1640 return AE_OK;
1641}
1642
Aaron Lu67b662e2013-10-11 21:27:44 +08001643static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1644{
Aaron Lufbc9fe12013-10-11 21:27:45 +08001645 if (acpi_video_verify_backlight_support()) {
Aaron Lu67b662e2013-10-11 21:27:44 +08001646 struct backlight_properties props;
1647 struct pci_dev *pdev;
1648 acpi_handle acpi_parent;
1649 struct device *parent = NULL;
1650 int result;
1651 static int count;
1652 char *name;
1653
1654 result = acpi_video_init_brightness(device);
1655 if (result)
1656 return;
1657 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1658 if (!name)
1659 return;
1660 count++;
1661
1662 acpi_get_parent(device->dev->handle, &acpi_parent);
1663
1664 pdev = acpi_get_pci_dev(acpi_parent);
1665 if (pdev) {
1666 parent = &pdev->dev;
1667 pci_dev_put(pdev);
1668 }
1669
1670 memset(&props, 0, sizeof(struct backlight_properties));
1671 props.type = BACKLIGHT_FIRMWARE;
1672 props.max_brightness = device->brightness->count - 3;
1673 device->backlight = backlight_device_register(name,
1674 parent,
1675 device,
1676 &acpi_backlight_ops,
1677 &props);
1678 kfree(name);
1679 if (IS_ERR(device->backlight))
1680 return;
1681
1682 /*
1683 * Save current brightness level in case we have to restore it
1684 * before acpi_video_device_lcd_set_level() is called next time.
1685 */
1686 device->backlight->props.brightness =
1687 acpi_video_get_brightness(device->backlight);
1688
1689 device->cooling_dev = thermal_cooling_device_register("LCD",
1690 device->dev, &video_cooling_ops);
1691 if (IS_ERR(device->cooling_dev)) {
1692 /*
1693 * Set cooling_dev to NULL so we don't crash trying to
1694 * free it.
1695 * Also, why the hell we are returning early and
1696 * not attempt to register video output if cooling
1697 * device registration failed?
1698 * -- dtor
1699 */
1700 device->cooling_dev = NULL;
1701 return;
1702 }
1703
1704 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1705 device->cooling_dev->id);
1706 result = sysfs_create_link(&device->dev->dev.kobj,
1707 &device->cooling_dev->device.kobj,
1708 "thermal_cooling");
1709 if (result)
1710 printk(KERN_ERR PREFIX "Create sysfs link\n");
1711 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1712 &device->dev->dev.kobj, "device");
1713 if (result)
1714 printk(KERN_ERR PREFIX "Create sysfs link\n");
1715 }
1716}
1717
1718static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1719{
1720 struct acpi_video_device *dev;
1721
1722 mutex_lock(&video->device_list_lock);
1723 list_for_each_entry(dev, &video->video_device_list, entry)
1724 acpi_video_dev_register_backlight(dev);
1725 mutex_unlock(&video->device_list_lock);
1726
1727 video->pm_nb.notifier_call = acpi_video_resume;
1728 video->pm_nb.priority = 0;
1729 return register_pm_notifier(&video->pm_nb);
1730}
1731
1732static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1733{
1734 if (device->backlight) {
1735 backlight_device_unregister(device->backlight);
1736 device->backlight = NULL;
1737 }
1738 if (device->brightness) {
1739 kfree(device->brightness->levels);
1740 kfree(device->brightness);
1741 device->brightness = NULL;
1742 }
1743 if (device->cooling_dev) {
1744 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1745 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1746 thermal_cooling_device_unregister(device->cooling_dev);
1747 device->cooling_dev = NULL;
1748 }
1749}
1750
1751static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1752{
1753 struct acpi_video_device *dev;
1754 int error = unregister_pm_notifier(&video->pm_nb);
1755
1756 mutex_lock(&video->device_list_lock);
1757 list_for_each_entry(dev, &video->video_device_list, entry)
1758 acpi_video_dev_unregister_backlight(dev);
1759 mutex_unlock(&video->device_list_lock);
1760
1761 return error;
1762}
1763
1764static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1765{
1766 acpi_status status;
1767 struct acpi_device *adev = device->dev;
1768
1769 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1770 acpi_video_device_notify, device);
1771 if (ACPI_FAILURE(status))
1772 dev_err(&adev->dev, "Error installing notify handler\n");
1773 else
1774 device->flags.notify = 1;
1775}
1776
1777static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1778{
1779 struct input_dev *input;
1780 struct acpi_video_device *dev;
1781 int error;
1782
1783 video->input = input = input_allocate_device();
1784 if (!input) {
1785 error = -ENOMEM;
1786 goto out;
1787 }
1788
1789 error = acpi_video_bus_start_devices(video);
1790 if (error)
1791 goto err_free_input;
1792
1793 snprintf(video->phys, sizeof(video->phys),
1794 "%s/video/input0", acpi_device_hid(video->device));
1795
1796 input->name = acpi_device_name(video->device);
1797 input->phys = video->phys;
1798 input->id.bustype = BUS_HOST;
1799 input->id.product = 0x06;
1800 input->dev.parent = &video->device->dev;
1801 input->evbit[0] = BIT(EV_KEY);
1802 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1803 set_bit(KEY_VIDEO_NEXT, input->keybit);
1804 set_bit(KEY_VIDEO_PREV, input->keybit);
1805 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1806 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1807 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1808 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1809 set_bit(KEY_DISPLAY_OFF, input->keybit);
1810
1811 error = input_register_device(input);
1812 if (error)
1813 goto err_stop_dev;
1814
1815 mutex_lock(&video->device_list_lock);
1816 list_for_each_entry(dev, &video->video_device_list, entry)
1817 acpi_video_dev_add_notify_handler(dev);
1818 mutex_unlock(&video->device_list_lock);
1819
1820 return 0;
1821
1822err_stop_dev:
1823 acpi_video_bus_stop_devices(video);
1824err_free_input:
1825 input_free_device(input);
1826 video->input = NULL;
1827out:
1828 return error;
1829}
1830
1831static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1832{
1833 if (dev->flags.notify) {
1834 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1835 acpi_video_device_notify);
1836 dev->flags.notify = 0;
1837 }
1838}
1839
1840static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1841{
1842 struct acpi_video_device *dev;
1843
1844 mutex_lock(&video->device_list_lock);
1845 list_for_each_entry(dev, &video->video_device_list, entry)
1846 acpi_video_dev_remove_notify_handler(dev);
1847 mutex_unlock(&video->device_list_lock);
1848
1849 acpi_video_bus_stop_devices(video);
1850 input_unregister_device(video->input);
1851 video->input = NULL;
1852}
1853
1854static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1855{
1856 struct acpi_video_device *dev, *next;
1857
1858 mutex_lock(&video->device_list_lock);
1859 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1860 list_del(&dev->entry);
1861 kfree(dev);
1862 }
1863 mutex_unlock(&video->device_list_lock);
1864
1865 return 0;
1866}
1867
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001868static int instance;
1869
Len Brown4be44fc2005-08-05 00:44:28 -04001870static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001872 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001873 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001874 acpi_status status;
1875
1876 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1877 device->parent->handle, 1,
1878 acpi_video_bus_match, NULL,
1879 device, NULL);
1880 if (status == AE_ALREADY_EXISTS) {
1881 printk(KERN_WARNING FW_BUG
1882 "Duplicate ACPI video bus devices for the"
1883 " same VGA controller, please try module "
1884 "parameter \"video.allow_duplicates=1\""
1885 "if the current driver doesn't work.\n");
1886 if (!allow_duplicates)
1887 return -ENODEV;
1888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Burman Yan36bcbec2006-12-19 12:56:11 -08001890 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001892 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Zhang Ruie6d9da12007-08-25 02:23:31 -04001894 /* a hack to fix the duplicate name "VID" problem on T61 */
1895 if (!strcmp(device->pnp.bus_id, "VID")) {
1896 if (instance)
1897 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001898 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04001899 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001900 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1901 if (!strcmp(device->pnp.bus_id, "VGA")) {
1902 if (instance)
1903 device->pnp.bus_id[3] = '0' + instance;
1904 instance++;
1905 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001906
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001907 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1909 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001910 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001913 error = acpi_video_bus_check(video);
1914 if (error)
1915 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001917 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 INIT_LIST_HEAD(&video->video_device_list);
1919
Igor Murzovea9f8852012-03-30 21:32:08 +04001920 error = acpi_video_bus_get_devices(video, device);
1921 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001922 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001925 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
1926 video->flags.multihead ? "yes" : "no",
1927 video->flags.rom ? "yes" : "no",
1928 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08001929 mutex_lock(&video_list_lock);
1930 list_add_tail(&video->entry, &video_bus_head);
1931 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Aaron Lu67b662e2013-10-11 21:27:44 +08001933 acpi_video_bus_register_backlight(video);
1934 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001935
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Aaron Lu67b662e2013-10-11 21:27:44 +08001938err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001939 acpi_video_bus_put_devices(video);
1940 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08001941err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001942 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001943 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001944
1945 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001948static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Len Brown4be44fc2005-08-05 00:44:28 -04001950 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001954 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001956 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Aaron Lu67b662e2013-10-11 21:27:44 +08001958 acpi_video_bus_remove_notify_handler(video);
1959 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Aaron Lu67b662e2013-10-11 21:27:44 +08001962 mutex_lock(&video_list_lock);
1963 list_del(&video->entry);
1964 mutex_unlock(&video_list_lock);
1965
Jesper Juhl6044ec82005-11-07 01:01:32 -08001966 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 kfree(video);
1968
Patrick Mocheld550d982006-06-27 00:41:40 -04001969 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971
Alan Coxc6996bd2012-04-25 14:33:48 +01001972static int __init is_i740(struct pci_dev *dev)
1973{
1974 if (dev->device == 0x00D1)
1975 return 1;
1976 if (dev->device == 0x7000)
1977 return 1;
1978 return 0;
1979}
1980
Matthew Garrett74a365b2009-03-19 21:35:39 +00001981static int __init intel_opregion_present(void)
1982{
Alan Coxc6996bd2012-04-25 14:33:48 +01001983 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001984 struct pci_dev *dev = NULL;
1985 u32 address;
1986
1987 for_each_pci_dev(dev) {
1988 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1989 continue;
1990 if (dev->vendor != PCI_VENDOR_ID_INTEL)
1991 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001992 /* We don't want to poke around undefined i740 registers */
1993 if (is_i740(dev))
1994 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001995 pci_read_config_dword(dev, 0xfc, &address);
1996 if (!address)
1997 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001998 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001999 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002000 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002001}
2002
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002003int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002005 int result = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002006 if (register_count) {
2007 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002008 * if the function of acpi_video_register is already called,
2009 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002010 */
2011 return 0;
2012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Aaron Lu67b662e2013-10-11 21:27:44 +08002014 mutex_init(&video_list_lock);
2015 INIT_LIST_HEAD(&video_bus_head);
2016
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 result = acpi_bus_register_driver(&acpi_video_bus);
Zhang Rui39fe3942010-10-08 13:55:11 +08002018 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -04002019 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Zhao Yakui86e437f2009-06-16 11:23:13 +08002021 /*
2022 * When the acpi_video_bus is loaded successfully, increase
2023 * the counter reference.
2024 */
2025 register_count = 1;
2026
Patrick Mocheld550d982006-06-27 00:41:40 -04002027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002029EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002030
Zhao Yakui86e437f2009-06-16 11:23:13 +08002031void acpi_video_unregister(void)
2032{
2033 if (!register_count) {
2034 /*
2035 * If the acpi video bus is already unloaded, don't
2036 * unload it again and return directly.
2037 */
2038 return;
2039 }
2040 acpi_bus_unregister_driver(&acpi_video_bus);
2041
Zhao Yakui86e437f2009-06-16 11:23:13 +08002042 register_count = 0;
2043
2044 return;
2045}
2046EXPORT_SYMBOL(acpi_video_unregister);
2047
Matthew Garrett74a365b2009-03-19 21:35:39 +00002048/*
2049 * This is kind of nasty. Hardware using Intel chipsets may require
2050 * the video opregion code to be run first in order to initialise
2051 * state before any ACPI video calls are made. To handle this we defer
2052 * registration of the video class until the opregion code has run.
2053 */
2054
2055static int __init acpi_video_init(void)
2056{
Zhang Rui45cb50e2009-04-24 12:13:18 -04002057 dmi_check_system(video_dmi_table);
2058
Matthew Garrett74a365b2009-03-19 21:35:39 +00002059 if (intel_opregion_present())
2060 return 0;
2061
2062 return acpi_video_register();
2063}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Zhao Yakui86e437f2009-06-16 11:23:13 +08002065static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Zhao Yakui86e437f2009-06-16 11:23:13 +08002067 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Patrick Mocheld550d982006-06-27 00:41:40 -04002069 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072module_init(acpi_video_init);
2073module_exit(acpi_video_exit);