blob: 2f380e7381d6a67afc7e3c0d8db506092ef6340a [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05003 * video.c - ACPI Video Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
6 * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org>
Thomas Tuttlef4715182006-12-19 12:56:14 -08007 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/types.h>
14#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050015#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080016#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080017#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080018#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050019#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000020#include <linux/pci.h>
21#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040023#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020024#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080025#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050026#include <acpi/video.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080027#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Hans de Goede14ca7a472015-06-16 16:27:47 +020029#define PREFIX "ACPI: "
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define ACPI_VIDEO_BUS_NAME "Video Bus"
32#define ACPI_VIDEO_DEVICE_NAME "Video Device"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Yu Luming2f3d0002006-11-11 02:40:34 +080034#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050037ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Len Brownf52fd662007-02-12 22:42:12 -050039MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050040MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041MODULE_LICENSE("GPL");
42
Gustavo A. R. Silva97e45dd2018-01-23 09:59:20 -060043static bool brightness_switch_enabled = true;
Zhang Rui8a681a42008-01-25 14:47:49 +080044module_param(brightness_switch_enabled, bool, 0644);
45
Zhang Ruic504f8c2009-12-30 15:59:23 +080046/*
47 * By default, we don't allow duplicate ACPI video bus devices
48 * under the same VGA controller
49 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103050static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080051module_param(allow_duplicates, bool, 0644);
52
Hans de Goede654a1822015-06-09 10:32:25 +020053static int disable_backlight_sysfs_if = -1;
54module_param(disable_backlight_sysfs_if, int, 0444);
55
Hans de Goede05bc59a2015-12-22 19:09:51 +010056#define REPORT_OUTPUT_KEY_EVENTS 0x01
57#define REPORT_BRIGHTNESS_KEY_EVENTS 0x02
58static int report_key_events = -1;
59module_param(report_key_events, int, 0644);
60MODULE_PARM_DESC(report_key_events,
61 "0: none, 1: output changes, 2: brightness changes, 3: all");
62
Hans de Goede4f7f9642019-07-12 12:00:33 +020063static int hw_changes_brightness = -1;
64module_param(hw_changes_brightness, int, 0644);
65MODULE_PARM_DESC(hw_changes_brightness,
66 "Set this to 1 on buggy hw which changes the brightness itself when "
67 "a hotkey is pressed: -1: auto, 0: normal 1: hw-changes-brightness");
68
Dmitry Frank592c8092017-04-19 13:36:18 +030069/*
70 * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be
71 * assumed even if not actually set.
72 */
Aaron Lue50b9be2015-10-28 15:09:23 +080073static bool device_id_scheme = false;
74module_param(device_id_scheme, bool, 0444);
75
Hans de Goede5928c282017-12-23 19:41:47 +010076static int only_lcd = -1;
77module_param(only_lcd, int, 0444);
Aaron Lue50b9be2015-10-28 15:09:23 +080078
Hans de Goede970530c2016-01-14 09:41:45 +010079static int register_count;
80static DEFINE_MUTEX(register_count_mutex);
Hans de Goede14e93552016-01-14 09:41:46 +010081static DEFINE_MUTEX(video_list_lock);
82static LIST_HEAD(video_bus_head);
Len Brown4be44fc2005-08-05 00:44:28 -040083static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010084static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000085static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Hans de Goede93a291d2015-06-16 16:27:52 +020086void acpi_video_detect_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Dmitry Frankd485ef42017-04-19 12:48:07 +030088/*
89 * Indices in the _BCL method response: the first two items are special,
90 * the rest are all supported levels.
91 *
92 * See page 575 of the ACPI spec 3.0
93 */
94enum acpi_video_level_idx {
95 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
96 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
97 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
98};
99
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200100static const struct acpi_device_id video_device_ids[] = {
101 {ACPI_VIDEO_HID, 0},
102 {"", 0},
103};
104MODULE_DEVICE_TABLE(acpi, video_device_ids);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500107 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200109 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 .ops = {
111 .add = acpi_video_bus_add,
112 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000113 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400114 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400118 u8 multihead:1; /* can switch video heads */
119 u8 rom:1; /* can retrieve a video rom */
120 u8 post:1; /* can configure the head to */
121 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
124struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500125 u8 _DOS:1; /* Enable/Disable output switching */
126 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
127 u8 _ROM:1; /* Get ROM Data */
128 u8 _GPD:1; /* Get POST Device */
129 u8 _SPD:1; /* Set POST Device */
130 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400131 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
Len Brown4be44fc2005-08-05 00:44:28 -0400134struct acpi_video_device_attrib {
135 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500136 u32 display_port_attachment:4; /* This field differentiates the display type */
137 u32 display_type:4; /* Describe the specific type in use */
138 u32 vendor_specific:4; /* Chipset Vendor Specific */
139 u32 bios_can_detect:1; /* BIOS can detect the device */
140 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400141 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500142 u32 pipe_id:3; /* For VGA multiple-head devices. */
143 u32 reserved:10; /* Must be 0 */
Dmitry Frank592c8092017-04-19 13:36:18 +0300144
145 /*
146 * The device ID might not actually follow the scheme described by this
147 * struct acpi_video_device_attrib. If it does, then this bit
148 * device_id_scheme is set; otherwise, other fields should be ignored.
149 *
150 * (but also see the global flag device_id_scheme)
151 */
152 u32 device_id_scheme:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155struct acpi_video_enumerated_device {
156 union {
157 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400158 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 } value;
160 struct acpi_video_device *bind_info;
161};
162
163struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400164 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200165 bool backlight_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400168 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800169 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400170 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400172 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500173 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800174 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800175 struct input_dev *input;
176 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200177 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178};
179
180struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400181 u8 crt:1;
182 u8 lcd:1;
183 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500184 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400185 u8 bios:1;
186 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000187 u8 notify:1;
188 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189};
190
191struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500192 u8 _ADR:1; /* Return the unique ID */
193 u8 _BCL:1; /* Query list of brightness control levels supported */
194 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800195 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800196 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500197 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198};
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400201 unsigned long device_id;
202 struct acpi_video_device_flags flags;
203 struct acpi_video_device_cap cap;
204 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200205 struct delayed_work switch_brightness_work;
206 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400207 struct acpi_video_bus *video;
208 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800210 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400211 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
215static void acpi_video_device_rebind(struct acpi_video_bus *video);
216static void acpi_video_device_bind(struct acpi_video_bus *video,
217 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800219static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
220 int level);
221static int acpi_video_device_lcd_get_level_current(
222 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000223 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400224static int acpi_video_get_next_level(struct acpi_video_device *device,
225 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200226static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Felipe Contreras21fcb342013-08-01 18:43:59 -0500228/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800229static int acpi_video_get_brightness(struct backlight_device *bd)
230{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400231 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000232 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200233 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800234
Danny Baumanna89803d2013-03-19 16:22:50 +0000235 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800236 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300237 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
Matthew Garrett38531e62007-12-26 02:03:26 +0000238 if (vd->brightness->levels[i] == cur_level)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300239 return i - ACPI_VIDEO_FIRST_LEVEL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000240 }
241 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800242}
243
244static int acpi_video_set_brightness(struct backlight_device *bd)
245{
Dmitry Frankd485ef42017-04-19 12:48:07 +0300246 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200247 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800248
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200249 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800250 return acpi_video_device_lcd_set_level(vd,
251 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800252}
253
Lionel Debrouxacc24722010-11-16 14:14:02 +0100254static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000255 .get_brightness = acpi_video_get_brightness,
256 .update_status = acpi_video_set_brightness,
257};
258
Zhang Rui702ed512008-01-17 15:51:22 +0800259/* thermal cooling device callbacks */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300260static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
261 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800262{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400263 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800264 struct acpi_video_device *video = acpi_driver_data(device);
265
Dmitry Frankd485ef42017-04-19 12:48:07 +0300266 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000267 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800268}
269
Dmitry Frankd485ef42017-04-19 12:48:07 +0300270static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
271 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800272{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400273 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800274 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400275 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000276 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800277
Danny Baumanna89803d2013-03-19 16:22:50 +0000278 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800279 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300280 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
281 offset++)
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000282 if (level == video->brightness->levels[offset]) {
283 *state = video->brightness->count - offset - 1;
284 return 0;
285 }
Zhang Rui702ed512008-01-17 15:51:22 +0800286
287 return -EINVAL;
288}
289
290static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400291video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800292{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400293 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800294 struct acpi_video_device *video = acpi_driver_data(device);
295 int level;
296
Dmitry Frankd485ef42017-04-19 12:48:07 +0300297 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
Zhang Rui702ed512008-01-17 15:51:22 +0800298 return -EINVAL;
299
300 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200301 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800302 return acpi_video_device_lcd_set_level(video, level);
303}
304
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400305static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800306 .get_max_state = video_get_max_state,
307 .get_cur_state = video_get_cur_state,
308 .set_cur_state = video_set_cur_state,
309};
310
Felipe Contreras21fcb342013-08-01 18:43:59 -0500311/*
312 * --------------------------------------------------------------------------
313 * Video Management
314 * --------------------------------------------------------------------------
315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317static int
Aaron Lu05950092016-04-27 20:45:04 +0800318acpi_video_device_lcd_query_levels(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400319 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Len Brown4be44fc2005-08-05 00:44:28 -0400321 int status;
322 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
323 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 *levels = NULL;
327
Aaron Lu05950092016-04-27 20:45:04 +0800328 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400330 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400331 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500332 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400333 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 status = -EFAULT;
335 goto err;
336 }
337
338 *levels = obj;
339
Patrick Mocheld550d982006-06-27 00:41:40 -0400340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200342err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800343 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348static int
Len Brown4be44fc2005-08-05 00:44:28 -0400349acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Zhang Rui24450c72009-03-18 16:27:10 +0800351 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800352 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Jiang Liu0db98202013-06-29 00:24:39 +0800354 status = acpi_execute_simple_method(device->dev->handle,
355 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800356 if (ACPI_FAILURE(status)) {
357 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
358 return -EIO;
359 }
360
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400361 device->brightness->curr = level;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300362 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
363 state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800364 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800365 if (device->backlight)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300366 device->backlight->props.brightness =
367 state - ACPI_VIDEO_FIRST_LEVEL;
Zhang Rui24450c72009-03-18 16:27:10 +0800368 return 0;
369 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800370
Zhang Rui24450c72009-03-18 16:27:10 +0800371 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
372 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Zhang Rui45cb50e2009-04-24 12:13:18 -0400375/*
376 * For some buggy _BQC methods, we need to add a constant value to
377 * the _BQC return value to get the actual current brightness level
378 */
379
380static int bqc_offset_aml_bug_workaround;
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200381static int video_set_bqc_offset(const struct dmi_system_id *d)
Zhang Rui45cb50e2009-04-24 12:13:18 -0400382{
383 bqc_offset_aml_bug_workaround = 9;
384 return 0;
385}
386
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200387static int video_disable_backlight_sysfs_if(
Hans de Goede654a1822015-06-09 10:32:25 +0200388 const struct dmi_system_id *d)
389{
390 if (disable_backlight_sysfs_if == -1)
391 disable_backlight_sysfs_if = 1;
392 return 0;
393}
394
Aaron Lue50b9be2015-10-28 15:09:23 +0800395static int video_set_device_id_scheme(const struct dmi_system_id *d)
396{
397 device_id_scheme = true;
398 return 0;
399}
400
401static int video_enable_only_lcd(const struct dmi_system_id *d)
402{
403 only_lcd = true;
404 return 0;
405}
406
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100407static int video_set_report_key_events(const struct dmi_system_id *id)
408{
409 if (report_key_events == -1)
410 report_key_events = (uintptr_t)id->driver_data;
411 return 0;
412}
413
Hans de Goede4f7f9642019-07-12 12:00:33 +0200414static int video_hw_changes_brightness(
415 const struct dmi_system_id *d)
416{
417 if (hw_changes_brightness == -1)
418 hw_changes_brightness = 1;
419 return 0;
420}
421
Christoph Hellwig6faadbb2017-09-14 11:59:30 +0200422static const struct dmi_system_id video_dmi_table[] = {
Zhang Rui45cb50e2009-04-24 12:13:18 -0400423 /*
424 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
425 */
426 {
427 .callback = video_set_bqc_offset,
428 .ident = "Acer Aspire 5720",
429 .matches = {
430 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
431 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
432 },
433 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400434 {
435 .callback = video_set_bqc_offset,
436 .ident = "Acer Aspire 5710Z",
437 .matches = {
438 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
439 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
440 },
441 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400442 {
443 .callback = video_set_bqc_offset,
444 .ident = "eMachines E510",
445 .matches = {
446 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
447 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
448 },
449 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400450 {
451 .callback = video_set_bqc_offset,
452 .ident = "Acer Aspire 5315",
453 .matches = {
454 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
455 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
456 },
457 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800458 {
459 .callback = video_set_bqc_offset,
460 .ident = "Acer Aspire 7720",
461 .matches = {
462 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
463 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
464 },
465 },
Hans de Goede5f240792014-08-28 10:20:46 +0200466
467 /*
Hans de Goede654a1822015-06-09 10:32:25 +0200468 * Some machines have a broken acpi-video interface for brightness
469 * control, but still need an acpi_video_device_lcd_set_level() call
470 * on resume to turn the backlight power on. We Enable backlight
471 * control on these systems, but do not register a backlight sysfs
472 * as brightness control does not work.
473 */
474 {
Hans de Goedede588b82016-01-11 14:46:17 +0100475 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
476 .callback = video_disable_backlight_sysfs_if,
477 .ident = "Toshiba Portege R700",
478 .matches = {
479 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
480 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"),
481 },
482 },
483 {
Hans de Goede654a1822015-06-09 10:32:25 +0200484 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
485 .callback = video_disable_backlight_sysfs_if,
486 .ident = "Toshiba Portege R830",
487 .matches = {
488 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
489 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
490 },
491 },
Hans de Goedeb21f2e82016-01-14 14:24:39 +0100492 {
493 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
494 .callback = video_disable_backlight_sysfs_if,
495 .ident = "Toshiba Satellite R830",
496 .matches = {
497 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
498 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"),
499 },
500 },
Aaron Lue50b9be2015-10-28 15:09:23 +0800501 /*
502 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
503 * but the IDs actually follow the Device ID Scheme.
504 */
505 {
506 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
507 .callback = video_set_device_id_scheme,
508 .ident = "ESPRIMO Mobile M9410",
509 .matches = {
510 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
511 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
512 },
513 },
514 /*
515 * Some machines have multiple video output devices, but only the one
516 * that is the type of LCD can do the backlight control so we should not
517 * register backlight interface for other video output devices.
518 */
519 {
520 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
521 .callback = video_enable_only_lcd,
522 .ident = "ESPRIMO Mobile M9410",
523 .matches = {
524 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
525 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
526 },
527 },
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100528 /*
529 * Some machines report wrong key events on the acpi-bus, suppress
530 * key event reporting on these. Note this is only intended to work
531 * around events which are plain wrong. In some cases we get double
532 * events, in this case acpi-video is considered the canonical source
533 * and the events from the other source should be filtered. E.g.
534 * by calling acpi_video_handles_brightness_key_presses() from the
535 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
536 */
537 {
538 .callback = video_set_report_key_events,
539 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
540 .ident = "Dell Vostro V131",
541 .matches = {
542 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
543 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
544 },
545 },
Hans de Goede4f7f9642019-07-12 12:00:33 +0200546 /*
547 * Some machines change the brightness themselves when a brightness
548 * hotkey gets pressed, despite us telling them not to. In this case
549 * acpi_video_device_notify() should only call backlight_force_update(
550 * BACKLIGHT_UPDATE_HOTKEY) and not do anything else.
551 */
552 {
553 /* https://bugzilla.kernel.org/show_bug.cgi?id=204077 */
554 .callback = video_hw_changes_brightness,
555 .ident = "Packard Bell EasyNote MZ35",
556 .matches = {
557 DMI_MATCH(DMI_SYS_VENDOR, "Packard Bell"),
558 DMI_MATCH(DMI_PRODUCT_NAME, "EasyNote MZ35"),
559 },
560 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400561 {}
562};
563
Danny Baumann994fa632013-03-19 16:22:52 +0000564static unsigned long long
565acpi_video_bqc_value_to_level(struct acpi_video_device *device,
566 unsigned long long bqc_value)
567{
568 unsigned long long level;
569
570 if (device->brightness->flags._BQC_use_index) {
571 /*
Dmitry Frankd485ef42017-04-19 12:48:07 +0300572 * _BQC returns an index that doesn't account for the first 2
573 * items with special meaning (see enum acpi_video_level_idx),
574 * so we need to compensate for that by offsetting ourselves
Danny Baumann994fa632013-03-19 16:22:52 +0000575 */
576 if (device->brightness->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300577 bqc_value = device->brightness->count -
578 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
Danny Baumann994fa632013-03-19 16:22:52 +0000579
Dmitry Frankd485ef42017-04-19 12:48:07 +0300580 level = device->brightness->levels[bqc_value +
581 ACPI_VIDEO_FIRST_LEVEL];
Danny Baumann994fa632013-03-19 16:22:52 +0000582 } else {
583 level = bqc_value;
584 }
585
586 level += bqc_offset_aml_bug_workaround;
587
588 return level;
589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591static int
Len Brown4be44fc2005-08-05 00:44:28 -0400592acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000593 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Zhang Ruic8890f92009-03-18 16:27:08 +0800595 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800596 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800597
Zhang Ruic60d6382009-03-18 16:27:18 +0800598 if (device->cap._BQC || device->cap._BCQ) {
599 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
600
601 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800602 NULL, level);
603 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000604 if (raw) {
605 /*
606 * Caller has indicated he wants the raw
607 * value returned by _BQC, so don't furtherly
608 * mess with the value.
609 */
610 return 0;
611 }
612
Danny Baumann994fa632013-03-19 16:22:52 +0000613 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800614
Dmitry Frankd485ef42017-04-19 12:48:07 +0300615 for (i = ACPI_VIDEO_FIRST_LEVEL;
616 i < device->brightness->count; i++)
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800617 if (device->brightness->levels[i] == *level) {
618 device->brightness->curr = *level;
619 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200620 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000621 /*
622 * BQC returned an invalid level.
623 * Stop using it.
624 */
625 ACPI_WARNING((AE_INFO,
626 "%s returned an invalid level",
627 buf));
628 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800629 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500630 /*
631 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800632 * should we return an error or ignore this failure?
633 * dev->brightness->curr is a cached value which stores
634 * the correct current backlight level in most cases.
635 * ACPI video backlight still works w/ buggy _BQC.
636 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
637 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800638 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
639 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800640 }
641 }
642
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400643 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647static int
Len Brown4be44fc2005-08-05 00:44:28 -0400648acpi_video_device_EDID(struct acpi_video_device *device,
649 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Len Brown4be44fc2005-08-05 00:44:28 -0400651 int status;
652 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
653 union acpi_object *obj;
654 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
655 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 *edid = NULL;
659
660 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400661 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (length == 128)
663 arg0.integer.value = 1;
664 else if (length == 256)
665 arg0.integer.value = 2;
666 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400667 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Patrick Mochel90130262006-05-19 16:54:48 -0400669 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400671 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200673 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 if (obj && obj->type == ACPI_TYPE_BUFFER)
676 *edid = obj;
677 else {
Len Brown64684632006-06-26 23:41:38 -0400678 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 status = -EFAULT;
680 kfree(obj);
681 }
682
Patrick Mocheld550d982006-06-27 00:41:40 -0400683 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/* bus */
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*
689 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500690 * video : video bus device pointer
691 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * 0. The system BIOS should NOT automatically switch(toggle)
693 * the active display output.
694 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100695 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 * 2. The _DGS value should be locked.
697 * 3. The system BIOS should not automatically switch (toggle) the
698 * active display output, but instead generate the display switch
699 * event notify code.
700 * lcd_flag :
701 * 0. The system BIOS should automatically control the brightness level
Kacper Piwińskib5b42b22019-10-07 17:48:18 +0200702 * of the LCD when:
703 * - the power changes from AC to DC (ACPI appendix B)
704 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500705 * 1. The system BIOS should NOT automatically control the brightness
Kacper Piwińskib5b42b22019-10-07 17:48:18 +0200706 * level of the LCD when:
707 * - the power changes from AC to DC (ACPI appendix B)
708 * - a brightness hotkey gets pressed (implied by Win7/8 backlight docs)
Felipe Contreras21fcb342013-08-01 18:43:59 -0500709 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400710 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 */
712
713static int
Len Brown4be44fc2005-08-05 00:44:28 -0400714acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Igor Murzovea9f8852012-03-30 21:32:08 +0400716 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Zhang Ruib0373842012-06-20 09:48:43 +0800718 if (!video->cap._DOS)
719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Igor Murzovea9f8852012-03-30 21:32:08 +0400721 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
722 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800723 video->dos_setting = (lcd_flag << 2) | bios_flag;
724 status = acpi_execute_simple_method(video->device->handle, "_DOS",
725 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400726 if (ACPI_FAILURE(status))
727 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Igor Murzovea9f8852012-03-30 21:32:08 +0400729 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500733 * Simple comparison function used to sort backlight levels.
734 */
735
736static int
737acpi_video_cmp_level(const void *a, const void *b)
738{
739 return *(int *)a - *(int *)b;
740}
741
742/*
Aaron Lua50188d2013-04-22 14:08:32 +0200743 * Decides if _BQC/_BCQ for this system is usable
744 *
745 * We do this by changing the level first and then read out the current
746 * brightness level, if the value does not match, find out if it is using
747 * index. If not, clear the _BQC/_BCQ capability.
748 */
749static int acpi_video_bqc_quirk(struct acpi_video_device *device,
750 int max_level, int current_level)
751{
752 struct acpi_video_device_brightness *br = device->brightness;
753 int result;
754 unsigned long long level;
755 int test_level;
756
757 /* don't mess with existing known broken systems */
758 if (bqc_offset_aml_bug_workaround)
759 return 0;
760
761 /*
762 * Some systems always report current brightness level as maximum
Dmitry Frank592c8092017-04-19 13:36:18 +0300763 * through _BQC, we need to test another value for them. However,
764 * there is a subtlety:
765 *
766 * If the _BCL package ordering is descending, the first level
767 * (br->levels[2]) is likely to be 0, and if the number of levels
768 * matches the number of steps, we might confuse a returned level to
769 * mean the index.
770 *
771 * For example:
772 *
773 * current_level = max_level = 100
774 * test_level = 0
775 * returned level = 100
776 *
777 * In this case 100 means the level, not the index, and _BCM failed.
778 * Still, if the _BCL package ordering is descending, the index of
779 * level 0 is also 100, so we assume _BQC is indexed, when it's not.
780 *
781 * This causes all _BQC calls to return bogus values causing weird
782 * behavior from the user's perspective. For example:
783 *
784 * xbacklight -set 10; xbacklight -set 20;
785 *
786 * would flash to 90% and then slowly down to the desired level (20).
787 *
788 * The solution is simple; test anything other than the first level
789 * (e.g. 1).
Aaron Lua50188d2013-04-22 14:08:32 +0200790 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300791 test_level = current_level == max_level
792 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
793 : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200794
795 result = acpi_video_device_lcd_set_level(device, test_level);
796 if (result)
797 return result;
798
799 result = acpi_video_device_lcd_get_level_current(device, &level, true);
800 if (result)
801 return result;
802
803 if (level != test_level) {
804 /* buggy _BQC found, need to find out if it uses index */
805 if (level < br->count) {
806 if (br->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300807 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
808 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
Aaron Lua50188d2013-04-22 14:08:32 +0200809 br->flags._BQC_use_index = 1;
810 }
811
812 if (!br->flags._BQC_use_index)
813 device->cap._BQC = device->cap._BCQ = 0;
814 }
815
816 return 0;
817}
818
Aaron Lu05950092016-04-27 20:45:04 +0800819int acpi_video_get_levels(struct acpi_device *device,
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800820 struct acpi_video_device_brightness **dev_br,
821 int *pmax_level)
Julia Jomantaite469778c2008-06-23 22:50:42 +0100822{
823 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800824 int i, max_level = 0, count = 0, level_ac_battery = 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100825 union acpi_object *o;
826 struct acpi_video_device_brightness *br = NULL;
Aaron Lu05950092016-04-27 20:45:04 +0800827 int result = 0;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100828 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100829
Aaron Lu05950092016-04-27 20:45:04 +0800830 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device->handle,
831 &obj))) {
Julia Jomantaite469778c2008-06-23 22:50:42 +0100832 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
833 "LCD brightness level\n"));
Aaron Lu05950092016-04-27 20:45:04 +0800834 result = -ENODEV;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100835 goto out;
836 }
837
Dmitry Frankd485ef42017-04-19 12:48:07 +0300838 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
Aaron Lu05950092016-04-27 20:45:04 +0800839 result = -EINVAL;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100840 goto out;
Aaron Lu05950092016-04-27 20:45:04 +0800841 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100842
843 br = kzalloc(sizeof(*br), GFP_KERNEL);
844 if (!br) {
845 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800846 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100847 goto out;
848 }
849
Dmitry Frank592c8092017-04-19 13:36:18 +0300850 /*
851 * Note that we have to reserve 2 extra items (ACPI_VIDEO_FIRST_LEVEL),
852 * in order to account for buggy BIOS which don't export the first two
853 * special levels (see below)
854 */
Kees Cook6da2ec52018-06-12 13:55:00 -0700855 br->levels = kmalloc_array(obj->package.count + ACPI_VIDEO_FIRST_LEVEL,
856 sizeof(*br->levels),
857 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800858 if (!br->levels) {
859 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100860 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800861 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100862
863 for (i = 0; i < obj->package.count; i++) {
864 o = (union acpi_object *)&obj->package.elements[i];
865 if (o->type != ACPI_TYPE_INTEGER) {
866 printk(KERN_ERR PREFIX "Invalid data\n");
867 continue;
868 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100869 value = (u32) o->integer.value;
870 /* Skip duplicate entries */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300871 if (count > ACPI_VIDEO_FIRST_LEVEL
872 && br->levels[count - 1] == value)
Hans de Goedebd8ba202014-02-13 16:32:51 +0100873 continue;
874
875 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100876
877 if (br->levels[count] > max_level)
878 max_level = br->levels[count];
879 count++;
880 }
881
Zhang Ruid32f6942009-03-18 16:27:12 +0800882 /*
883 * some buggy BIOS don't export the levels
884 * when machine is on AC/Battery in _BCL package.
885 * In this case, the first two elements in _BCL packages
886 * are also supported brightness levels that OS should take care of.
887 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300888 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
889 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
Zhang Ruid32f6942009-03-18 16:27:12 +0800890 level_ac_battery++;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300891 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
Zhang Rui90af2cf2009-04-14 11:02:18 +0800892 level_ac_battery++;
893 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500894
Dmitry Frankd485ef42017-04-19 12:48:07 +0300895 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
896 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
Zhang Ruid32f6942009-03-18 16:27:12 +0800897 br->flags._BCL_no_ac_battery_levels = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300898 for (i = (count - 1 + level_ac_battery);
899 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
Zhang Ruid32f6942009-03-18 16:27:12 +0800900 br->levels[i] = br->levels[i - level_ac_battery];
901 count += level_ac_battery;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300902 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000903 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800904
Zhang Ruid80fb992009-03-18 16:27:14 +0800905 /* Check if the _BCL package is in a reversed order */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300906 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
Zhang Ruid80fb992009-03-18 16:27:14 +0800907 br->flags._BCL_reversed = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300908 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
909 count - ACPI_VIDEO_FIRST_LEVEL,
910 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
911 acpi_video_cmp_level, NULL);
Zhang Ruid80fb992009-03-18 16:27:14 +0800912 } else if (max_level != br->levels[count - 1])
913 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000914 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100915
916 br->count = count;
Aaron Lu05950092016-04-27 20:45:04 +0800917 *dev_br = br;
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800918 if (pmax_level)
919 *pmax_level = max_level;
Aaron Lu05950092016-04-27 20:45:04 +0800920
921out:
922 kfree(obj);
923 return result;
924out_free:
925 kfree(br);
926 goto out;
927}
928EXPORT_SYMBOL(acpi_video_get_levels);
929
930/*
931 * Arg:
932 * device : video output device (LCD, CRT, ..)
933 *
934 * Return Value:
935 * Maximum brightness level
936 *
937 * Allocate and initialize device->brightness.
938 */
939
940static int
941acpi_video_init_brightness(struct acpi_video_device *device)
942{
943 int i, max_level = 0;
944 unsigned long long level, level_old;
945 struct acpi_video_device_brightness *br = NULL;
946 int result = -EINVAL;
947
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800948 result = acpi_video_get_levels(device->dev, &br, &max_level);
Aaron Lu05950092016-04-27 20:45:04 +0800949 if (result)
950 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100951 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800952
Zhang Rui1a7c6182009-03-18 16:27:16 +0800953 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400954 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800955
956 if (!device->cap._BQC)
957 goto set_level;
958
Danny Baumanna89803d2013-03-19 16:22:50 +0000959 result = acpi_video_device_lcd_get_level_current(device,
960 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800961 if (result)
962 goto out_free_levels;
963
Aaron Lua50188d2013-04-22 14:08:32 +0200964 result = acpi_video_bqc_quirk(device, max_level, level_old);
965 if (result)
966 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800967 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200968 * cap._BQC may get cleared due to _BQC is found to be broken
969 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800970 */
Aaron Lua50188d2013-04-22 14:08:32 +0200971 if (!device->cap._BQC)
972 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800973
Aaron Lu545ef362013-11-15 14:39:12 +0800974 level = acpi_video_bqc_value_to_level(device, level_old);
975 /*
976 * On some buggy laptops, _BQC returns an uninitialized
977 * value when invoked for the first time, i.e.
978 * level_old is invalid (no matter whether it's a level
979 * or an index). Set the backlight to max_level in this case.
980 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300981 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
Aaron Lu545ef362013-11-15 14:39:12 +0800982 if (level == br->levels[i])
983 break;
984 if (i == br->count || !level)
985 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800986
Zhang Ruie047cca2009-04-09 14:24:35 +0800987set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400988 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800989 if (result)
990 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800991
Zhang Ruid32f6942009-03-18 16:27:12 +0800992 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Dmitry Frankd485ef42017-04-19 12:48:07 +0300993 "found %d brightness levels\n",
994 br->count - ACPI_VIDEO_FIRST_LEVEL));
Aaron Lu05950092016-04-27 20:45:04 +0800995 return 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100996
997out_free_levels:
998 kfree(br->levels);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100999 kfree(br);
Julia Jomantaite469778c2008-06-23 22:50:42 +01001000 device->brightness = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +08001001 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +01001002}
1003
1004/*
1005 * Arg:
1006 * device : video output device (LCD, CRT, ..)
1007 *
1008 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001009 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001011 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 * device.
1013 */
1014
Len Brown4be44fc2005-08-05 00:44:28 -04001015static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Jiang Liu952c63e2013-06-29 00:24:38 +08001017 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001019 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -04001020 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001021 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -04001022 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001023 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +08001024 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001025 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +08001026 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
1027 device->cap._BCQ = 1;
1028 }
1029
Jiang Liu952c63e2013-06-29 00:24:38 +08001030 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -04001031 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032}
1033
1034/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05001035 * Arg:
1036 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 *
1038 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001039 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001041 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 */
1043
Len Brown4be44fc2005-08-05 00:44:28 -04001044static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Jiang Liu952c63e2013-06-29 00:24:38 +08001046 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001048 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001050 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001052 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001054 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001056 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060/*
1061 * Check whether the video bus device has required AML method to
1062 * support the desired features
1063 */
1064
Len Brown4be44fc2005-08-05 00:44:28 -04001065static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
Len Brown4be44fc2005-08-05 00:44:28 -04001067 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001068 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001071 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001073 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001074 if (!dev)
1075 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001076 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001077
Felipe Contreras21fcb342013-08-01 18:43:59 -05001078 /*
1079 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 * to check well known required nodes.
1081 */
1082
Julius Volz98fb8fe2007-02-20 16:38:40 +01001083 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001084 if (video->cap._DOS || video->cap._DOD) {
1085 if (!video->cap._DOS) {
1086 printk(KERN_WARNING FW_BUG
1087 "ACPI(%s) defines _DOD but not _DOS\n",
1088 acpi_device_bid(video->device));
1089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 video->flags.multihead = 1;
1091 status = 0;
1092 }
1093
Julius Volz98fb8fe2007-02-20 16:38:40 +01001094 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001095 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 video->flags.rom = 1;
1097 status = 0;
1098 }
1099
Julius Volz98fb8fe2007-02-20 16:38:40 +01001100 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001101 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 video->flags.post = 1;
1103 status = 0;
1104 }
1105
Patrick Mocheld550d982006-06-27 00:41:40 -04001106 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107}
1108
Felipe Contreras21fcb342013-08-01 18:43:59 -05001109/*
1110 * --------------------------------------------------------------------------
1111 * Driver Interface
1112 * --------------------------------------------------------------------------
1113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001116static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001117acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1118{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001119 struct acpi_video_enumerated_device *ids;
1120 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001121
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001122 for (i = 0; i < video->attached_count; i++) {
1123 ids = &video->attached_array[i];
1124 if ((ids->value.int_val & 0xffff) == device_id)
1125 return &ids->value.attrib;
1126 }
1127
Rui Zhang82cae992007-01-03 23:40:53 -05001128 return NULL;
1129}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001132acpi_video_get_device_type(struct acpi_video_bus *video,
1133 unsigned long device_id)
1134{
1135 struct acpi_video_enumerated_device *ids;
1136 int i;
1137
1138 for (i = 0; i < video->attached_count; i++) {
1139 ids = &video->attached_array[i];
1140 if ((ids->value.int_val & 0xffff) == device_id)
1141 return ids->value.int_val;
1142 }
1143
1144 return 0;
1145}
1146
1147static int
Len Brown4be44fc2005-08-05 00:44:28 -04001148acpi_video_bus_get_one_device(struct acpi_device *device,
1149 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001151 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001152 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001153 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001154 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Len Brown4be44fc2005-08-05 00:44:28 -04001156 status =
1157 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001158 /* Some device omits _ADR, we skip them instead of fail */
1159 if (ACPI_FAILURE(status))
1160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Aaron Lu91e13aa2013-04-25 02:47:49 +00001162 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1163 if (!data)
1164 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Aaron Lu91e13aa2013-04-25 02:47:49 +00001166 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1167 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1168 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Aaron Lu91e13aa2013-04-25 02:47:49 +00001170 data->device_id = device_id;
1171 data->video = video;
1172 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001173 INIT_DELAYED_WORK(&data->switch_brightness_work,
1174 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Aaron Lu91e13aa2013-04-25 02:47:49 +00001176 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001177
Aaron Lue50b9be2015-10-28 15:09:23 +08001178 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001179 switch (attribute->display_type) {
1180 case ACPI_VIDEO_DISPLAY_CRT:
1181 data->flags.crt = 1;
1182 break;
1183 case ACPI_VIDEO_DISPLAY_TV:
1184 data->flags.tvout = 1;
1185 break;
1186 case ACPI_VIDEO_DISPLAY_DVI:
1187 data->flags.dvi = 1;
1188 break;
1189 case ACPI_VIDEO_DISPLAY_LCD:
1190 data->flags.lcd = 1;
1191 break;
1192 default:
1193 data->flags.unknown = 1;
1194 break;
1195 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001196 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001197 data->flags.bios = 1;
1198 } else {
1199 /* Check for legacy IDs */
1200 device_type = acpi_video_get_device_type(video, device_id);
1201 /* Ignore bits 16 and 18-20 */
1202 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001203 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1204 data->flags.crt = 1;
1205 break;
1206 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1207 data->flags.lcd = 1;
1208 break;
1209 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1210 data->flags.tvout = 1;
1211 break;
1212 default:
1213 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
Aaron Lu91e13aa2013-04-25 02:47:49 +00001217 acpi_video_device_bind(video, data);
1218 acpi_video_device_find_cap(data);
1219
Aaron Lu91e13aa2013-04-25 02:47:49 +00001220 mutex_lock(&video->device_list_lock);
1221 list_add_tail(&data->entry, &video->video_device_list);
1222 mutex_unlock(&video->device_list_lock);
1223
1224 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
1227/*
1228 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001229 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 *
1231 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001232 * none
1233 *
1234 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 * bind the ids with the corresponding video devices
1236 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Len Brown4be44fc2005-08-05 00:44:28 -04001239static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001241 struct acpi_video_device *dev;
1242
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001243 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001244
1245 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001246 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001247
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001248 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
1251/*
1252 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001253 * video : video bus device
1254 * device : video output device under the video
1255 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 *
1257 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001258 * none
1259 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 * Bind the ids with the corresponding video devices
1261 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001262 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264static void
Len Brown4be44fc2005-08-05 00:44:28 -04001265acpi_video_device_bind(struct acpi_video_bus *video,
1266 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001268 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001269 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001271 for (i = 0; i < video->attached_count; i++) {
1272 ids = &video->attached_array[i];
1273 if (device->device_id == (ids->value.int_val & 0xffff)) {
1274 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1276 }
1277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Aaron Lu0b8db272014-09-30 14:10:17 +08001280static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1281{
1282 struct acpi_video_bus *video = device->video;
1283 int i;
1284
Aaron Lub4df4632014-12-15 16:01:29 +08001285 /*
1286 * If we have a broken _DOD or we have more than 8 output devices
1287 * under the graphics controller node that we can't proper deal with
1288 * in the operation region code currently, no need to test.
1289 */
1290 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001291 return true;
1292
1293 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001294 if ((video->attached_array[i].value.int_val & 0xfff) ==
1295 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001296 return true;
1297 }
1298
1299 return false;
1300}
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/*
1303 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001304 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 *
1306 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001307 * < 0 : error
1308 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 * Call _DOD to enumerate all devices attached to display adapter
1310 *
Len Brown4be44fc2005-08-05 00:44:28 -04001311 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1314{
Len Brown4be44fc2005-08-05 00:44:28 -04001315 int status;
1316 int count;
1317 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001318 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001319 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1320 union acpi_object *dod = NULL;
1321 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Alex Hunge34fbba2016-05-27 15:47:06 +08001323 if (!video->cap._DOD)
1324 return AE_NOT_EXIST;
1325
Patrick Mochel90130262006-05-19 16:54:48 -04001326 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001328 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001329 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 }
1331
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001332 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001334 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 status = -EFAULT;
1336 goto out;
1337 }
1338
1339 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001340 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001342 active_list = kcalloc(1 + dod->package.count,
1343 sizeof(struct acpi_video_enumerated_device),
1344 GFP_KERNEL);
1345 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 status = -ENOMEM;
1347 goto out;
1348 }
1349
1350 count = 0;
1351 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001352 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001355 printk(KERN_ERR PREFIX
1356 "Invalid _DOD data in element %d\n", i);
1357 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001359
1360 active_list[count].value.int_val = obj->integer.value;
1361 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001362 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1363 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 count++;
1365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Jesper Juhl6044ec82005-11-07 01:01:32 -08001367 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001368
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001369 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001371
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001372out:
Len Brown02438d82006-06-30 03:19:10 -04001373 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001374 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
Len Brown4be44fc2005-08-05 00:44:28 -04001377static int
1378acpi_video_get_next_level(struct acpi_video_device *device,
1379 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001381 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001382 max = max_below = 0;
1383 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001384 /* Find closest level to level_current */
Dmitry Frankd485ef42017-04-19 12:48:07 +03001385 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001386 l = device->brightness->levels[i];
1387 if (abs(l - level_current) < abs(delta)) {
1388 delta = l - level_current;
1389 if (!delta)
1390 break;
1391 }
1392 }
1393 /* Ajust level_current to closest available level */
1394 level_current += delta;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001395 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001396 l = device->brightness->levels[i];
1397 if (l < min)
1398 min = l;
1399 if (l > max)
1400 max = l;
1401 if (l < min_above && l > level_current)
1402 min_above = l;
1403 if (l > max_below && l < level_current)
1404 max_below = l;
1405 }
1406
1407 switch (event) {
1408 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1409 return (level_current < max) ? min_above : min;
1410 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1411 return (level_current < max) ? min_above : max;
1412 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1413 return (level_current > min) ? max_below : min;
1414 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1415 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1416 return 0;
1417 default:
1418 return level_current;
1419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001422static void
1423acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001425 struct acpi_video_device *device = container_of(to_delayed_work(work),
1426 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001427 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001428 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001429 int result = -EINVAL;
1430
Aaron Lufbc9fe12013-10-11 21:27:45 +08001431 /* no warning message if acpi_backlight=vendor or a quirk is used */
Hans de Goede654a1822015-06-09 10:32:25 +02001432 if (!device->backlight)
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001433 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001434
Julia Jomantaite469778c2008-06-23 22:50:42 +01001435 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001436 goto out;
1437
1438 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001439 &level_current,
1440 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001441 if (result)
1442 goto out;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001445
Zhang Rui24450c72009-03-18 16:27:10 +08001446 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001447
Matthew Garrett36342742009-07-14 17:06:03 +01001448 if (!result)
1449 backlight_force_update(device->backlight,
1450 BACKLIGHT_UPDATE_HOTKEY);
1451
Zhang Ruic8890f92009-03-18 16:27:08 +08001452out:
1453 if (result)
1454 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Matthew Garrette92a7162010-01-12 14:17:03 -05001457int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1458 void **edid)
1459{
1460 struct acpi_video_bus *video;
1461 struct acpi_video_device *video_device;
1462 union acpi_object *buffer = NULL;
1463 acpi_status status;
1464 int i, length;
1465
1466 if (!device || !acpi_driver_data(device))
1467 return -EINVAL;
1468
1469 video = acpi_driver_data(device);
1470
1471 for (i = 0; i < video->attached_count; i++) {
1472 video_device = video->attached_array[i].bind_info;
1473 length = 256;
1474
1475 if (!video_device)
1476 continue;
1477
Zhang Rui82069552010-12-06 15:04:24 +08001478 if (!video_device->cap._DDC)
1479 continue;
1480
Matthew Garrette92a7162010-01-12 14:17:03 -05001481 if (type) {
1482 switch (type) {
1483 case ACPI_VIDEO_DISPLAY_CRT:
1484 if (!video_device->flags.crt)
1485 continue;
1486 break;
1487 case ACPI_VIDEO_DISPLAY_TV:
1488 if (!video_device->flags.tvout)
1489 continue;
1490 break;
1491 case ACPI_VIDEO_DISPLAY_DVI:
1492 if (!video_device->flags.dvi)
1493 continue;
1494 break;
1495 case ACPI_VIDEO_DISPLAY_LCD:
1496 if (!video_device->flags.lcd)
1497 continue;
1498 break;
1499 }
1500 } else if (video_device->device_id != device_id) {
1501 continue;
1502 }
1503
1504 status = acpi_video_device_EDID(video_device, &buffer, length);
1505
1506 if (ACPI_FAILURE(status) || !buffer ||
1507 buffer->type != ACPI_TYPE_BUFFER) {
1508 length = 128;
1509 status = acpi_video_device_EDID(video_device, &buffer,
1510 length);
1511 if (ACPI_FAILURE(status) || !buffer ||
1512 buffer->type != ACPI_TYPE_BUFFER) {
1513 continue;
1514 }
1515 }
1516
1517 *edid = buffer->buffer.pointer;
1518 return length;
1519 }
1520
1521 return -ENODEV;
1522}
1523EXPORT_SYMBOL(acpi_video_get_edid);
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525static int
Len Brown4be44fc2005-08-05 00:44:28 -04001526acpi_video_bus_get_devices(struct acpi_video_bus *video,
1527 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Igor Murzovfba4e082012-10-13 04:41:25 +04001529 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001530 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Igor Murzovfba4e082012-10-13 04:41:25 +04001532 /*
1533 * There are systems where video module known to work fine regardless
1534 * of broken _DOD and ignoring returned value here doesn't cause
1535 * any issues later.
1536 */
1537 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001539 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001542 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001543 dev_err(&dev->dev, "Can't attach device\n");
1544 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
Aaron Lub4df4632014-12-15 16:01:29 +08001546 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001548 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551/* acpi_video interface */
1552
Aaron Luefaa14c2013-07-16 13:08:05 +08001553/*
1554 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1555 * preform any automatic brightness change on receiving a notification.
1556 */
Len Brown4be44fc2005-08-05 00:44:28 -04001557static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Aaron Luefaa14c2013-07-16 13:08:05 +08001559 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001560 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Len Brown4be44fc2005-08-05 00:44:28 -04001563static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Aaron Luefaa14c2013-07-16 13:08:05 +08001565 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001566 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
Bjorn Helgaas70155582009-04-07 15:37:11 +00001569static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001571 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001572 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001573 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001574
Aaron Lu67b662e2013-10-11 21:27:44 +08001575 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001576 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Luming Yue9dab192007-08-20 18:23:53 +08001578 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001581 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001583 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 break;
1585
Julius Volz98fb8fe2007-02-20 16:38:40 +01001586 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 * connector. */
1588 acpi_video_device_enumerate(video);
1589 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001590 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 break;
1592
Len Brown4be44fc2005-08-05 00:44:28 -04001593 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001594 keycode = KEY_SWITCHVIDEOMODE;
1595 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001596 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001597 keycode = KEY_VIDEO_NEXT;
1598 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001599 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001600 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 break;
1602
1603 default:
1604 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001605 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 break;
1607 }
1608
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001609 if (acpi_notifier_call_chain(device, event, 0))
1610 /* Something vetoed the keypress. */
1611 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001612
Hans de Goede05bc59a2015-12-22 19:09:51 +01001613 if (keycode && (report_key_events & REPORT_OUTPUT_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
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001623static void brightness_switch_event(struct acpi_video_device *video_device,
1624 u32 event)
1625{
1626 if (!brightness_switch_enabled)
1627 return;
1628
1629 video_device->switch_brightness_event = event;
1630 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1631}
1632
Len Brown4be44fc2005-08-05 00:44:28 -04001633static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001635 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001636 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001637 struct acpi_video_bus *bus;
1638 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001639 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001642 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001644 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001645 bus = video_device->video;
1646 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Hans de Goede4f7f9642019-07-12 12:00:33 +02001648 if (hw_changes_brightness > 0) {
1649 if (video_device->backlight)
1650 backlight_force_update(video_device->backlight,
1651 BACKLIGHT_UPDATE_HOTKEY);
1652 acpi_notifier_call_chain(device, event, 0);
1653 return;
1654 }
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001657 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001658 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001659 keycode = KEY_BRIGHTNESS_CYCLE;
1660 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001661 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001662 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001663 keycode = KEY_BRIGHTNESSUP;
1664 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001665 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001666 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001667 keycode = KEY_BRIGHTNESSDOWN;
1668 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001669 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001670 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001671 keycode = KEY_BRIGHTNESS_ZERO;
1672 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001673 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001674 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001675 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 break;
1677 default:
1678 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001679 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 break;
1681 }
Luming Yue9dab192007-08-20 18:23:53 +08001682
Zhang Rui7761f632008-01-25 14:48:12 +08001683 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001684
Hans de Goede05bc59a2015-12-22 19:09:51 +01001685 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001686 input_report_key(input, keycode, 1);
1687 input_sync(input);
1688 input_report_key(input, keycode, 0);
1689 input_sync(input);
1690 }
Luming Yue9dab192007-08-20 18:23:53 +08001691
Patrick Mocheld550d982006-06-27 00:41:40 -04001692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001695static int acpi_video_resume(struct notifier_block *nb,
1696 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001697{
1698 struct acpi_video_bus *video;
1699 struct acpi_video_device *video_device;
1700 int i;
1701
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001702 switch (val) {
1703 case PM_HIBERNATION_PREPARE:
1704 case PM_SUSPEND_PREPARE:
1705 case PM_RESTORE_PREPARE:
1706 return NOTIFY_DONE;
1707 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001708
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001709 video = container_of(nb, struct acpi_video_bus, pm_nb);
1710
1711 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001712
1713 for (i = 0; i < video->attached_count; i++) {
1714 video_device = video->attached_array[i].bind_info;
Hans de Goede654a1822015-06-09 10:32:25 +02001715 if (video_device && video_device->brightness)
1716 acpi_video_device_lcd_set_level(video_device,
1717 video_device->brightness->curr);
Matthew Garrett863c1492008-02-04 23:31:24 -08001718 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001719
1720 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001721}
1722
Zhang Ruic504f8c2009-12-30 15:59:23 +08001723static acpi_status
1724acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1725 void **return_value)
1726{
1727 struct acpi_device *device = context;
1728 struct acpi_device *sibling;
1729 int result;
1730
1731 if (handle == device->handle)
1732 return AE_CTRL_TERMINATE;
1733
1734 result = acpi_bus_get_device(handle, &sibling);
1735 if (result)
1736 return AE_OK;
1737
1738 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1739 return AE_ALREADY_EXISTS;
1740
1741 return AE_OK;
1742}
1743
Aaron Lu67b662e2013-10-11 21:27:44 +08001744static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1745{
Hans de Goede99678ed2014-05-15 13:22:33 +02001746 struct backlight_properties props;
1747 struct pci_dev *pdev;
1748 acpi_handle acpi_parent;
1749 struct device *parent = NULL;
1750 int result;
1751 static int count;
1752 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001753
Hans de Goede99678ed2014-05-15 13:22:33 +02001754 result = acpi_video_init_brightness(device);
1755 if (result)
1756 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001757
1758 if (disable_backlight_sysfs_if > 0)
1759 return;
1760
Hans de Goede99678ed2014-05-15 13:22:33 +02001761 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1762 if (!name)
1763 return;
1764 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001765
Hans de Goede99678ed2014-05-15 13:22:33 +02001766 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001767
Hans de Goede99678ed2014-05-15 13:22:33 +02001768 pdev = acpi_get_pci_dev(acpi_parent);
1769 if (pdev) {
1770 parent = &pdev->dev;
1771 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001772 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001773
1774 memset(&props, 0, sizeof(struct backlight_properties));
1775 props.type = BACKLIGHT_FIRMWARE;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001776 props.max_brightness =
1777 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Hans de Goede99678ed2014-05-15 13:22:33 +02001778 device->backlight = backlight_device_register(name,
1779 parent,
1780 device,
1781 &acpi_backlight_ops,
1782 &props);
1783 kfree(name);
Hans de Goede654a1822015-06-09 10:32:25 +02001784 if (IS_ERR(device->backlight)) {
1785 device->backlight = NULL;
Hans de Goede99678ed2014-05-15 13:22:33 +02001786 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001787 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001788
1789 /*
1790 * Save current brightness level in case we have to restore it
1791 * before acpi_video_device_lcd_set_level() is called next time.
1792 */
1793 device->backlight->props.brightness =
1794 acpi_video_get_brightness(device->backlight);
1795
1796 device->cooling_dev = thermal_cooling_device_register("LCD",
1797 device->dev, &video_cooling_ops);
1798 if (IS_ERR(device->cooling_dev)) {
1799 /*
1800 * Set cooling_dev to NULL so we don't crash trying to free it.
1801 * Also, why the hell we are returning early and not attempt to
1802 * register video output if cooling device registration failed?
1803 * -- dtor
1804 */
1805 device->cooling_dev = NULL;
1806 return;
1807 }
1808
1809 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1810 device->cooling_dev->id);
1811 result = sysfs_create_link(&device->dev->dev.kobj,
1812 &device->cooling_dev->device.kobj,
1813 "thermal_cooling");
1814 if (result)
1815 printk(KERN_ERR PREFIX "Create sysfs link\n");
1816 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1817 &device->dev->dev.kobj, "device");
1818 if (result)
1819 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001820}
1821
Aaron Ludce4ec22014-10-28 14:35:59 +08001822static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1823{
1824 struct acpi_video_device *dev;
1825 union acpi_object *levels;
1826
1827 mutex_lock(&video->device_list_lock);
1828 list_for_each_entry(dev, &video->video_device_list, entry) {
Aaron Lu9f9cd7e2016-05-21 15:30:46 +08001829 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
Aaron Ludce4ec22014-10-28 14:35:59 +08001830 kfree(levels);
1831 }
1832 mutex_unlock(&video->device_list_lock);
1833}
1834
Aaron Lue50b9be2015-10-28 15:09:23 +08001835static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1836{
1837 /*
1838 * Do not create backlight device for video output
1839 * device that is not in the enumerated list.
1840 */
1841 if (!acpi_video_device_in_dod(dev)) {
1842 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1843 return false;
1844 }
1845
1846 if (only_lcd)
1847 return dev->flags.lcd;
1848 return true;
1849}
1850
Aaron Lu67b662e2013-10-11 21:27:44 +08001851static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1852{
1853 struct acpi_video_device *dev;
1854
Hans de Goede53a92ba2014-05-21 15:39:55 +02001855 if (video->backlight_registered)
1856 return 0;
1857
Aaron Ludce4ec22014-10-28 14:35:59 +08001858 acpi_video_run_bcl_for_osi(video);
1859
Hans de Goede3bd6bce2015-06-16 16:27:51 +02001860 if (acpi_video_get_backlight_type() != acpi_backlight_video)
Hans de Goede99678ed2014-05-15 13:22:33 +02001861 return 0;
1862
Aaron Lu67b662e2013-10-11 21:27:44 +08001863 mutex_lock(&video->device_list_lock);
Aaron Lue50b9be2015-10-28 15:09:23 +08001864 list_for_each_entry(dev, &video->video_device_list, entry) {
1865 if (acpi_video_should_register_backlight(dev))
1866 acpi_video_dev_register_backlight(dev);
1867 }
Aaron Lu67b662e2013-10-11 21:27:44 +08001868 mutex_unlock(&video->device_list_lock);
1869
Hans de Goede99678ed2014-05-15 13:22:33 +02001870 video->backlight_registered = true;
1871
Aaron Lu67b662e2013-10-11 21:27:44 +08001872 video->pm_nb.notifier_call = acpi_video_resume;
1873 video->pm_nb.priority = 0;
1874 return register_pm_notifier(&video->pm_nb);
1875}
1876
1877static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1878{
1879 if (device->backlight) {
1880 backlight_device_unregister(device->backlight);
1881 device->backlight = NULL;
1882 }
1883 if (device->brightness) {
1884 kfree(device->brightness->levels);
1885 kfree(device->brightness);
1886 device->brightness = NULL;
1887 }
1888 if (device->cooling_dev) {
1889 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1890 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1891 thermal_cooling_device_unregister(device->cooling_dev);
1892 device->cooling_dev = NULL;
1893 }
1894}
1895
1896static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1897{
1898 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001899 int error;
1900
1901 if (!video->backlight_registered)
1902 return 0;
1903
1904 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001905
1906 mutex_lock(&video->device_list_lock);
1907 list_for_each_entry(dev, &video->video_device_list, entry)
1908 acpi_video_dev_unregister_backlight(dev);
1909 mutex_unlock(&video->device_list_lock);
1910
Hans de Goede99678ed2014-05-15 13:22:33 +02001911 video->backlight_registered = false;
1912
Aaron Lu67b662e2013-10-11 21:27:44 +08001913 return error;
1914}
1915
1916static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1917{
1918 acpi_status status;
1919 struct acpi_device *adev = device->dev;
1920
1921 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1922 acpi_video_device_notify, device);
1923 if (ACPI_FAILURE(status))
1924 dev_err(&adev->dev, "Error installing notify handler\n");
1925 else
1926 device->flags.notify = 1;
1927}
1928
1929static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1930{
1931 struct input_dev *input;
1932 struct acpi_video_device *dev;
1933 int error;
1934
1935 video->input = input = input_allocate_device();
1936 if (!input) {
1937 error = -ENOMEM;
1938 goto out;
1939 }
1940
1941 error = acpi_video_bus_start_devices(video);
1942 if (error)
1943 goto err_free_input;
1944
1945 snprintf(video->phys, sizeof(video->phys),
1946 "%s/video/input0", acpi_device_hid(video->device));
1947
1948 input->name = acpi_device_name(video->device);
1949 input->phys = video->phys;
1950 input->id.bustype = BUS_HOST;
1951 input->id.product = 0x06;
1952 input->dev.parent = &video->device->dev;
1953 input->evbit[0] = BIT(EV_KEY);
1954 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1955 set_bit(KEY_VIDEO_NEXT, input->keybit);
1956 set_bit(KEY_VIDEO_PREV, input->keybit);
1957 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1958 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1959 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1960 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1961 set_bit(KEY_DISPLAY_OFF, input->keybit);
1962
1963 error = input_register_device(input);
1964 if (error)
1965 goto err_stop_dev;
1966
1967 mutex_lock(&video->device_list_lock);
1968 list_for_each_entry(dev, &video->video_device_list, entry)
1969 acpi_video_dev_add_notify_handler(dev);
1970 mutex_unlock(&video->device_list_lock);
1971
1972 return 0;
1973
1974err_stop_dev:
1975 acpi_video_bus_stop_devices(video);
1976err_free_input:
1977 input_free_device(input);
1978 video->input = NULL;
1979out:
1980 return error;
1981}
1982
1983static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1984{
1985 if (dev->flags.notify) {
1986 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1987 acpi_video_device_notify);
1988 dev->flags.notify = 0;
1989 }
1990}
1991
1992static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1993{
1994 struct acpi_video_device *dev;
1995
1996 mutex_lock(&video->device_list_lock);
1997 list_for_each_entry(dev, &video->video_device_list, entry)
1998 acpi_video_dev_remove_notify_handler(dev);
1999 mutex_unlock(&video->device_list_lock);
2000
2001 acpi_video_bus_stop_devices(video);
2002 input_unregister_device(video->input);
2003 video->input = NULL;
2004}
2005
2006static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
2007{
2008 struct acpi_video_device *dev, *next;
2009
2010 mutex_lock(&video->device_list_lock);
2011 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
2012 list_del(&dev->entry);
2013 kfree(dev);
2014 }
2015 mutex_unlock(&video->device_list_lock);
2016
2017 return 0;
2018}
2019
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002020static int instance;
2021
Len Brown4be44fc2005-08-05 00:44:28 -04002022static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002024 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002025 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08002026 acpi_status status;
2027
2028 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
2029 device->parent->handle, 1,
2030 acpi_video_bus_match, NULL,
2031 device, NULL);
2032 if (status == AE_ALREADY_EXISTS) {
2033 printk(KERN_WARNING FW_BUG
2034 "Duplicate ACPI video bus devices for the"
2035 " same VGA controller, please try module "
2036 "parameter \"video.allow_duplicates=1\""
2037 "if the current driver doesn't work.\n");
2038 if (!allow_duplicates)
2039 return -ENODEV;
2040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Burman Yan36bcbec2006-12-19 12:56:11 -08002042 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002044 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Zhang Ruie6d9da12007-08-25 02:23:31 -04002046 /* a hack to fix the duplicate name "VID" problem on T61 */
2047 if (!strcmp(device->pnp.bus_id, "VID")) {
2048 if (instance)
2049 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02002050 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04002051 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05002052 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2053 if (!strcmp(device->pnp.bus_id, "VGA")) {
2054 if (instance)
2055 device->pnp.bus_id[3] = '0' + instance;
2056 instance++;
2057 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04002058
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002059 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2061 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002062 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002065 error = acpi_video_bus_check(video);
2066 if (error)
2067 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002069 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 INIT_LIST_HEAD(&video->video_device_list);
2071
Igor Murzovea9f8852012-03-30 21:32:08 +04002072 error = acpi_video_bus_get_devices(video, device);
2073 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00002074 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002077 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2078 video->flags.multihead ? "yes" : "no",
2079 video->flags.rom ? "yes" : "no",
2080 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08002081 mutex_lock(&video_list_lock);
2082 list_add_tail(&video->entry, &video_bus_head);
2083 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Aaron Lu67b662e2013-10-11 21:27:44 +08002085 acpi_video_bus_register_backlight(video);
2086 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002087
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002088 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Aaron Lu67b662e2013-10-11 21:27:44 +08002090err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002091 acpi_video_bus_put_devices(video);
2092 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08002093err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002094 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002095 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002096
2097 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002100static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101{
Len Brown4be44fc2005-08-05 00:44:28 -04002102 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002106 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002108 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Aaron Lu67b662e2013-10-11 21:27:44 +08002110 acpi_video_bus_remove_notify_handler(video);
2111 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Aaron Lu67b662e2013-10-11 21:27:44 +08002114 mutex_lock(&video_list_lock);
2115 list_del(&video->entry);
2116 mutex_unlock(&video_list_lock);
2117
Jesper Juhl6044ec82005-11-07 01:01:32 -08002118 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 kfree(video);
2120
Patrick Mocheld550d982006-06-27 00:41:40 -04002121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123
Alan Coxc6996bd2012-04-25 14:33:48 +01002124static int __init is_i740(struct pci_dev *dev)
2125{
2126 if (dev->device == 0x00D1)
2127 return 1;
2128 if (dev->device == 0x7000)
2129 return 1;
2130 return 0;
2131}
2132
Matthew Garrett74a365b2009-03-19 21:35:39 +00002133static int __init intel_opregion_present(void)
2134{
Alan Coxc6996bd2012-04-25 14:33:48 +01002135 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002136 struct pci_dev *dev = NULL;
2137 u32 address;
2138
2139 for_each_pci_dev(dev) {
2140 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2141 continue;
2142 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2143 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002144 /* We don't want to poke around undefined i740 registers */
2145 if (is_i740(dev))
2146 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002147 pci_read_config_dword(dev, 0xfc, &address);
2148 if (!address)
2149 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002150 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002151 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002152 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002153}
2154
Hans de Goedececf3e32019-01-07 17:08:20 +01002155/* Check if the chassis-type indicates there is no builtin LCD panel */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002156static bool dmi_is_desktop(void)
2157{
2158 const char *chassis_type;
Hans de Goedececf3e32019-01-07 17:08:20 +01002159 unsigned long type;
Hans de Goede53fa1f62018-04-17 18:23:50 +02002160
2161 chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE);
2162 if (!chassis_type)
2163 return false;
2164
Hans de Goedececf3e32019-01-07 17:08:20 +01002165 if (kstrtoul(chassis_type, 10, &type) != 0)
2166 return false;
2167
2168 switch (type) {
2169 case 0x03: /* Desktop */
2170 case 0x04: /* Low Profile Desktop */
2171 case 0x05: /* Pizza Box */
2172 case 0x06: /* Mini Tower */
2173 case 0x07: /* Tower */
Hans de Goeded693c002019-01-07 17:08:21 +01002174 case 0x10: /* Lunch Box */
Hans de Goedececf3e32019-01-07 17:08:20 +01002175 case 0x11: /* Main Server Chassis */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002176 return true;
Hans de Goedececf3e32019-01-07 17:08:20 +01002177 }
Hans de Goede53fa1f62018-04-17 18:23:50 +02002178
2179 return false;
2180}
2181
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002182int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002184 int ret = 0;
Chris Wilson28d63402015-03-01 10:41:38 +00002185
Hans de Goede970530c2016-01-14 09:41:45 +01002186 mutex_lock(&register_count_mutex);
2187 if (register_count) {
Zhao Yakui86e437f2009-06-16 11:23:13 +08002188 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002189 * if the function of acpi_video_register is already called,
2190 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002191 */
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002192 goto leave;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
Hans de Goede5928c282017-12-23 19:41:47 +01002195 /*
2196 * We're seeing a lot of bogus backlight interfaces on newer machines
2197 * without a LCD such as desktops, servers and HDMI sticks. Checking
2198 * the lcd flag fixes this, so enable this on any machines which are
2199 * win8 ready (where we also prefer the native backlight driver, so
2200 * normally the acpi_video code should not register there anyways).
2201 */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002202 if (only_lcd == -1) {
2203 if (dmi_is_desktop() && acpi_osi_is_win8())
2204 only_lcd = true;
2205 else
2206 only_lcd = false;
2207 }
Hans de Goede5928c282017-12-23 19:41:47 +01002208
Hans de Goede7ee33ba2015-06-16 16:27:53 +02002209 dmi_check_system(video_dmi_table);
2210
Chris Wilson28d63402015-03-01 10:41:38 +00002211 ret = acpi_bus_register_driver(&acpi_video_bus);
2212 if (ret)
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002213 goto leave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Zhao Yakui86e437f2009-06-16 11:23:13 +08002215 /*
2216 * When the acpi_video_bus is loaded successfully, increase
2217 * the counter reference.
2218 */
Hans de Goede970530c2016-01-14 09:41:45 +01002219 register_count = 1;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002220
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002221leave:
Hans de Goede970530c2016-01-14 09:41:45 +01002222 mutex_unlock(&register_count_mutex);
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002223 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002225EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002226
Zhao Yakui86e437f2009-06-16 11:23:13 +08002227void acpi_video_unregister(void)
2228{
Hans de Goede970530c2016-01-14 09:41:45 +01002229 mutex_lock(&register_count_mutex);
2230 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002231 acpi_bus_unregister_driver(&acpi_video_bus);
Hans de Goede970530c2016-01-14 09:41:45 +01002232 register_count = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002233 }
Hans de Goede970530c2016-01-14 09:41:45 +01002234 mutex_unlock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002235}
2236EXPORT_SYMBOL(acpi_video_unregister);
2237
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002238void acpi_video_unregister_backlight(void)
2239{
2240 struct acpi_video_bus *video;
2241
Hans de Goede970530c2016-01-14 09:41:45 +01002242 mutex_lock(&register_count_mutex);
2243 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002244 mutex_lock(&video_list_lock);
2245 list_for_each_entry(video, &video_bus_head, entry)
2246 acpi_video_bus_unregister_backlight(video);
2247 mutex_unlock(&video_list_lock);
2248 }
Hans de Goede970530c2016-01-14 09:41:45 +01002249 mutex_unlock(&register_count_mutex);
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002250}
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002251
Hans de Goede90b066b2015-12-22 19:09:48 +01002252bool acpi_video_handles_brightness_key_presses(void)
2253{
2254 bool have_video_busses;
2255
2256 mutex_lock(&video_list_lock);
2257 have_video_busses = !list_empty(&video_bus_head);
2258 mutex_unlock(&video_list_lock);
2259
Hans de Goede05bc59a2015-12-22 19:09:51 +01002260 return have_video_busses &&
2261 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
Hans de Goede90b066b2015-12-22 19:09:48 +01002262}
2263EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2264
Matthew Garrett74a365b2009-03-19 21:35:39 +00002265/*
2266 * This is kind of nasty. Hardware using Intel chipsets may require
2267 * the video opregion code to be run first in order to initialise
2268 * state before any ACPI video calls are made. To handle this we defer
2269 * registration of the video class until the opregion code has run.
2270 */
2271
2272static int __init acpi_video_init(void)
2273{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002274 /*
2275 * Let the module load even if ACPI is disabled (e.g. due to
2276 * a broken BIOS) so that i915.ko can still be loaded on such
2277 * old systems without an AcpiOpRegion.
2278 *
2279 * acpi_video_register() will report -ENODEV later as well due
2280 * to acpi_disabled when i915.ko tries to register itself afterwards.
2281 */
2282 if (acpi_disabled)
2283 return 0;
2284
Matthew Garrett74a365b2009-03-19 21:35:39 +00002285 if (intel_opregion_present())
2286 return 0;
2287
2288 return acpi_video_register();
2289}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Zhao Yakui86e437f2009-06-16 11:23:13 +08002291static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
Hans de Goede93a291d2015-06-16 16:27:52 +02002293 acpi_video_detect_exit();
Zhao Yakui86e437f2009-06-16 11:23:13 +08002294 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Patrick Mocheld550d982006-06-27 00:41:40 -04002296 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299module_init(acpi_video_init);
2300module_exit(acpi_video_exit);