blob: 0ec434d2586da29d65003aed0b7d9c7dd244944e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * video.c - ACPI Video Driver ($Revision:$)
3 *
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/uaccess.h>
Len Browneb27cae2009-07-06 23:40:19 -040041#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <acpi/acpi_bus.h>
43#include <acpi/acpi_drivers.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020044#include <linux/suspend.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050045#include <acpi/video.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020047#include "internal.h"
48
Len Browna192a952009-07-28 16:45:54 -040049#define PREFIX "ACPI: "
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define ACPI_VIDEO_BUS_NAME "Video Bus"
52#define ACPI_VIDEO_DEVICE_NAME "Video Device"
53#define ACPI_VIDEO_NOTIFY_SWITCH 0x80
54#define ACPI_VIDEO_NOTIFY_PROBE 0x81
55#define ACPI_VIDEO_NOTIFY_CYCLE 0x82
56#define ACPI_VIDEO_NOTIFY_NEXT_OUTPUT 0x83
57#define ACPI_VIDEO_NOTIFY_PREV_OUTPUT 0x84
58
Thomas Tuttlef4715182006-12-19 12:56:14 -080059#define ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS 0x85
60#define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
61#define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
62#define ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS 0x88
63#define ACPI_VIDEO_NOTIFY_DISPLAY_OFF 0x89
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Yu Luming2f3d0002006-11-11 02:40:34 +080065#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050068ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Len Brownf52fd662007-02-12 22:42:12 -050070MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050071MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070072MODULE_LICENSE("GPL");
73
Rusty Russell90ab5ee2012-01-13 09:32:20 +103074static bool brightness_switch_enabled = 1;
Zhang Rui8a681a42008-01-25 14:47:49 +080075module_param(brightness_switch_enabled, bool, 0644);
76
Zhang Ruic504f8c2009-12-30 15:59:23 +080077/*
78 * By default, we don't allow duplicate ACPI video bus devices
79 * under the same VGA controller
80 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103081static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080082module_param(allow_duplicates, bool, 0644);
83
Zhang Rui99fd1892010-12-06 15:04:27 +080084/*
85 * Some BIOSes claim they use minimum backlight at boot,
86 * and this may bring dimming screen after boot
87 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103088static bool use_bios_initial_backlight = 1;
Zhang Rui99fd1892010-12-06 15:04:27 +080089module_param(use_bios_initial_backlight, bool, 0644);
90
Zhao Yakui86e437f2009-06-16 11:23:13 +080091static int register_count = 0;
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 {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 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 */
127 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 */
Julius Volz98fb8fe2007-02-20 16:38:40 +0100132 u32 display_port_attachment:4; /*This field differentiates the display type */
Len Brown4be44fc2005-08-05 00:44:28 -0400133 u32 display_type:4; /*Describe the specific type in use */
Julius Volz98fb8fe2007-02-20 16:38:40 +0100134 u32 vendor_specific:4; /*Chipset Vendor Specific */
Len Brown4be44fc2005-08-05 00:44:28 -0400135 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
137 the VGA device. */
138 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 */
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 {
Len Brown4be44fc2005-08-05 00:44:28 -0400177 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 */
Len Brown4be44fc2005-08-05 00:44:28 -0400182 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 */
Zhang Ruid80fb992009-03-18 16:27:14 +0800187 u8 _BCL_reversed:1; /* _BCL package is in a reversed order*/
Zhang Rui1a7c6182009-03-18 16:27:16 +0800188 u8 _BCL_use_index:1; /* levels in _BCL are index values */
189 u8 _BCM_use_index:1; /* input of _BCM is an index value */
190 u8 _BQC_use_index:1; /* _BQC returns an index value */
Zhang Ruid32f6942009-03-18 16:27:12 +0800191};
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193struct acpi_video_device_brightness {
Len Brown4be44fc2005-08-05 00:44:28 -0400194 int curr;
195 int count;
196 int *levels;
Zhang Ruid32f6942009-03-18 16:27:12 +0800197 struct acpi_video_brightness_flags flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
200struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 unsigned long device_id;
202 struct acpi_video_device_flags flags;
203 struct acpi_video_device_cap cap;
204 struct list_head entry;
205 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);
Zhang Ruic8890f92009-03-18 16:27:08 +0800231static int acpi_video_switch_brightness(struct acpi_video_device *device,
Len Brown4be44fc2005-08-05 00:44:28 -0400232 int event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Yu Luming2f3d0002006-11-11 02:40:34 +0800234/*backlight device sysfs support*/
235static int acpi_video_get_brightness(struct backlight_device *bd)
236{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400237 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000238 int i;
Yu Luming2f3d0002006-11-11 02:40:34 +0800239 struct acpi_video_device *vd =
Richard Purdie655bfd72007-07-09 12:17:24 +0100240 (struct acpi_video_device *)bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800241
Danny Baumanna89803d2013-03-19 16:22:50 +0000242 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800243 return -EINVAL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000244 for (i = 2; i < vd->brightness->count; i++) {
245 if (vd->brightness->levels[i] == cur_level)
246 /* The first two entries are special - see page 575
247 of the ACPI spec 3.0 */
248 return i-2;
249 }
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;
Yu Luming2f3d0002006-11-11 02:40:34 +0800256 struct acpi_video_device *vd =
Richard Purdie655bfd72007-07-09 12:17:24 +0100257 (struct acpi_video_device *)bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800258
259 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
305 if ( state >= video->brightness->count - 2)
306 return -EINVAL;
307
308 state = video->brightness->count - state;
309 level = video->brightness->levels[state -1];
310 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/* --------------------------------------------------------------------------
320 Video Management
321 -------------------------------------------------------------------------- */
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static int
Len Brown4be44fc2005-08-05 00:44:28 -0400324acpi_video_device_lcd_query_levels(struct acpi_video_device *device,
325 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
Len Brown4be44fc2005-08-05 00:44:28 -0400327 int status;
328 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
329 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 *levels = NULL;
333
Patrick Mochel90130262006-05-19 16:54:48 -0400334 status = acpi_evaluate_object(device->dev->handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400336 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400337 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500338 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400339 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 status = -EFAULT;
341 goto err;
342 }
343
344 *levels = obj;
345
Patrick Mocheld550d982006-06-27 00:41:40 -0400346 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Len Brown4be44fc2005-08-05 00:44:28 -0400348 err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800349 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Patrick Mocheld550d982006-06-27 00:41:40 -0400351 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354static int
Len Brown4be44fc2005-08-05 00:44:28 -0400355acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Zhang Rui24450c72009-03-18 16:27:10 +0800357 int status;
Len Brown4be44fc2005-08-05 00:44:28 -0400358 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
359 struct acpi_object_list args = { 1, &arg0 };
Zhang Rui9e6dada2008-12-31 10:58:48 +0800360 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 arg0.integer.value = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Zhang Rui24450c72009-03-18 16:27:10 +0800364 status = acpi_evaluate_object(device->dev->handle, "_BCM",
365 &args, NULL);
366 if (ACPI_FAILURE(status)) {
367 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
368 return -EIO;
369 }
370
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400371 device->brightness->curr = level;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800372 for (state = 2; state < device->brightness->count; state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800373 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800374 if (device->backlight)
375 device->backlight->props.brightness = state - 2;
Zhang Rui24450c72009-03-18 16:27:10 +0800376 return 0;
377 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800378
Zhang Rui24450c72009-03-18 16:27:10 +0800379 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
380 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Zhang Rui45cb50e2009-04-24 12:13:18 -0400383/*
384 * For some buggy _BQC methods, we need to add a constant value to
385 * the _BQC return value to get the actual current brightness level
386 */
387
388static int bqc_offset_aml_bug_workaround;
389static int __init video_set_bqc_offset(const struct dmi_system_id *d)
390{
391 bqc_offset_aml_bug_workaround = 9;
392 return 0;
393}
394
Zhang Rui129ff8f2012-12-04 23:30:19 +0100395static int video_ignore_initial_backlight(const struct dmi_system_id *d)
396{
397 use_bios_initial_backlight = 0;
398 return 0;
399}
400
Zhang Rui45cb50e2009-04-24 12:13:18 -0400401static struct dmi_system_id video_dmi_table[] __initdata = {
402 /*
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 },
Zhang Rui129ff8f2012-12-04 23:30:19 +0100445 {
446 .callback = video_ignore_initial_backlight,
447 .ident = "HP Folio 13-2000",
448 .matches = {
449 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
450 DMI_MATCH(DMI_PRODUCT_NAME, "HP Folio 13 - 2000 Notebook PC"),
451 },
452 },
Gustavo Maciel Dias Vieira771d09b2013-03-04 15:23:37 +0000453 {
454 .callback = video_ignore_initial_backlight,
Lan Tianyu9657a562013-07-16 10:07:21 +0800455 .ident = "Fujitsu E753",
456 .matches = {
457 DMI_MATCH(DMI_BOARD_VENDOR, "FUJITSU"),
458 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E753"),
459 },
460 },
461 {
462 .callback = video_ignore_initial_backlight,
Gustavo Maciel Dias Vieira771d09b2013-03-04 15:23:37 +0000463 .ident = "HP Pavilion dm4",
464 .matches = {
465 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
466 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dm4 Notebook PC"),
467 },
468 },
Alex Hung4ef366c2013-05-06 08:23:43 +0000469 {
470 .callback = video_ignore_initial_backlight,
Ash Willis780a6ec2013-05-29 01:27:59 +0000471 .ident = "HP Pavilion g6 Notebook PC",
472 .matches = {
473 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
474 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion g6 Notebook PC"),
475 },
476 },
477 {
478 .callback = video_ignore_initial_backlight,
Alex Hung4ef366c2013-05-06 08:23:43 +0000479 .ident = "HP 1000 Notebook PC",
480 .matches = {
481 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
482 DMI_MATCH(DMI_PRODUCT_NAME, "HP 1000 Notebook PC"),
483 },
484 },
Alex Hungfedbe9b2013-05-28 02:05:09 +0000485 {
486 .callback = video_ignore_initial_backlight,
487 .ident = "HP Pavilion m4",
488 .matches = {
489 DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"),
490 DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion m4 Notebook PC"),
491 },
492 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400493 {}
494};
495
Danny Baumann994fa632013-03-19 16:22:52 +0000496static unsigned long long
497acpi_video_bqc_value_to_level(struct acpi_video_device *device,
498 unsigned long long bqc_value)
499{
500 unsigned long long level;
501
502 if (device->brightness->flags._BQC_use_index) {
503 /*
504 * _BQC returns an index that doesn't account for
505 * the first 2 items with special meaning, so we need
506 * to compensate for that by offsetting ourselves
507 */
508 if (device->brightness->flags._BCL_reversed)
509 bqc_value = device->brightness->count - 3 - bqc_value;
510
511 level = device->brightness->levels[bqc_value + 2];
512 } else {
513 level = bqc_value;
514 }
515
516 level += bqc_offset_aml_bug_workaround;
517
518 return level;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521static int
Len Brown4be44fc2005-08-05 00:44:28 -0400522acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000523 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Zhang Ruic8890f92009-03-18 16:27:08 +0800525 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800526 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800527
Zhang Ruic60d6382009-03-18 16:27:18 +0800528 if (device->cap._BQC || device->cap._BCQ) {
529 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
530
531 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800532 NULL, level);
533 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000534 if (raw) {
535 /*
536 * Caller has indicated he wants the raw
537 * value returned by _BQC, so don't furtherly
538 * mess with the value.
539 */
540 return 0;
541 }
542
Danny Baumann994fa632013-03-19 16:22:52 +0000543 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800544
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800545 for (i = 2; i < device->brightness->count; i++)
546 if (device->brightness->levels[i] == *level) {
547 device->brightness->curr = *level;
548 return 0;
549 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000550 /*
551 * BQC returned an invalid level.
552 * Stop using it.
553 */
554 ACPI_WARNING((AE_INFO,
555 "%s returned an invalid level",
556 buf));
557 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800558 } else {
559 /* Fixme:
560 * should we return an error or ignore this failure?
561 * dev->brightness->curr is a cached value which stores
562 * the correct current backlight level in most cases.
563 * ACPI video backlight still works w/ buggy _BQC.
564 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
565 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800566 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
567 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800568 }
569 }
570
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400571 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575static int
Len Brown4be44fc2005-08-05 00:44:28 -0400576acpi_video_device_EDID(struct acpi_video_device *device,
577 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Len Brown4be44fc2005-08-05 00:44:28 -0400579 int status;
580 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
581 union acpi_object *obj;
582 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
583 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 *edid = NULL;
587
588 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 if (length == 128)
591 arg0.integer.value = 1;
592 else if (length == 256)
593 arg0.integer.value = 2;
594 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400595 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Patrick Mochel90130262006-05-19 16:54:48 -0400597 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400599 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200601 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 if (obj && obj->type == ACPI_TYPE_BUFFER)
604 *edid = obj;
605 else {
Len Brown64684632006-06-26 23:41:38 -0400606 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 status = -EFAULT;
608 kfree(obj);
609 }
610
Patrick Mocheld550d982006-06-27 00:41:40 -0400611 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/* bus */
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616/*
617 * Arg:
618 * video : video bus device pointer
619 * bios_flag :
620 * 0. The system BIOS should NOT automatically switch(toggle)
621 * the active display output.
622 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100623 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * 2. The _DGS value should be locked.
625 * 3. The system BIOS should not automatically switch (toggle) the
626 * active display output, but instead generate the display switch
627 * event notify code.
628 * lcd_flag :
629 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100630 * of the LCD when the power changes from AC to DC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100632 * level of the LCD when the power changes from AC to DC.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400634 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
636
637static int
Len Brown4be44fc2005-08-05 00:44:28 -0400638acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Igor Murzovea9f8852012-03-30 21:32:08 +0400640 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400641 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
642 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Zhang Ruib0373842012-06-20 09:48:43 +0800644 if (!video->cap._DOS)
645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Igor Murzovea9f8852012-03-30 21:32:08 +0400647 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
648 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 arg0.integer.value = (lcd_flag << 2) | bios_flag;
650 video->dos_setting = arg0.integer.value;
Igor Murzovea9f8852012-03-30 21:32:08 +0400651 status = acpi_evaluate_object(video->device->handle, "_DOS",
652 &args, NULL);
653 if (ACPI_FAILURE(status))
654 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Igor Murzovea9f8852012-03-30 21:32:08 +0400656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500660 * Simple comparison function used to sort backlight levels.
661 */
662
663static int
664acpi_video_cmp_level(const void *a, const void *b)
665{
666 return *(int *)a - *(int *)b;
667}
668
669/*
Aaron Lua50188d2013-04-22 14:08:32 +0200670 * Decides if _BQC/_BCQ for this system is usable
671 *
672 * We do this by changing the level first and then read out the current
673 * brightness level, if the value does not match, find out if it is using
674 * index. If not, clear the _BQC/_BCQ capability.
675 */
676static int acpi_video_bqc_quirk(struct acpi_video_device *device,
677 int max_level, int current_level)
678{
679 struct acpi_video_device_brightness *br = device->brightness;
680 int result;
681 unsigned long long level;
682 int test_level;
683
684 /* don't mess with existing known broken systems */
685 if (bqc_offset_aml_bug_workaround)
686 return 0;
687
688 /*
689 * Some systems always report current brightness level as maximum
690 * through _BQC, we need to test another value for them.
691 */
692 test_level = current_level == max_level ? br->levels[2] : max_level;
693
694 result = acpi_video_device_lcd_set_level(device, test_level);
695 if (result)
696 return result;
697
698 result = acpi_video_device_lcd_get_level_current(device, &level, true);
699 if (result)
700 return result;
701
702 if (level != test_level) {
703 /* buggy _BQC found, need to find out if it uses index */
704 if (level < br->count) {
705 if (br->flags._BCL_reversed)
706 level = br->count - 3 - level;
707 if (br->levels[level + 2] == test_level)
708 br->flags._BQC_use_index = 1;
709 }
710
711 if (!br->flags._BQC_use_index)
712 device->cap._BQC = device->cap._BCQ = 0;
713 }
714
715 return 0;
716}
717
718
719/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * Arg:
721 * device : video output device (LCD, CRT, ..)
722 *
723 * Return Value:
Julia Jomantaite469778c2008-06-23 22:50:42 +0100724 * Maximum brightness level
725 *
726 * Allocate and initialize device->brightness.
727 */
728
729static int
730acpi_video_init_brightness(struct acpi_video_device *device)
731{
732 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800733 int i, max_level = 0, count = 0, level_ac_battery = 0;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800734 unsigned long long level, level_old;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100735 union acpi_object *o;
736 struct acpi_video_device_brightness *br = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800737 int result = -EINVAL;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100738
739 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device, &obj))) {
740 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
741 "LCD brightness level\n"));
742 goto out;
743 }
744
745 if (obj->package.count < 2)
746 goto out;
747
748 br = kzalloc(sizeof(*br), GFP_KERNEL);
749 if (!br) {
750 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800751 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100752 goto out;
753 }
754
Zhang Ruid32f6942009-03-18 16:27:12 +0800755 br->levels = kmalloc((obj->package.count + 2) * sizeof *(br->levels),
Julia Jomantaite469778c2008-06-23 22:50:42 +0100756 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800757 if (!br->levels) {
758 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100759 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800760 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100761
762 for (i = 0; i < obj->package.count; i++) {
763 o = (union acpi_object *)&obj->package.elements[i];
764 if (o->type != ACPI_TYPE_INTEGER) {
765 printk(KERN_ERR PREFIX "Invalid data\n");
766 continue;
767 }
768 br->levels[count] = (u32) o->integer.value;
769
770 if (br->levels[count] > max_level)
771 max_level = br->levels[count];
772 count++;
773 }
774
Zhang Ruid32f6942009-03-18 16:27:12 +0800775 /*
776 * some buggy BIOS don't export the levels
777 * when machine is on AC/Battery in _BCL package.
778 * In this case, the first two elements in _BCL packages
779 * are also supported brightness levels that OS should take care of.
780 */
Zhang Rui90af2cf2009-04-14 11:02:18 +0800781 for (i = 2; i < count; i++) {
782 if (br->levels[i] == br->levels[0])
Zhang Ruid32f6942009-03-18 16:27:12 +0800783 level_ac_battery++;
Zhang Rui90af2cf2009-04-14 11:02:18 +0800784 if (br->levels[i] == br->levels[1])
785 level_ac_battery++;
786 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500787
Zhang Ruid32f6942009-03-18 16:27:12 +0800788 if (level_ac_battery < 2) {
789 level_ac_battery = 2 - level_ac_battery;
790 br->flags._BCL_no_ac_battery_levels = 1;
791 for (i = (count - 1 + level_ac_battery); i >= 2; i--)
792 br->levels[i] = br->levels[i - level_ac_battery];
793 count += level_ac_battery;
794 } else if (level_ac_battery > 2)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000795 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800796
Zhang Ruid80fb992009-03-18 16:27:14 +0800797 /* Check if the _BCL package is in a reversed order */
798 if (max_level == br->levels[2]) {
799 br->flags._BCL_reversed = 1;
800 sort(&br->levels[2], count - 2, sizeof(br->levels[2]),
801 acpi_video_cmp_level, NULL);
802 } else if (max_level != br->levels[count - 1])
803 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000804 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100805
806 br->count = count;
807 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800808
809 /* Check the input/output of _BQC/_BCL/_BCM */
810 if ((max_level < 100) && (max_level <= (count - 2)))
811 br->flags._BCL_use_index = 1;
812
813 /*
814 * _BCM is always consistent with _BCL,
815 * at least for all the laptops we have ever seen.
816 */
817 br->flags._BCM_use_index = br->flags._BCL_use_index;
818
819 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400820 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800821
822 if (!device->cap._BQC)
823 goto set_level;
824
Danny Baumanna89803d2013-03-19 16:22:50 +0000825 result = acpi_video_device_lcd_get_level_current(device,
826 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800827 if (result)
828 goto out_free_levels;
829
Aaron Lua50188d2013-04-22 14:08:32 +0200830 result = acpi_video_bqc_quirk(device, max_level, level_old);
831 if (result)
832 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800833 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200834 * cap._BQC may get cleared due to _BQC is found to be broken
835 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800836 */
Aaron Lua50188d2013-04-22 14:08:32 +0200837 if (!device->cap._BQC)
838 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800839
Danny Baumann994fa632013-03-19 16:22:52 +0000840 if (use_bios_initial_backlight) {
841 level = acpi_video_bqc_value_to_level(device, level_old);
Zhang Rui90c53ca2009-08-31 12:39:54 -0400842 /*
Danny Baumann994fa632013-03-19 16:22:52 +0000843 * On some buggy laptops, _BQC returns an uninitialized
844 * value when invoked for the first time, i.e.
845 * level_old is invalid (no matter whether it's a level
846 * or an index). Set the backlight to max_level in this case.
Zhang Rui90c53ca2009-08-31 12:39:54 -0400847 */
Danny Baumann994fa632013-03-19 16:22:52 +0000848 for (i = 2; i < br->count; i++)
849 if (level_old == br->levels[i])
850 break;
851 if (i == br->count)
852 level = max_level;
Zhang Rui90c53ca2009-08-31 12:39:54 -0400853 }
Zhang Ruie047cca2009-04-09 14:24:35 +0800854
Zhang Ruie047cca2009-04-09 14:24:35 +0800855set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400856 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800857 if (result)
858 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800859
Zhang Ruid32f6942009-03-18 16:27:12 +0800860 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
861 "found %d brightness levels\n", count - 2));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100862 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800863 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100864
865out_free_levels:
866 kfree(br->levels);
867out_free:
868 kfree(br);
869out:
870 device->brightness = NULL;
871 kfree(obj);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800872 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100873}
874
875/*
876 * Arg:
877 * device : video output device (LCD, CRT, ..)
878 *
879 * Return Value:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * None
881 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100882 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 * device.
884 */
885
Len Brown4be44fc2005-08-05 00:44:28 -0400886static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 acpi_handle h_dummy1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Patrick Mochel90130262006-05-19 16:54:48 -0400890 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_ADR", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 device->cap._ADR = 1;
892 }
Patrick Mochel90130262006-05-19 16:54:48 -0400893 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCL", &h_dummy1))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400894 device->cap._BCL = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
Patrick Mochel90130262006-05-19 16:54:48 -0400896 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCM", &h_dummy1))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400897 device->cap._BCM = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Yu Luming2f3d0002006-11-11 02:40:34 +0800899 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle,"_BQC",&h_dummy1)))
900 device->cap._BQC = 1;
Zhang Ruic60d6382009-03-18 16:27:18 +0800901 else if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_BCQ",
902 &h_dummy1))) {
903 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
904 device->cap._BCQ = 1;
905 }
906
Patrick Mochel90130262006-05-19 16:54:48 -0400907 if (ACPI_SUCCESS(acpi_get_handle(device->dev->handle, "_DDC", &h_dummy1))) {
Len Brown4be44fc2005-08-05 00:44:28 -0400908 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Matthew Garrettc04c6972013-07-16 17:08:16 +0000911 if (acpi_video_init_brightness(device))
912 return;
913
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +0200914 if (acpi_video_backlight_support()) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500915 struct backlight_properties props;
Matthew Garrett9661e922011-03-22 16:30:25 -0700916 struct pci_dev *pdev;
917 acpi_handle acpi_parent;
918 struct device *parent = NULL;
Zhang Rui702ed512008-01-17 15:51:22 +0800919 int result;
Yu Luming2f3d0002006-11-11 02:40:34 +0800920 static int count = 0;
921 char *name;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800922
Julia Lawallaeb834d2010-04-27 14:06:04 -0700923 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
Yu Luming2f3d0002006-11-11 02:40:34 +0800924 if (!name)
925 return;
Julia Lawallaeb834d2010-04-27 14:06:04 -0700926 count++;
Yu Luming2f3d0002006-11-11 02:40:34 +0800927
Matthew Garrett9661e922011-03-22 16:30:25 -0700928 acpi_get_parent(device->dev->handle, &acpi_parent);
929
930 pdev = acpi_get_pci_dev(acpi_parent);
931 if (pdev) {
932 parent = &pdev->dev;
933 pci_dev_put(pdev);
934 }
935
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500936 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700937 props.type = BACKLIGHT_FIRMWARE;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500938 props.max_brightness = device->brightness->count - 3;
Matthew Garrett9661e922011-03-22 16:30:25 -0700939 device->backlight = backlight_device_register(name,
940 parent,
941 device,
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500942 &acpi_backlight_ops,
943 &props);
Yu Luming2f3d0002006-11-11 02:40:34 +0800944 kfree(name);
Zhang Ruie01ce792009-07-29 08:53:29 +0800945 if (IS_ERR(device->backlight))
946 return;
Zhang Rui702ed512008-01-17 15:51:22 +0800947
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200948 /*
949 * Save current brightness level in case we have to restore it
950 * before acpi_video_device_lcd_set_level() is called next time.
951 */
952 device->backlight->props.brightness =
953 acpi_video_get_brightness(device->backlight);
Zhang Rui702ed512008-01-17 15:51:22 +0800954
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400955 device->cooling_dev = thermal_cooling_device_register("LCD",
Zhang Rui702ed512008-01-17 15:51:22 +0800956 device->dev, &video_cooling_ops);
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400957 if (IS_ERR(device->cooling_dev)) {
Dmitry Torokhov4b4fe3b2009-08-08 00:26:25 -0700958 /*
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400959 * Set cooling_dev to NULL so we don't crash trying to
Dmitry Torokhov4b4fe3b2009-08-08 00:26:25 -0700960 * free it.
961 * Also, why the hell we are returning early and
962 * not attempt to register video output if cooling
963 * device registration failed?
964 * -- dtor
965 */
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400966 device->cooling_dev = NULL;
Thomas Sujith43ff39f2008-02-15 18:29:18 -0500967 return;
Dmitry Torokhov4b4fe3b2009-08-08 00:26:25 -0700968 }
Thomas Sujith43ff39f2008-02-15 18:29:18 -0500969
Greg Kroah-Hartmanfc3a8822008-05-02 06:02:41 +0200970 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400971 device->cooling_dev->id);
Julia Lawall90300622008-04-11 10:09:24 +0800972 result = sysfs_create_link(&device->dev->dev.kobj,
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400973 &device->cooling_dev->device.kobj,
Julia Lawall90300622008-04-11 10:09:24 +0800974 "thermal_cooling");
975 if (result)
976 printk(KERN_ERR PREFIX "Create sysfs link\n");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400977 result = sysfs_create_link(&device->cooling_dev->device.kobj,
Julia Lawall90300622008-04-11 10:09:24 +0800978 &device->dev->dev.kobj, "device");
979 if (result)
980 printk(KERN_ERR PREFIX "Create sysfs link\n");
981
Matthew Garrettc04c6972013-07-16 17:08:16 +0000982 } else {
983 /* Remove the brightness object. */
984 kfree(device->brightness->levels);
985 kfree(device->brightness);
986 device->brightness = NULL;
Yu Luming2f3d0002006-11-11 02:40:34 +0800987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
990/*
991 * Arg:
992 * device : video output device (VGA)
993 *
994 * Return Value:
995 * None
996 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100997 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 */
999
Len Brown4be44fc2005-08-05 00:44:28 -04001000static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Len Brown4be44fc2005-08-05 00:44:28 -04001002 acpi_handle h_dummy1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Patrick Mochel90130262006-05-19 16:54:48 -04001004 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOS", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 video->cap._DOS = 1;
1006 }
Patrick Mochel90130262006-05-19 16:54:48 -04001007 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 video->cap._DOD = 1;
1009 }
Patrick Mochel90130262006-05-19 16:54:48 -04001010 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_ROM", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 video->cap._ROM = 1;
1012 }
Patrick Mochel90130262006-05-19 16:54:48 -04001013 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_GPD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 video->cap._GPD = 1;
1015 }
Patrick Mochel90130262006-05-19 16:54:48 -04001016 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_SPD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 video->cap._SPD = 1;
1018 }
Patrick Mochel90130262006-05-19 16:54:48 -04001019 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_VPO", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 video->cap._VPO = 1;
1021 }
1022}
1023
1024/*
1025 * Check whether the video bus device has required AML method to
1026 * support the desired features
1027 */
1028
Len Brown4be44fc2005-08-05 00:44:28 -04001029static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Len Brown4be44fc2005-08-05 00:44:28 -04001031 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001032 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001035 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001037 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001038 if (!dev)
1039 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001040 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /* Since there is no HID, CID and so on for VGA driver, we have
1043 * to check well known required nodes.
1044 */
1045
Julius Volz98fb8fe2007-02-20 16:38:40 +01001046 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001047 if (video->cap._DOS || video->cap._DOD) {
1048 if (!video->cap._DOS) {
1049 printk(KERN_WARNING FW_BUG
1050 "ACPI(%s) defines _DOD but not _DOS\n",
1051 acpi_device_bid(video->device));
1052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 video->flags.multihead = 1;
1054 status = 0;
1055 }
1056
Julius Volz98fb8fe2007-02-20 16:38:40 +01001057 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001058 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 video->flags.rom = 1;
1060 status = 0;
1061 }
1062
Julius Volz98fb8fe2007-02-20 16:38:40 +01001063 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001064 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 video->flags.post = 1;
1066 status = 0;
1067 }
1068
Patrick Mocheld550d982006-06-27 00:41:40 -04001069 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
1072/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 Driver Interface
1074 -------------------------------------------------------------------------- */
1075
1076/* device interface */
Rui Zhang82cae992007-01-03 23:40:53 -05001077static struct acpi_video_device_attrib*
1078acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1079{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001080 struct acpi_video_enumerated_device *ids;
1081 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001082
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001083 for (i = 0; i < video->attached_count; i++) {
1084 ids = &video->attached_array[i];
1085 if ((ids->value.int_val & 0xffff) == device_id)
1086 return &ids->value.attrib;
1087 }
1088
Rui Zhang82cae992007-01-03 23:40:53 -05001089 return NULL;
1090}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001093acpi_video_get_device_type(struct acpi_video_bus *video,
1094 unsigned long device_id)
1095{
1096 struct acpi_video_enumerated_device *ids;
1097 int i;
1098
1099 for (i = 0; i < video->attached_count; i++) {
1100 ids = &video->attached_array[i];
1101 if ((ids->value.int_val & 0xffff) == device_id)
1102 return ids->value.int_val;
1103 }
1104
1105 return 0;
1106}
1107
1108static int
Len Brown4be44fc2005-08-05 00:44:28 -04001109acpi_video_bus_get_one_device(struct acpi_device *device,
1110 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001112 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001113 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001114 struct acpi_video_device *data;
Rui Zhang82cae992007-01-03 23:40:53 -05001115 struct acpi_video_device_attrib* attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Len Brown4be44fc2005-08-05 00:44:28 -04001117 status =
1118 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001119 /* Some device omits _ADR, we skip them instead of fail */
1120 if (ACPI_FAILURE(status))
1121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Aaron Lu91e13aa2013-04-25 02:47:49 +00001123 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1124 if (!data)
1125 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Aaron Lu91e13aa2013-04-25 02:47:49 +00001127 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1128 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1129 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Aaron Lu91e13aa2013-04-25 02:47:49 +00001131 data->device_id = device_id;
1132 data->video = video;
1133 data->dev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Aaron Lu91e13aa2013-04-25 02:47:49 +00001135 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001136
Aaron Lu91e13aa2013-04-25 02:47:49 +00001137 if((attribute != NULL) && attribute->device_id_scheme) {
1138 switch (attribute->display_type) {
1139 case ACPI_VIDEO_DISPLAY_CRT:
1140 data->flags.crt = 1;
1141 break;
1142 case ACPI_VIDEO_DISPLAY_TV:
1143 data->flags.tvout = 1;
1144 break;
1145 case ACPI_VIDEO_DISPLAY_DVI:
1146 data->flags.dvi = 1;
1147 break;
1148 case ACPI_VIDEO_DISPLAY_LCD:
1149 data->flags.lcd = 1;
1150 break;
1151 default:
1152 data->flags.unknown = 1;
1153 break;
1154 }
1155 if(attribute->bios_can_detect)
1156 data->flags.bios = 1;
1157 } else {
1158 /* Check for legacy IDs */
1159 device_type = acpi_video_get_device_type(video, device_id);
1160 /* Ignore bits 16 and 18-20 */
1161 switch (device_type & 0xffe2ffff) {
Matthew Garrette92a7162010-01-12 14:17:03 -05001162 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1163 data->flags.crt = 1;
1164 break;
1165 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1166 data->flags.lcd = 1;
1167 break;
1168 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1169 data->flags.tvout = 1;
1170 break;
1171 default:
1172 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175
Aaron Lu91e13aa2013-04-25 02:47:49 +00001176 acpi_video_device_bind(video, data);
1177 acpi_video_device_find_cap(data);
1178
1179 status = acpi_install_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
1180 acpi_video_device_notify, data);
1181 if (ACPI_FAILURE(status))
1182 dev_err(&device->dev, "Error installing notify handler\n");
1183 else
1184 data->flags.notify = 1;
1185
1186 mutex_lock(&video->device_list_lock);
1187 list_add_tail(&data->entry, &video->video_device_list);
1188 mutex_unlock(&video->device_list_lock);
1189
1190 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
1193/*
1194 * Arg:
1195 * video : video bus device
1196 *
1197 * Return:
1198 * none
1199 *
1200 * Enumerate the video device list of the video bus,
1201 * bind the ids with the corresponding video devices
1202 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Len Brown4be44fc2005-08-05 00:44:28 -04001205static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001207 struct acpi_video_device *dev;
1208
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001209 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001210
1211 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001212 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001213
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001214 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217/*
1218 * Arg:
1219 * video : video bus device
1220 * device : video output device under the video
1221 * bus
1222 *
1223 * Return:
1224 * none
1225 *
1226 * Bind the ids with the corresponding video devices
1227 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001228 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230static void
Len Brown4be44fc2005-08-05 00:44:28 -04001231acpi_video_device_bind(struct acpi_video_bus *video,
1232 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001234 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001235 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001237 for (i = 0; i < video->attached_count; i++) {
1238 ids = &video->attached_array[i];
1239 if (device->device_id == (ids->value.int_val & 0xffff)) {
1240 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1242 }
1243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246/*
1247 * Arg:
1248 * video : video bus device
1249 *
1250 * Return:
1251 * < 0 : error
1252 *
1253 * Call _DOD to enumerate all devices attached to display adapter
1254 *
Len Brown4be44fc2005-08-05 00:44:28 -04001255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1258{
Len Brown4be44fc2005-08-05 00:44:28 -04001259 int status;
1260 int count;
1261 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001262 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001263 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1264 union acpi_object *dod = NULL;
1265 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Patrick Mochel90130262006-05-19 16:54:48 -04001267 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001269 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001270 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001273 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001275 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 status = -EFAULT;
1277 goto out;
1278 }
1279
1280 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001281 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001283 active_list = kcalloc(1 + dod->package.count,
1284 sizeof(struct acpi_video_enumerated_device),
1285 GFP_KERNEL);
1286 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 status = -ENOMEM;
1288 goto out;
1289 }
1290
1291 count = 0;
1292 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001293 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001296 printk(KERN_ERR PREFIX
1297 "Invalid _DOD data in element %d\n", i);
1298 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001300
1301 active_list[count].value.int_val = obj->integer.value;
1302 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001303 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1304 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 count++;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Jesper Juhl6044ec82005-11-07 01:01:32 -08001308 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001309
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001310 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001312
1313 out:
Len Brown02438d82006-06-30 03:19:10 -04001314 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001315 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
Len Brown4be44fc2005-08-05 00:44:28 -04001318static int
1319acpi_video_get_next_level(struct acpi_video_device *device,
1320 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001322 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001323 max = max_below = 0;
1324 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001325 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001326 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001327 l = device->brightness->levels[i];
1328 if (abs(l - level_current) < abs(delta)) {
1329 delta = l - level_current;
1330 if (!delta)
1331 break;
1332 }
1333 }
1334 /* Ajust level_current to closest available level */
1335 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001336 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001337 l = device->brightness->levels[i];
1338 if (l < min)
1339 min = l;
1340 if (l > max)
1341 max = l;
1342 if (l < min_above && l > level_current)
1343 min_above = l;
1344 if (l > max_below && l < level_current)
1345 max_below = l;
1346 }
1347
1348 switch (event) {
1349 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1350 return (level_current < max) ? min_above : min;
1351 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1352 return (level_current < max) ? min_above : max;
1353 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1354 return (level_current > min) ? max_below : min;
1355 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1356 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1357 return 0;
1358 default:
1359 return level_current;
1360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Zhang Ruic8890f92009-03-18 16:27:08 +08001363static int
Len Brown4be44fc2005-08-05 00:44:28 -04001364acpi_video_switch_brightness(struct acpi_video_device *device, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001366 unsigned long long level_current, level_next;
Zhang Ruic8890f92009-03-18 16:27:08 +08001367 int result = -EINVAL;
1368
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001369 /* no warning message if acpi_backlight=vendor is used */
1370 if (!acpi_video_backlight_support())
Zhang Rui28c32e92009-07-13 10:33:24 +08001371 return 0;
1372
Julia Jomantaite469778c2008-06-23 22:50:42 +01001373 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001374 goto out;
1375
1376 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001377 &level_current,
1378 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001379 if (result)
1380 goto out;
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001383
Zhang Rui24450c72009-03-18 16:27:10 +08001384 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001385
Matthew Garrett36342742009-07-14 17:06:03 +01001386 if (!result)
1387 backlight_force_update(device->backlight,
1388 BACKLIGHT_UPDATE_HOTKEY);
1389
Zhang Ruic8890f92009-03-18 16:27:08 +08001390out:
1391 if (result)
1392 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
1393
1394 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
Matthew Garrette92a7162010-01-12 14:17:03 -05001397int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1398 void **edid)
1399{
1400 struct acpi_video_bus *video;
1401 struct acpi_video_device *video_device;
1402 union acpi_object *buffer = NULL;
1403 acpi_status status;
1404 int i, length;
1405
1406 if (!device || !acpi_driver_data(device))
1407 return -EINVAL;
1408
1409 video = acpi_driver_data(device);
1410
1411 for (i = 0; i < video->attached_count; i++) {
1412 video_device = video->attached_array[i].bind_info;
1413 length = 256;
1414
1415 if (!video_device)
1416 continue;
1417
Zhang Rui82069552010-12-06 15:04:24 +08001418 if (!video_device->cap._DDC)
1419 continue;
1420
Matthew Garrette92a7162010-01-12 14:17:03 -05001421 if (type) {
1422 switch (type) {
1423 case ACPI_VIDEO_DISPLAY_CRT:
1424 if (!video_device->flags.crt)
1425 continue;
1426 break;
1427 case ACPI_VIDEO_DISPLAY_TV:
1428 if (!video_device->flags.tvout)
1429 continue;
1430 break;
1431 case ACPI_VIDEO_DISPLAY_DVI:
1432 if (!video_device->flags.dvi)
1433 continue;
1434 break;
1435 case ACPI_VIDEO_DISPLAY_LCD:
1436 if (!video_device->flags.lcd)
1437 continue;
1438 break;
1439 }
1440 } else if (video_device->device_id != device_id) {
1441 continue;
1442 }
1443
1444 status = acpi_video_device_EDID(video_device, &buffer, length);
1445
1446 if (ACPI_FAILURE(status) || !buffer ||
1447 buffer->type != ACPI_TYPE_BUFFER) {
1448 length = 128;
1449 status = acpi_video_device_EDID(video_device, &buffer,
1450 length);
1451 if (ACPI_FAILURE(status) || !buffer ||
1452 buffer->type != ACPI_TYPE_BUFFER) {
1453 continue;
1454 }
1455 }
1456
1457 *edid = buffer->buffer.pointer;
1458 return length;
1459 }
1460
1461 return -ENODEV;
1462}
1463EXPORT_SYMBOL(acpi_video_get_edid);
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465static int
Len Brown4be44fc2005-08-05 00:44:28 -04001466acpi_video_bus_get_devices(struct acpi_video_bus *video,
1467 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Igor Murzovfba4e082012-10-13 04:41:25 +04001469 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001470 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Igor Murzovfba4e082012-10-13 04:41:25 +04001472 /*
1473 * There are systems where video module known to work fine regardless
1474 * of broken _DOD and ignoring returned value here doesn't cause
1475 * any issues later.
1476 */
1477 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001479 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
1481 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001482 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001483 dev_err(&dev->dev, "Can't attach device\n");
1484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001487 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
Len Brown4be44fc2005-08-05 00:44:28 -04001490static int acpi_video_bus_put_one_device(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Karol Kozimor031ec772005-07-30 04:18:00 -04001492 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 if (!device || !device->video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001495 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Aaron Lu91e13aa2013-04-25 02:47:49 +00001497 if (device->flags.notify) {
1498 status = acpi_remove_notify_handler(device->dev->handle,
1499 ACPI_DEVICE_NOTIFY, acpi_video_device_notify);
1500 if (ACPI_FAILURE(status))
1501 dev_err(&device->dev->dev,
1502 "Can't remove video notify handler\n");
Andi Kleencfa806f2010-07-20 15:18:36 -07001503 }
Aaron Lu91e13aa2013-04-25 02:47:49 +00001504
Keith Packarde29b3ee2009-08-06 15:57:54 -07001505 if (device->backlight) {
Keith Packarde29b3ee2009-08-06 15:57:54 -07001506 backlight_device_unregister(device->backlight);
1507 device->backlight = NULL;
1508 }
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001509 if (device->cooling_dev) {
Zhang Rui702ed512008-01-17 15:51:22 +08001510 sysfs_remove_link(&device->dev->dev.kobj,
1511 "thermal_cooling");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001512 sysfs_remove_link(&device->cooling_dev->device.kobj,
Zhang Rui702ed512008-01-17 15:51:22 +08001513 "device");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001514 thermal_cooling_device_unregister(device->cooling_dev);
1515 device->cooling_dev = NULL;
Zhang Rui702ed512008-01-17 15:51:22 +08001516 }
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001517
Patrick Mocheld550d982006-06-27 00:41:40 -04001518 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
Len Brown4be44fc2005-08-05 00:44:28 -04001521static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
Len Brown4be44fc2005-08-05 00:44:28 -04001523 int status;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001524 struct acpi_video_device *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001526 mutex_lock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001528 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001530 status = acpi_video_bus_put_one_device(dev);
Len Brown4be44fc2005-08-05 00:44:28 -04001531 if (ACPI_FAILURE(status))
1532 printk(KERN_WARNING PREFIX
1533 "hhuuhhuu bug in acpi video driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001535 if (dev->brightness) {
1536 kfree(dev->brightness->levels);
1537 kfree(dev->brightness);
1538 }
1539 list_del(&dev->entry);
1540 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001543 mutex_unlock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001544
Patrick Mocheld550d982006-06-27 00:41:40 -04001545 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
1548/* acpi_video interface */
1549
Aaron Luefaa14c2013-07-16 13:08:05 +08001550/*
1551 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1552 * preform any automatic brightness change on receiving a notification.
1553 */
Len Brown4be44fc2005-08-05 00:44:28 -04001554static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555{
Aaron Luefaa14c2013-07-16 13:08:05 +08001556 return acpi_video_bus_DOS(video, 0,
1557 acpi_video_backlight_quirks() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Len Brown4be44fc2005-08-05 00:44:28 -04001560static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
Aaron Luefaa14c2013-07-16 13:08:05 +08001562 return acpi_video_bus_DOS(video, 0,
1563 acpi_video_backlight_quirks() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
Bjorn Helgaas70155582009-04-07 15:37:11 +00001566static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001568 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001569 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001570 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001573 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Luming Yue9dab192007-08-20 18:23:53 +08001575 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001578 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 * most likely via hotkey. */
Len Brown14e04fb2007-08-23 15:20:26 -04001580 acpi_bus_generate_proc_event(device, event, 0);
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001581 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 break;
1583
Julius Volz98fb8fe2007-02-20 16:38:40 +01001584 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 * connector. */
1586 acpi_video_device_enumerate(video);
1587 acpi_video_device_rebind(video);
Len Brown14e04fb2007-08-23 15:20:26 -04001588 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001589 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 break;
1591
Len Brown4be44fc2005-08-05 00:44:28 -04001592 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Len Brown25c87f72007-08-25 01:44:01 -04001593 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001594 keycode = KEY_SWITCHVIDEOMODE;
1595 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001596 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Len Brown25c87f72007-08-25 01:44:01 -04001597 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001598 keycode = KEY_VIDEO_NEXT;
1599 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001600 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Len Brown14e04fb2007-08-23 15:20:26 -04001601 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001602 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604
1605 default:
1606 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001607 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 break;
1609 }
1610
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001611 if (acpi_notifier_call_chain(device, event, 0))
1612 /* Something vetoed the keypress. */
1613 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001614
1615 if (keycode) {
1616 input_report_key(input, keycode, 1);
1617 input_sync(input);
1618 input_report_key(input, keycode, 0);
1619 input_sync(input);
1620 }
Luming Yue9dab192007-08-20 18:23:53 +08001621
Patrick Mocheld550d982006-06-27 00:41:40 -04001622 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
Len Brown4be44fc2005-08-05 00:44:28 -04001625static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001627 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001628 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001629 struct acpi_video_bus *bus;
1630 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001631 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001634 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001636 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001637 bus = video_device->video;
1638 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001641 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001642 if (brightness_switch_enabled)
1643 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001644 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001645 keycode = KEY_BRIGHTNESS_CYCLE;
1646 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001647 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001648 if (brightness_switch_enabled)
1649 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001650 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001651 keycode = KEY_BRIGHTNESSUP;
1652 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001653 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001654 if (brightness_switch_enabled)
1655 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001656 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001657 keycode = KEY_BRIGHTNESSDOWN;
1658 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001659 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001660 if (brightness_switch_enabled)
1661 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001662 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001663 keycode = KEY_BRIGHTNESS_ZERO;
1664 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001665 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Zhang Rui8a681a42008-01-25 14:47:49 +08001666 if (brightness_switch_enabled)
1667 acpi_video_switch_brightness(video_device, event);
Len Brown14e04fb2007-08-23 15:20:26 -04001668 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001669 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 break;
1671 default:
1672 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001673 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 break;
1675 }
Luming Yue9dab192007-08-20 18:23:53 +08001676
Zhang Rui7761f632008-01-25 14:48:12 +08001677 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001678
1679 if (keycode) {
1680 input_report_key(input, keycode, 1);
1681 input_sync(input);
1682 input_report_key(input, keycode, 0);
1683 input_sync(input);
1684 }
Luming Yue9dab192007-08-20 18:23:53 +08001685
Patrick Mocheld550d982006-06-27 00:41:40 -04001686 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001689static int acpi_video_resume(struct notifier_block *nb,
1690 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001691{
1692 struct acpi_video_bus *video;
1693 struct acpi_video_device *video_device;
1694 int i;
1695
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001696 switch (val) {
1697 case PM_HIBERNATION_PREPARE:
1698 case PM_SUSPEND_PREPARE:
1699 case PM_RESTORE_PREPARE:
1700 return NOTIFY_DONE;
1701 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001702
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001703 video = container_of(nb, struct acpi_video_bus, pm_nb);
1704
1705 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001706
1707 for (i = 0; i < video->attached_count; i++) {
1708 video_device = video->attached_array[i].bind_info;
1709 if (video_device && video_device->backlight)
1710 acpi_video_set_brightness(video_device->backlight);
1711 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001712
1713 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001714}
1715
Zhang Ruic504f8c2009-12-30 15:59:23 +08001716static acpi_status
1717acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1718 void **return_value)
1719{
1720 struct acpi_device *device = context;
1721 struct acpi_device *sibling;
1722 int result;
1723
1724 if (handle == device->handle)
1725 return AE_CTRL_TERMINATE;
1726
1727 result = acpi_bus_get_device(handle, &sibling);
1728 if (result)
1729 return AE_OK;
1730
1731 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1732 return AE_ALREADY_EXISTS;
1733
1734 return AE_OK;
1735}
1736
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001737static int instance;
1738
Len Brown4be44fc2005-08-05 00:44:28 -04001739static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001741 struct acpi_video_bus *video;
Luming Yue9dab192007-08-20 18:23:53 +08001742 struct input_dev *input;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001743 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001744 acpi_status status;
1745
1746 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1747 device->parent->handle, 1,
1748 acpi_video_bus_match, NULL,
1749 device, NULL);
1750 if (status == AE_ALREADY_EXISTS) {
1751 printk(KERN_WARNING FW_BUG
1752 "Duplicate ACPI video bus devices for the"
1753 " same VGA controller, please try module "
1754 "parameter \"video.allow_duplicates=1\""
1755 "if the current driver doesn't work.\n");
1756 if (!allow_duplicates)
1757 return -ENODEV;
1758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Burman Yan36bcbec2006-12-19 12:56:11 -08001760 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001762 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Zhang Ruie6d9da12007-08-25 02:23:31 -04001764 /* a hack to fix the duplicate name "VID" problem on T61 */
1765 if (!strcmp(device->pnp.bus_id, "VID")) {
1766 if (instance)
1767 device->pnp.bus_id[3] = '0' + instance;
1768 instance ++;
1769 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001770 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1771 if (!strcmp(device->pnp.bus_id, "VGA")) {
1772 if (instance)
1773 device->pnp.bus_id[3] = '0' + instance;
1774 instance++;
1775 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001776
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001777 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1779 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001780 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001783 error = acpi_video_bus_check(video);
1784 if (error)
1785 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001787 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 INIT_LIST_HEAD(&video->video_device_list);
1789
Igor Murzovea9f8852012-03-30 21:32:08 +04001790 error = acpi_video_bus_get_devices(video, device);
1791 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001792 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Luming Yue9dab192007-08-20 18:23:53 +08001794 video->input = input = input_allocate_device();
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001795 if (!input) {
1796 error = -ENOMEM;
Igor Murzovb60e7f62012-03-30 21:32:09 +04001797 goto err_put_video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001798 }
Luming Yue9dab192007-08-20 18:23:53 +08001799
Igor Murzovb60e7f62012-03-30 21:32:09 +04001800 error = acpi_video_bus_start_devices(video);
1801 if (error)
1802 goto err_free_input_dev;
1803
Luming Yue9dab192007-08-20 18:23:53 +08001804 snprintf(video->phys, sizeof(video->phys),
1805 "%s/video/input0", acpi_device_hid(video->device));
1806
1807 input->name = acpi_device_name(video->device);
1808 input->phys = video->phys;
1809 input->id.bustype = BUS_HOST;
1810 input->id.product = 0x06;
Dmitry Torokhov91c05c62007-11-05 11:43:29 -05001811 input->dev.parent = &device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001812 input->evbit[0] = BIT(EV_KEY);
1813 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1814 set_bit(KEY_VIDEO_NEXT, input->keybit);
1815 set_bit(KEY_VIDEO_PREV, input->keybit);
1816 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1817 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1818 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1819 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1820 set_bit(KEY_DISPLAY_OFF, input->keybit);
Luming Yue9dab192007-08-20 18:23:53 +08001821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001823 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
1824 video->flags.multihead ? "yes" : "no",
1825 video->flags.rom ? "yes" : "no",
1826 video->flags.post ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001828 video->pm_nb.notifier_call = acpi_video_resume;
1829 video->pm_nb.priority = 0;
Igor Murzovea9f8852012-03-30 21:32:08 +04001830 error = register_pm_notifier(&video->pm_nb);
1831 if (error)
Dan Carpenter301f33f2012-04-04 14:19:16 +03001832 goto err_stop_video;
1833
1834 error = input_register_device(input);
1835 if (error)
1836 goto err_unregister_pm_notifier;
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001837
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Dan Carpenter301f33f2012-04-04 14:19:16 +03001840 err_unregister_pm_notifier:
1841 unregister_pm_notifier(&video->pm_nb);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001842 err_stop_video:
1843 acpi_video_bus_stop_devices(video);
Igor Murzovb60e7f62012-03-30 21:32:09 +04001844 err_free_input_dev:
1845 input_free_device(input);
Igor Murzovea9f8852012-03-30 21:32:08 +04001846 err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001847 acpi_video_bus_put_devices(video);
1848 kfree(video->attached_array);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001849 err_free_video:
1850 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001851 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001852
1853 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001856static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Len Brown4be44fc2005-08-05 00:44:28 -04001858 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001862 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001864 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001866 unregister_pm_notifier(&video->pm_nb);
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 acpi_video_bus_stop_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Luming Yue9dab192007-08-20 18:23:53 +08001871 input_unregister_device(video->input);
Jesper Juhl6044ec82005-11-07 01:01:32 -08001872 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 kfree(video);
1874
Patrick Mocheld550d982006-06-27 00:41:40 -04001875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
Alan Coxc6996bd2012-04-25 14:33:48 +01001878static int __init is_i740(struct pci_dev *dev)
1879{
1880 if (dev->device == 0x00D1)
1881 return 1;
1882 if (dev->device == 0x7000)
1883 return 1;
1884 return 0;
1885}
1886
Matthew Garrett74a365b2009-03-19 21:35:39 +00001887static int __init intel_opregion_present(void)
1888{
Alan Coxc6996bd2012-04-25 14:33:48 +01001889 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001890 struct pci_dev *dev = NULL;
1891 u32 address;
1892
1893 for_each_pci_dev(dev) {
1894 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1895 continue;
1896 if (dev->vendor != PCI_VENDOR_ID_INTEL)
1897 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001898 /* We don't want to poke around undefined i740 registers */
1899 if (is_i740(dev))
1900 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001901 pci_read_config_dword(dev, 0xfc, &address);
1902 if (!address)
1903 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001904 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001905 }
Alan Coxc6996bd2012-04-25 14:33:48 +01001906 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001907}
1908
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001909int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001911 int result = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08001912 if (register_count) {
1913 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001914 * if the function of acpi_video_register is already called,
1915 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08001916 */
1917 return 0;
1918 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 result = acpi_bus_register_driver(&acpi_video_bus);
Zhang Rui39fe3942010-10-08 13:55:11 +08001921 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -04001922 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Zhao Yakui86e437f2009-06-16 11:23:13 +08001924 /*
1925 * When the acpi_video_bus is loaded successfully, increase
1926 * the counter reference.
1927 */
1928 register_count = 1;
1929
Patrick Mocheld550d982006-06-27 00:41:40 -04001930 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001932EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00001933
Zhao Yakui86e437f2009-06-16 11:23:13 +08001934void acpi_video_unregister(void)
1935{
1936 if (!register_count) {
1937 /*
1938 * If the acpi video bus is already unloaded, don't
1939 * unload it again and return directly.
1940 */
1941 return;
1942 }
1943 acpi_bus_unregister_driver(&acpi_video_bus);
1944
Zhao Yakui86e437f2009-06-16 11:23:13 +08001945 register_count = 0;
1946
1947 return;
1948}
1949EXPORT_SYMBOL(acpi_video_unregister);
1950
Matthew Garrett74a365b2009-03-19 21:35:39 +00001951/*
1952 * This is kind of nasty. Hardware using Intel chipsets may require
1953 * the video opregion code to be run first in order to initialise
1954 * state before any ACPI video calls are made. To handle this we defer
1955 * registration of the video class until the opregion code has run.
1956 */
1957
1958static int __init acpi_video_init(void)
1959{
Zhang Rui45cb50e2009-04-24 12:13:18 -04001960 dmi_check_system(video_dmi_table);
1961
Matthew Garrett74a365b2009-03-19 21:35:39 +00001962 if (intel_opregion_present())
1963 return 0;
1964
1965 return acpi_video_register();
1966}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Zhao Yakui86e437f2009-06-16 11:23:13 +08001968static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
Zhao Yakui86e437f2009-06-16 11:23:13 +08001970 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Patrick Mocheld550d982006-06-27 00:41:40 -04001972 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975module_init(acpi_video_init);
1976module_exit(acpi_video_exit);