blob: 9a607af971e78213e301fc98e09ffbf87c50f8ff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05002 * video.c - ACPI Video Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org>
Thomas Tuttlef4715182006-12-19 12:56:14 -08006 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 */
22
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/types.h>
27#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050028#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080029#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080030#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080031#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050032#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000033#include <linux/pci.h>
34#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040036#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020037#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080038#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050039#include <acpi/video.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Hans de Goede14ca7a472015-06-16 16:27:47 +020042#define PREFIX "ACPI: "
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ACPI_VIDEO_BUS_NAME "Video Bus"
45#define ACPI_VIDEO_DEVICE_NAME "Video Device"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Yu Luming2f3d0002006-11-11 02:40:34 +080047#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050050ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Len Brownf52fd662007-02-12 22:42:12 -050052MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050053MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_LICENSE("GPL");
55
Rafael J. Wysocki28437682014-07-14 19:35:45 +020056static bool brightness_switch_enabled = 1;
Zhang Rui8a681a42008-01-25 14:47:49 +080057module_param(brightness_switch_enabled, bool, 0644);
58
Zhang Ruic504f8c2009-12-30 15:59:23 +080059/*
60 * By default, we don't allow duplicate ACPI video bus devices
61 * under the same VGA controller
62 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103063static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080064module_param(allow_duplicates, bool, 0644);
65
Hans de Goede654a1822015-06-09 10:32:25 +020066static int disable_backlight_sysfs_if = -1;
67module_param(disable_backlight_sysfs_if, int, 0444);
68
Hans de Goede05bc59a2015-12-22 19:09:51 +010069#define REPORT_OUTPUT_KEY_EVENTS 0x01
70#define REPORT_BRIGHTNESS_KEY_EVENTS 0x02
71static int report_key_events = -1;
72module_param(report_key_events, int, 0644);
73MODULE_PARM_DESC(report_key_events,
74 "0: none, 1: output changes, 2: brightness changes, 3: all");
75
Aaron Lue50b9be2015-10-28 15:09:23 +080076static bool device_id_scheme = false;
77module_param(device_id_scheme, bool, 0444);
78
79static bool only_lcd = false;
80module_param(only_lcd, bool, 0444);
81
Hans de Goede970530c2016-01-14 09:41:45 +010082static int register_count;
83static DEFINE_MUTEX(register_count_mutex);
Hans de Goede14e93552016-01-14 09:41:46 +010084static DEFINE_MUTEX(video_list_lock);
85static LIST_HEAD(video_bus_head);
Len Brown4be44fc2005-08-05 00:44:28 -040086static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010087static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000088static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Hans de Goede93a291d2015-06-16 16:27:52 +020089void acpi_video_detect_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Dmitry Frankd485ef42017-04-19 12:48:07 +030091/*
92 * Indices in the _BCL method response: the first two items are special,
93 * the rest are all supported levels.
94 *
95 * See page 575 of the ACPI spec 3.0
96 */
97enum acpi_video_level_idx {
98 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
99 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
100 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
101};
102
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200103static const struct acpi_device_id video_device_ids[] = {
104 {ACPI_VIDEO_HID, 0},
105 {"", 0},
106};
107MODULE_DEVICE_TABLE(acpi, video_device_ids);
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500110 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200112 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 .ops = {
114 .add = acpi_video_bus_add,
115 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000116 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400117 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118};
119
120struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400121 u8 multihead:1; /* can switch video heads */
122 u8 rom:1; /* can retrieve a video rom */
123 u8 post:1; /* can configure the head to */
124 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125};
126
127struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500128 u8 _DOS:1; /* Enable/Disable output switching */
129 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
130 u8 _ROM:1; /* Get ROM Data */
131 u8 _GPD:1; /* Get POST Device */
132 u8 _SPD:1; /* Set POST Device */
133 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400134 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
Len Brown4be44fc2005-08-05 00:44:28 -0400137struct acpi_video_device_attrib {
138 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500139 u32 display_port_attachment:4; /* This field differentiates the display type */
140 u32 display_type:4; /* Describe the specific type in use */
141 u32 vendor_specific:4; /* Chipset Vendor Specific */
142 u32 bios_can_detect:1; /* BIOS can detect the device */
143 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400144 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500145 u32 pipe_id:3; /* For VGA multiple-head devices. */
146 u32 reserved:10; /* Must be 0 */
147 u32 device_id_scheme:1; /* Device ID Scheme */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148};
149
150struct acpi_video_enumerated_device {
151 union {
152 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400153 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 } value;
155 struct acpi_video_device *bind_info;
156};
157
158struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400159 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200160 bool backlight_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400161 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400163 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800164 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400165 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400167 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500168 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800169 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800170 struct input_dev *input;
171 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200172 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
175struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400176 u8 crt:1;
177 u8 lcd:1;
178 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500179 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400180 u8 bios:1;
181 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000182 u8 notify:1;
183 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184};
185
186struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500187 u8 _ADR:1; /* Return the unique ID */
188 u8 _BCL:1; /* Query list of brightness control levels supported */
189 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800190 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800191 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500192 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400196 unsigned long device_id;
197 struct acpi_video_device_flags flags;
198 struct acpi_video_device_cap cap;
199 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200200 struct delayed_work switch_brightness_work;
201 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400202 struct acpi_video_bus *video;
203 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800205 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400206 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
210static void acpi_video_device_rebind(struct acpi_video_bus *video);
211static void acpi_video_device_bind(struct acpi_video_bus *video,
212 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800214static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
215 int level);
216static int acpi_video_device_lcd_get_level_current(
217 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000218 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400219static int acpi_video_get_next_level(struct acpi_video_device *device,
220 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200221static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Felipe Contreras21fcb342013-08-01 18:43:59 -0500223/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800224static int acpi_video_get_brightness(struct backlight_device *bd)
225{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400226 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000227 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200228 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800229
Danny Baumanna89803d2013-03-19 16:22:50 +0000230 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800231 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300232 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
Matthew Garrett38531e62007-12-26 02:03:26 +0000233 if (vd->brightness->levels[i] == cur_level)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300234 return i - ACPI_VIDEO_FIRST_LEVEL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000235 }
236 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800237}
238
239static int acpi_video_set_brightness(struct backlight_device *bd)
240{
Dmitry Frankd485ef42017-04-19 12:48:07 +0300241 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200242 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800243
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200244 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800245 return acpi_video_device_lcd_set_level(vd,
246 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800247}
248
Lionel Debrouxacc24722010-11-16 14:14:02 +0100249static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000250 .get_brightness = acpi_video_get_brightness,
251 .update_status = acpi_video_set_brightness,
252};
253
Zhang Rui702ed512008-01-17 15:51:22 +0800254/* thermal cooling device callbacks */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300255static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
256 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800257{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400258 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800259 struct acpi_video_device *video = acpi_driver_data(device);
260
Dmitry Frankd485ef42017-04-19 12:48:07 +0300261 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000262 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800263}
264
Dmitry Frankd485ef42017-04-19 12:48:07 +0300265static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
266 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800267{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400268 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800269 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400270 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000271 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800272
Danny Baumanna89803d2013-03-19 16:22:50 +0000273 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800274 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300275 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
276 offset++)
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000277 if (level == video->brightness->levels[offset]) {
278 *state = video->brightness->count - offset - 1;
279 return 0;
280 }
Zhang Rui702ed512008-01-17 15:51:22 +0800281
282 return -EINVAL;
283}
284
285static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400286video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800287{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400288 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800289 struct acpi_video_device *video = acpi_driver_data(device);
290 int level;
291
Dmitry Frankd485ef42017-04-19 12:48:07 +0300292 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
Zhang Rui702ed512008-01-17 15:51:22 +0800293 return -EINVAL;
294
295 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200296 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800297 return acpi_video_device_lcd_set_level(video, level);
298}
299
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400300static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800301 .get_max_state = video_get_max_state,
302 .get_cur_state = video_get_cur_state,
303 .set_cur_state = video_set_cur_state,
304};
305
Felipe Contreras21fcb342013-08-01 18:43:59 -0500306/*
307 * --------------------------------------------------------------------------
308 * Video Management
309 * --------------------------------------------------------------------------
310 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static int
Aaron Lu05950092016-04-27 20:45:04 +0800313acpi_video_device_lcd_query_levels(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400314 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Len Brown4be44fc2005-08-05 00:44:28 -0400316 int status;
317 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
318 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 *levels = NULL;
322
Aaron Lu05950092016-04-27 20:45:04 +0800323 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400325 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400326 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500327 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400328 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 status = -EFAULT;
330 goto err;
331 }
332
333 *levels = obj;
334
Patrick Mocheld550d982006-06-27 00:41:40 -0400335 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200337err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800338 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Patrick Mocheld550d982006-06-27 00:41:40 -0400340 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343static int
Len Brown4be44fc2005-08-05 00:44:28 -0400344acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Zhang Rui24450c72009-03-18 16:27:10 +0800346 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800347 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Jiang Liu0db98202013-06-29 00:24:39 +0800349 status = acpi_execute_simple_method(device->dev->handle,
350 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800351 if (ACPI_FAILURE(status)) {
352 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
353 return -EIO;
354 }
355
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400356 device->brightness->curr = level;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300357 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
358 state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800359 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800360 if (device->backlight)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300361 device->backlight->props.brightness =
362 state - ACPI_VIDEO_FIRST_LEVEL;
Zhang Rui24450c72009-03-18 16:27:10 +0800363 return 0;
364 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800365
Zhang Rui24450c72009-03-18 16:27:10 +0800366 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Zhang Rui45cb50e2009-04-24 12:13:18 -0400370/*
371 * For some buggy _BQC methods, we need to add a constant value to
372 * the _BQC return value to get the actual current brightness level
373 */
374
375static int bqc_offset_aml_bug_workaround;
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200376static int video_set_bqc_offset(const struct dmi_system_id *d)
Zhang Rui45cb50e2009-04-24 12:13:18 -0400377{
378 bqc_offset_aml_bug_workaround = 9;
379 return 0;
380}
381
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200382static int video_disable_backlight_sysfs_if(
Hans de Goede654a1822015-06-09 10:32:25 +0200383 const struct dmi_system_id *d)
384{
385 if (disable_backlight_sysfs_if == -1)
386 disable_backlight_sysfs_if = 1;
387 return 0;
388}
389
Aaron Lue50b9be2015-10-28 15:09:23 +0800390static int video_set_device_id_scheme(const struct dmi_system_id *d)
391{
392 device_id_scheme = true;
393 return 0;
394}
395
396static int video_enable_only_lcd(const struct dmi_system_id *d)
397{
398 only_lcd = true;
399 return 0;
400}
401
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100402static int video_set_report_key_events(const struct dmi_system_id *id)
403{
404 if (report_key_events == -1)
405 report_key_events = (uintptr_t)id->driver_data;
406 return 0;
407}
408
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200409static struct dmi_system_id video_dmi_table[] = {
Zhang Rui45cb50e2009-04-24 12:13:18 -0400410 /*
411 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
412 */
413 {
414 .callback = video_set_bqc_offset,
415 .ident = "Acer Aspire 5720",
416 .matches = {
417 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
418 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
419 },
420 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400421 {
422 .callback = video_set_bqc_offset,
423 .ident = "Acer Aspire 5710Z",
424 .matches = {
425 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
426 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
427 },
428 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400429 {
430 .callback = video_set_bqc_offset,
431 .ident = "eMachines E510",
432 .matches = {
433 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
434 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
435 },
436 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400437 {
438 .callback = video_set_bqc_offset,
439 .ident = "Acer Aspire 5315",
440 .matches = {
441 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
442 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
443 },
444 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800445 {
446 .callback = video_set_bqc_offset,
447 .ident = "Acer Aspire 7720",
448 .matches = {
449 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
450 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
451 },
452 },
Hans de Goede5f240792014-08-28 10:20:46 +0200453
454 /*
Hans de Goede654a1822015-06-09 10:32:25 +0200455 * Some machines have a broken acpi-video interface for brightness
456 * control, but still need an acpi_video_device_lcd_set_level() call
457 * on resume to turn the backlight power on. We Enable backlight
458 * control on these systems, but do not register a backlight sysfs
459 * as brightness control does not work.
460 */
461 {
Hans de Goedede588b82016-01-11 14:46:17 +0100462 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
463 .callback = video_disable_backlight_sysfs_if,
464 .ident = "Toshiba Portege R700",
465 .matches = {
466 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
467 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"),
468 },
469 },
470 {
Hans de Goede654a1822015-06-09 10:32:25 +0200471 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
472 .callback = video_disable_backlight_sysfs_if,
473 .ident = "Toshiba Portege R830",
474 .matches = {
475 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
476 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
477 },
478 },
Hans de Goedeb21f2e82016-01-14 14:24:39 +0100479 {
480 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
481 .callback = video_disable_backlight_sysfs_if,
482 .ident = "Toshiba Satellite R830",
483 .matches = {
484 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
485 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"),
486 },
487 },
Aaron Lue50b9be2015-10-28 15:09:23 +0800488 /*
489 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
490 * but the IDs actually follow the Device ID Scheme.
491 */
492 {
493 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
494 .callback = video_set_device_id_scheme,
495 .ident = "ESPRIMO Mobile M9410",
496 .matches = {
497 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
498 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
499 },
500 },
501 /*
502 * Some machines have multiple video output devices, but only the one
503 * that is the type of LCD can do the backlight control so we should not
504 * register backlight interface for other video output devices.
505 */
506 {
507 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
508 .callback = video_enable_only_lcd,
509 .ident = "ESPRIMO Mobile M9410",
510 .matches = {
511 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
512 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
513 },
514 },
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100515 /*
516 * Some machines report wrong key events on the acpi-bus, suppress
517 * key event reporting on these. Note this is only intended to work
518 * around events which are plain wrong. In some cases we get double
519 * events, in this case acpi-video is considered the canonical source
520 * and the events from the other source should be filtered. E.g.
521 * by calling acpi_video_handles_brightness_key_presses() from the
522 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
523 */
524 {
525 .callback = video_set_report_key_events,
526 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
527 .ident = "Dell Vostro V131",
528 .matches = {
529 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
530 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
531 },
532 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400533 {}
534};
535
Danny Baumann994fa632013-03-19 16:22:52 +0000536static unsigned long long
537acpi_video_bqc_value_to_level(struct acpi_video_device *device,
538 unsigned long long bqc_value)
539{
540 unsigned long long level;
541
542 if (device->brightness->flags._BQC_use_index) {
543 /*
Dmitry Frankd485ef42017-04-19 12:48:07 +0300544 * _BQC returns an index that doesn't account for the first 2
545 * items with special meaning (see enum acpi_video_level_idx),
546 * so we need to compensate for that by offsetting ourselves
Danny Baumann994fa632013-03-19 16:22:52 +0000547 */
548 if (device->brightness->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300549 bqc_value = device->brightness->count -
550 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
Danny Baumann994fa632013-03-19 16:22:52 +0000551
Dmitry Frankd485ef42017-04-19 12:48:07 +0300552 level = device->brightness->levels[bqc_value +
553 ACPI_VIDEO_FIRST_LEVEL];
Danny Baumann994fa632013-03-19 16:22:52 +0000554 } else {
555 level = bqc_value;
556 }
557
558 level += bqc_offset_aml_bug_workaround;
559
560 return level;
561}
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static int
Len Brown4be44fc2005-08-05 00:44:28 -0400564acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000565 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Zhang Ruic8890f92009-03-18 16:27:08 +0800567 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800568 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800569
Zhang Ruic60d6382009-03-18 16:27:18 +0800570 if (device->cap._BQC || device->cap._BCQ) {
571 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
572
573 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800574 NULL, level);
575 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000576 if (raw) {
577 /*
578 * Caller has indicated he wants the raw
579 * value returned by _BQC, so don't furtherly
580 * mess with the value.
581 */
582 return 0;
583 }
584
Danny Baumann994fa632013-03-19 16:22:52 +0000585 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800586
Dmitry Frankd485ef42017-04-19 12:48:07 +0300587 for (i = ACPI_VIDEO_FIRST_LEVEL;
588 i < device->brightness->count; i++)
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800589 if (device->brightness->levels[i] == *level) {
590 device->brightness->curr = *level;
591 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200592 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000593 /*
594 * BQC returned an invalid level.
595 * Stop using it.
596 */
597 ACPI_WARNING((AE_INFO,
598 "%s returned an invalid level",
599 buf));
600 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800601 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500602 /*
603 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800604 * should we return an error or ignore this failure?
605 * dev->brightness->curr is a cached value which stores
606 * the correct current backlight level in most cases.
607 * ACPI video backlight still works w/ buggy _BQC.
608 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
609 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800610 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
611 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800612 }
613 }
614
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400615 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619static int
Len Brown4be44fc2005-08-05 00:44:28 -0400620acpi_video_device_EDID(struct acpi_video_device *device,
621 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Len Brown4be44fc2005-08-05 00:44:28 -0400623 int status;
624 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
625 union acpi_object *obj;
626 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
627 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 *edid = NULL;
631
632 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400633 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (length == 128)
635 arg0.integer.value = 1;
636 else if (length == 256)
637 arg0.integer.value = 2;
638 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400639 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Patrick Mochel90130262006-05-19 16:54:48 -0400641 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400643 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200645 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 if (obj && obj->type == ACPI_TYPE_BUFFER)
648 *edid = obj;
649 else {
Len Brown64684632006-06-26 23:41:38 -0400650 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 status = -EFAULT;
652 kfree(obj);
653 }
654
Patrick Mocheld550d982006-06-27 00:41:40 -0400655 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658/* bus */
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/*
661 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500662 * video : video bus device pointer
663 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 * 0. The system BIOS should NOT automatically switch(toggle)
665 * the active display output.
666 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100667 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * 2. The _DGS value should be locked.
669 * 3. The system BIOS should not automatically switch (toggle) the
670 * active display output, but instead generate the display switch
671 * event notify code.
672 * lcd_flag :
673 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100674 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500675 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100676 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500677 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400678 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 */
680
681static int
Len Brown4be44fc2005-08-05 00:44:28 -0400682acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Igor Murzovea9f8852012-03-30 21:32:08 +0400684 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Zhang Ruib0373842012-06-20 09:48:43 +0800686 if (!video->cap._DOS)
687 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Igor Murzovea9f8852012-03-30 21:32:08 +0400689 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
690 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800691 video->dos_setting = (lcd_flag << 2) | bios_flag;
692 status = acpi_execute_simple_method(video->device->handle, "_DOS",
693 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400694 if (ACPI_FAILURE(status))
695 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Igor Murzovea9f8852012-03-30 21:32:08 +0400697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500701 * Simple comparison function used to sort backlight levels.
702 */
703
704static int
705acpi_video_cmp_level(const void *a, const void *b)
706{
707 return *(int *)a - *(int *)b;
708}
709
710/*
Aaron Lua50188d2013-04-22 14:08:32 +0200711 * Decides if _BQC/_BCQ for this system is usable
712 *
713 * We do this by changing the level first and then read out the current
714 * brightness level, if the value does not match, find out if it is using
715 * index. If not, clear the _BQC/_BCQ capability.
716 */
717static int acpi_video_bqc_quirk(struct acpi_video_device *device,
718 int max_level, int current_level)
719{
720 struct acpi_video_device_brightness *br = device->brightness;
721 int result;
722 unsigned long long level;
723 int test_level;
724
725 /* don't mess with existing known broken systems */
726 if (bqc_offset_aml_bug_workaround)
727 return 0;
728
729 /*
730 * Some systems always report current brightness level as maximum
731 * through _BQC, we need to test another value for them.
732 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300733 test_level = current_level == max_level
734 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
735 : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200736
737 result = acpi_video_device_lcd_set_level(device, test_level);
738 if (result)
739 return result;
740
741 result = acpi_video_device_lcd_get_level_current(device, &level, true);
742 if (result)
743 return result;
744
745 if (level != test_level) {
746 /* buggy _BQC found, need to find out if it uses index */
747 if (level < br->count) {
748 if (br->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300749 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
750 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
Aaron Lua50188d2013-04-22 14:08:32 +0200751 br->flags._BQC_use_index = 1;
752 }
753
754 if (!br->flags._BQC_use_index)
755 device->cap._BQC = device->cap._BCQ = 0;
756 }
757
758 return 0;
759}
760
Aaron Lu05950092016-04-27 20:45:04 +0800761int acpi_video_get_levels(struct acpi_device *device,
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800762 struct acpi_video_device_brightness **dev_br,
763 int *pmax_level)
Julia Jomantaite469778c2008-06-23 22:50:42 +0100764{
765 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800766 int i, max_level = 0, count = 0, level_ac_battery = 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100767 union acpi_object *o;
768 struct acpi_video_device_brightness *br = NULL;
Aaron Lu05950092016-04-27 20:45:04 +0800769 int result = 0;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100770 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100771
Aaron Lu05950092016-04-27 20:45:04 +0800772 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device->handle,
773 &obj))) {
Julia Jomantaite469778c2008-06-23 22:50:42 +0100774 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
775 "LCD brightness level\n"));
Aaron Lu05950092016-04-27 20:45:04 +0800776 result = -ENODEV;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100777 goto out;
778 }
779
Dmitry Frankd485ef42017-04-19 12:48:07 +0300780 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
Aaron Lu05950092016-04-27 20:45:04 +0800781 result = -EINVAL;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100782 goto out;
Aaron Lu05950092016-04-27 20:45:04 +0800783 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100784
785 br = kzalloc(sizeof(*br), GFP_KERNEL);
786 if (!br) {
787 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800788 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100789 goto out;
790 }
791
Dmitry Frankd485ef42017-04-19 12:48:07 +0300792 br->levels = kmalloc((obj->package.count + ACPI_VIDEO_FIRST_LEVEL) *
793 sizeof(*br->levels), GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800794 if (!br->levels) {
795 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100796 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800797 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100798
799 for (i = 0; i < obj->package.count; i++) {
800 o = (union acpi_object *)&obj->package.elements[i];
801 if (o->type != ACPI_TYPE_INTEGER) {
802 printk(KERN_ERR PREFIX "Invalid data\n");
803 continue;
804 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100805 value = (u32) o->integer.value;
806 /* Skip duplicate entries */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300807 if (count > ACPI_VIDEO_FIRST_LEVEL
808 && br->levels[count - 1] == value)
Hans de Goedebd8ba202014-02-13 16:32:51 +0100809 continue;
810
811 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100812
813 if (br->levels[count] > max_level)
814 max_level = br->levels[count];
815 count++;
816 }
817
Zhang Ruid32f6942009-03-18 16:27:12 +0800818 /*
819 * some buggy BIOS don't export the levels
820 * when machine is on AC/Battery in _BCL package.
821 * In this case, the first two elements in _BCL packages
822 * are also supported brightness levels that OS should take care of.
823 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300824 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
825 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
Zhang Ruid32f6942009-03-18 16:27:12 +0800826 level_ac_battery++;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300827 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
Zhang Rui90af2cf2009-04-14 11:02:18 +0800828 level_ac_battery++;
829 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500830
Dmitry Frankd485ef42017-04-19 12:48:07 +0300831 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
832 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
Zhang Ruid32f6942009-03-18 16:27:12 +0800833 br->flags._BCL_no_ac_battery_levels = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300834 for (i = (count - 1 + level_ac_battery);
835 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
Zhang Ruid32f6942009-03-18 16:27:12 +0800836 br->levels[i] = br->levels[i - level_ac_battery];
837 count += level_ac_battery;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300838 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000839 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800840
Zhang Ruid80fb992009-03-18 16:27:14 +0800841 /* Check if the _BCL package is in a reversed order */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300842 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
Zhang Ruid80fb992009-03-18 16:27:14 +0800843 br->flags._BCL_reversed = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300844 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
845 count - ACPI_VIDEO_FIRST_LEVEL,
846 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
847 acpi_video_cmp_level, NULL);
Zhang Ruid80fb992009-03-18 16:27:14 +0800848 } else if (max_level != br->levels[count - 1])
849 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000850 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100851
852 br->count = count;
Aaron Lu05950092016-04-27 20:45:04 +0800853 *dev_br = br;
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800854 if (pmax_level)
855 *pmax_level = max_level;
Aaron Lu05950092016-04-27 20:45:04 +0800856
857out:
858 kfree(obj);
859 return result;
860out_free:
861 kfree(br);
862 goto out;
863}
864EXPORT_SYMBOL(acpi_video_get_levels);
865
866/*
867 * Arg:
868 * device : video output device (LCD, CRT, ..)
869 *
870 * Return Value:
871 * Maximum brightness level
872 *
873 * Allocate and initialize device->brightness.
874 */
875
876static int
877acpi_video_init_brightness(struct acpi_video_device *device)
878{
879 int i, max_level = 0;
880 unsigned long long level, level_old;
881 struct acpi_video_device_brightness *br = NULL;
882 int result = -EINVAL;
883
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800884 result = acpi_video_get_levels(device->dev, &br, &max_level);
Aaron Lu05950092016-04-27 20:45:04 +0800885 if (result)
886 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100887 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800888
Zhang Rui1a7c6182009-03-18 16:27:16 +0800889 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400890 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800891
892 if (!device->cap._BQC)
893 goto set_level;
894
Danny Baumanna89803d2013-03-19 16:22:50 +0000895 result = acpi_video_device_lcd_get_level_current(device,
896 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800897 if (result)
898 goto out_free_levels;
899
Aaron Lua50188d2013-04-22 14:08:32 +0200900 result = acpi_video_bqc_quirk(device, max_level, level_old);
901 if (result)
902 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800903 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200904 * cap._BQC may get cleared due to _BQC is found to be broken
905 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800906 */
Aaron Lua50188d2013-04-22 14:08:32 +0200907 if (!device->cap._BQC)
908 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800909
Aaron Lu545ef362013-11-15 14:39:12 +0800910 level = acpi_video_bqc_value_to_level(device, level_old);
911 /*
912 * On some buggy laptops, _BQC returns an uninitialized
913 * value when invoked for the first time, i.e.
914 * level_old is invalid (no matter whether it's a level
915 * or an index). Set the backlight to max_level in this case.
916 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300917 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
Aaron Lu545ef362013-11-15 14:39:12 +0800918 if (level == br->levels[i])
919 break;
920 if (i == br->count || !level)
921 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800922
Zhang Ruie047cca2009-04-09 14:24:35 +0800923set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400924 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800925 if (result)
926 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800927
Zhang Ruid32f6942009-03-18 16:27:12 +0800928 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Dmitry Frankd485ef42017-04-19 12:48:07 +0300929 "found %d brightness levels\n",
930 br->count - ACPI_VIDEO_FIRST_LEVEL));
Aaron Lu05950092016-04-27 20:45:04 +0800931 return 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100932
933out_free_levels:
934 kfree(br->levels);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100935 kfree(br);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100936 device->brightness = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800937 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100938}
939
940/*
941 * Arg:
942 * device : video output device (LCD, CRT, ..)
943 *
944 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500945 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100947 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * device.
949 */
950
Len Brown4be44fc2005-08-05 00:44:28 -0400951static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Jiang Liu952c63e2013-06-29 00:24:38 +0800953 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800955 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400956 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800957 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400958 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800959 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800960 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800961 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800962 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
963 device->cap._BCQ = 1;
964 }
965
Jiang Liu952c63e2013-06-29 00:24:38 +0800966 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400967 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
970/*
Felipe Contreras21fcb342013-08-01 18:43:59 -0500971 * Arg:
972 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 *
974 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500975 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100977 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 */
979
Len Brown4be44fc2005-08-05 00:44:28 -0400980static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Jiang Liu952c63e2013-06-29 00:24:38 +0800982 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800984 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800986 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800988 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800990 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800992 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
996/*
997 * Check whether the video bus device has required AML method to
998 * support the desired features
999 */
1000
Len Brown4be44fc2005-08-05 00:44:28 -04001001static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Len Brown4be44fc2005-08-05 00:44:28 -04001003 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001004 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
1006 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001007 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001009 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001010 if (!dev)
1011 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001012 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001013
Felipe Contreras21fcb342013-08-01 18:43:59 -05001014 /*
1015 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 * to check well known required nodes.
1017 */
1018
Julius Volz98fb8fe2007-02-20 16:38:40 +01001019 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001020 if (video->cap._DOS || video->cap._DOD) {
1021 if (!video->cap._DOS) {
1022 printk(KERN_WARNING FW_BUG
1023 "ACPI(%s) defines _DOD but not _DOS\n",
1024 acpi_device_bid(video->device));
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 video->flags.multihead = 1;
1027 status = 0;
1028 }
1029
Julius Volz98fb8fe2007-02-20 16:38:40 +01001030 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001031 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 video->flags.rom = 1;
1033 status = 0;
1034 }
1035
Julius Volz98fb8fe2007-02-20 16:38:40 +01001036 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001037 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 video->flags.post = 1;
1039 status = 0;
1040 }
1041
Patrick Mocheld550d982006-06-27 00:41:40 -04001042 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Felipe Contreras21fcb342013-08-01 18:43:59 -05001045/*
1046 * --------------------------------------------------------------------------
1047 * Driver Interface
1048 * --------------------------------------------------------------------------
1049 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001052static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001053acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1054{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001055 struct acpi_video_enumerated_device *ids;
1056 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001057
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001058 for (i = 0; i < video->attached_count; i++) {
1059 ids = &video->attached_array[i];
1060 if ((ids->value.int_val & 0xffff) == device_id)
1061 return &ids->value.attrib;
1062 }
1063
Rui Zhang82cae992007-01-03 23:40:53 -05001064 return NULL;
1065}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001068acpi_video_get_device_type(struct acpi_video_bus *video,
1069 unsigned long device_id)
1070{
1071 struct acpi_video_enumerated_device *ids;
1072 int i;
1073
1074 for (i = 0; i < video->attached_count; i++) {
1075 ids = &video->attached_array[i];
1076 if ((ids->value.int_val & 0xffff) == device_id)
1077 return ids->value.int_val;
1078 }
1079
1080 return 0;
1081}
1082
1083static int
Len Brown4be44fc2005-08-05 00:44:28 -04001084acpi_video_bus_get_one_device(struct acpi_device *device,
1085 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001087 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001088 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001089 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001090 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Len Brown4be44fc2005-08-05 00:44:28 -04001092 status =
1093 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001094 /* Some device omits _ADR, we skip them instead of fail */
1095 if (ACPI_FAILURE(status))
1096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Aaron Lu91e13aa2013-04-25 02:47:49 +00001098 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1099 if (!data)
1100 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Aaron Lu91e13aa2013-04-25 02:47:49 +00001102 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1103 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1104 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Aaron Lu91e13aa2013-04-25 02:47:49 +00001106 data->device_id = device_id;
1107 data->video = video;
1108 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001109 INIT_DELAYED_WORK(&data->switch_brightness_work,
1110 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Aaron Lu91e13aa2013-04-25 02:47:49 +00001112 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001113
Aaron Lue50b9be2015-10-28 15:09:23 +08001114 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001115 switch (attribute->display_type) {
1116 case ACPI_VIDEO_DISPLAY_CRT:
1117 data->flags.crt = 1;
1118 break;
1119 case ACPI_VIDEO_DISPLAY_TV:
1120 data->flags.tvout = 1;
1121 break;
1122 case ACPI_VIDEO_DISPLAY_DVI:
1123 data->flags.dvi = 1;
1124 break;
1125 case ACPI_VIDEO_DISPLAY_LCD:
1126 data->flags.lcd = 1;
1127 break;
1128 default:
1129 data->flags.unknown = 1;
1130 break;
1131 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001132 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001133 data->flags.bios = 1;
1134 } else {
1135 /* Check for legacy IDs */
1136 device_type = acpi_video_get_device_type(video, device_id);
1137 /* Ignore bits 16 and 18-20 */
1138 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001139 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1140 data->flags.crt = 1;
1141 break;
1142 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1143 data->flags.lcd = 1;
1144 break;
1145 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1146 data->flags.tvout = 1;
1147 break;
1148 default:
1149 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152
Aaron Lu91e13aa2013-04-25 02:47:49 +00001153 acpi_video_device_bind(video, data);
1154 acpi_video_device_find_cap(data);
1155
Aaron Lu91e13aa2013-04-25 02:47:49 +00001156 mutex_lock(&video->device_list_lock);
1157 list_add_tail(&data->entry, &video->video_device_list);
1158 mutex_unlock(&video->device_list_lock);
1159
1160 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
1163/*
1164 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001165 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 *
1167 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001168 * none
1169 *
1170 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 * bind the ids with the corresponding video devices
1172 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Len Brown4be44fc2005-08-05 00:44:28 -04001175static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001177 struct acpi_video_device *dev;
1178
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001179 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001180
1181 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001182 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001183
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001184 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185}
1186
1187/*
1188 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001189 * video : video bus device
1190 * device : video output device under the video
1191 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 *
1193 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001194 * none
1195 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 * 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
1200static void
Len Brown4be44fc2005-08-05 00:44:28 -04001201acpi_video_device_bind(struct acpi_video_bus *video,
1202 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001204 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001205 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001207 for (i = 0; i < video->attached_count; i++) {
1208 ids = &video->attached_array[i];
1209 if (device->device_id == (ids->value.int_val & 0xffff)) {
1210 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1212 }
1213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
Aaron Lu0b8db272014-09-30 14:10:17 +08001216static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1217{
1218 struct acpi_video_bus *video = device->video;
1219 int i;
1220
Aaron Lub4df4632014-12-15 16:01:29 +08001221 /*
1222 * If we have a broken _DOD or we have more than 8 output devices
1223 * under the graphics controller node that we can't proper deal with
1224 * in the operation region code currently, no need to test.
1225 */
1226 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001227 return true;
1228
1229 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001230 if ((video->attached_array[i].value.int_val & 0xfff) ==
1231 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001232 return true;
1233 }
1234
1235 return false;
1236}
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238/*
1239 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001240 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 *
1242 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001243 * < 0 : error
1244 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * Call _DOD to enumerate all devices attached to display adapter
1246 *
Len Brown4be44fc2005-08-05 00:44:28 -04001247 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1250{
Len Brown4be44fc2005-08-05 00:44:28 -04001251 int status;
1252 int count;
1253 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001254 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001255 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1256 union acpi_object *dod = NULL;
1257 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Alex Hunge34fbba2016-05-27 15:47:06 +08001259 if (!video->cap._DOD)
1260 return AE_NOT_EXIST;
1261
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
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001308out:
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 */
Dmitry Frankd485ef42017-04-19 12:48:07 +03001321 for (i = ACPI_VIDEO_FIRST_LEVEL; 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;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001331 for (i = ACPI_VIDEO_FIRST_LEVEL; 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
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001358static void
1359acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001361 struct acpi_video_device *device = container_of(to_delayed_work(work),
1362 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001363 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001364 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001365 int result = -EINVAL;
1366
Aaron Lufbc9fe12013-10-11 21:27:45 +08001367 /* no warning message if acpi_backlight=vendor or a quirk is used */
Hans de Goede654a1822015-06-09 10:32:25 +02001368 if (!device->backlight)
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001369 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001370
Julia Jomantaite469778c2008-06-23 22:50:42 +01001371 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001372 goto out;
1373
1374 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001375 &level_current,
1376 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001377 if (result)
1378 goto out;
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001381
Zhang Rui24450c72009-03-18 16:27:10 +08001382 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001383
Matthew Garrett36342742009-07-14 17:06:03 +01001384 if (!result)
1385 backlight_force_update(device->backlight,
1386 BACKLIGHT_UPDATE_HOTKEY);
1387
Zhang Ruic8890f92009-03-18 16:27:08 +08001388out:
1389 if (result)
1390 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Matthew Garrette92a7162010-01-12 14:17:03 -05001393int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1394 void **edid)
1395{
1396 struct acpi_video_bus *video;
1397 struct acpi_video_device *video_device;
1398 union acpi_object *buffer = NULL;
1399 acpi_status status;
1400 int i, length;
1401
1402 if (!device || !acpi_driver_data(device))
1403 return -EINVAL;
1404
1405 video = acpi_driver_data(device);
1406
1407 for (i = 0; i < video->attached_count; i++) {
1408 video_device = video->attached_array[i].bind_info;
1409 length = 256;
1410
1411 if (!video_device)
1412 continue;
1413
Zhang Rui82069552010-12-06 15:04:24 +08001414 if (!video_device->cap._DDC)
1415 continue;
1416
Matthew Garrette92a7162010-01-12 14:17:03 -05001417 if (type) {
1418 switch (type) {
1419 case ACPI_VIDEO_DISPLAY_CRT:
1420 if (!video_device->flags.crt)
1421 continue;
1422 break;
1423 case ACPI_VIDEO_DISPLAY_TV:
1424 if (!video_device->flags.tvout)
1425 continue;
1426 break;
1427 case ACPI_VIDEO_DISPLAY_DVI:
1428 if (!video_device->flags.dvi)
1429 continue;
1430 break;
1431 case ACPI_VIDEO_DISPLAY_LCD:
1432 if (!video_device->flags.lcd)
1433 continue;
1434 break;
1435 }
1436 } else if (video_device->device_id != device_id) {
1437 continue;
1438 }
1439
1440 status = acpi_video_device_EDID(video_device, &buffer, length);
1441
1442 if (ACPI_FAILURE(status) || !buffer ||
1443 buffer->type != ACPI_TYPE_BUFFER) {
1444 length = 128;
1445 status = acpi_video_device_EDID(video_device, &buffer,
1446 length);
1447 if (ACPI_FAILURE(status) || !buffer ||
1448 buffer->type != ACPI_TYPE_BUFFER) {
1449 continue;
1450 }
1451 }
1452
1453 *edid = buffer->buffer.pointer;
1454 return length;
1455 }
1456
1457 return -ENODEV;
1458}
1459EXPORT_SYMBOL(acpi_video_get_edid);
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461static int
Len Brown4be44fc2005-08-05 00:44:28 -04001462acpi_video_bus_get_devices(struct acpi_video_bus *video,
1463 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Igor Murzovfba4e082012-10-13 04:41:25 +04001465 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001466 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Igor Murzovfba4e082012-10-13 04:41:25 +04001468 /*
1469 * There are systems where video module known to work fine regardless
1470 * of broken _DOD and ignoring returned value here doesn't cause
1471 * any issues later.
1472 */
1473 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001475 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001478 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001479 dev_err(&dev->dev, "Can't attach device\n");
1480 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
Aaron Lub4df4632014-12-15 16:01:29 +08001482 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001484 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487/* acpi_video interface */
1488
Aaron Luefaa14c2013-07-16 13:08:05 +08001489/*
1490 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1491 * preform any automatic brightness change on receiving a notification.
1492 */
Len Brown4be44fc2005-08-05 00:44:28 -04001493static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Aaron Luefaa14c2013-07-16 13:08:05 +08001495 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001496 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Len Brown4be44fc2005-08-05 00:44:28 -04001499static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Aaron Luefaa14c2013-07-16 13:08:05 +08001501 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001502 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Bjorn Helgaas70155582009-04-07 15:37:11 +00001505static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001507 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001508 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001509 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001510
Aaron Lu67b662e2013-10-11 21:27:44 +08001511 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Luming Yue9dab192007-08-20 18:23:53 +08001514 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001517 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001519 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 break;
1521
Julius Volz98fb8fe2007-02-20 16:38:40 +01001522 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 * connector. */
1524 acpi_video_device_enumerate(video);
1525 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001526 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 break;
1528
Len Brown4be44fc2005-08-05 00:44:28 -04001529 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001530 keycode = KEY_SWITCHVIDEOMODE;
1531 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001532 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001533 keycode = KEY_VIDEO_NEXT;
1534 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001535 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001536 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 break;
1538
1539 default:
1540 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001541 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 break;
1543 }
1544
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001545 if (acpi_notifier_call_chain(device, event, 0))
1546 /* Something vetoed the keypress. */
1547 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001548
Hans de Goede05bc59a2015-12-22 19:09:51 +01001549 if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001550 input_report_key(input, keycode, 1);
1551 input_sync(input);
1552 input_report_key(input, keycode, 0);
1553 input_sync(input);
1554 }
Luming Yue9dab192007-08-20 18:23:53 +08001555
Patrick Mocheld550d982006-06-27 00:41:40 -04001556 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557}
1558
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001559static void brightness_switch_event(struct acpi_video_device *video_device,
1560 u32 event)
1561{
1562 if (!brightness_switch_enabled)
1563 return;
1564
1565 video_device->switch_brightness_event = event;
1566 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1567}
1568
Len Brown4be44fc2005-08-05 00:44:28 -04001569static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001571 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001572 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001573 struct acpi_video_bus *bus;
1574 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001575 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001578 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001580 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001581 bus = video_device->video;
1582 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001585 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001586 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001587 keycode = KEY_BRIGHTNESS_CYCLE;
1588 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001589 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001590 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001591 keycode = KEY_BRIGHTNESSUP;
1592 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001593 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001594 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001595 keycode = KEY_BRIGHTNESSDOWN;
1596 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001597 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001598 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001599 keycode = KEY_BRIGHTNESS_ZERO;
1600 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001601 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001602 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001603 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 break;
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 }
Luming Yue9dab192007-08-20 18:23:53 +08001610
Zhang Rui7761f632008-01-25 14:48:12 +08001611 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001612
Hans de Goede05bc59a2015-12-22 19:09:51 +01001613 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001614 input_report_key(input, keycode, 1);
1615 input_sync(input);
1616 input_report_key(input, keycode, 0);
1617 input_sync(input);
1618 }
Luming Yue9dab192007-08-20 18:23:53 +08001619
Patrick Mocheld550d982006-06-27 00:41:40 -04001620 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001623static int acpi_video_resume(struct notifier_block *nb,
1624 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001625{
1626 struct acpi_video_bus *video;
1627 struct acpi_video_device *video_device;
1628 int i;
1629
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001630 switch (val) {
1631 case PM_HIBERNATION_PREPARE:
1632 case PM_SUSPEND_PREPARE:
1633 case PM_RESTORE_PREPARE:
1634 return NOTIFY_DONE;
1635 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001636
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001637 video = container_of(nb, struct acpi_video_bus, pm_nb);
1638
1639 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001640
1641 for (i = 0; i < video->attached_count; i++) {
1642 video_device = video->attached_array[i].bind_info;
Hans de Goede654a1822015-06-09 10:32:25 +02001643 if (video_device && video_device->brightness)
1644 acpi_video_device_lcd_set_level(video_device,
1645 video_device->brightness->curr);
Matthew Garrett863c1492008-02-04 23:31:24 -08001646 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001647
1648 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001649}
1650
Zhang Ruic504f8c2009-12-30 15:59:23 +08001651static acpi_status
1652acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1653 void **return_value)
1654{
1655 struct acpi_device *device = context;
1656 struct acpi_device *sibling;
1657 int result;
1658
1659 if (handle == device->handle)
1660 return AE_CTRL_TERMINATE;
1661
1662 result = acpi_bus_get_device(handle, &sibling);
1663 if (result)
1664 return AE_OK;
1665
1666 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1667 return AE_ALREADY_EXISTS;
1668
1669 return AE_OK;
1670}
1671
Aaron Lu67b662e2013-10-11 21:27:44 +08001672static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1673{
Hans de Goede99678ed2014-05-15 13:22:33 +02001674 struct backlight_properties props;
1675 struct pci_dev *pdev;
1676 acpi_handle acpi_parent;
1677 struct device *parent = NULL;
1678 int result;
1679 static int count;
1680 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001681
Hans de Goede99678ed2014-05-15 13:22:33 +02001682 result = acpi_video_init_brightness(device);
1683 if (result)
1684 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001685
1686 if (disable_backlight_sysfs_if > 0)
1687 return;
1688
Hans de Goede99678ed2014-05-15 13:22:33 +02001689 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1690 if (!name)
1691 return;
1692 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001693
Hans de Goede99678ed2014-05-15 13:22:33 +02001694 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001695
Hans de Goede99678ed2014-05-15 13:22:33 +02001696 pdev = acpi_get_pci_dev(acpi_parent);
1697 if (pdev) {
1698 parent = &pdev->dev;
1699 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001700 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001701
1702 memset(&props, 0, sizeof(struct backlight_properties));
1703 props.type = BACKLIGHT_FIRMWARE;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001704 props.max_brightness =
1705 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Hans de Goede99678ed2014-05-15 13:22:33 +02001706 device->backlight = backlight_device_register(name,
1707 parent,
1708 device,
1709 &acpi_backlight_ops,
1710 &props);
1711 kfree(name);
Hans de Goede654a1822015-06-09 10:32:25 +02001712 if (IS_ERR(device->backlight)) {
1713 device->backlight = NULL;
Hans de Goede99678ed2014-05-15 13:22:33 +02001714 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001715 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001716
1717 /*
1718 * Save current brightness level in case we have to restore it
1719 * before acpi_video_device_lcd_set_level() is called next time.
1720 */
1721 device->backlight->props.brightness =
1722 acpi_video_get_brightness(device->backlight);
1723
1724 device->cooling_dev = thermal_cooling_device_register("LCD",
1725 device->dev, &video_cooling_ops);
1726 if (IS_ERR(device->cooling_dev)) {
1727 /*
1728 * Set cooling_dev to NULL so we don't crash trying to free it.
1729 * Also, why the hell we are returning early and not attempt to
1730 * register video output if cooling device registration failed?
1731 * -- dtor
1732 */
1733 device->cooling_dev = NULL;
1734 return;
1735 }
1736
1737 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1738 device->cooling_dev->id);
1739 result = sysfs_create_link(&device->dev->dev.kobj,
1740 &device->cooling_dev->device.kobj,
1741 "thermal_cooling");
1742 if (result)
1743 printk(KERN_ERR PREFIX "Create sysfs link\n");
1744 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1745 &device->dev->dev.kobj, "device");
1746 if (result)
1747 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001748}
1749
Aaron Ludce4ec22014-10-28 14:35:59 +08001750static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1751{
1752 struct acpi_video_device *dev;
1753 union acpi_object *levels;
1754
1755 mutex_lock(&video->device_list_lock);
1756 list_for_each_entry(dev, &video->video_device_list, entry) {
Aaron Lu9f9cd7e2016-05-21 15:30:46 +08001757 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
Aaron Ludce4ec22014-10-28 14:35:59 +08001758 kfree(levels);
1759 }
1760 mutex_unlock(&video->device_list_lock);
1761}
1762
Aaron Lue50b9be2015-10-28 15:09:23 +08001763static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1764{
1765 /*
1766 * Do not create backlight device for video output
1767 * device that is not in the enumerated list.
1768 */
1769 if (!acpi_video_device_in_dod(dev)) {
1770 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1771 return false;
1772 }
1773
1774 if (only_lcd)
1775 return dev->flags.lcd;
1776 return true;
1777}
1778
Aaron Lu67b662e2013-10-11 21:27:44 +08001779static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1780{
1781 struct acpi_video_device *dev;
1782
Hans de Goede53a92ba2014-05-21 15:39:55 +02001783 if (video->backlight_registered)
1784 return 0;
1785
Aaron Ludce4ec22014-10-28 14:35:59 +08001786 acpi_video_run_bcl_for_osi(video);
1787
Hans de Goede3bd6bce2015-06-16 16:27:51 +02001788 if (acpi_video_get_backlight_type() != acpi_backlight_video)
Hans de Goede99678ed2014-05-15 13:22:33 +02001789 return 0;
1790
Aaron Lu67b662e2013-10-11 21:27:44 +08001791 mutex_lock(&video->device_list_lock);
Aaron Lue50b9be2015-10-28 15:09:23 +08001792 list_for_each_entry(dev, &video->video_device_list, entry) {
1793 if (acpi_video_should_register_backlight(dev))
1794 acpi_video_dev_register_backlight(dev);
1795 }
Aaron Lu67b662e2013-10-11 21:27:44 +08001796 mutex_unlock(&video->device_list_lock);
1797
Hans de Goede99678ed2014-05-15 13:22:33 +02001798 video->backlight_registered = true;
1799
Aaron Lu67b662e2013-10-11 21:27:44 +08001800 video->pm_nb.notifier_call = acpi_video_resume;
1801 video->pm_nb.priority = 0;
1802 return register_pm_notifier(&video->pm_nb);
1803}
1804
1805static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1806{
1807 if (device->backlight) {
1808 backlight_device_unregister(device->backlight);
1809 device->backlight = NULL;
1810 }
1811 if (device->brightness) {
1812 kfree(device->brightness->levels);
1813 kfree(device->brightness);
1814 device->brightness = NULL;
1815 }
1816 if (device->cooling_dev) {
1817 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1818 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1819 thermal_cooling_device_unregister(device->cooling_dev);
1820 device->cooling_dev = NULL;
1821 }
1822}
1823
1824static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1825{
1826 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001827 int error;
1828
1829 if (!video->backlight_registered)
1830 return 0;
1831
1832 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001833
1834 mutex_lock(&video->device_list_lock);
1835 list_for_each_entry(dev, &video->video_device_list, entry)
1836 acpi_video_dev_unregister_backlight(dev);
1837 mutex_unlock(&video->device_list_lock);
1838
Hans de Goede99678ed2014-05-15 13:22:33 +02001839 video->backlight_registered = false;
1840
Aaron Lu67b662e2013-10-11 21:27:44 +08001841 return error;
1842}
1843
1844static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1845{
1846 acpi_status status;
1847 struct acpi_device *adev = device->dev;
1848
1849 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1850 acpi_video_device_notify, device);
1851 if (ACPI_FAILURE(status))
1852 dev_err(&adev->dev, "Error installing notify handler\n");
1853 else
1854 device->flags.notify = 1;
1855}
1856
1857static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1858{
1859 struct input_dev *input;
1860 struct acpi_video_device *dev;
1861 int error;
1862
1863 video->input = input = input_allocate_device();
1864 if (!input) {
1865 error = -ENOMEM;
1866 goto out;
1867 }
1868
1869 error = acpi_video_bus_start_devices(video);
1870 if (error)
1871 goto err_free_input;
1872
1873 snprintf(video->phys, sizeof(video->phys),
1874 "%s/video/input0", acpi_device_hid(video->device));
1875
1876 input->name = acpi_device_name(video->device);
1877 input->phys = video->phys;
1878 input->id.bustype = BUS_HOST;
1879 input->id.product = 0x06;
1880 input->dev.parent = &video->device->dev;
1881 input->evbit[0] = BIT(EV_KEY);
1882 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1883 set_bit(KEY_VIDEO_NEXT, input->keybit);
1884 set_bit(KEY_VIDEO_PREV, input->keybit);
1885 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1886 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1887 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1888 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1889 set_bit(KEY_DISPLAY_OFF, input->keybit);
1890
1891 error = input_register_device(input);
1892 if (error)
1893 goto err_stop_dev;
1894
1895 mutex_lock(&video->device_list_lock);
1896 list_for_each_entry(dev, &video->video_device_list, entry)
1897 acpi_video_dev_add_notify_handler(dev);
1898 mutex_unlock(&video->device_list_lock);
1899
1900 return 0;
1901
1902err_stop_dev:
1903 acpi_video_bus_stop_devices(video);
1904err_free_input:
1905 input_free_device(input);
1906 video->input = NULL;
1907out:
1908 return error;
1909}
1910
1911static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1912{
1913 if (dev->flags.notify) {
1914 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1915 acpi_video_device_notify);
1916 dev->flags.notify = 0;
1917 }
1918}
1919
1920static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1921{
1922 struct acpi_video_device *dev;
1923
1924 mutex_lock(&video->device_list_lock);
1925 list_for_each_entry(dev, &video->video_device_list, entry)
1926 acpi_video_dev_remove_notify_handler(dev);
1927 mutex_unlock(&video->device_list_lock);
1928
1929 acpi_video_bus_stop_devices(video);
1930 input_unregister_device(video->input);
1931 video->input = NULL;
1932}
1933
1934static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1935{
1936 struct acpi_video_device *dev, *next;
1937
1938 mutex_lock(&video->device_list_lock);
1939 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1940 list_del(&dev->entry);
1941 kfree(dev);
1942 }
1943 mutex_unlock(&video->device_list_lock);
1944
1945 return 0;
1946}
1947
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001948static int instance;
1949
Len Brown4be44fc2005-08-05 00:44:28 -04001950static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001952 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001953 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001954 acpi_status status;
1955
1956 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1957 device->parent->handle, 1,
1958 acpi_video_bus_match, NULL,
1959 device, NULL);
1960 if (status == AE_ALREADY_EXISTS) {
1961 printk(KERN_WARNING FW_BUG
1962 "Duplicate ACPI video bus devices for the"
1963 " same VGA controller, please try module "
1964 "parameter \"video.allow_duplicates=1\""
1965 "if the current driver doesn't work.\n");
1966 if (!allow_duplicates)
1967 return -ENODEV;
1968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Burman Yan36bcbec2006-12-19 12:56:11 -08001970 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001972 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Zhang Ruie6d9da12007-08-25 02:23:31 -04001974 /* a hack to fix the duplicate name "VID" problem on T61 */
1975 if (!strcmp(device->pnp.bus_id, "VID")) {
1976 if (instance)
1977 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001978 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04001979 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05001980 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
1981 if (!strcmp(device->pnp.bus_id, "VGA")) {
1982 if (instance)
1983 device->pnp.bus_id[3] = '0' + instance;
1984 instance++;
1985 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04001986
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001987 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
1989 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07001990 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001993 error = acpi_video_bus_check(video);
1994 if (error)
1995 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001997 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 INIT_LIST_HEAD(&video->video_device_list);
1999
Igor Murzovea9f8852012-03-30 21:32:08 +04002000 error = acpi_video_bus_get_devices(video, device);
2001 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00002002 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002005 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2006 video->flags.multihead ? "yes" : "no",
2007 video->flags.rom ? "yes" : "no",
2008 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08002009 mutex_lock(&video_list_lock);
2010 list_add_tail(&video->entry, &video_bus_head);
2011 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Aaron Lu67b662e2013-10-11 21:27:44 +08002013 acpi_video_bus_register_backlight(video);
2014 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002015
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Aaron Lu67b662e2013-10-11 21:27:44 +08002018err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002019 acpi_video_bus_put_devices(video);
2020 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08002021err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002022 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002023 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002024
2025 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
2027
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002028static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
Len Brown4be44fc2005-08-05 00:44:28 -04002030 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002034 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002036 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Aaron Lu67b662e2013-10-11 21:27:44 +08002038 acpi_video_bus_remove_notify_handler(video);
2039 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Aaron Lu67b662e2013-10-11 21:27:44 +08002042 mutex_lock(&video_list_lock);
2043 list_del(&video->entry);
2044 mutex_unlock(&video_list_lock);
2045
Jesper Juhl6044ec82005-11-07 01:01:32 -08002046 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 kfree(video);
2048
Patrick Mocheld550d982006-06-27 00:41:40 -04002049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
Alan Coxc6996bd2012-04-25 14:33:48 +01002052static int __init is_i740(struct pci_dev *dev)
2053{
2054 if (dev->device == 0x00D1)
2055 return 1;
2056 if (dev->device == 0x7000)
2057 return 1;
2058 return 0;
2059}
2060
Matthew Garrett74a365b2009-03-19 21:35:39 +00002061static int __init intel_opregion_present(void)
2062{
Alan Coxc6996bd2012-04-25 14:33:48 +01002063 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002064 struct pci_dev *dev = NULL;
2065 u32 address;
2066
2067 for_each_pci_dev(dev) {
2068 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2069 continue;
2070 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2071 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002072 /* We don't want to poke around undefined i740 registers */
2073 if (is_i740(dev))
2074 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002075 pci_read_config_dword(dev, 0xfc, &address);
2076 if (!address)
2077 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002078 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002079 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002080 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002081}
2082
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002083int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002085 int ret = 0;
Chris Wilson28d63402015-03-01 10:41:38 +00002086
Hans de Goede970530c2016-01-14 09:41:45 +01002087 mutex_lock(&register_count_mutex);
2088 if (register_count) {
Zhao Yakui86e437f2009-06-16 11:23:13 +08002089 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002090 * if the function of acpi_video_register is already called,
2091 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002092 */
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002093 goto leave;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Hans de Goede7ee33ba2015-06-16 16:27:53 +02002096 dmi_check_system(video_dmi_table);
2097
Chris Wilson28d63402015-03-01 10:41:38 +00002098 ret = acpi_bus_register_driver(&acpi_video_bus);
2099 if (ret)
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002100 goto leave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Zhao Yakui86e437f2009-06-16 11:23:13 +08002102 /*
2103 * When the acpi_video_bus is loaded successfully, increase
2104 * the counter reference.
2105 */
Hans de Goede970530c2016-01-14 09:41:45 +01002106 register_count = 1;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002107
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002108leave:
Hans de Goede970530c2016-01-14 09:41:45 +01002109 mutex_unlock(&register_count_mutex);
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002110 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002112EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002113
Zhao Yakui86e437f2009-06-16 11:23:13 +08002114void acpi_video_unregister(void)
2115{
Hans de Goede970530c2016-01-14 09:41:45 +01002116 mutex_lock(&register_count_mutex);
2117 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002118 acpi_bus_unregister_driver(&acpi_video_bus);
Hans de Goede970530c2016-01-14 09:41:45 +01002119 register_count = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002120 }
Hans de Goede970530c2016-01-14 09:41:45 +01002121 mutex_unlock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002122}
2123EXPORT_SYMBOL(acpi_video_unregister);
2124
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002125void acpi_video_unregister_backlight(void)
2126{
2127 struct acpi_video_bus *video;
2128
Hans de Goede970530c2016-01-14 09:41:45 +01002129 mutex_lock(&register_count_mutex);
2130 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002131 mutex_lock(&video_list_lock);
2132 list_for_each_entry(video, &video_bus_head, entry)
2133 acpi_video_bus_unregister_backlight(video);
2134 mutex_unlock(&video_list_lock);
2135 }
Hans de Goede970530c2016-01-14 09:41:45 +01002136 mutex_unlock(&register_count_mutex);
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002137}
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002138
Hans de Goede90b066b2015-12-22 19:09:48 +01002139bool acpi_video_handles_brightness_key_presses(void)
2140{
2141 bool have_video_busses;
2142
2143 mutex_lock(&video_list_lock);
2144 have_video_busses = !list_empty(&video_bus_head);
2145 mutex_unlock(&video_list_lock);
2146
Hans de Goede05bc59a2015-12-22 19:09:51 +01002147 return have_video_busses &&
2148 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
Hans de Goede90b066b2015-12-22 19:09:48 +01002149}
2150EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2151
Matthew Garrett74a365b2009-03-19 21:35:39 +00002152/*
2153 * This is kind of nasty. Hardware using Intel chipsets may require
2154 * the video opregion code to be run first in order to initialise
2155 * state before any ACPI video calls are made. To handle this we defer
2156 * registration of the video class until the opregion code has run.
2157 */
2158
2159static int __init acpi_video_init(void)
2160{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002161 /*
2162 * Let the module load even if ACPI is disabled (e.g. due to
2163 * a broken BIOS) so that i915.ko can still be loaded on such
2164 * old systems without an AcpiOpRegion.
2165 *
2166 * acpi_video_register() will report -ENODEV later as well due
2167 * to acpi_disabled when i915.ko tries to register itself afterwards.
2168 */
2169 if (acpi_disabled)
2170 return 0;
2171
Matthew Garrett74a365b2009-03-19 21:35:39 +00002172 if (intel_opregion_present())
2173 return 0;
2174
2175 return acpi_video_register();
2176}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Zhao Yakui86e437f2009-06-16 11:23:13 +08002178static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Hans de Goede93a291d2015-06-16 16:27:52 +02002180 acpi_video_detect_exit();
Zhao Yakui86e437f2009-06-16 11:23:13 +08002181 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Patrick Mocheld550d982006-06-27 00:41:40 -04002183 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186module_init(acpi_video_init);
2187module_exit(acpi_video_exit);