blob: 9489ffc0641179a17acea826cc2ff5e2fe63866b [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
Dmitry Frank592c8092017-04-19 13:36:18 +030063/*
64 * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be
65 * assumed even if not actually set.
66 */
Aaron Lue50b9be2015-10-28 15:09:23 +080067static bool device_id_scheme = false;
68module_param(device_id_scheme, bool, 0444);
69
Hans de Goede5928c282017-12-23 19:41:47 +010070static int only_lcd = -1;
71module_param(only_lcd, int, 0444);
Aaron Lue50b9be2015-10-28 15:09:23 +080072
Hans de Goede970530c2016-01-14 09:41:45 +010073static int register_count;
74static DEFINE_MUTEX(register_count_mutex);
Hans de Goede14e93552016-01-14 09:41:46 +010075static DEFINE_MUTEX(video_list_lock);
76static LIST_HEAD(video_bus_head);
Len Brown4be44fc2005-08-05 00:44:28 -040077static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010078static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000079static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Hans de Goede93a291d2015-06-16 16:27:52 +020080void acpi_video_detect_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Dmitry Frankd485ef42017-04-19 12:48:07 +030082/*
83 * Indices in the _BCL method response: the first two items are special,
84 * the rest are all supported levels.
85 *
86 * See page 575 of the ACPI spec 3.0
87 */
88enum acpi_video_level_idx {
89 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
90 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
91 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
92};
93
Thomas Renninger1ba90e32007-07-23 14:44:41 +020094static const struct acpi_device_id video_device_ids[] = {
95 {ACPI_VIDEO_HID, 0},
96 {"", 0},
97};
98MODULE_DEVICE_TABLE(acpi, video_device_ids);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500101 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200103 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .ops = {
105 .add = acpi_video_bus_add,
106 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000107 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400108 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400112 u8 multihead:1; /* can switch video heads */
113 u8 rom:1; /* can retrieve a video rom */
114 u8 post:1; /* can configure the head to */
115 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500119 u8 _DOS:1; /* Enable/Disable output switching */
120 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
121 u8 _ROM:1; /* Get ROM Data */
122 u8 _GPD:1; /* Get POST Device */
123 u8 _SPD:1; /* Set POST Device */
124 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400125 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Len Brown4be44fc2005-08-05 00:44:28 -0400128struct acpi_video_device_attrib {
129 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500130 u32 display_port_attachment:4; /* This field differentiates the display type */
131 u32 display_type:4; /* Describe the specific type in use */
132 u32 vendor_specific:4; /* Chipset Vendor Specific */
133 u32 bios_can_detect:1; /* BIOS can detect the device */
134 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400135 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500136 u32 pipe_id:3; /* For VGA multiple-head devices. */
137 u32 reserved:10; /* Must be 0 */
Dmitry Frank592c8092017-04-19 13:36:18 +0300138
139 /*
140 * The device ID might not actually follow the scheme described by this
141 * struct acpi_video_device_attrib. If it does, then this bit
142 * device_id_scheme is set; otherwise, other fields should be ignored.
143 *
144 * (but also see the global flag device_id_scheme)
145 */
146 u32 device_id_scheme:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149struct acpi_video_enumerated_device {
150 union {
151 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400152 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 } value;
154 struct acpi_video_device *bind_info;
155};
156
157struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400158 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200159 bool backlight_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400160 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400162 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800163 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400164 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400166 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500167 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800168 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800169 struct input_dev *input;
170 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200171 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172};
173
174struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400175 u8 crt:1;
176 u8 lcd:1;
177 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500178 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400179 u8 bios:1;
180 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000181 u8 notify:1;
182 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
185struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500186 u8 _ADR:1; /* Return the unique ID */
187 u8 _BCL:1; /* Query list of brightness control levels supported */
188 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800189 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800190 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500191 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400195 unsigned long device_id;
196 struct acpi_video_device_flags flags;
197 struct acpi_video_device_cap cap;
198 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200199 struct delayed_work switch_brightness_work;
200 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400201 struct acpi_video_bus *video;
202 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800204 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400205 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
Len Brown4be44fc2005-08-05 00:44:28 -0400208static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
209static void acpi_video_device_rebind(struct acpi_video_bus *video);
210static void acpi_video_device_bind(struct acpi_video_bus *video,
211 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800213static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
214 int level);
215static int acpi_video_device_lcd_get_level_current(
216 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000217 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400218static int acpi_video_get_next_level(struct acpi_video_device *device,
219 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200220static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Felipe Contreras21fcb342013-08-01 18:43:59 -0500222/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800223static int acpi_video_get_brightness(struct backlight_device *bd)
224{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400225 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000226 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200227 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800228
Danny Baumanna89803d2013-03-19 16:22:50 +0000229 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800230 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300231 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
Matthew Garrett38531e62007-12-26 02:03:26 +0000232 if (vd->brightness->levels[i] == cur_level)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300233 return i - ACPI_VIDEO_FIRST_LEVEL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000234 }
235 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800236}
237
238static int acpi_video_set_brightness(struct backlight_device *bd)
239{
Dmitry Frankd485ef42017-04-19 12:48:07 +0300240 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200241 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800242
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200243 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800244 return acpi_video_device_lcd_set_level(vd,
245 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800246}
247
Lionel Debrouxacc24722010-11-16 14:14:02 +0100248static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000249 .get_brightness = acpi_video_get_brightness,
250 .update_status = acpi_video_set_brightness,
251};
252
Zhang Rui702ed512008-01-17 15:51:22 +0800253/* thermal cooling device callbacks */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300254static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
255 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800256{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400257 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800258 struct acpi_video_device *video = acpi_driver_data(device);
259
Dmitry Frankd485ef42017-04-19 12:48:07 +0300260 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000261 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800262}
263
Dmitry Frankd485ef42017-04-19 12:48:07 +0300264static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
265 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800266{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400267 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800268 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400269 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000270 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800271
Danny Baumanna89803d2013-03-19 16:22:50 +0000272 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800273 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300274 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
275 offset++)
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000276 if (level == video->brightness->levels[offset]) {
277 *state = video->brightness->count - offset - 1;
278 return 0;
279 }
Zhang Rui702ed512008-01-17 15:51:22 +0800280
281 return -EINVAL;
282}
283
284static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400285video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800286{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400287 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800288 struct acpi_video_device *video = acpi_driver_data(device);
289 int level;
290
Dmitry Frankd485ef42017-04-19 12:48:07 +0300291 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
Zhang Rui702ed512008-01-17 15:51:22 +0800292 return -EINVAL;
293
294 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200295 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800296 return acpi_video_device_lcd_set_level(video, level);
297}
298
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400299static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800300 .get_max_state = video_get_max_state,
301 .get_cur_state = video_get_cur_state,
302 .set_cur_state = video_set_cur_state,
303};
304
Felipe Contreras21fcb342013-08-01 18:43:59 -0500305/*
306 * --------------------------------------------------------------------------
307 * Video Management
308 * --------------------------------------------------------------------------
309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static int
Aaron Lu05950092016-04-27 20:45:04 +0800312acpi_video_device_lcd_query_levels(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400313 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Len Brown4be44fc2005-08-05 00:44:28 -0400315 int status;
316 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
317 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 *levels = NULL;
321
Aaron Lu05950092016-04-27 20:45:04 +0800322 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400324 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400325 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500326 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400327 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 status = -EFAULT;
329 goto err;
330 }
331
332 *levels = obj;
333
Patrick Mocheld550d982006-06-27 00:41:40 -0400334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200336err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800337 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Patrick Mocheld550d982006-06-27 00:41:40 -0400339 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342static int
Len Brown4be44fc2005-08-05 00:44:28 -0400343acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Zhang Rui24450c72009-03-18 16:27:10 +0800345 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800346 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Jiang Liu0db98202013-06-29 00:24:39 +0800348 status = acpi_execute_simple_method(device->dev->handle,
349 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800350 if (ACPI_FAILURE(status)) {
351 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
352 return -EIO;
353 }
354
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400355 device->brightness->curr = level;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300356 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
357 state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800358 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800359 if (device->backlight)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300360 device->backlight->props.brightness =
361 state - ACPI_VIDEO_FIRST_LEVEL;
Zhang Rui24450c72009-03-18 16:27:10 +0800362 return 0;
363 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800364
Zhang Rui24450c72009-03-18 16:27:10 +0800365 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
366 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Zhang Rui45cb50e2009-04-24 12:13:18 -0400369/*
370 * For some buggy _BQC methods, we need to add a constant value to
371 * the _BQC return value to get the actual current brightness level
372 */
373
374static int bqc_offset_aml_bug_workaround;
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200375static int video_set_bqc_offset(const struct dmi_system_id *d)
Zhang Rui45cb50e2009-04-24 12:13:18 -0400376{
377 bqc_offset_aml_bug_workaround = 9;
378 return 0;
379}
380
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200381static int video_disable_backlight_sysfs_if(
Hans de Goede654a1822015-06-09 10:32:25 +0200382 const struct dmi_system_id *d)
383{
384 if (disable_backlight_sysfs_if == -1)
385 disable_backlight_sysfs_if = 1;
386 return 0;
387}
388
Aaron Lue50b9be2015-10-28 15:09:23 +0800389static int video_set_device_id_scheme(const struct dmi_system_id *d)
390{
391 device_id_scheme = true;
392 return 0;
393}
394
395static int video_enable_only_lcd(const struct dmi_system_id *d)
396{
397 only_lcd = true;
398 return 0;
399}
400
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100401static int video_set_report_key_events(const struct dmi_system_id *id)
402{
403 if (report_key_events == -1)
404 report_key_events = (uintptr_t)id->driver_data;
405 return 0;
406}
407
Christoph Hellwig6faadbb2017-09-14 11:59:30 +0200408static const struct dmi_system_id video_dmi_table[] = {
Zhang Rui45cb50e2009-04-24 12:13:18 -0400409 /*
410 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
411 */
412 {
413 .callback = video_set_bqc_offset,
414 .ident = "Acer Aspire 5720",
415 .matches = {
416 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
417 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
418 },
419 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400420 {
421 .callback = video_set_bqc_offset,
422 .ident = "Acer Aspire 5710Z",
423 .matches = {
424 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
425 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
426 },
427 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400428 {
429 .callback = video_set_bqc_offset,
430 .ident = "eMachines E510",
431 .matches = {
432 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
433 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
434 },
435 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400436 {
437 .callback = video_set_bqc_offset,
438 .ident = "Acer Aspire 5315",
439 .matches = {
440 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
441 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
442 },
443 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800444 {
445 .callback = video_set_bqc_offset,
446 .ident = "Acer Aspire 7720",
447 .matches = {
448 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
449 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
450 },
451 },
Hans de Goede5f240792014-08-28 10:20:46 +0200452
453 /*
Hans de Goede654a1822015-06-09 10:32:25 +0200454 * Some machines have a broken acpi-video interface for brightness
455 * control, but still need an acpi_video_device_lcd_set_level() call
456 * on resume to turn the backlight power on. We Enable backlight
457 * control on these systems, but do not register a backlight sysfs
458 * as brightness control does not work.
459 */
460 {
Hans de Goedede588b82016-01-11 14:46:17 +0100461 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
462 .callback = video_disable_backlight_sysfs_if,
463 .ident = "Toshiba Portege R700",
464 .matches = {
465 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
466 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"),
467 },
468 },
469 {
Hans de Goede654a1822015-06-09 10:32:25 +0200470 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
471 .callback = video_disable_backlight_sysfs_if,
472 .ident = "Toshiba Portege R830",
473 .matches = {
474 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
475 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
476 },
477 },
Hans de Goedeb21f2e82016-01-14 14:24:39 +0100478 {
479 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
480 .callback = video_disable_backlight_sysfs_if,
481 .ident = "Toshiba Satellite R830",
482 .matches = {
483 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
484 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"),
485 },
486 },
Aaron Lue50b9be2015-10-28 15:09:23 +0800487 /*
488 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
489 * but the IDs actually follow the Device ID Scheme.
490 */
491 {
492 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
493 .callback = video_set_device_id_scheme,
494 .ident = "ESPRIMO Mobile M9410",
495 .matches = {
496 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
497 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
498 },
499 },
500 /*
501 * Some machines have multiple video output devices, but only the one
502 * that is the type of LCD can do the backlight control so we should not
503 * register backlight interface for other video output devices.
504 */
505 {
506 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
507 .callback = video_enable_only_lcd,
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 },
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100514 /*
515 * Some machines report wrong key events on the acpi-bus, suppress
516 * key event reporting on these. Note this is only intended to work
517 * around events which are plain wrong. In some cases we get double
518 * events, in this case acpi-video is considered the canonical source
519 * and the events from the other source should be filtered. E.g.
520 * by calling acpi_video_handles_brightness_key_presses() from the
521 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
522 */
523 {
524 .callback = video_set_report_key_events,
525 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
526 .ident = "Dell Vostro V131",
527 .matches = {
528 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
529 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
530 },
531 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400532 {}
533};
534
Danny Baumann994fa632013-03-19 16:22:52 +0000535static unsigned long long
536acpi_video_bqc_value_to_level(struct acpi_video_device *device,
537 unsigned long long bqc_value)
538{
539 unsigned long long level;
540
541 if (device->brightness->flags._BQC_use_index) {
542 /*
Dmitry Frankd485ef42017-04-19 12:48:07 +0300543 * _BQC returns an index that doesn't account for the first 2
544 * items with special meaning (see enum acpi_video_level_idx),
545 * so we need to compensate for that by offsetting ourselves
Danny Baumann994fa632013-03-19 16:22:52 +0000546 */
547 if (device->brightness->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300548 bqc_value = device->brightness->count -
549 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
Danny Baumann994fa632013-03-19 16:22:52 +0000550
Dmitry Frankd485ef42017-04-19 12:48:07 +0300551 level = device->brightness->levels[bqc_value +
552 ACPI_VIDEO_FIRST_LEVEL];
Danny Baumann994fa632013-03-19 16:22:52 +0000553 } else {
554 level = bqc_value;
555 }
556
557 level += bqc_offset_aml_bug_workaround;
558
559 return level;
560}
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static int
Len Brown4be44fc2005-08-05 00:44:28 -0400563acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000564 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Zhang Ruic8890f92009-03-18 16:27:08 +0800566 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800567 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800568
Zhang Ruic60d6382009-03-18 16:27:18 +0800569 if (device->cap._BQC || device->cap._BCQ) {
570 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
571
572 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800573 NULL, level);
574 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000575 if (raw) {
576 /*
577 * Caller has indicated he wants the raw
578 * value returned by _BQC, so don't furtherly
579 * mess with the value.
580 */
581 return 0;
582 }
583
Danny Baumann994fa632013-03-19 16:22:52 +0000584 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800585
Dmitry Frankd485ef42017-04-19 12:48:07 +0300586 for (i = ACPI_VIDEO_FIRST_LEVEL;
587 i < device->brightness->count; i++)
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800588 if (device->brightness->levels[i] == *level) {
589 device->brightness->curr = *level;
590 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200591 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000592 /*
593 * BQC returned an invalid level.
594 * Stop using it.
595 */
596 ACPI_WARNING((AE_INFO,
597 "%s returned an invalid level",
598 buf));
599 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800600 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500601 /*
602 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800603 * should we return an error or ignore this failure?
604 * dev->brightness->curr is a cached value which stores
605 * the correct current backlight level in most cases.
606 * ACPI video backlight still works w/ buggy _BQC.
607 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
608 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800609 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
610 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800611 }
612 }
613
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400614 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618static int
Len Brown4be44fc2005-08-05 00:44:28 -0400619acpi_video_device_EDID(struct acpi_video_device *device,
620 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Len Brown4be44fc2005-08-05 00:44:28 -0400622 int status;
623 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
624 union acpi_object *obj;
625 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
626 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 *edid = NULL;
630
631 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400632 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (length == 128)
634 arg0.integer.value = 1;
635 else if (length == 256)
636 arg0.integer.value = 2;
637 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400638 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Patrick Mochel90130262006-05-19 16:54:48 -0400640 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400642 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200644 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 if (obj && obj->type == ACPI_TYPE_BUFFER)
647 *edid = obj;
648 else {
Len Brown64684632006-06-26 23:41:38 -0400649 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 status = -EFAULT;
651 kfree(obj);
652 }
653
Patrick Mocheld550d982006-06-27 00:41:40 -0400654 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657/* bus */
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659/*
660 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500661 * video : video bus device pointer
662 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * 0. The system BIOS should NOT automatically switch(toggle)
664 * the active display output.
665 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100666 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 * 2. The _DGS value should be locked.
668 * 3. The system BIOS should not automatically switch (toggle) the
669 * active display output, but instead generate the display switch
670 * event notify code.
671 * lcd_flag :
672 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100673 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500674 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100675 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500676 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400677 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
679
680static int
Len Brown4be44fc2005-08-05 00:44:28 -0400681acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Igor Murzovea9f8852012-03-30 21:32:08 +0400683 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Zhang Ruib0373842012-06-20 09:48:43 +0800685 if (!video->cap._DOS)
686 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Igor Murzovea9f8852012-03-30 21:32:08 +0400688 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
689 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800690 video->dos_setting = (lcd_flag << 2) | bios_flag;
691 status = acpi_execute_simple_method(video->device->handle, "_DOS",
692 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400693 if (ACPI_FAILURE(status))
694 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Igor Murzovea9f8852012-03-30 21:32:08 +0400696 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500700 * Simple comparison function used to sort backlight levels.
701 */
702
703static int
704acpi_video_cmp_level(const void *a, const void *b)
705{
706 return *(int *)a - *(int *)b;
707}
708
709/*
Aaron Lua50188d2013-04-22 14:08:32 +0200710 * Decides if _BQC/_BCQ for this system is usable
711 *
712 * We do this by changing the level first and then read out the current
713 * brightness level, if the value does not match, find out if it is using
714 * index. If not, clear the _BQC/_BCQ capability.
715 */
716static int acpi_video_bqc_quirk(struct acpi_video_device *device,
717 int max_level, int current_level)
718{
719 struct acpi_video_device_brightness *br = device->brightness;
720 int result;
721 unsigned long long level;
722 int test_level;
723
724 /* don't mess with existing known broken systems */
725 if (bqc_offset_aml_bug_workaround)
726 return 0;
727
728 /*
729 * Some systems always report current brightness level as maximum
Dmitry Frank592c8092017-04-19 13:36:18 +0300730 * through _BQC, we need to test another value for them. However,
731 * there is a subtlety:
732 *
733 * If the _BCL package ordering is descending, the first level
734 * (br->levels[2]) is likely to be 0, and if the number of levels
735 * matches the number of steps, we might confuse a returned level to
736 * mean the index.
737 *
738 * For example:
739 *
740 * current_level = max_level = 100
741 * test_level = 0
742 * returned level = 100
743 *
744 * In this case 100 means the level, not the index, and _BCM failed.
745 * Still, if the _BCL package ordering is descending, the index of
746 * level 0 is also 100, so we assume _BQC is indexed, when it's not.
747 *
748 * This causes all _BQC calls to return bogus values causing weird
749 * behavior from the user's perspective. For example:
750 *
751 * xbacklight -set 10; xbacklight -set 20;
752 *
753 * would flash to 90% and then slowly down to the desired level (20).
754 *
755 * The solution is simple; test anything other than the first level
756 * (e.g. 1).
Aaron Lua50188d2013-04-22 14:08:32 +0200757 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300758 test_level = current_level == max_level
759 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
760 : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200761
762 result = acpi_video_device_lcd_set_level(device, test_level);
763 if (result)
764 return result;
765
766 result = acpi_video_device_lcd_get_level_current(device, &level, true);
767 if (result)
768 return result;
769
770 if (level != test_level) {
771 /* buggy _BQC found, need to find out if it uses index */
772 if (level < br->count) {
773 if (br->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300774 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
775 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
Aaron Lua50188d2013-04-22 14:08:32 +0200776 br->flags._BQC_use_index = 1;
777 }
778
779 if (!br->flags._BQC_use_index)
780 device->cap._BQC = device->cap._BCQ = 0;
781 }
782
783 return 0;
784}
785
Aaron Lu05950092016-04-27 20:45:04 +0800786int acpi_video_get_levels(struct acpi_device *device,
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800787 struct acpi_video_device_brightness **dev_br,
788 int *pmax_level)
Julia Jomantaite469778c2008-06-23 22:50:42 +0100789{
790 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800791 int i, max_level = 0, count = 0, level_ac_battery = 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100792 union acpi_object *o;
793 struct acpi_video_device_brightness *br = NULL;
Aaron Lu05950092016-04-27 20:45:04 +0800794 int result = 0;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100795 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100796
Aaron Lu05950092016-04-27 20:45:04 +0800797 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device->handle,
798 &obj))) {
Julia Jomantaite469778c2008-06-23 22:50:42 +0100799 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
800 "LCD brightness level\n"));
Aaron Lu05950092016-04-27 20:45:04 +0800801 result = -ENODEV;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100802 goto out;
803 }
804
Dmitry Frankd485ef42017-04-19 12:48:07 +0300805 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
Aaron Lu05950092016-04-27 20:45:04 +0800806 result = -EINVAL;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100807 goto out;
Aaron Lu05950092016-04-27 20:45:04 +0800808 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100809
810 br = kzalloc(sizeof(*br), GFP_KERNEL);
811 if (!br) {
812 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800813 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100814 goto out;
815 }
816
Dmitry Frank592c8092017-04-19 13:36:18 +0300817 /*
818 * Note that we have to reserve 2 extra items (ACPI_VIDEO_FIRST_LEVEL),
819 * in order to account for buggy BIOS which don't export the first two
820 * special levels (see below)
821 */
Kees Cook6da2ec52018-06-12 13:55:00 -0700822 br->levels = kmalloc_array(obj->package.count + ACPI_VIDEO_FIRST_LEVEL,
823 sizeof(*br->levels),
824 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800825 if (!br->levels) {
826 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100827 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800828 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100829
830 for (i = 0; i < obj->package.count; i++) {
831 o = (union acpi_object *)&obj->package.elements[i];
832 if (o->type != ACPI_TYPE_INTEGER) {
833 printk(KERN_ERR PREFIX "Invalid data\n");
834 continue;
835 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100836 value = (u32) o->integer.value;
837 /* Skip duplicate entries */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300838 if (count > ACPI_VIDEO_FIRST_LEVEL
839 && br->levels[count - 1] == value)
Hans de Goedebd8ba202014-02-13 16:32:51 +0100840 continue;
841
842 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100843
844 if (br->levels[count] > max_level)
845 max_level = br->levels[count];
846 count++;
847 }
848
Zhang Ruid32f6942009-03-18 16:27:12 +0800849 /*
850 * some buggy BIOS don't export the levels
851 * when machine is on AC/Battery in _BCL package.
852 * In this case, the first two elements in _BCL packages
853 * are also supported brightness levels that OS should take care of.
854 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300855 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
856 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
Zhang Ruid32f6942009-03-18 16:27:12 +0800857 level_ac_battery++;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300858 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
Zhang Rui90af2cf2009-04-14 11:02:18 +0800859 level_ac_battery++;
860 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500861
Dmitry Frankd485ef42017-04-19 12:48:07 +0300862 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
863 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
Zhang Ruid32f6942009-03-18 16:27:12 +0800864 br->flags._BCL_no_ac_battery_levels = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300865 for (i = (count - 1 + level_ac_battery);
866 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
Zhang Ruid32f6942009-03-18 16:27:12 +0800867 br->levels[i] = br->levels[i - level_ac_battery];
868 count += level_ac_battery;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300869 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
Colin Ian Kingbf6787eb2012-11-29 11:53:13 +0000870 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800871
Zhang Ruid80fb992009-03-18 16:27:14 +0800872 /* Check if the _BCL package is in a reversed order */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300873 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
Zhang Ruid80fb992009-03-18 16:27:14 +0800874 br->flags._BCL_reversed = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300875 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
876 count - ACPI_VIDEO_FIRST_LEVEL,
877 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
878 acpi_video_cmp_level, NULL);
Zhang Ruid80fb992009-03-18 16:27:14 +0800879 } else if (max_level != br->levels[count - 1])
880 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787eb2012-11-29 11:53:13 +0000881 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100882
883 br->count = count;
Aaron Lu05950092016-04-27 20:45:04 +0800884 *dev_br = br;
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800885 if (pmax_level)
886 *pmax_level = max_level;
Aaron Lu05950092016-04-27 20:45:04 +0800887
888out:
889 kfree(obj);
890 return result;
891out_free:
892 kfree(br);
893 goto out;
894}
895EXPORT_SYMBOL(acpi_video_get_levels);
896
897/*
898 * Arg:
899 * device : video output device (LCD, CRT, ..)
900 *
901 * Return Value:
902 * Maximum brightness level
903 *
904 * Allocate and initialize device->brightness.
905 */
906
907static int
908acpi_video_init_brightness(struct acpi_video_device *device)
909{
910 int i, max_level = 0;
911 unsigned long long level, level_old;
912 struct acpi_video_device_brightness *br = NULL;
913 int result = -EINVAL;
914
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800915 result = acpi_video_get_levels(device->dev, &br, &max_level);
Aaron Lu05950092016-04-27 20:45:04 +0800916 if (result)
917 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100918 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800919
Zhang Rui1a7c6182009-03-18 16:27:16 +0800920 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400921 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800922
923 if (!device->cap._BQC)
924 goto set_level;
925
Danny Baumanna89803d2013-03-19 16:22:50 +0000926 result = acpi_video_device_lcd_get_level_current(device,
927 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800928 if (result)
929 goto out_free_levels;
930
Aaron Lua50188d2013-04-22 14:08:32 +0200931 result = acpi_video_bqc_quirk(device, max_level, level_old);
932 if (result)
933 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800934 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200935 * cap._BQC may get cleared due to _BQC is found to be broken
936 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800937 */
Aaron Lua50188d2013-04-22 14:08:32 +0200938 if (!device->cap._BQC)
939 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800940
Aaron Lu545ef362013-11-15 14:39:12 +0800941 level = acpi_video_bqc_value_to_level(device, level_old);
942 /*
943 * On some buggy laptops, _BQC returns an uninitialized
944 * value when invoked for the first time, i.e.
945 * level_old is invalid (no matter whether it's a level
946 * or an index). Set the backlight to max_level in this case.
947 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300948 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
Aaron Lu545ef362013-11-15 14:39:12 +0800949 if (level == br->levels[i])
950 break;
951 if (i == br->count || !level)
952 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800953
Zhang Ruie047cca2009-04-09 14:24:35 +0800954set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400955 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800956 if (result)
957 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800958
Zhang Ruid32f6942009-03-18 16:27:12 +0800959 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Dmitry Frankd485ef42017-04-19 12:48:07 +0300960 "found %d brightness levels\n",
961 br->count - ACPI_VIDEO_FIRST_LEVEL));
Aaron Lu05950092016-04-27 20:45:04 +0800962 return 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100963
964out_free_levels:
965 kfree(br->levels);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100966 kfree(br);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100967 device->brightness = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800968 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100969}
970
971/*
972 * Arg:
973 * device : video output device (LCD, CRT, ..)
974 *
975 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500976 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100978 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 * device.
980 */
981
Len Brown4be44fc2005-08-05 00:44:28 -0400982static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Jiang Liu952c63e2013-06-29 00:24:38 +0800984 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800986 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -0400987 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800988 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -0400989 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800990 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +0800991 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800992 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +0800993 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
994 device->cap._BCQ = 1;
995 }
996
Jiang Liu952c63e2013-06-29 00:24:38 +0800997 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -0400998 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05001002 * Arg:
1003 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 *
1005 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001006 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001008 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 */
1010
Len Brown4be44fc2005-08-05 00:44:28 -04001011static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Jiang Liu952c63e2013-06-29 00:24:38 +08001013 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001015 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001017 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001019 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001021 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001023 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027/*
1028 * Check whether the video bus device has required AML method to
1029 * support the desired features
1030 */
1031
Len Brown4be44fc2005-08-05 00:44:28 -04001032static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Len Brown4be44fc2005-08-05 00:44:28 -04001034 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001035 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001038 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001040 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001041 if (!dev)
1042 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001043 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001044
Felipe Contreras21fcb342013-08-01 18:43:59 -05001045 /*
1046 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 * to check well known required nodes.
1048 */
1049
Julius Volz98fb8fe2007-02-20 16:38:40 +01001050 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001051 if (video->cap._DOS || video->cap._DOD) {
1052 if (!video->cap._DOS) {
1053 printk(KERN_WARNING FW_BUG
1054 "ACPI(%s) defines _DOD but not _DOS\n",
1055 acpi_device_bid(video->device));
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 video->flags.multihead = 1;
1058 status = 0;
1059 }
1060
Julius Volz98fb8fe2007-02-20 16:38:40 +01001061 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001062 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 video->flags.rom = 1;
1064 status = 0;
1065 }
1066
Julius Volz98fb8fe2007-02-20 16:38:40 +01001067 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001068 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 video->flags.post = 1;
1070 status = 0;
1071 }
1072
Patrick Mocheld550d982006-06-27 00:41:40 -04001073 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074}
1075
Felipe Contreras21fcb342013-08-01 18:43:59 -05001076/*
1077 * --------------------------------------------------------------------------
1078 * Driver Interface
1079 * --------------------------------------------------------------------------
1080 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001083static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001084acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1085{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001086 struct acpi_video_enumerated_device *ids;
1087 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001088
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001089 for (i = 0; i < video->attached_count; i++) {
1090 ids = &video->attached_array[i];
1091 if ((ids->value.int_val & 0xffff) == device_id)
1092 return &ids->value.attrib;
1093 }
1094
Rui Zhang82cae992007-01-03 23:40:53 -05001095 return NULL;
1096}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001099acpi_video_get_device_type(struct acpi_video_bus *video,
1100 unsigned long device_id)
1101{
1102 struct acpi_video_enumerated_device *ids;
1103 int i;
1104
1105 for (i = 0; i < video->attached_count; i++) {
1106 ids = &video->attached_array[i];
1107 if ((ids->value.int_val & 0xffff) == device_id)
1108 return ids->value.int_val;
1109 }
1110
1111 return 0;
1112}
1113
1114static int
Len Brown4be44fc2005-08-05 00:44:28 -04001115acpi_video_bus_get_one_device(struct acpi_device *device,
1116 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001118 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001119 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001120 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001121 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Len Brown4be44fc2005-08-05 00:44:28 -04001123 status =
1124 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001125 /* Some device omits _ADR, we skip them instead of fail */
1126 if (ACPI_FAILURE(status))
1127 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Aaron Lu91e13aa2013-04-25 02:47:49 +00001129 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1130 if (!data)
1131 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Aaron Lu91e13aa2013-04-25 02:47:49 +00001133 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1134 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1135 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Aaron Lu91e13aa2013-04-25 02:47:49 +00001137 data->device_id = device_id;
1138 data->video = video;
1139 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001140 INIT_DELAYED_WORK(&data->switch_brightness_work,
1141 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Aaron Lu91e13aa2013-04-25 02:47:49 +00001143 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001144
Aaron Lue50b9be2015-10-28 15:09:23 +08001145 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001146 switch (attribute->display_type) {
1147 case ACPI_VIDEO_DISPLAY_CRT:
1148 data->flags.crt = 1;
1149 break;
1150 case ACPI_VIDEO_DISPLAY_TV:
1151 data->flags.tvout = 1;
1152 break;
1153 case ACPI_VIDEO_DISPLAY_DVI:
1154 data->flags.dvi = 1;
1155 break;
1156 case ACPI_VIDEO_DISPLAY_LCD:
1157 data->flags.lcd = 1;
1158 break;
1159 default:
1160 data->flags.unknown = 1;
1161 break;
1162 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001163 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001164 data->flags.bios = 1;
1165 } else {
1166 /* Check for legacy IDs */
1167 device_type = acpi_video_get_device_type(video, device_id);
1168 /* Ignore bits 16 and 18-20 */
1169 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001170 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1171 data->flags.crt = 1;
1172 break;
1173 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1174 data->flags.lcd = 1;
1175 break;
1176 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1177 data->flags.tvout = 1;
1178 break;
1179 default:
1180 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183
Aaron Lu91e13aa2013-04-25 02:47:49 +00001184 acpi_video_device_bind(video, data);
1185 acpi_video_device_find_cap(data);
1186
Aaron Lu91e13aa2013-04-25 02:47:49 +00001187 mutex_lock(&video->device_list_lock);
1188 list_add_tail(&data->entry, &video->video_device_list);
1189 mutex_unlock(&video->device_list_lock);
1190
1191 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194/*
1195 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001196 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 *
1198 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001199 * none
1200 *
1201 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 * bind the ids with the corresponding video devices
1203 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Len Brown4be44fc2005-08-05 00:44:28 -04001206static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001208 struct acpi_video_device *dev;
1209
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001210 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001211
1212 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001213 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001214
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001215 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
1218/*
1219 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001220 * video : video bus device
1221 * device : video output device under the video
1222 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 *
1224 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001225 * none
1226 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * Bind the ids with the corresponding video devices
1228 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001229 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231static void
Len Brown4be44fc2005-08-05 00:44:28 -04001232acpi_video_device_bind(struct acpi_video_bus *video,
1233 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001235 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001236 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001238 for (i = 0; i < video->attached_count; i++) {
1239 ids = &video->attached_array[i];
1240 if (device->device_id == (ids->value.int_val & 0xffff)) {
1241 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1243 }
1244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Aaron Lu0b8db272014-09-30 14:10:17 +08001247static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1248{
1249 struct acpi_video_bus *video = device->video;
1250 int i;
1251
Aaron Lub4df4632014-12-15 16:01:29 +08001252 /*
1253 * If we have a broken _DOD or we have more than 8 output devices
1254 * under the graphics controller node that we can't proper deal with
1255 * in the operation region code currently, no need to test.
1256 */
1257 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001258 return true;
1259
1260 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001261 if ((video->attached_array[i].value.int_val & 0xfff) ==
1262 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001263 return true;
1264 }
1265
1266 return false;
1267}
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269/*
1270 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001271 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 *
1273 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001274 * < 0 : error
1275 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 * Call _DOD to enumerate all devices attached to display adapter
1277 *
Len Brown4be44fc2005-08-05 00:44:28 -04001278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1281{
Len Brown4be44fc2005-08-05 00:44:28 -04001282 int status;
1283 int count;
1284 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001285 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001286 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1287 union acpi_object *dod = NULL;
1288 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Alex Hunge34fbba2016-05-27 15:47:06 +08001290 if (!video->cap._DOD)
1291 return AE_NOT_EXIST;
1292
Patrick Mochel90130262006-05-19 16:54:48 -04001293 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001295 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001296 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001299 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001301 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 status = -EFAULT;
1303 goto out;
1304 }
1305
1306 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001307 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001309 active_list = kcalloc(1 + dod->package.count,
1310 sizeof(struct acpi_video_enumerated_device),
1311 GFP_KERNEL);
1312 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 status = -ENOMEM;
1314 goto out;
1315 }
1316
1317 count = 0;
1318 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001319 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001322 printk(KERN_ERR PREFIX
1323 "Invalid _DOD data in element %d\n", i);
1324 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001326
1327 active_list[count].value.int_val = obj->integer.value;
1328 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001329 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1330 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 count++;
1332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Jesper Juhl6044ec82005-11-07 01:01:32 -08001334 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001335
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001336 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001338
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001339out:
Len Brown02438d82006-06-30 03:19:10 -04001340 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001341 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
Len Brown4be44fc2005-08-05 00:44:28 -04001344static int
1345acpi_video_get_next_level(struct acpi_video_device *device,
1346 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001348 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001349 max = max_below = 0;
1350 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001351 /* Find closest level to level_current */
Dmitry Frankd485ef42017-04-19 12:48:07 +03001352 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001353 l = device->brightness->levels[i];
1354 if (abs(l - level_current) < abs(delta)) {
1355 delta = l - level_current;
1356 if (!delta)
1357 break;
1358 }
1359 }
1360 /* Ajust level_current to closest available level */
1361 level_current += delta;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001362 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001363 l = device->brightness->levels[i];
1364 if (l < min)
1365 min = l;
1366 if (l > max)
1367 max = l;
1368 if (l < min_above && l > level_current)
1369 min_above = l;
1370 if (l > max_below && l < level_current)
1371 max_below = l;
1372 }
1373
1374 switch (event) {
1375 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1376 return (level_current < max) ? min_above : min;
1377 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1378 return (level_current < max) ? min_above : max;
1379 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1380 return (level_current > min) ? max_below : min;
1381 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1382 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1383 return 0;
1384 default:
1385 return level_current;
1386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001389static void
1390acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001392 struct acpi_video_device *device = container_of(to_delayed_work(work),
1393 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001394 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001395 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001396 int result = -EINVAL;
1397
Aaron Lufbc9fe12013-10-11 21:27:45 +08001398 /* no warning message if acpi_backlight=vendor or a quirk is used */
Hans de Goede654a1822015-06-09 10:32:25 +02001399 if (!device->backlight)
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001400 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001401
Julia Jomantaite469778c2008-06-23 22:50:42 +01001402 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001403 goto out;
1404
1405 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001406 &level_current,
1407 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001408 if (result)
1409 goto out;
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001412
Zhang Rui24450c72009-03-18 16:27:10 +08001413 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001414
Matthew Garrett36342742009-07-14 17:06:03 +01001415 if (!result)
1416 backlight_force_update(device->backlight,
1417 BACKLIGHT_UPDATE_HOTKEY);
1418
Zhang Ruic8890f92009-03-18 16:27:08 +08001419out:
1420 if (result)
1421 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
Matthew Garrette92a7162010-01-12 14:17:03 -05001424int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1425 void **edid)
1426{
1427 struct acpi_video_bus *video;
1428 struct acpi_video_device *video_device;
1429 union acpi_object *buffer = NULL;
1430 acpi_status status;
1431 int i, length;
1432
1433 if (!device || !acpi_driver_data(device))
1434 return -EINVAL;
1435
1436 video = acpi_driver_data(device);
1437
1438 for (i = 0; i < video->attached_count; i++) {
1439 video_device = video->attached_array[i].bind_info;
1440 length = 256;
1441
1442 if (!video_device)
1443 continue;
1444
Zhang Rui82069552010-12-06 15:04:24 +08001445 if (!video_device->cap._DDC)
1446 continue;
1447
Matthew Garrette92a7162010-01-12 14:17:03 -05001448 if (type) {
1449 switch (type) {
1450 case ACPI_VIDEO_DISPLAY_CRT:
1451 if (!video_device->flags.crt)
1452 continue;
1453 break;
1454 case ACPI_VIDEO_DISPLAY_TV:
1455 if (!video_device->flags.tvout)
1456 continue;
1457 break;
1458 case ACPI_VIDEO_DISPLAY_DVI:
1459 if (!video_device->flags.dvi)
1460 continue;
1461 break;
1462 case ACPI_VIDEO_DISPLAY_LCD:
1463 if (!video_device->flags.lcd)
1464 continue;
1465 break;
1466 }
1467 } else if (video_device->device_id != device_id) {
1468 continue;
1469 }
1470
1471 status = acpi_video_device_EDID(video_device, &buffer, length);
1472
1473 if (ACPI_FAILURE(status) || !buffer ||
1474 buffer->type != ACPI_TYPE_BUFFER) {
1475 length = 128;
1476 status = acpi_video_device_EDID(video_device, &buffer,
1477 length);
1478 if (ACPI_FAILURE(status) || !buffer ||
1479 buffer->type != ACPI_TYPE_BUFFER) {
1480 continue;
1481 }
1482 }
1483
1484 *edid = buffer->buffer.pointer;
1485 return length;
1486 }
1487
1488 return -ENODEV;
1489}
1490EXPORT_SYMBOL(acpi_video_get_edid);
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492static int
Len Brown4be44fc2005-08-05 00:44:28 -04001493acpi_video_bus_get_devices(struct acpi_video_bus *video,
1494 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
Igor Murzovfba4e082012-10-13 04:41:25 +04001496 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001497 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Igor Murzovfba4e082012-10-13 04:41:25 +04001499 /*
1500 * There are systems where video module known to work fine regardless
1501 * of broken _DOD and ignoring returned value here doesn't cause
1502 * any issues later.
1503 */
1504 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001506 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001509 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001510 dev_err(&dev->dev, "Can't attach device\n");
1511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
Aaron Lub4df4632014-12-15 16:01:29 +08001513 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001515 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518/* acpi_video interface */
1519
Aaron Luefaa14c2013-07-16 13:08:05 +08001520/*
1521 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1522 * preform any automatic brightness change on receiving a notification.
1523 */
Len Brown4be44fc2005-08-05 00:44:28 -04001524static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
Aaron Luefaa14c2013-07-16 13:08:05 +08001526 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001527 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
Len Brown4be44fc2005-08-05 00:44:28 -04001530static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Aaron Luefaa14c2013-07-16 13:08:05 +08001532 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001533 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534}
1535
Bjorn Helgaas70155582009-04-07 15:37:11 +00001536static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001538 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001539 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001540 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001541
Aaron Lu67b662e2013-10-11 21:27:44 +08001542 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001543 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Luming Yue9dab192007-08-20 18:23:53 +08001545 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001548 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001550 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 break;
1552
Julius Volz98fb8fe2007-02-20 16:38:40 +01001553 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * connector. */
1555 acpi_video_device_enumerate(video);
1556 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001557 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 break;
1559
Len Brown4be44fc2005-08-05 00:44:28 -04001560 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001561 keycode = KEY_SWITCHVIDEOMODE;
1562 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001563 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001564 keycode = KEY_VIDEO_NEXT;
1565 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001566 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001567 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 break;
1569
1570 default:
1571 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001572 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 break;
1574 }
1575
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001576 if (acpi_notifier_call_chain(device, event, 0))
1577 /* Something vetoed the keypress. */
1578 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001579
Hans de Goede05bc59a2015-12-22 19:09:51 +01001580 if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001581 input_report_key(input, keycode, 1);
1582 input_sync(input);
1583 input_report_key(input, keycode, 0);
1584 input_sync(input);
1585 }
Luming Yue9dab192007-08-20 18:23:53 +08001586
Patrick Mocheld550d982006-06-27 00:41:40 -04001587 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001590static void brightness_switch_event(struct acpi_video_device *video_device,
1591 u32 event)
1592{
1593 if (!brightness_switch_enabled)
1594 return;
1595
1596 video_device->switch_brightness_event = event;
1597 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1598}
1599
Len Brown4be44fc2005-08-05 00:44:28 -04001600static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001602 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001603 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001604 struct acpi_video_bus *bus;
1605 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001606 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001609 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001611 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001612 bus = video_device->video;
1613 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001616 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001617 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001618 keycode = KEY_BRIGHTNESS_CYCLE;
1619 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001620 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001621 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001622 keycode = KEY_BRIGHTNESSUP;
1623 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001624 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001625 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001626 keycode = KEY_BRIGHTNESSDOWN;
1627 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001628 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001629 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001630 keycode = KEY_BRIGHTNESS_ZERO;
1631 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001632 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001633 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001634 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 break;
1636 default:
1637 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001638 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 break;
1640 }
Luming Yue9dab192007-08-20 18:23:53 +08001641
Zhang Rui7761f632008-01-25 14:48:12 +08001642 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001643
Hans de Goede05bc59a2015-12-22 19:09:51 +01001644 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001645 input_report_key(input, keycode, 1);
1646 input_sync(input);
1647 input_report_key(input, keycode, 0);
1648 input_sync(input);
1649 }
Luming Yue9dab192007-08-20 18:23:53 +08001650
Patrick Mocheld550d982006-06-27 00:41:40 -04001651 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001654static int acpi_video_resume(struct notifier_block *nb,
1655 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001656{
1657 struct acpi_video_bus *video;
1658 struct acpi_video_device *video_device;
1659 int i;
1660
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001661 switch (val) {
1662 case PM_HIBERNATION_PREPARE:
1663 case PM_SUSPEND_PREPARE:
1664 case PM_RESTORE_PREPARE:
1665 return NOTIFY_DONE;
1666 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001667
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001668 video = container_of(nb, struct acpi_video_bus, pm_nb);
1669
1670 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001671
1672 for (i = 0; i < video->attached_count; i++) {
1673 video_device = video->attached_array[i].bind_info;
Hans de Goede654a1822015-06-09 10:32:25 +02001674 if (video_device && video_device->brightness)
1675 acpi_video_device_lcd_set_level(video_device,
1676 video_device->brightness->curr);
Matthew Garrett863c1492008-02-04 23:31:24 -08001677 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001678
1679 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001680}
1681
Zhang Ruic504f8c2009-12-30 15:59:23 +08001682static acpi_status
1683acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1684 void **return_value)
1685{
1686 struct acpi_device *device = context;
1687 struct acpi_device *sibling;
1688 int result;
1689
1690 if (handle == device->handle)
1691 return AE_CTRL_TERMINATE;
1692
1693 result = acpi_bus_get_device(handle, &sibling);
1694 if (result)
1695 return AE_OK;
1696
1697 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1698 return AE_ALREADY_EXISTS;
1699
1700 return AE_OK;
1701}
1702
Aaron Lu67b662e2013-10-11 21:27:44 +08001703static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1704{
Hans de Goede99678ed2014-05-15 13:22:33 +02001705 struct backlight_properties props;
1706 struct pci_dev *pdev;
1707 acpi_handle acpi_parent;
1708 struct device *parent = NULL;
1709 int result;
1710 static int count;
1711 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001712
Hans de Goede99678ed2014-05-15 13:22:33 +02001713 result = acpi_video_init_brightness(device);
1714 if (result)
1715 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001716
1717 if (disable_backlight_sysfs_if > 0)
1718 return;
1719
Hans de Goede99678ed2014-05-15 13:22:33 +02001720 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1721 if (!name)
1722 return;
1723 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001724
Hans de Goede99678ed2014-05-15 13:22:33 +02001725 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001726
Hans de Goede99678ed2014-05-15 13:22:33 +02001727 pdev = acpi_get_pci_dev(acpi_parent);
1728 if (pdev) {
1729 parent = &pdev->dev;
1730 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001731 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001732
1733 memset(&props, 0, sizeof(struct backlight_properties));
1734 props.type = BACKLIGHT_FIRMWARE;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001735 props.max_brightness =
1736 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Hans de Goede99678ed2014-05-15 13:22:33 +02001737 device->backlight = backlight_device_register(name,
1738 parent,
1739 device,
1740 &acpi_backlight_ops,
1741 &props);
1742 kfree(name);
Hans de Goede654a1822015-06-09 10:32:25 +02001743 if (IS_ERR(device->backlight)) {
1744 device->backlight = NULL;
Hans de Goede99678ed2014-05-15 13:22:33 +02001745 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001746 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001747
1748 /*
1749 * Save current brightness level in case we have to restore it
1750 * before acpi_video_device_lcd_set_level() is called next time.
1751 */
1752 device->backlight->props.brightness =
1753 acpi_video_get_brightness(device->backlight);
1754
1755 device->cooling_dev = thermal_cooling_device_register("LCD",
1756 device->dev, &video_cooling_ops);
1757 if (IS_ERR(device->cooling_dev)) {
1758 /*
1759 * Set cooling_dev to NULL so we don't crash trying to free it.
1760 * Also, why the hell we are returning early and not attempt to
1761 * register video output if cooling device registration failed?
1762 * -- dtor
1763 */
1764 device->cooling_dev = NULL;
1765 return;
1766 }
1767
1768 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1769 device->cooling_dev->id);
1770 result = sysfs_create_link(&device->dev->dev.kobj,
1771 &device->cooling_dev->device.kobj,
1772 "thermal_cooling");
1773 if (result)
1774 printk(KERN_ERR PREFIX "Create sysfs link\n");
1775 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1776 &device->dev->dev.kobj, "device");
1777 if (result)
1778 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001779}
1780
Aaron Ludce4ec22014-10-28 14:35:59 +08001781static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1782{
1783 struct acpi_video_device *dev;
1784 union acpi_object *levels;
1785
1786 mutex_lock(&video->device_list_lock);
1787 list_for_each_entry(dev, &video->video_device_list, entry) {
Aaron Lu9f9cd7e2016-05-21 15:30:46 +08001788 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
Aaron Ludce4ec22014-10-28 14:35:59 +08001789 kfree(levels);
1790 }
1791 mutex_unlock(&video->device_list_lock);
1792}
1793
Aaron Lue50b9be2015-10-28 15:09:23 +08001794static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1795{
1796 /*
1797 * Do not create backlight device for video output
1798 * device that is not in the enumerated list.
1799 */
1800 if (!acpi_video_device_in_dod(dev)) {
1801 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1802 return false;
1803 }
1804
1805 if (only_lcd)
1806 return dev->flags.lcd;
1807 return true;
1808}
1809
Aaron Lu67b662e2013-10-11 21:27:44 +08001810static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1811{
1812 struct acpi_video_device *dev;
1813
Hans de Goede53a92ba2014-05-21 15:39:55 +02001814 if (video->backlight_registered)
1815 return 0;
1816
Aaron Ludce4ec22014-10-28 14:35:59 +08001817 acpi_video_run_bcl_for_osi(video);
1818
Hans de Goede3bd6bce2015-06-16 16:27:51 +02001819 if (acpi_video_get_backlight_type() != acpi_backlight_video)
Hans de Goede99678ed2014-05-15 13:22:33 +02001820 return 0;
1821
Aaron Lu67b662e2013-10-11 21:27:44 +08001822 mutex_lock(&video->device_list_lock);
Aaron Lue50b9be2015-10-28 15:09:23 +08001823 list_for_each_entry(dev, &video->video_device_list, entry) {
1824 if (acpi_video_should_register_backlight(dev))
1825 acpi_video_dev_register_backlight(dev);
1826 }
Aaron Lu67b662e2013-10-11 21:27:44 +08001827 mutex_unlock(&video->device_list_lock);
1828
Hans de Goede99678ed2014-05-15 13:22:33 +02001829 video->backlight_registered = true;
1830
Aaron Lu67b662e2013-10-11 21:27:44 +08001831 video->pm_nb.notifier_call = acpi_video_resume;
1832 video->pm_nb.priority = 0;
1833 return register_pm_notifier(&video->pm_nb);
1834}
1835
1836static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1837{
1838 if (device->backlight) {
1839 backlight_device_unregister(device->backlight);
1840 device->backlight = NULL;
1841 }
1842 if (device->brightness) {
1843 kfree(device->brightness->levels);
1844 kfree(device->brightness);
1845 device->brightness = NULL;
1846 }
1847 if (device->cooling_dev) {
1848 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1849 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1850 thermal_cooling_device_unregister(device->cooling_dev);
1851 device->cooling_dev = NULL;
1852 }
1853}
1854
1855static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1856{
1857 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001858 int error;
1859
1860 if (!video->backlight_registered)
1861 return 0;
1862
1863 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001864
1865 mutex_lock(&video->device_list_lock);
1866 list_for_each_entry(dev, &video->video_device_list, entry)
1867 acpi_video_dev_unregister_backlight(dev);
1868 mutex_unlock(&video->device_list_lock);
1869
Hans de Goede99678ed2014-05-15 13:22:33 +02001870 video->backlight_registered = false;
1871
Aaron Lu67b662e2013-10-11 21:27:44 +08001872 return error;
1873}
1874
1875static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1876{
1877 acpi_status status;
1878 struct acpi_device *adev = device->dev;
1879
1880 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1881 acpi_video_device_notify, device);
1882 if (ACPI_FAILURE(status))
1883 dev_err(&adev->dev, "Error installing notify handler\n");
1884 else
1885 device->flags.notify = 1;
1886}
1887
1888static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1889{
1890 struct input_dev *input;
1891 struct acpi_video_device *dev;
1892 int error;
1893
1894 video->input = input = input_allocate_device();
1895 if (!input) {
1896 error = -ENOMEM;
1897 goto out;
1898 }
1899
1900 error = acpi_video_bus_start_devices(video);
1901 if (error)
1902 goto err_free_input;
1903
1904 snprintf(video->phys, sizeof(video->phys),
1905 "%s/video/input0", acpi_device_hid(video->device));
1906
1907 input->name = acpi_device_name(video->device);
1908 input->phys = video->phys;
1909 input->id.bustype = BUS_HOST;
1910 input->id.product = 0x06;
1911 input->dev.parent = &video->device->dev;
1912 input->evbit[0] = BIT(EV_KEY);
1913 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1914 set_bit(KEY_VIDEO_NEXT, input->keybit);
1915 set_bit(KEY_VIDEO_PREV, input->keybit);
1916 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1917 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1918 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1919 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1920 set_bit(KEY_DISPLAY_OFF, input->keybit);
1921
1922 error = input_register_device(input);
1923 if (error)
1924 goto err_stop_dev;
1925
1926 mutex_lock(&video->device_list_lock);
1927 list_for_each_entry(dev, &video->video_device_list, entry)
1928 acpi_video_dev_add_notify_handler(dev);
1929 mutex_unlock(&video->device_list_lock);
1930
1931 return 0;
1932
1933err_stop_dev:
1934 acpi_video_bus_stop_devices(video);
1935err_free_input:
1936 input_free_device(input);
1937 video->input = NULL;
1938out:
1939 return error;
1940}
1941
1942static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1943{
1944 if (dev->flags.notify) {
1945 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1946 acpi_video_device_notify);
1947 dev->flags.notify = 0;
1948 }
1949}
1950
1951static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1952{
1953 struct acpi_video_device *dev;
1954
1955 mutex_lock(&video->device_list_lock);
1956 list_for_each_entry(dev, &video->video_device_list, entry)
1957 acpi_video_dev_remove_notify_handler(dev);
1958 mutex_unlock(&video->device_list_lock);
1959
1960 acpi_video_bus_stop_devices(video);
1961 input_unregister_device(video->input);
1962 video->input = NULL;
1963}
1964
1965static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1966{
1967 struct acpi_video_device *dev, *next;
1968
1969 mutex_lock(&video->device_list_lock);
1970 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1971 list_del(&dev->entry);
1972 kfree(dev);
1973 }
1974 mutex_unlock(&video->device_list_lock);
1975
1976 return 0;
1977}
1978
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001979static int instance;
1980
Len Brown4be44fc2005-08-05 00:44:28 -04001981static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001983 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001984 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001985 acpi_status status;
1986
1987 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
1988 device->parent->handle, 1,
1989 acpi_video_bus_match, NULL,
1990 device, NULL);
1991 if (status == AE_ALREADY_EXISTS) {
1992 printk(KERN_WARNING FW_BUG
1993 "Duplicate ACPI video bus devices for the"
1994 " same VGA controller, please try module "
1995 "parameter \"video.allow_duplicates=1\""
1996 "if the current driver doesn't work.\n");
1997 if (!allow_duplicates)
1998 return -ENODEV;
1999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Burman Yan36bcbec2006-12-19 12:56:11 -08002001 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002003 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Zhang Ruie6d9da12007-08-25 02:23:31 -04002005 /* a hack to fix the duplicate name "VID" problem on T61 */
2006 if (!strcmp(device->pnp.bus_id, "VID")) {
2007 if (instance)
2008 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02002009 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04002010 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05002011 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2012 if (!strcmp(device->pnp.bus_id, "VGA")) {
2013 if (instance)
2014 device->pnp.bus_id[3] = '0' + instance;
2015 instance++;
2016 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04002017
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002018 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2020 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002021 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002024 error = acpi_video_bus_check(video);
2025 if (error)
2026 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002028 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 INIT_LIST_HEAD(&video->video_device_list);
2030
Igor Murzovea9f8852012-03-30 21:32:08 +04002031 error = acpi_video_bus_get_devices(video, device);
2032 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00002033 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002036 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2037 video->flags.multihead ? "yes" : "no",
2038 video->flags.rom ? "yes" : "no",
2039 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08002040 mutex_lock(&video_list_lock);
2041 list_add_tail(&video->entry, &video_bus_head);
2042 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Aaron Lu67b662e2013-10-11 21:27:44 +08002044 acpi_video_bus_register_backlight(video);
2045 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002046
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002047 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Aaron Lu67b662e2013-10-11 21:27:44 +08002049err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002050 acpi_video_bus_put_devices(video);
2051 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08002052err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002053 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002054 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002055
2056 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057}
2058
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002059static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Len Brown4be44fc2005-08-05 00:44:28 -04002061 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002065 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002067 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Aaron Lu67b662e2013-10-11 21:27:44 +08002069 acpi_video_bus_remove_notify_handler(video);
2070 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Aaron Lu67b662e2013-10-11 21:27:44 +08002073 mutex_lock(&video_list_lock);
2074 list_del(&video->entry);
2075 mutex_unlock(&video_list_lock);
2076
Jesper Juhl6044ec82005-11-07 01:01:32 -08002077 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 kfree(video);
2079
Patrick Mocheld550d982006-06-27 00:41:40 -04002080 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Alan Coxc6996bd2012-04-25 14:33:48 +01002083static int __init is_i740(struct pci_dev *dev)
2084{
2085 if (dev->device == 0x00D1)
2086 return 1;
2087 if (dev->device == 0x7000)
2088 return 1;
2089 return 0;
2090}
2091
Matthew Garrett74a365b2009-03-19 21:35:39 +00002092static int __init intel_opregion_present(void)
2093{
Alan Coxc6996bd2012-04-25 14:33:48 +01002094 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002095 struct pci_dev *dev = NULL;
2096 u32 address;
2097
2098 for_each_pci_dev(dev) {
2099 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2100 continue;
2101 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2102 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002103 /* We don't want to poke around undefined i740 registers */
2104 if (is_i740(dev))
2105 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002106 pci_read_config_dword(dev, 0xfc, &address);
2107 if (!address)
2108 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002109 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002110 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002111 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002112}
2113
Hans de Goedececf3e32019-01-07 17:08:20 +01002114/* Check if the chassis-type indicates there is no builtin LCD panel */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002115static bool dmi_is_desktop(void)
2116{
2117 const char *chassis_type;
Hans de Goedececf3e32019-01-07 17:08:20 +01002118 unsigned long type;
Hans de Goede53fa1f62018-04-17 18:23:50 +02002119
2120 chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE);
2121 if (!chassis_type)
2122 return false;
2123
Hans de Goedececf3e32019-01-07 17:08:20 +01002124 if (kstrtoul(chassis_type, 10, &type) != 0)
2125 return false;
2126
2127 switch (type) {
2128 case 0x03: /* Desktop */
2129 case 0x04: /* Low Profile Desktop */
2130 case 0x05: /* Pizza Box */
2131 case 0x06: /* Mini Tower */
2132 case 0x07: /* Tower */
Hans de Goeded693c002019-01-07 17:08:21 +01002133 case 0x10: /* Lunch Box */
Hans de Goedececf3e32019-01-07 17:08:20 +01002134 case 0x11: /* Main Server Chassis */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002135 return true;
Hans de Goedececf3e32019-01-07 17:08:20 +01002136 }
Hans de Goede53fa1f62018-04-17 18:23:50 +02002137
2138 return false;
2139}
2140
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002141int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002143 int ret = 0;
Chris Wilson28d63402015-03-01 10:41:38 +00002144
Hans de Goede970530c2016-01-14 09:41:45 +01002145 mutex_lock(&register_count_mutex);
2146 if (register_count) {
Zhao Yakui86e437f2009-06-16 11:23:13 +08002147 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002148 * if the function of acpi_video_register is already called,
2149 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002150 */
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002151 goto leave;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Hans de Goede5928c282017-12-23 19:41:47 +01002154 /*
2155 * We're seeing a lot of bogus backlight interfaces on newer machines
2156 * without a LCD such as desktops, servers and HDMI sticks. Checking
2157 * the lcd flag fixes this, so enable this on any machines which are
2158 * win8 ready (where we also prefer the native backlight driver, so
2159 * normally the acpi_video code should not register there anyways).
2160 */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002161 if (only_lcd == -1) {
2162 if (dmi_is_desktop() && acpi_osi_is_win8())
2163 only_lcd = true;
2164 else
2165 only_lcd = false;
2166 }
Hans de Goede5928c282017-12-23 19:41:47 +01002167
Hans de Goede7ee33ba2015-06-16 16:27:53 +02002168 dmi_check_system(video_dmi_table);
2169
Chris Wilson28d63402015-03-01 10:41:38 +00002170 ret = acpi_bus_register_driver(&acpi_video_bus);
2171 if (ret)
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002172 goto leave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Zhao Yakui86e437f2009-06-16 11:23:13 +08002174 /*
2175 * When the acpi_video_bus is loaded successfully, increase
2176 * the counter reference.
2177 */
Hans de Goede970530c2016-01-14 09:41:45 +01002178 register_count = 1;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002179
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002180leave:
Hans de Goede970530c2016-01-14 09:41:45 +01002181 mutex_unlock(&register_count_mutex);
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002182 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002184EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002185
Zhao Yakui86e437f2009-06-16 11:23:13 +08002186void acpi_video_unregister(void)
2187{
Hans de Goede970530c2016-01-14 09:41:45 +01002188 mutex_lock(&register_count_mutex);
2189 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002190 acpi_bus_unregister_driver(&acpi_video_bus);
Hans de Goede970530c2016-01-14 09:41:45 +01002191 register_count = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002192 }
Hans de Goede970530c2016-01-14 09:41:45 +01002193 mutex_unlock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002194}
2195EXPORT_SYMBOL(acpi_video_unregister);
2196
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002197void acpi_video_unregister_backlight(void)
2198{
2199 struct acpi_video_bus *video;
2200
Hans de Goede970530c2016-01-14 09:41:45 +01002201 mutex_lock(&register_count_mutex);
2202 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002203 mutex_lock(&video_list_lock);
2204 list_for_each_entry(video, &video_bus_head, entry)
2205 acpi_video_bus_unregister_backlight(video);
2206 mutex_unlock(&video_list_lock);
2207 }
Hans de Goede970530c2016-01-14 09:41:45 +01002208 mutex_unlock(&register_count_mutex);
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002209}
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002210
Hans de Goede90b066b2015-12-22 19:09:48 +01002211bool acpi_video_handles_brightness_key_presses(void)
2212{
2213 bool have_video_busses;
2214
2215 mutex_lock(&video_list_lock);
2216 have_video_busses = !list_empty(&video_bus_head);
2217 mutex_unlock(&video_list_lock);
2218
Hans de Goede05bc59a2015-12-22 19:09:51 +01002219 return have_video_busses &&
2220 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
Hans de Goede90b066b2015-12-22 19:09:48 +01002221}
2222EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2223
Matthew Garrett74a365b2009-03-19 21:35:39 +00002224/*
2225 * This is kind of nasty. Hardware using Intel chipsets may require
2226 * the video opregion code to be run first in order to initialise
2227 * state before any ACPI video calls are made. To handle this we defer
2228 * registration of the video class until the opregion code has run.
2229 */
2230
2231static int __init acpi_video_init(void)
2232{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002233 /*
2234 * Let the module load even if ACPI is disabled (e.g. due to
2235 * a broken BIOS) so that i915.ko can still be loaded on such
2236 * old systems without an AcpiOpRegion.
2237 *
2238 * acpi_video_register() will report -ENODEV later as well due
2239 * to acpi_disabled when i915.ko tries to register itself afterwards.
2240 */
2241 if (acpi_disabled)
2242 return 0;
2243
Matthew Garrett74a365b2009-03-19 21:35:39 +00002244 if (intel_opregion_present())
2245 return 0;
2246
2247 return acpi_video_register();
2248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Zhao Yakui86e437f2009-06-16 11:23:13 +08002250static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Hans de Goede93a291d2015-06-16 16:27:52 +02002252 acpi_video_detect_exit();
Zhao Yakui86e437f2009-06-16 11:23:13 +08002253 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Patrick Mocheld550d982006-06-27 00:41:40 -04002255 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258module_init(acpi_video_init);
2259module_exit(acpi_video_exit);