blob: 3270d3c8ba4ed239d25b0507882fa50df3abb5e0 [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 */
Felipe Contrerasb3b301c2013-08-03 23:00:25 +0200692 test_level = current_level == max_level ? br->levels[3] : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200693
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
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +0200911 if (acpi_video_backlight_support()) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500912 struct backlight_properties props;
Matthew Garrett9661e922011-03-22 16:30:25 -0700913 struct pci_dev *pdev;
914 acpi_handle acpi_parent;
915 struct device *parent = NULL;
Zhang Rui702ed512008-01-17 15:51:22 +0800916 int result;
Yu Luming2f3d0002006-11-11 02:40:34 +0800917 static int count = 0;
918 char *name;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800919
Rafael J. Wysocki168cf0e2013-08-22 23:31:38 +0200920 result = acpi_video_init_brightness(device);
921 if (result)
922 return;
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
Yu Luming2f3d0002006-11-11 02:40:34 +0800982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
985/*
986 * Arg:
987 * device : video output device (VGA)
988 *
989 * Return Value:
990 * None
991 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100992 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 */
994
Len Brown4be44fc2005-08-05 00:44:28 -0400995static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Len Brown4be44fc2005-08-05 00:44:28 -0400997 acpi_handle h_dummy1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Patrick Mochel90130262006-05-19 16:54:48 -0400999 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOS", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 video->cap._DOS = 1;
1001 }
Patrick Mochel90130262006-05-19 16:54:48 -04001002 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_DOD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 video->cap._DOD = 1;
1004 }
Patrick Mochel90130262006-05-19 16:54:48 -04001005 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_ROM", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 video->cap._ROM = 1;
1007 }
Patrick Mochel90130262006-05-19 16:54:48 -04001008 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_GPD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 video->cap._GPD = 1;
1010 }
Patrick Mochel90130262006-05-19 16:54:48 -04001011 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_SPD", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 video->cap._SPD = 1;
1013 }
Patrick Mochel90130262006-05-19 16:54:48 -04001014 if (ACPI_SUCCESS(acpi_get_handle(video->device->handle, "_VPO", &h_dummy1))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 video->cap._VPO = 1;
1016 }
1017}
1018
1019/*
1020 * Check whether the video bus device has required AML method to
1021 * support the desired features
1022 */
1023
Len Brown4be44fc2005-08-05 00:44:28 -04001024static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Len Brown4be44fc2005-08-05 00:44:28 -04001026 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001027 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001030 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001032 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001033 if (!dev)
1034 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001035 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /* Since there is no HID, CID and so on for VGA driver, we have
1038 * to check well known required nodes.
1039 */
1040
Julius Volz98fb8fe2007-02-20 16:38:40 +01001041 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001042 if (video->cap._DOS || video->cap._DOD) {
1043 if (!video->cap._DOS) {
1044 printk(KERN_WARNING FW_BUG
1045 "ACPI(%s) defines _DOD but not _DOS\n",
1046 acpi_device_bid(video->device));
1047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 video->flags.multihead = 1;
1049 status = 0;
1050 }
1051
Julius Volz98fb8fe2007-02-20 16:38:40 +01001052 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001053 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 video->flags.rom = 1;
1055 status = 0;
1056 }
1057
Julius Volz98fb8fe2007-02-20 16:38:40 +01001058 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001059 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 video->flags.post = 1;
1061 status = 0;
1062 }
1063
Patrick Mocheld550d982006-06-27 00:41:40 -04001064 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
1067/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 Driver Interface
1069 -------------------------------------------------------------------------- */
1070
1071/* device interface */
Rui Zhang82cae992007-01-03 23:40:53 -05001072static struct acpi_video_device_attrib*
1073acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1074{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001075 struct acpi_video_enumerated_device *ids;
1076 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001077
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001078 for (i = 0; i < video->attached_count; i++) {
1079 ids = &video->attached_array[i];
1080 if ((ids->value.int_val & 0xffff) == device_id)
1081 return &ids->value.attrib;
1082 }
1083
Rui Zhang82cae992007-01-03 23:40:53 -05001084 return NULL;
1085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001088acpi_video_get_device_type(struct acpi_video_bus *video,
1089 unsigned long device_id)
1090{
1091 struct acpi_video_enumerated_device *ids;
1092 int i;
1093
1094 for (i = 0; i < video->attached_count; i++) {
1095 ids = &video->attached_array[i];
1096 if ((ids->value.int_val & 0xffff) == device_id)
1097 return ids->value.int_val;
1098 }
1099
1100 return 0;
1101}
1102
1103static int
Len Brown4be44fc2005-08-05 00:44:28 -04001104acpi_video_bus_get_one_device(struct acpi_device *device,
1105 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001107 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001108 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001109 struct acpi_video_device *data;
Rui Zhang82cae992007-01-03 23:40:53 -05001110 struct acpi_video_device_attrib* attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Len Brown4be44fc2005-08-05 00:44:28 -04001112 status =
1113 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001114 /* Some device omits _ADR, we skip them instead of fail */
1115 if (ACPI_FAILURE(status))
1116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Aaron Lu91e13aa2013-04-25 02:47:49 +00001118 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1119 if (!data)
1120 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Aaron Lu91e13aa2013-04-25 02:47:49 +00001122 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1123 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1124 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Aaron Lu91e13aa2013-04-25 02:47:49 +00001126 data->device_id = device_id;
1127 data->video = video;
1128 data->dev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Aaron Lu91e13aa2013-04-25 02:47:49 +00001130 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001131
Aaron Lu91e13aa2013-04-25 02:47:49 +00001132 if((attribute != NULL) && attribute->device_id_scheme) {
1133 switch (attribute->display_type) {
1134 case ACPI_VIDEO_DISPLAY_CRT:
1135 data->flags.crt = 1;
1136 break;
1137 case ACPI_VIDEO_DISPLAY_TV:
1138 data->flags.tvout = 1;
1139 break;
1140 case ACPI_VIDEO_DISPLAY_DVI:
1141 data->flags.dvi = 1;
1142 break;
1143 case ACPI_VIDEO_DISPLAY_LCD:
1144 data->flags.lcd = 1;
1145 break;
1146 default:
1147 data->flags.unknown = 1;
1148 break;
1149 }
1150 if(attribute->bios_can_detect)
1151 data->flags.bios = 1;
1152 } else {
1153 /* Check for legacy IDs */
1154 device_type = acpi_video_get_device_type(video, device_id);
1155 /* Ignore bits 16 and 18-20 */
1156 switch (device_type & 0xffe2ffff) {
Matthew Garrette92a7162010-01-12 14:17:03 -05001157 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1158 data->flags.crt = 1;
1159 break;
1160 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1161 data->flags.lcd = 1;
1162 break;
1163 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1164 data->flags.tvout = 1;
1165 break;
1166 default:
1167 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
Aaron Lu91e13aa2013-04-25 02:47:49 +00001171 acpi_video_device_bind(video, data);
1172 acpi_video_device_find_cap(data);
1173
1174 status = acpi_install_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
1175 acpi_video_device_notify, data);
1176 if (ACPI_FAILURE(status))
1177 dev_err(&device->dev, "Error installing notify handler\n");
1178 else
1179 data->flags.notify = 1;
1180
1181 mutex_lock(&video->device_list_lock);
1182 list_add_tail(&data->entry, &video->video_device_list);
1183 mutex_unlock(&video->device_list_lock);
1184
1185 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
1188/*
1189 * Arg:
1190 * video : video bus device
1191 *
1192 * Return:
1193 * none
1194 *
1195 * Enumerate the video device list of the video bus,
1196 * bind the ids with the corresponding video devices
1197 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Len Brown4be44fc2005-08-05 00:44:28 -04001200static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001202 struct acpi_video_device *dev;
1203
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001204 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001205
1206 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001207 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001208
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001209 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212/*
1213 * Arg:
1214 * video : video bus device
1215 * device : video output device under the video
1216 * bus
1217 *
1218 * Return:
1219 * none
1220 *
1221 * Bind the ids with the corresponding video devices
1222 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225static void
Len Brown4be44fc2005-08-05 00:44:28 -04001226acpi_video_device_bind(struct acpi_video_bus *video,
1227 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001229 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001230 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001232 for (i = 0; i < video->attached_count; i++) {
1233 ids = &video->attached_array[i];
1234 if (device->device_id == (ids->value.int_val & 0xffff)) {
1235 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1237 }
1238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241/*
1242 * Arg:
1243 * video : video bus device
1244 *
1245 * Return:
1246 * < 0 : error
1247 *
1248 * Call _DOD to enumerate all devices attached to display adapter
1249 *
Len Brown4be44fc2005-08-05 00:44:28 -04001250 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1253{
Len Brown4be44fc2005-08-05 00:44:28 -04001254 int status;
1255 int count;
1256 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001257 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001258 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1259 union acpi_object *dod = NULL;
1260 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Patrick Mochel90130262006-05-19 16:54:48 -04001262 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001264 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001265 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001268 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001270 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 status = -EFAULT;
1272 goto out;
1273 }
1274
1275 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001276 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001278 active_list = kcalloc(1 + dod->package.count,
1279 sizeof(struct acpi_video_enumerated_device),
1280 GFP_KERNEL);
1281 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 status = -ENOMEM;
1283 goto out;
1284 }
1285
1286 count = 0;
1287 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001288 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001291 printk(KERN_ERR PREFIX
1292 "Invalid _DOD data in element %d\n", i);
1293 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001295
1296 active_list[count].value.int_val = obj->integer.value;
1297 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001298 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1299 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 count++;
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Jesper Juhl6044ec82005-11-07 01:01:32 -08001303 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001304
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001305 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001307
1308 out:
Len Brown02438d82006-06-30 03:19:10 -04001309 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001310 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
Len Brown4be44fc2005-08-05 00:44:28 -04001313static int
1314acpi_video_get_next_level(struct acpi_video_device *device,
1315 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001317 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001318 max = max_below = 0;
1319 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001320 /* Find closest level to level_current */
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001321 for (i = 2; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001322 l = device->brightness->levels[i];
1323 if (abs(l - level_current) < abs(delta)) {
1324 delta = l - level_current;
1325 if (!delta)
1326 break;
1327 }
1328 }
1329 /* Ajust level_current to closest available level */
1330 level_current += delta;
Zhao Yakui0a3db1c2009-02-02 11:33:41 +08001331 for (i = 2; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001332 l = device->brightness->levels[i];
1333 if (l < min)
1334 min = l;
1335 if (l > max)
1336 max = l;
1337 if (l < min_above && l > level_current)
1338 min_above = l;
1339 if (l > max_below && l < level_current)
1340 max_below = l;
1341 }
1342
1343 switch (event) {
1344 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1345 return (level_current < max) ? min_above : min;
1346 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1347 return (level_current < max) ? min_above : max;
1348 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1349 return (level_current > min) ? max_below : min;
1350 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1351 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1352 return 0;
1353 default:
1354 return level_current;
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
Zhang Ruic8890f92009-03-18 16:27:08 +08001358static int
Len Brown4be44fc2005-08-05 00:44:28 -04001359acpi_video_switch_brightness(struct acpi_video_device *device, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001361 unsigned long long level_current, level_next;
Zhang Ruic8890f92009-03-18 16:27:08 +08001362 int result = -EINVAL;
1363
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001364 /* no warning message if acpi_backlight=vendor is used */
1365 if (!acpi_video_backlight_support())
Zhang Rui28c32e92009-07-13 10:33:24 +08001366 return 0;
1367
Julia Jomantaite469778c2008-06-23 22:50:42 +01001368 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001369 goto out;
1370
1371 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001372 &level_current,
1373 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001374 if (result)
1375 goto out;
1376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001378
Zhang Rui24450c72009-03-18 16:27:10 +08001379 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001380
Matthew Garrett36342742009-07-14 17:06:03 +01001381 if (!result)
1382 backlight_force_update(device->backlight,
1383 BACKLIGHT_UPDATE_HOTKEY);
1384
Zhang Ruic8890f92009-03-18 16:27:08 +08001385out:
1386 if (result)
1387 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
1388
1389 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Matthew Garrette92a7162010-01-12 14:17:03 -05001392int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1393 void **edid)
1394{
1395 struct acpi_video_bus *video;
1396 struct acpi_video_device *video_device;
1397 union acpi_object *buffer = NULL;
1398 acpi_status status;
1399 int i, length;
1400
1401 if (!device || !acpi_driver_data(device))
1402 return -EINVAL;
1403
1404 video = acpi_driver_data(device);
1405
1406 for (i = 0; i < video->attached_count; i++) {
1407 video_device = video->attached_array[i].bind_info;
1408 length = 256;
1409
1410 if (!video_device)
1411 continue;
1412
Zhang Rui82069552010-12-06 15:04:24 +08001413 if (!video_device->cap._DDC)
1414 continue;
1415
Matthew Garrette92a7162010-01-12 14:17:03 -05001416 if (type) {
1417 switch (type) {
1418 case ACPI_VIDEO_DISPLAY_CRT:
1419 if (!video_device->flags.crt)
1420 continue;
1421 break;
1422 case ACPI_VIDEO_DISPLAY_TV:
1423 if (!video_device->flags.tvout)
1424 continue;
1425 break;
1426 case ACPI_VIDEO_DISPLAY_DVI:
1427 if (!video_device->flags.dvi)
1428 continue;
1429 break;
1430 case ACPI_VIDEO_DISPLAY_LCD:
1431 if (!video_device->flags.lcd)
1432 continue;
1433 break;
1434 }
1435 } else if (video_device->device_id != device_id) {
1436 continue;
1437 }
1438
1439 status = acpi_video_device_EDID(video_device, &buffer, length);
1440
1441 if (ACPI_FAILURE(status) || !buffer ||
1442 buffer->type != ACPI_TYPE_BUFFER) {
1443 length = 128;
1444 status = acpi_video_device_EDID(video_device, &buffer,
1445 length);
1446 if (ACPI_FAILURE(status) || !buffer ||
1447 buffer->type != ACPI_TYPE_BUFFER) {
1448 continue;
1449 }
1450 }
1451
1452 *edid = buffer->buffer.pointer;
1453 return length;
1454 }
1455
1456 return -ENODEV;
1457}
1458EXPORT_SYMBOL(acpi_video_get_edid);
1459
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460static int
Len Brown4be44fc2005-08-05 00:44:28 -04001461acpi_video_bus_get_devices(struct acpi_video_bus *video,
1462 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Igor Murzovfba4e082012-10-13 04:41:25 +04001464 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001465 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Igor Murzovfba4e082012-10-13 04:41:25 +04001467 /*
1468 * There are systems where video module known to work fine regardless
1469 * of broken _DOD and ignoring returned value here doesn't cause
1470 * any issues later.
1471 */
1472 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001474 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001477 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001478 dev_err(&dev->dev, "Can't attach device\n");
1479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001482 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
Len Brown4be44fc2005-08-05 00:44:28 -04001485static int acpi_video_bus_put_one_device(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Karol Kozimor031ec772005-07-30 04:18:00 -04001487 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489 if (!device || !device->video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001490 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Aaron Lu91e13aa2013-04-25 02:47:49 +00001492 if (device->flags.notify) {
1493 status = acpi_remove_notify_handler(device->dev->handle,
1494 ACPI_DEVICE_NOTIFY, acpi_video_device_notify);
1495 if (ACPI_FAILURE(status))
1496 dev_err(&device->dev->dev,
1497 "Can't remove video notify handler\n");
Andi Kleencfa806f2010-07-20 15:18:36 -07001498 }
Aaron Lu91e13aa2013-04-25 02:47:49 +00001499
Keith Packarde29b3ee2009-08-06 15:57:54 -07001500 if (device->backlight) {
Keith Packarde29b3ee2009-08-06 15:57:54 -07001501 backlight_device_unregister(device->backlight);
1502 device->backlight = NULL;
1503 }
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001504 if (device->cooling_dev) {
Zhang Rui702ed512008-01-17 15:51:22 +08001505 sysfs_remove_link(&device->dev->dev.kobj,
1506 "thermal_cooling");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001507 sysfs_remove_link(&device->cooling_dev->device.kobj,
Zhang Rui702ed512008-01-17 15:51:22 +08001508 "device");
Dmitry Torokhov4a703a82009-08-29 23:03:16 -04001509 thermal_cooling_device_unregister(device->cooling_dev);
1510 device->cooling_dev = NULL;
Zhang Rui702ed512008-01-17 15:51:22 +08001511 }
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001512
Patrick Mocheld550d982006-06-27 00:41:40 -04001513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Len Brown4be44fc2005-08-05 00:44:28 -04001516static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
Len Brown4be44fc2005-08-05 00:44:28 -04001518 int status;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001519 struct acpi_video_device *dev, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001521 mutex_lock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001523 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001525 status = acpi_video_bus_put_one_device(dev);
Len Brown4be44fc2005-08-05 00:44:28 -04001526 if (ACPI_FAILURE(status))
1527 printk(KERN_WARNING PREFIX
1528 "hhuuhhuu bug in acpi video driver.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001530 if (dev->brightness) {
1531 kfree(dev->brightness->levels);
1532 kfree(dev->brightness);
1533 }
1534 list_del(&dev->entry);
1535 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001538 mutex_unlock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001539
Patrick Mocheld550d982006-06-27 00:41:40 -04001540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
1543/* acpi_video interface */
1544
Aaron Luefaa14c2013-07-16 13:08:05 +08001545/*
1546 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1547 * preform any automatic brightness change on receiving a notification.
1548 */
Len Brown4be44fc2005-08-05 00:44:28 -04001549static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Aaron Luefaa14c2013-07-16 13:08:05 +08001551 return acpi_video_bus_DOS(video, 0,
1552 acpi_video_backlight_quirks() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
Len Brown4be44fc2005-08-05 00:44:28 -04001555static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556{
Aaron Luefaa14c2013-07-16 13:08:05 +08001557 return acpi_video_bus_DOS(video, 0,
1558 acpi_video_backlight_quirks() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
Bjorn Helgaas70155582009-04-07 15:37:11 +00001561static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001563 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001564 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001565 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001568 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Luming Yue9dab192007-08-20 18:23:53 +08001570 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001573 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 * most likely via hotkey. */
Len Brown14e04fb2007-08-23 15:20:26 -04001575 acpi_bus_generate_proc_event(device, event, 0);
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001576 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 break;
1578
Julius Volz98fb8fe2007-02-20 16:38:40 +01001579 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 * connector. */
1581 acpi_video_device_enumerate(video);
1582 acpi_video_device_rebind(video);
Len Brown14e04fb2007-08-23 15:20:26 -04001583 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001584 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 break;
1586
Len Brown4be44fc2005-08-05 00:44:28 -04001587 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Len Brown25c87f72007-08-25 01:44:01 -04001588 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001589 keycode = KEY_SWITCHVIDEOMODE;
1590 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001591 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Len Brown25c87f72007-08-25 01:44:01 -04001592 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001593 keycode = KEY_VIDEO_NEXT;
1594 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001595 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Len Brown14e04fb2007-08-23 15:20:26 -04001596 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001597 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 break;
1599
1600 default:
1601 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001602 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 }
1605
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001606 if (acpi_notifier_call_chain(device, event, 0))
1607 /* Something vetoed the keypress. */
1608 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001609
1610 if (keycode) {
1611 input_report_key(input, keycode, 1);
1612 input_sync(input);
1613 input_report_key(input, keycode, 0);
1614 input_sync(input);
1615 }
Luming Yue9dab192007-08-20 18:23:53 +08001616
Patrick Mocheld550d982006-06-27 00:41:40 -04001617 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
Len Brown4be44fc2005-08-05 00:44:28 -04001620static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001622 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001623 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001624 struct acpi_video_bus *bus;
1625 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001626 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001629 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001631 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001632 bus = video_device->video;
1633 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001636 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001637 if (brightness_switch_enabled)
1638 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001639 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001640 keycode = KEY_BRIGHTNESS_CYCLE;
1641 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001642 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001643 if (brightness_switch_enabled)
1644 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001645 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001646 keycode = KEY_BRIGHTNESSUP;
1647 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001648 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001649 if (brightness_switch_enabled)
1650 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001651 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001652 keycode = KEY_BRIGHTNESSDOWN;
1653 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001654 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Zhang Rui8a681a42008-01-25 14:47:49 +08001655 if (brightness_switch_enabled)
1656 acpi_video_switch_brightness(video_device, event);
Len Brown25c87f72007-08-25 01:44:01 -04001657 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001658 keycode = KEY_BRIGHTNESS_ZERO;
1659 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001660 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Zhang Rui8a681a42008-01-25 14:47:49 +08001661 if (brightness_switch_enabled)
1662 acpi_video_switch_brightness(video_device, event);
Len Brown14e04fb2007-08-23 15:20:26 -04001663 acpi_bus_generate_proc_event(device, event, 0);
Luming Yue9dab192007-08-20 18:23:53 +08001664 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666 default:
1667 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001668 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 break;
1670 }
Luming Yue9dab192007-08-20 18:23:53 +08001671
Zhang Rui7761f632008-01-25 14:48:12 +08001672 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001673
1674 if (keycode) {
1675 input_report_key(input, keycode, 1);
1676 input_sync(input);
1677 input_report_key(input, keycode, 0);
1678 input_sync(input);
1679 }
Luming Yue9dab192007-08-20 18:23:53 +08001680
Patrick Mocheld550d982006-06-27 00:41:40 -04001681 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682}
1683
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001684static int acpi_video_resume(struct notifier_block *nb,
1685 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001686{
1687 struct acpi_video_bus *video;
1688 struct acpi_video_device *video_device;
1689 int i;
1690
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001691 switch (val) {
1692 case PM_HIBERNATION_PREPARE:
1693 case PM_SUSPEND_PREPARE:
1694 case PM_RESTORE_PREPARE:
1695 return NOTIFY_DONE;
1696 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001697
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001698 video = container_of(nb, struct acpi_video_bus, pm_nb);
1699
1700 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001701
1702 for (i = 0; i < video->attached_count; i++) {
1703 video_device = video->attached_array[i].bind_info;
1704 if (video_device && video_device->backlight)
1705 acpi_video_set_brightness(video_device->backlight);
1706 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001707
1708 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001709}
1710
Zhang Ruic504f8c2009-12-30 15:59:23 +08001711static acpi_status
1712acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1713 void **return_value)
1714{
1715 struct acpi_device *device = context;
1716 struct acpi_device *sibling;
1717 int result;
1718
1719 if (handle == device->handle)
1720 return AE_CTRL_TERMINATE;
1721
1722 result = acpi_bus_get_device(handle, &sibling);
1723 if (result)
1724 return AE_OK;
1725
1726 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1727 return AE_ALREADY_EXISTS;
1728
1729 return AE_OK;
1730}
1731
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001732static int instance;
1733
Len Brown4be44fc2005-08-05 00:44:28 -04001734static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001736 struct acpi_video_bus *video;
Luming Yue9dab192007-08-20 18:23:53 +08001737 struct input_dev *input;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001738 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001739 acpi_status status;
1740
1741 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1742 device->parent->handle, 1,
1743 acpi_video_bus_match, NULL,
1744 device, NULL);
1745 if (status == AE_ALREADY_EXISTS) {
1746 printk(KERN_WARNING FW_BUG
1747 "Duplicate ACPI video bus devices for the"
1748 " same VGA controller, please try module "
1749 "parameter \"video.allow_duplicates=1\""
1750 "if the current driver doesn't work.\n");
1751 if (!allow_duplicates)
1752 return -ENODEV;
1753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Burman Yan36bcbec2006-12-19 12:56:11 -08001755 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001757 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Zhang Ruie6d9da12007-08-25 02:23:31 -04001759 /* a hack to fix the duplicate name "VID" problem on T61 */
1760 if (!strcmp(device->pnp.bus_id, "VID")) {
1761 if (instance)
1762 device->pnp.bus_id[3] = '0' + instance;
1763 instance ++;
1764 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001765 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1766 if (!strcmp(device->pnp.bus_id, "VGA")) {
1767 if (instance)
1768 device->pnp.bus_id[3] = '0' + instance;
1769 instance++;
1770 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001771
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001772 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1774 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001775 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001778 error = acpi_video_bus_check(video);
1779 if (error)
1780 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001782 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 INIT_LIST_HEAD(&video->video_device_list);
1784
Igor Murzovea9f8852012-03-30 21:32:08 +04001785 error = acpi_video_bus_get_devices(video, device);
1786 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001787 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Luming Yue9dab192007-08-20 18:23:53 +08001789 video->input = input = input_allocate_device();
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001790 if (!input) {
1791 error = -ENOMEM;
Igor Murzovb60e7f62012-03-30 21:32:09 +04001792 goto err_put_video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001793 }
Luming Yue9dab192007-08-20 18:23:53 +08001794
Igor Murzovb60e7f62012-03-30 21:32:09 +04001795 error = acpi_video_bus_start_devices(video);
1796 if (error)
1797 goto err_free_input_dev;
1798
Luming Yue9dab192007-08-20 18:23:53 +08001799 snprintf(video->phys, sizeof(video->phys),
1800 "%s/video/input0", acpi_device_hid(video->device));
1801
1802 input->name = acpi_device_name(video->device);
1803 input->phys = video->phys;
1804 input->id.bustype = BUS_HOST;
1805 input->id.product = 0x06;
Dmitry Torokhov91c05c62007-11-05 11:43:29 -05001806 input->dev.parent = &device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001807 input->evbit[0] = BIT(EV_KEY);
1808 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1809 set_bit(KEY_VIDEO_NEXT, input->keybit);
1810 set_bit(KEY_VIDEO_PREV, input->keybit);
1811 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1812 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1813 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1814 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1815 set_bit(KEY_DISPLAY_OFF, input->keybit);
Luming Yue9dab192007-08-20 18:23:53 +08001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001818 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
1819 video->flags.multihead ? "yes" : "no",
1820 video->flags.rom ? "yes" : "no",
1821 video->flags.post ? "yes" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001823 video->pm_nb.notifier_call = acpi_video_resume;
1824 video->pm_nb.priority = 0;
Igor Murzovea9f8852012-03-30 21:32:08 +04001825 error = register_pm_notifier(&video->pm_nb);
1826 if (error)
Dan Carpenter301f33f2012-04-04 14:19:16 +03001827 goto err_stop_video;
1828
1829 error = input_register_device(input);
1830 if (error)
1831 goto err_unregister_pm_notifier;
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001832
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Dan Carpenter301f33f2012-04-04 14:19:16 +03001835 err_unregister_pm_notifier:
1836 unregister_pm_notifier(&video->pm_nb);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001837 err_stop_video:
1838 acpi_video_bus_stop_devices(video);
Igor Murzovb60e7f62012-03-30 21:32:09 +04001839 err_free_input_dev:
1840 input_free_device(input);
Igor Murzovea9f8852012-03-30 21:32:08 +04001841 err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001842 acpi_video_bus_put_devices(video);
1843 kfree(video->attached_array);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001844 err_free_video:
1845 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001846 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001847
1848 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001851static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
Len Brown4be44fc2005-08-05 00:44:28 -04001853 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04001857 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001859 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001861 unregister_pm_notifier(&video->pm_nb);
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 acpi_video_bus_stop_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Luming Yue9dab192007-08-20 18:23:53 +08001866 input_unregister_device(video->input);
Jesper Juhl6044ec82005-11-07 01:01:32 -08001867 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 kfree(video);
1869
Patrick Mocheld550d982006-06-27 00:41:40 -04001870 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
Alan Coxc6996bd2012-04-25 14:33:48 +01001873static int __init is_i740(struct pci_dev *dev)
1874{
1875 if (dev->device == 0x00D1)
1876 return 1;
1877 if (dev->device == 0x7000)
1878 return 1;
1879 return 0;
1880}
1881
Matthew Garrett74a365b2009-03-19 21:35:39 +00001882static int __init intel_opregion_present(void)
1883{
Alan Coxc6996bd2012-04-25 14:33:48 +01001884 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001885 struct pci_dev *dev = NULL;
1886 u32 address;
1887
1888 for_each_pci_dev(dev) {
1889 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
1890 continue;
1891 if (dev->vendor != PCI_VENDOR_ID_INTEL)
1892 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001893 /* We don't want to poke around undefined i740 registers */
1894 if (is_i740(dev))
1895 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001896 pci_read_config_dword(dev, 0xfc, &address);
1897 if (!address)
1898 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01001899 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001900 }
Alan Coxc6996bd2012-04-25 14:33:48 +01001901 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00001902}
1903
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001904int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001906 int result = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08001907 if (register_count) {
1908 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001909 * if the function of acpi_video_register is already called,
1910 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08001911 */
1912 return 0;
1913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 result = acpi_bus_register_driver(&acpi_video_bus);
Zhang Rui39fe3942010-10-08 13:55:11 +08001916 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -04001917 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Zhao Yakui86e437f2009-06-16 11:23:13 +08001919 /*
1920 * When the acpi_video_bus is loaded successfully, increase
1921 * the counter reference.
1922 */
1923 register_count = 1;
1924
Patrick Mocheld550d982006-06-27 00:41:40 -04001925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02001927EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00001928
Zhao Yakui86e437f2009-06-16 11:23:13 +08001929void acpi_video_unregister(void)
1930{
1931 if (!register_count) {
1932 /*
1933 * If the acpi video bus is already unloaded, don't
1934 * unload it again and return directly.
1935 */
1936 return;
1937 }
1938 acpi_bus_unregister_driver(&acpi_video_bus);
1939
Zhao Yakui86e437f2009-06-16 11:23:13 +08001940 register_count = 0;
1941
1942 return;
1943}
1944EXPORT_SYMBOL(acpi_video_unregister);
1945
Matthew Garrett74a365b2009-03-19 21:35:39 +00001946/*
1947 * This is kind of nasty. Hardware using Intel chipsets may require
1948 * the video opregion code to be run first in order to initialise
1949 * state before any ACPI video calls are made. To handle this we defer
1950 * registration of the video class until the opregion code has run.
1951 */
1952
1953static int __init acpi_video_init(void)
1954{
Zhang Rui45cb50e2009-04-24 12:13:18 -04001955 dmi_check_system(video_dmi_table);
1956
Matthew Garrett74a365b2009-03-19 21:35:39 +00001957 if (intel_opregion_present())
1958 return 0;
1959
1960 return acpi_video_register();
1961}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Zhao Yakui86e437f2009-06-16 11:23:13 +08001963static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Zhao Yakui86e437f2009-06-16 11:23:13 +08001965 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Patrick Mocheld550d982006-06-27 00:41:40 -04001967 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970module_init(acpi_video_init);
1971module_exit(acpi_video_exit);