blob: d73afb562ad9587b828ce9471958dc77046b082b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05002 * video.c - ACPI Video Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org>
Thomas Tuttlef4715182006-12-19 12:56:14 -08006 * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 */
22
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/types.h>
27#include <linux/list.h>
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -050028#include <linux/mutex.h>
Luming Yue9dab192007-08-20 18:23:53 +080029#include <linux/input.h>
Yu Luming2f3d0002006-11-11 02:40:34 +080030#include <linux/backlight.h>
Zhang Rui702ed512008-01-17 15:51:22 +080031#include <linux/thermal.h>
Zhang Rui935e5f22008-12-11 16:24:52 -050032#include <linux/sort.h>
Matthew Garrett74a365b2009-03-19 21:35:39 +000033#include <linux/pci.h>
34#include <linux/pci_ids.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Len Browneb27cae2009-07-06 23:40:19 -040036#include <linux/dmi.h>
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +020037#include <linux/suspend.h>
Lv Zheng8b484632013-12-03 08:49:16 +080038#include <linux/acpi.h>
Matthew Garrette92a7162010-01-12 14:17:03 -050039#include <acpi/video.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080040#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Hans de Goede14ca7a472015-06-16 16:27:47 +020042#define PREFIX "ACPI: "
Rafael J. Wysocki8c5bd7a2013-07-18 02:08:06 +020043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ACPI_VIDEO_BUS_NAME "Video Bus"
45#define ACPI_VIDEO_DEVICE_NAME "Video Device"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Yu Luming2f3d0002006-11-11 02:40:34 +080047#define MAX_NAME_LEN 20
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define _COMPONENT ACPI_VIDEO_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050050ACPI_MODULE_NAME("video");
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Len Brownf52fd662007-02-12 22:42:12 -050052MODULE_AUTHOR("Bruno Ducrot");
Len Brown7cda93e2007-02-12 23:50:02 -050053MODULE_DESCRIPTION("ACPI Video Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_LICENSE("GPL");
55
Gustavo A. R. Silva97e45dd2018-01-23 09:59:20 -060056static bool brightness_switch_enabled = true;
Zhang Rui8a681a42008-01-25 14:47:49 +080057module_param(brightness_switch_enabled, bool, 0644);
58
Zhang Ruic504f8c2009-12-30 15:59:23 +080059/*
60 * By default, we don't allow duplicate ACPI video bus devices
61 * under the same VGA controller
62 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103063static bool allow_duplicates;
Zhang Ruic504f8c2009-12-30 15:59:23 +080064module_param(allow_duplicates, bool, 0644);
65
Hans de Goede654a1822015-06-09 10:32:25 +020066static int disable_backlight_sysfs_if = -1;
67module_param(disable_backlight_sysfs_if, int, 0444);
68
Hans de Goede05bc59a2015-12-22 19:09:51 +010069#define REPORT_OUTPUT_KEY_EVENTS 0x01
70#define REPORT_BRIGHTNESS_KEY_EVENTS 0x02
71static int report_key_events = -1;
72module_param(report_key_events, int, 0644);
73MODULE_PARM_DESC(report_key_events,
74 "0: none, 1: output changes, 2: brightness changes, 3: all");
75
Dmitry Frank592c8092017-04-19 13:36:18 +030076/*
77 * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be
78 * assumed even if not actually set.
79 */
Aaron Lue50b9be2015-10-28 15:09:23 +080080static bool device_id_scheme = false;
81module_param(device_id_scheme, bool, 0444);
82
Hans de Goede5928c282017-12-23 19:41:47 +010083static int only_lcd = -1;
84module_param(only_lcd, int, 0444);
Aaron Lue50b9be2015-10-28 15:09:23 +080085
Hans de Goede970530c2016-01-14 09:41:45 +010086static int register_count;
87static DEFINE_MUTEX(register_count_mutex);
Hans de Goede14e93552016-01-14 09:41:46 +010088static DEFINE_MUTEX(video_list_lock);
89static LIST_HEAD(video_bus_head);
Len Brown4be44fc2005-08-05 00:44:28 -040090static int acpi_video_bus_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010091static int acpi_video_bus_remove(struct acpi_device *device);
Bjorn Helgaas70155582009-04-07 15:37:11 +000092static void acpi_video_bus_notify(struct acpi_device *device, u32 event);
Hans de Goede93a291d2015-06-16 16:27:52 +020093void acpi_video_detect_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Dmitry Frankd485ef42017-04-19 12:48:07 +030095/*
96 * Indices in the _BCL method response: the first two items are special,
97 * the rest are all supported levels.
98 *
99 * See page 575 of the ACPI spec 3.0
100 */
101enum acpi_video_level_idx {
102 ACPI_VIDEO_AC_LEVEL, /* level when machine has full power */
103 ACPI_VIDEO_BATTERY_LEVEL, /* level when machine is on batteries */
104 ACPI_VIDEO_FIRST_LEVEL, /* actual supported levels begin here */
105};
106
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200107static const struct acpi_device_id video_device_ids[] = {
108 {ACPI_VIDEO_HID, 0},
109 {"", 0},
110};
111MODULE_DEVICE_TABLE(acpi, video_device_ids);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static struct acpi_driver acpi_video_bus = {
Len Brownc2b67052007-02-12 23:33:40 -0500114 .name = "video",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .class = ACPI_VIDEO_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200116 .ids = video_device_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .ops = {
118 .add = acpi_video_bus_add,
119 .remove = acpi_video_bus_remove,
Bjorn Helgaas70155582009-04-07 15:37:11 +0000120 .notify = acpi_video_bus_notify,
Len Brown4be44fc2005-08-05 00:44:28 -0400121 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
124struct acpi_video_bus_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400125 u8 multihead:1; /* can switch video heads */
126 u8 rom:1; /* can retrieve a video rom */
127 u8 post:1; /* can configure the head to */
128 u8 reserved:5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
131struct acpi_video_bus_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500132 u8 _DOS:1; /* Enable/Disable output switching */
133 u8 _DOD:1; /* Enumerate all devices attached to display adapter */
134 u8 _ROM:1; /* Get ROM Data */
135 u8 _GPD:1; /* Get POST Device */
136 u8 _SPD:1; /* Set POST Device */
137 u8 _VPO:1; /* Video POST Options */
Len Brown4be44fc2005-08-05 00:44:28 -0400138 u8 reserved:2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
Len Brown4be44fc2005-08-05 00:44:28 -0400141struct acpi_video_device_attrib {
142 u32 display_index:4; /* A zero-based instance of the Display */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500143 u32 display_port_attachment:4; /* This field differentiates the display type */
144 u32 display_type:4; /* Describe the specific type in use */
145 u32 vendor_specific:4; /* Chipset Vendor Specific */
146 u32 bios_can_detect:1; /* BIOS can detect the device */
147 u32 depend_on_vga:1; /* Non-VGA output device whose power is related to
Len Brown4be44fc2005-08-05 00:44:28 -0400148 the VGA device. */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500149 u32 pipe_id:3; /* For VGA multiple-head devices. */
150 u32 reserved:10; /* Must be 0 */
Dmitry Frank592c8092017-04-19 13:36:18 +0300151
152 /*
153 * The device ID might not actually follow the scheme described by this
154 * struct acpi_video_device_attrib. If it does, then this bit
155 * device_id_scheme is set; otherwise, other fields should be ignored.
156 *
157 * (but also see the global flag device_id_scheme)
158 */
159 u32 device_id_scheme:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
162struct acpi_video_enumerated_device {
163 union {
164 u32 int_val;
Len Brown4be44fc2005-08-05 00:44:28 -0400165 struct acpi_video_device_attrib attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 } value;
167 struct acpi_video_device *bind_info;
168};
169
170struct acpi_video_bus {
Patrick Mochele6afa0d2006-05-19 16:54:40 -0400171 struct acpi_device *device;
Hans de Goede99678ed2014-05-15 13:22:33 +0200172 bool backlight_registered;
Len Brown4be44fc2005-08-05 00:44:28 -0400173 u8 dos_setting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 struct acpi_video_enumerated_device *attached_array;
Len Brown4be44fc2005-08-05 00:44:28 -0400175 u8 attached_count;
Aaron Lub4df4632014-12-15 16:01:29 +0800176 u8 child_count;
Len Brown4be44fc2005-08-05 00:44:28 -0400177 struct acpi_video_bus_cap cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct acpi_video_bus_flags flags;
Len Brown4be44fc2005-08-05 00:44:28 -0400179 struct list_head video_device_list;
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -0500180 struct mutex device_list_lock; /* protects video_device_list */
Aaron Lu67b662e2013-10-11 21:27:44 +0800181 struct list_head entry;
Luming Yue9dab192007-08-20 18:23:53 +0800182 struct input_dev *input;
183 char phys[32]; /* for input device */
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +0200184 struct notifier_block pm_nb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187struct acpi_video_device_flags {
Len Brown4be44fc2005-08-05 00:44:28 -0400188 u8 crt:1;
189 u8 lcd:1;
190 u8 tvout:1;
Rui Zhang82cae992007-01-03 23:40:53 -0500191 u8 dvi:1;
Len Brown4be44fc2005-08-05 00:44:28 -0400192 u8 bios:1;
193 u8 unknown:1;
Aaron Lu91e13aa2013-04-25 02:47:49 +0000194 u8 notify:1;
195 u8 reserved:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196};
197
198struct acpi_video_device_cap {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500199 u8 _ADR:1; /* Return the unique ID */
200 u8 _BCL:1; /* Query list of brightness control levels supported */
201 u8 _BCM:1; /* Set the brightness level */
Yu Luming2f3d0002006-11-11 02:40:34 +0800202 u8 _BQC:1; /* Get current brightness level */
Zhang Ruic60d6382009-03-18 16:27:18 +0800203 u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */
Felipe Contreras21fcb342013-08-01 18:43:59 -0500204 u8 _DDC:1; /* Return the EDID for this device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207struct acpi_video_device {
Len Brown4be44fc2005-08-05 00:44:28 -0400208 unsigned long device_id;
209 struct acpi_video_device_flags flags;
210 struct acpi_video_device_cap cap;
211 struct list_head entry;
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200212 struct delayed_work switch_brightness_work;
213 int switch_brightness_event;
Len Brown4be44fc2005-08-05 00:44:28 -0400214 struct acpi_video_bus *video;
215 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 struct acpi_video_device_brightness *brightness;
Yu Luming2f3d0002006-11-11 02:40:34 +0800217 struct backlight_device *backlight;
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400218 struct thermal_cooling_device *cooling_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
220
Len Brown4be44fc2005-08-05 00:44:28 -0400221static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data);
222static void acpi_video_device_rebind(struct acpi_video_bus *video);
223static void acpi_video_device_bind(struct acpi_video_bus *video,
224 struct acpi_video_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static int acpi_video_device_enumerate(struct acpi_video_bus *video);
Yu Luming2f3d0002006-11-11 02:40:34 +0800226static int acpi_video_device_lcd_set_level(struct acpi_video_device *device,
227 int level);
228static int acpi_video_device_lcd_get_level_current(
229 struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000230 unsigned long long *level, bool raw);
Len Brown4be44fc2005-08-05 00:44:28 -0400231static int acpi_video_get_next_level(struct acpi_video_device *device,
232 u32 level_current, u32 event);
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200233static void acpi_video_switch_brightness(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Felipe Contreras21fcb342013-08-01 18:43:59 -0500235/* backlight device sysfs support */
Yu Luming2f3d0002006-11-11 02:40:34 +0800236static int acpi_video_get_brightness(struct backlight_device *bd)
237{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400238 unsigned long long cur_level;
Matthew Garrett38531e62007-12-26 02:03:26 +0000239 int i;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200240 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Ruic8890f92009-03-18 16:27:08 +0800241
Danny Baumanna89803d2013-03-19 16:22:50 +0000242 if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800243 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300244 for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) {
Matthew Garrett38531e62007-12-26 02:03:26 +0000245 if (vd->brightness->levels[i] == cur_level)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300246 return i - ACPI_VIDEO_FIRST_LEVEL;
Matthew Garrett38531e62007-12-26 02:03:26 +0000247 }
248 return 0;
Yu Luming2f3d0002006-11-11 02:40:34 +0800249}
250
251static int acpi_video_set_brightness(struct backlight_device *bd)
252{
Dmitry Frankd485ef42017-04-19 12:48:07 +0300253 int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL;
Felipe Contreras7c364e72013-08-03 22:15:21 +0200254 struct acpi_video_device *vd = bl_get_data(bd);
Zhang Rui24450c72009-03-18 16:27:10 +0800255
Linus Torvalds8ab58e82014-07-18 14:32:51 +0200256 cancel_delayed_work(&vd->switch_brightness_work);
Zhang Rui24450c72009-03-18 16:27:10 +0800257 return acpi_video_device_lcd_set_level(vd,
258 vd->brightness->levels[request_level]);
Yu Luming2f3d0002006-11-11 02:40:34 +0800259}
260
Lionel Debrouxacc24722010-11-16 14:14:02 +0100261static const struct backlight_ops acpi_backlight_ops = {
Richard Purdie599a52d2007-02-10 23:07:48 +0000262 .get_brightness = acpi_video_get_brightness,
263 .update_status = acpi_video_set_brightness,
264};
265
Zhang Rui702ed512008-01-17 15:51:22 +0800266/* thermal cooling device callbacks */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300267static int video_get_max_state(struct thermal_cooling_device *cooling_dev,
268 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800269{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400270 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800271 struct acpi_video_device *video = acpi_driver_data(device);
272
Dmitry Frankd485ef42017-04-19 12:48:07 +0300273 *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000274 return 0;
Zhang Rui702ed512008-01-17 15:51:22 +0800275}
276
Dmitry Frankd485ef42017-04-19 12:48:07 +0300277static int video_get_cur_state(struct thermal_cooling_device *cooling_dev,
278 unsigned long *state)
Zhang Rui702ed512008-01-17 15:51:22 +0800279{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400280 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800281 struct acpi_video_device *video = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400282 unsigned long long level;
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000283 int offset;
Zhang Rui702ed512008-01-17 15:51:22 +0800284
Danny Baumanna89803d2013-03-19 16:22:50 +0000285 if (acpi_video_device_lcd_get_level_current(video, &level, false))
Zhang Ruic8890f92009-03-18 16:27:08 +0800286 return -EINVAL;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300287 for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count;
288 offset++)
Matthew Garrett6503e5d2008-11-27 17:48:13 +0000289 if (level == video->brightness->levels[offset]) {
290 *state = video->brightness->count - offset - 1;
291 return 0;
292 }
Zhang Rui702ed512008-01-17 15:51:22 +0800293
294 return -EINVAL;
295}
296
297static int
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400298video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state)
Zhang Rui702ed512008-01-17 15:51:22 +0800299{
Dmitry Torokhov4a703a82009-08-29 23:03:16 -0400300 struct acpi_device *device = cooling_dev->devdata;
Zhang Rui702ed512008-01-17 15:51:22 +0800301 struct acpi_video_device *video = acpi_driver_data(device);
302 int level;
303
Dmitry Frankd485ef42017-04-19 12:48:07 +0300304 if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL)
Zhang Rui702ed512008-01-17 15:51:22 +0800305 return -EINVAL;
306
307 state = video->brightness->count - state;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200308 level = video->brightness->levels[state - 1];
Zhang Rui702ed512008-01-17 15:51:22 +0800309 return acpi_video_device_lcd_set_level(video, level);
310}
311
Vasiliy Kulikov9c8b04b2011-06-25 21:07:52 +0400312static const struct thermal_cooling_device_ops video_cooling_ops = {
Zhang Rui702ed512008-01-17 15:51:22 +0800313 .get_max_state = video_get_max_state,
314 .get_cur_state = video_get_cur_state,
315 .set_cur_state = video_set_cur_state,
316};
317
Felipe Contreras21fcb342013-08-01 18:43:59 -0500318/*
319 * --------------------------------------------------------------------------
320 * Video Management
321 * --------------------------------------------------------------------------
322 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static int
Aaron Lu05950092016-04-27 20:45:04 +0800325acpi_video_device_lcd_query_levels(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400326 union acpi_object **levels)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Len Brown4be44fc2005-08-05 00:44:28 -0400328 int status;
329 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
330 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 *levels = NULL;
334
Aaron Lu05950092016-04-27 20:45:04 +0800335 status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!ACPI_SUCCESS(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400337 return status;
Len Brown4be44fc2005-08-05 00:44:28 -0400338 obj = (union acpi_object *)buffer.pointer;
Adrian Bunk6665bda2006-03-11 10:12:00 -0500339 if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
Len Brown64684632006-06-26 23:41:38 -0400340 printk(KERN_ERR PREFIX "Invalid _BCL data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 status = -EFAULT;
342 goto err;
343 }
344
345 *levels = obj;
346
Patrick Mocheld550d982006-06-27 00:41:40 -0400347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200349err:
Jesper Juhl6044ec82005-11-07 01:01:32 -0800350 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Patrick Mocheld550d982006-06-27 00:41:40 -0400352 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355static int
Len Brown4be44fc2005-08-05 00:44:28 -0400356acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Zhang Rui24450c72009-03-18 16:27:10 +0800358 int status;
Zhang Rui9e6dada2008-12-31 10:58:48 +0800359 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Jiang Liu0db98202013-06-29 00:24:39 +0800361 status = acpi_execute_simple_method(device->dev->handle,
362 "_BCM", level);
Zhang Rui24450c72009-03-18 16:27:10 +0800363 if (ACPI_FAILURE(status)) {
364 ACPI_ERROR((AE_INFO, "Evaluating _BCM failed"));
365 return -EIO;
366 }
367
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400368 device->brightness->curr = level;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300369 for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count;
370 state++)
Zhang Rui24450c72009-03-18 16:27:10 +0800371 if (level == device->brightness->levels[state]) {
Zhang Rui1a7c6182009-03-18 16:27:16 +0800372 if (device->backlight)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300373 device->backlight->props.brightness =
374 state - ACPI_VIDEO_FIRST_LEVEL;
Zhang Rui24450c72009-03-18 16:27:10 +0800375 return 0;
376 }
Zhang Rui9e6dada2008-12-31 10:58:48 +0800377
Zhang Rui24450c72009-03-18 16:27:10 +0800378 ACPI_ERROR((AE_INFO, "Current brightness invalid"));
379 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Zhang Rui45cb50e2009-04-24 12:13:18 -0400382/*
383 * For some buggy _BQC methods, we need to add a constant value to
384 * the _BQC return value to get the actual current brightness level
385 */
386
387static int bqc_offset_aml_bug_workaround;
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200388static int video_set_bqc_offset(const struct dmi_system_id *d)
Zhang Rui45cb50e2009-04-24 12:13:18 -0400389{
390 bqc_offset_aml_bug_workaround = 9;
391 return 0;
392}
393
Hans de Goede7ee33ba2015-06-16 16:27:53 +0200394static int video_disable_backlight_sysfs_if(
Hans de Goede654a1822015-06-09 10:32:25 +0200395 const struct dmi_system_id *d)
396{
397 if (disable_backlight_sysfs_if == -1)
398 disable_backlight_sysfs_if = 1;
399 return 0;
400}
401
Aaron Lue50b9be2015-10-28 15:09:23 +0800402static int video_set_device_id_scheme(const struct dmi_system_id *d)
403{
404 device_id_scheme = true;
405 return 0;
406}
407
408static int video_enable_only_lcd(const struct dmi_system_id *d)
409{
410 only_lcd = true;
411 return 0;
412}
413
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100414static int video_set_report_key_events(const struct dmi_system_id *id)
415{
416 if (report_key_events == -1)
417 report_key_events = (uintptr_t)id->driver_data;
418 return 0;
419}
420
Christoph Hellwig6faadbb2017-09-14 11:59:30 +0200421static const struct dmi_system_id video_dmi_table[] = {
Zhang Rui45cb50e2009-04-24 12:13:18 -0400422 /*
423 * Broken _BQC workaround http://bugzilla.kernel.org/show_bug.cgi?id=13121
424 */
425 {
426 .callback = video_set_bqc_offset,
427 .ident = "Acer Aspire 5720",
428 .matches = {
429 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
430 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5720"),
431 },
432 },
Len Brown5afc4ab2009-05-07 21:11:56 -0400433 {
434 .callback = video_set_bqc_offset,
435 .ident = "Acer Aspire 5710Z",
436 .matches = {
437 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
438 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"),
439 },
440 },
Zhang Rui34ac2722009-05-26 23:35:34 -0400441 {
442 .callback = video_set_bqc_offset,
443 .ident = "eMachines E510",
444 .matches = {
445 DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"),
446 DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"),
447 },
448 },
Zhang Rui93bcece2009-05-19 15:08:41 -0400449 {
450 .callback = video_set_bqc_offset,
451 .ident = "Acer Aspire 5315",
452 .matches = {
453 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
454 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"),
455 },
456 },
Zhang Rui152a4e62009-06-22 11:31:18 +0800457 {
458 .callback = video_set_bqc_offset,
459 .ident = "Acer Aspire 7720",
460 .matches = {
461 DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
462 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 7720"),
463 },
464 },
Hans de Goede5f240792014-08-28 10:20:46 +0200465
466 /*
Hans de Goede654a1822015-06-09 10:32:25 +0200467 * Some machines have a broken acpi-video interface for brightness
468 * control, but still need an acpi_video_device_lcd_set_level() call
469 * on resume to turn the backlight power on. We Enable backlight
470 * control on these systems, but do not register a backlight sysfs
471 * as brightness control does not work.
472 */
473 {
Hans de Goedede588b82016-01-11 14:46:17 +0100474 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
475 .callback = video_disable_backlight_sysfs_if,
476 .ident = "Toshiba Portege R700",
477 .matches = {
478 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
479 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R700"),
480 },
481 },
482 {
Hans de Goede654a1822015-06-09 10:32:25 +0200483 /* https://bugs.freedesktop.org/show_bug.cgi?id=82634 */
484 .callback = video_disable_backlight_sysfs_if,
485 .ident = "Toshiba Portege R830",
486 .matches = {
487 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
488 DMI_MATCH(DMI_PRODUCT_NAME, "PORTEGE R830"),
489 },
490 },
Hans de Goedeb21f2e82016-01-14 14:24:39 +0100491 {
492 /* https://bugzilla.kernel.org/show_bug.cgi?id=21012 */
493 .callback = video_disable_backlight_sysfs_if,
494 .ident = "Toshiba Satellite R830",
495 .matches = {
496 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
497 DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE R830"),
498 },
499 },
Aaron Lue50b9be2015-10-28 15:09:23 +0800500 /*
501 * Some machine's _DOD IDs don't have bit 31(Device ID Scheme) set
502 * but the IDs actually follow the Device ID Scheme.
503 */
504 {
505 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
506 .callback = video_set_device_id_scheme,
507 .ident = "ESPRIMO Mobile M9410",
508 .matches = {
509 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
510 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
511 },
512 },
513 /*
514 * Some machines have multiple video output devices, but only the one
515 * that is the type of LCD can do the backlight control so we should not
516 * register backlight interface for other video output devices.
517 */
518 {
519 /* https://bugzilla.kernel.org/show_bug.cgi?id=104121 */
520 .callback = video_enable_only_lcd,
521 .ident = "ESPRIMO Mobile M9410",
522 .matches = {
523 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
524 DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Mobile M9410"),
525 },
526 },
Hans de Goede4b4b3b22015-12-22 19:09:52 +0100527 /*
528 * Some machines report wrong key events on the acpi-bus, suppress
529 * key event reporting on these. Note this is only intended to work
530 * around events which are plain wrong. In some cases we get double
531 * events, in this case acpi-video is considered the canonical source
532 * and the events from the other source should be filtered. E.g.
533 * by calling acpi_video_handles_brightness_key_presses() from the
534 * vendor acpi/wmi driver or by using /lib/udev/hwdb.d/60-keyboard.hwdb
535 */
536 {
537 .callback = video_set_report_key_events,
538 .driver_data = (void *)((uintptr_t)REPORT_OUTPUT_KEY_EVENTS),
539 .ident = "Dell Vostro V131",
540 .matches = {
541 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
542 DMI_MATCH(DMI_PRODUCT_NAME, "Vostro V131"),
543 },
544 },
Zhang Rui45cb50e2009-04-24 12:13:18 -0400545 {}
546};
547
Danny Baumann994fa632013-03-19 16:22:52 +0000548static unsigned long long
549acpi_video_bqc_value_to_level(struct acpi_video_device *device,
550 unsigned long long bqc_value)
551{
552 unsigned long long level;
553
554 if (device->brightness->flags._BQC_use_index) {
555 /*
Dmitry Frankd485ef42017-04-19 12:48:07 +0300556 * _BQC returns an index that doesn't account for the first 2
557 * items with special meaning (see enum acpi_video_level_idx),
558 * so we need to compensate for that by offsetting ourselves
Danny Baumann994fa632013-03-19 16:22:52 +0000559 */
560 if (device->brightness->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300561 bqc_value = device->brightness->count -
562 ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value;
Danny Baumann994fa632013-03-19 16:22:52 +0000563
Dmitry Frankd485ef42017-04-19 12:48:07 +0300564 level = device->brightness->levels[bqc_value +
565 ACPI_VIDEO_FIRST_LEVEL];
Danny Baumann994fa632013-03-19 16:22:52 +0000566 } else {
567 level = bqc_value;
568 }
569
570 level += bqc_offset_aml_bug_workaround;
571
572 return level;
573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575static int
Len Brown4be44fc2005-08-05 00:44:28 -0400576acpi_video_device_lcd_get_level_current(struct acpi_video_device *device,
Danny Baumanna89803d2013-03-19 16:22:50 +0000577 unsigned long long *level, bool raw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Zhang Ruic8890f92009-03-18 16:27:08 +0800579 acpi_status status = AE_OK;
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800580 int i;
Zhang Ruic8890f92009-03-18 16:27:08 +0800581
Zhang Ruic60d6382009-03-18 16:27:18 +0800582 if (device->cap._BQC || device->cap._BCQ) {
583 char *buf = device->cap._BQC ? "_BQC" : "_BCQ";
584
585 status = acpi_evaluate_integer(device->dev->handle, buf,
Zhang Ruic8890f92009-03-18 16:27:08 +0800586 NULL, level);
587 if (ACPI_SUCCESS(status)) {
Danny Baumanna89803d2013-03-19 16:22:50 +0000588 if (raw) {
589 /*
590 * Caller has indicated he wants the raw
591 * value returned by _BQC, so don't furtherly
592 * mess with the value.
593 */
594 return 0;
595 }
596
Danny Baumann994fa632013-03-19 16:22:52 +0000597 *level = acpi_video_bqc_value_to_level(device, *level);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800598
Dmitry Frankd485ef42017-04-19 12:48:07 +0300599 for (i = ACPI_VIDEO_FIRST_LEVEL;
600 i < device->brightness->count; i++)
Vladimir Serbinenko4e231fa2009-06-24 15:17:36 +0800601 if (device->brightness->levels[i] == *level) {
602 device->brightness->curr = *level;
603 return 0;
Felipe Contreras915ea7e2013-08-03 22:12:50 +0200604 }
Danny Baumanna89803d2013-03-19 16:22:50 +0000605 /*
606 * BQC returned an invalid level.
607 * Stop using it.
608 */
609 ACPI_WARNING((AE_INFO,
610 "%s returned an invalid level",
611 buf));
612 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800613 } else {
Felipe Contreras21fcb342013-08-01 18:43:59 -0500614 /*
615 * Fixme:
Zhang Ruic8890f92009-03-18 16:27:08 +0800616 * should we return an error or ignore this failure?
617 * dev->brightness->curr is a cached value which stores
618 * the correct current backlight level in most cases.
619 * ACPI video backlight still works w/ buggy _BQC.
620 * http://bugzilla.kernel.org/show_bug.cgi?id=12233
621 */
Zhang Ruic60d6382009-03-18 16:27:18 +0800622 ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf));
623 device->cap._BQC = device->cap._BCQ = 0;
Zhang Ruic8890f92009-03-18 16:27:08 +0800624 }
625 }
626
Alexey Starikovskiy4500ca82007-09-03 16:29:58 +0400627 *level = device->brightness->curr;
Zhang Ruic8890f92009-03-18 16:27:08 +0800628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631static int
Len Brown4be44fc2005-08-05 00:44:28 -0400632acpi_video_device_EDID(struct acpi_video_device *device,
633 union acpi_object **edid, ssize_t length)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Len Brown4be44fc2005-08-05 00:44:28 -0400635 int status;
636 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
637 union acpi_object *obj;
638 union acpi_object arg0 = { ACPI_TYPE_INTEGER };
639 struct acpi_object_list args = { 1, &arg0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 *edid = NULL;
643
644 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400645 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (length == 128)
647 arg0.integer.value = 1;
648 else if (length == 256)
649 arg0.integer.value = 2;
650 else
Patrick Mocheld550d982006-06-27 00:41:40 -0400651 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Patrick Mochel90130262006-05-19 16:54:48 -0400653 status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400655 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200657 obj = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (obj && obj->type == ACPI_TYPE_BUFFER)
660 *edid = obj;
661 else {
Len Brown64684632006-06-26 23:41:38 -0400662 printk(KERN_ERR PREFIX "Invalid _DDC data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 status = -EFAULT;
664 kfree(obj);
665 }
666
Patrick Mocheld550d982006-06-27 00:41:40 -0400667 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/* bus */
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/*
673 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500674 * video : video bus device pointer
675 * bios_flag :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * 0. The system BIOS should NOT automatically switch(toggle)
677 * the active display output.
678 * 1. The system BIOS should automatically switch (toggle) the
Julius Volz98fb8fe2007-02-20 16:38:40 +0100679 * active display output. No switch event.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * 2. The _DGS value should be locked.
681 * 3. The system BIOS should not automatically switch (toggle) the
682 * active display output, but instead generate the display switch
683 * event notify code.
684 * lcd_flag :
685 * 0. The system BIOS should automatically control the brightness level
Julius Volz98fb8fe2007-02-20 16:38:40 +0100686 * of the LCD when the power changes from AC to DC
Felipe Contreras21fcb342013-08-01 18:43:59 -0500687 * 1. The system BIOS should NOT automatically control the brightness
Julius Volz98fb8fe2007-02-20 16:38:40 +0100688 * level of the LCD when the power changes from AC to DC.
Felipe Contreras21fcb342013-08-01 18:43:59 -0500689 * Return Value:
Igor Murzovea9f8852012-03-30 21:32:08 +0400690 * -EINVAL wrong arg.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 */
692
693static int
Len Brown4be44fc2005-08-05 00:44:28 -0400694acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Igor Murzovea9f8852012-03-30 21:32:08 +0400696 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Zhang Ruib0373842012-06-20 09:48:43 +0800698 if (!video->cap._DOS)
699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Igor Murzovea9f8852012-03-30 21:32:08 +0400701 if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1)
702 return -EINVAL;
Jiang Liu0db98202013-06-29 00:24:39 +0800703 video->dos_setting = (lcd_flag << 2) | bios_flag;
704 status = acpi_execute_simple_method(video->device->handle, "_DOS",
705 (lcd_flag << 2) | bios_flag);
Igor Murzovea9f8852012-03-30 21:32:08 +0400706 if (ACPI_FAILURE(status))
707 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Igor Murzovea9f8852012-03-30 21:32:08 +0400709 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712/*
Zhang Rui935e5f22008-12-11 16:24:52 -0500713 * Simple comparison function used to sort backlight levels.
714 */
715
716static int
717acpi_video_cmp_level(const void *a, const void *b)
718{
719 return *(int *)a - *(int *)b;
720}
721
722/*
Aaron Lua50188d2013-04-22 14:08:32 +0200723 * Decides if _BQC/_BCQ for this system is usable
724 *
725 * We do this by changing the level first and then read out the current
726 * brightness level, if the value does not match, find out if it is using
727 * index. If not, clear the _BQC/_BCQ capability.
728 */
729static int acpi_video_bqc_quirk(struct acpi_video_device *device,
730 int max_level, int current_level)
731{
732 struct acpi_video_device_brightness *br = device->brightness;
733 int result;
734 unsigned long long level;
735 int test_level;
736
737 /* don't mess with existing known broken systems */
738 if (bqc_offset_aml_bug_workaround)
739 return 0;
740
741 /*
742 * Some systems always report current brightness level as maximum
Dmitry Frank592c8092017-04-19 13:36:18 +0300743 * through _BQC, we need to test another value for them. However,
744 * there is a subtlety:
745 *
746 * If the _BCL package ordering is descending, the first level
747 * (br->levels[2]) is likely to be 0, and if the number of levels
748 * matches the number of steps, we might confuse a returned level to
749 * mean the index.
750 *
751 * For example:
752 *
753 * current_level = max_level = 100
754 * test_level = 0
755 * returned level = 100
756 *
757 * In this case 100 means the level, not the index, and _BCM failed.
758 * Still, if the _BCL package ordering is descending, the index of
759 * level 0 is also 100, so we assume _BQC is indexed, when it's not.
760 *
761 * This causes all _BQC calls to return bogus values causing weird
762 * behavior from the user's perspective. For example:
763 *
764 * xbacklight -set 10; xbacklight -set 20;
765 *
766 * would flash to 90% and then slowly down to the desired level (20).
767 *
768 * The solution is simple; test anything other than the first level
769 * (e.g. 1).
Aaron Lua50188d2013-04-22 14:08:32 +0200770 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300771 test_level = current_level == max_level
772 ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1]
773 : max_level;
Aaron Lua50188d2013-04-22 14:08:32 +0200774
775 result = acpi_video_device_lcd_set_level(device, test_level);
776 if (result)
777 return result;
778
779 result = acpi_video_device_lcd_get_level_current(device, &level, true);
780 if (result)
781 return result;
782
783 if (level != test_level) {
784 /* buggy _BQC found, need to find out if it uses index */
785 if (level < br->count) {
786 if (br->flags._BCL_reversed)
Dmitry Frankd485ef42017-04-19 12:48:07 +0300787 level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level;
788 if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level)
Aaron Lua50188d2013-04-22 14:08:32 +0200789 br->flags._BQC_use_index = 1;
790 }
791
792 if (!br->flags._BQC_use_index)
793 device->cap._BQC = device->cap._BCQ = 0;
794 }
795
796 return 0;
797}
798
Aaron Lu05950092016-04-27 20:45:04 +0800799int acpi_video_get_levels(struct acpi_device *device,
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800800 struct acpi_video_device_brightness **dev_br,
801 int *pmax_level)
Julia Jomantaite469778c2008-06-23 22:50:42 +0100802{
803 union acpi_object *obj = NULL;
Zhang Ruid32f6942009-03-18 16:27:12 +0800804 int i, max_level = 0, count = 0, level_ac_battery = 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100805 union acpi_object *o;
806 struct acpi_video_device_brightness *br = NULL;
Aaron Lu05950092016-04-27 20:45:04 +0800807 int result = 0;
Hans de Goedebd8ba202014-02-13 16:32:51 +0100808 u32 value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100809
Aaron Lu05950092016-04-27 20:45:04 +0800810 if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device->handle,
811 &obj))) {
Julia Jomantaite469778c2008-06-23 22:50:42 +0100812 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available "
813 "LCD brightness level\n"));
Aaron Lu05950092016-04-27 20:45:04 +0800814 result = -ENODEV;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100815 goto out;
816 }
817
Dmitry Frankd485ef42017-04-19 12:48:07 +0300818 if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) {
Aaron Lu05950092016-04-27 20:45:04 +0800819 result = -EINVAL;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100820 goto out;
Aaron Lu05950092016-04-27 20:45:04 +0800821 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100822
823 br = kzalloc(sizeof(*br), GFP_KERNEL);
824 if (!br) {
825 printk(KERN_ERR "can't allocate memory\n");
Zhang Rui1a7c6182009-03-18 16:27:16 +0800826 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100827 goto out;
828 }
829
Dmitry Frank592c8092017-04-19 13:36:18 +0300830 /*
831 * Note that we have to reserve 2 extra items (ACPI_VIDEO_FIRST_LEVEL),
832 * in order to account for buggy BIOS which don't export the first two
833 * special levels (see below)
834 */
Kees Cook6da2ec52018-06-12 13:55:00 -0700835 br->levels = kmalloc_array(obj->package.count + ACPI_VIDEO_FIRST_LEVEL,
836 sizeof(*br->levels),
837 GFP_KERNEL);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800838 if (!br->levels) {
839 result = -ENOMEM;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100840 goto out_free;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800841 }
Julia Jomantaite469778c2008-06-23 22:50:42 +0100842
843 for (i = 0; i < obj->package.count; i++) {
844 o = (union acpi_object *)&obj->package.elements[i];
845 if (o->type != ACPI_TYPE_INTEGER) {
846 printk(KERN_ERR PREFIX "Invalid data\n");
847 continue;
848 }
Hans de Goedebd8ba202014-02-13 16:32:51 +0100849 value = (u32) o->integer.value;
850 /* Skip duplicate entries */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300851 if (count > ACPI_VIDEO_FIRST_LEVEL
852 && br->levels[count - 1] == value)
Hans de Goedebd8ba202014-02-13 16:32:51 +0100853 continue;
854
855 br->levels[count] = value;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100856
857 if (br->levels[count] > max_level)
858 max_level = br->levels[count];
859 count++;
860 }
861
Zhang Ruid32f6942009-03-18 16:27:12 +0800862 /*
863 * some buggy BIOS don't export the levels
864 * when machine is on AC/Battery in _BCL package.
865 * In this case, the first two elements in _BCL packages
866 * are also supported brightness levels that OS should take care of.
867 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300868 for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) {
869 if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL])
Zhang Ruid32f6942009-03-18 16:27:12 +0800870 level_ac_battery++;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300871 if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL])
Zhang Rui90af2cf2009-04-14 11:02:18 +0800872 level_ac_battery++;
873 }
Zhang Rui935e5f22008-12-11 16:24:52 -0500874
Dmitry Frankd485ef42017-04-19 12:48:07 +0300875 if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) {
876 level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery;
Zhang Ruid32f6942009-03-18 16:27:12 +0800877 br->flags._BCL_no_ac_battery_levels = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300878 for (i = (count - 1 + level_ac_battery);
879 i >= ACPI_VIDEO_FIRST_LEVEL; i--)
Zhang Ruid32f6942009-03-18 16:27:12 +0800880 br->levels[i] = br->levels[i - level_ac_battery];
881 count += level_ac_battery;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300882 } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL)
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000883 ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package"));
Zhang Ruid32f6942009-03-18 16:27:12 +0800884
Zhang Ruid80fb992009-03-18 16:27:14 +0800885 /* Check if the _BCL package is in a reversed order */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300886 if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) {
Zhang Ruid80fb992009-03-18 16:27:14 +0800887 br->flags._BCL_reversed = 1;
Dmitry Frankd485ef42017-04-19 12:48:07 +0300888 sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL],
889 count - ACPI_VIDEO_FIRST_LEVEL,
890 sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]),
891 acpi_video_cmp_level, NULL);
Zhang Ruid80fb992009-03-18 16:27:14 +0800892 } else if (max_level != br->levels[count - 1])
893 ACPI_ERROR((AE_INFO,
Colin Ian Kingbf6787e2012-11-29 11:53:13 +0000894 "Found unordered _BCL package"));
Julia Jomantaite469778c2008-06-23 22:50:42 +0100895
896 br->count = count;
Aaron Lu05950092016-04-27 20:45:04 +0800897 *dev_br = br;
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800898 if (pmax_level)
899 *pmax_level = max_level;
Aaron Lu05950092016-04-27 20:45:04 +0800900
901out:
902 kfree(obj);
903 return result;
904out_free:
905 kfree(br);
906 goto out;
907}
908EXPORT_SYMBOL(acpi_video_get_levels);
909
910/*
911 * Arg:
912 * device : video output device (LCD, CRT, ..)
913 *
914 * Return Value:
915 * Maximum brightness level
916 *
917 * Allocate and initialize device->brightness.
918 */
919
920static int
921acpi_video_init_brightness(struct acpi_video_device *device)
922{
923 int i, max_level = 0;
924 unsigned long long level, level_old;
925 struct acpi_video_device_brightness *br = NULL;
926 int result = -EINVAL;
927
Aaron Lu9f9cd7e2016-05-21 15:30:46 +0800928 result = acpi_video_get_levels(device->dev, &br, &max_level);
Aaron Lu05950092016-04-27 20:45:04 +0800929 if (result)
930 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100931 device->brightness = br;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800932
Zhang Rui1a7c6182009-03-18 16:27:16 +0800933 /* _BQC uses INDEX while _BCL uses VALUE in some laptops */
Zhang Rui90c53ca2009-08-31 12:39:54 -0400934 br->curr = level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800935
936 if (!device->cap._BQC)
937 goto set_level;
938
Danny Baumanna89803d2013-03-19 16:22:50 +0000939 result = acpi_video_device_lcd_get_level_current(device,
940 &level_old, true);
Zhang Rui1a7c6182009-03-18 16:27:16 +0800941 if (result)
942 goto out_free_levels;
943
Aaron Lua50188d2013-04-22 14:08:32 +0200944 result = acpi_video_bqc_quirk(device, max_level, level_old);
945 if (result)
946 goto out_free_levels;
Zhang Ruie047cca2009-04-09 14:24:35 +0800947 /*
Aaron Lua50188d2013-04-22 14:08:32 +0200948 * cap._BQC may get cleared due to _BQC is found to be broken
949 * in acpi_video_bqc_quirk, so check again here.
Zhang Ruie047cca2009-04-09 14:24:35 +0800950 */
Aaron Lua50188d2013-04-22 14:08:32 +0200951 if (!device->cap._BQC)
952 goto set_level;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800953
Aaron Lu545ef362013-11-15 14:39:12 +0800954 level = acpi_video_bqc_value_to_level(device, level_old);
955 /*
956 * On some buggy laptops, _BQC returns an uninitialized
957 * value when invoked for the first time, i.e.
958 * level_old is invalid (no matter whether it's a level
959 * or an index). Set the backlight to max_level in this case.
960 */
Dmitry Frankd485ef42017-04-19 12:48:07 +0300961 for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++)
Aaron Lu545ef362013-11-15 14:39:12 +0800962 if (level == br->levels[i])
963 break;
964 if (i == br->count || !level)
965 level = max_level;
Zhang Ruie047cca2009-04-09 14:24:35 +0800966
Zhang Ruie047cca2009-04-09 14:24:35 +0800967set_level:
Zhang Rui90c53ca2009-08-31 12:39:54 -0400968 result = acpi_video_device_lcd_set_level(device, level);
Zhang Ruie047cca2009-04-09 14:24:35 +0800969 if (result)
970 goto out_free_levels;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800971
Zhang Ruid32f6942009-03-18 16:27:12 +0800972 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Dmitry Frankd485ef42017-04-19 12:48:07 +0300973 "found %d brightness levels\n",
974 br->count - ACPI_VIDEO_FIRST_LEVEL));
Aaron Lu05950092016-04-27 20:45:04 +0800975 return 0;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100976
977out_free_levels:
978 kfree(br->levels);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100979 kfree(br);
Julia Jomantaite469778c2008-06-23 22:50:42 +0100980 device->brightness = NULL;
Zhang Rui1a7c6182009-03-18 16:27:16 +0800981 return result;
Julia Jomantaite469778c2008-06-23 22:50:42 +0100982}
983
984/*
985 * Arg:
986 * device : video output device (LCD, CRT, ..)
987 *
988 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -0500989 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 *
Julius Volz98fb8fe2007-02-20 16:38:40 +0100991 * Find out all required AML methods defined under the output
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 * device.
993 */
994
Len Brown4be44fc2005-08-05 00:44:28 -0400995static void acpi_video_device_find_cap(struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Jiang Liu952c63e2013-06-29 00:24:38 +0800997 if (acpi_has_method(device->dev->handle, "_ADR"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 device->cap._ADR = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +0800999 if (acpi_has_method(device->dev->handle, "_BCL"))
Len Brown4be44fc2005-08-05 00:44:28 -04001000 device->cap._BCL = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001001 if (acpi_has_method(device->dev->handle, "_BCM"))
Len Brown4be44fc2005-08-05 00:44:28 -04001002 device->cap._BCM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001003 if (acpi_has_method(device->dev->handle, "_BQC")) {
Yu Luming2f3d0002006-11-11 02:40:34 +08001004 device->cap._BQC = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001005 } else if (acpi_has_method(device->dev->handle, "_BCQ")) {
Zhang Ruic60d6382009-03-18 16:27:18 +08001006 printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n");
1007 device->cap._BCQ = 1;
1008 }
1009
Jiang Liu952c63e2013-06-29 00:24:38 +08001010 if (acpi_has_method(device->dev->handle, "_DDC"))
Len Brown4be44fc2005-08-05 00:44:28 -04001011 device->cap._DDC = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
1014/*
Felipe Contreras21fcb342013-08-01 18:43:59 -05001015 * Arg:
1016 * device : video output device (VGA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 *
1018 * Return Value:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001019 * None
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 *
Julius Volz98fb8fe2007-02-20 16:38:40 +01001021 * Find out all required AML methods defined under the video bus device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 */
1023
Len Brown4be44fc2005-08-05 00:44:28 -04001024static void acpi_video_bus_find_cap(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Jiang Liu952c63e2013-06-29 00:24:38 +08001026 if (acpi_has_method(video->device->handle, "_DOS"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 video->cap._DOS = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001028 if (acpi_has_method(video->device->handle, "_DOD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 video->cap._DOD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001030 if (acpi_has_method(video->device->handle, "_ROM"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 video->cap._ROM = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001032 if (acpi_has_method(video->device->handle, "_GPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 video->cap._GPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001034 if (acpi_has_method(video->device->handle, "_SPD"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 video->cap._SPD = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001036 if (acpi_has_method(video->device->handle, "_VPO"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 video->cap._VPO = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040/*
1041 * Check whether the video bus device has required AML method to
1042 * support the desired features
1043 */
1044
Len Brown4be44fc2005-08-05 00:44:28 -04001045static int acpi_video_bus_check(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Len Brown4be44fc2005-08-05 00:44:28 -04001047 acpi_status status = -ENOENT;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001048 struct pci_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04001051 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001053 dev = acpi_get_pci_dev(video->device->handle);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001054 if (!dev)
1055 return -ENODEV;
Alexander Chiang1e4cffe2009-06-10 19:56:00 +00001056 pci_dev_put(dev);
Thomas Renninger22c13f92008-08-01 17:37:54 +02001057
Felipe Contreras21fcb342013-08-01 18:43:59 -05001058 /*
1059 * Since there is no HID, CID and so on for VGA driver, we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 * to check well known required nodes.
1061 */
1062
Julius Volz98fb8fe2007-02-20 16:38:40 +01001063 /* Does this device support video switching? */
Stefan Bader3a1151e2009-08-21 11:03:05 +02001064 if (video->cap._DOS || video->cap._DOD) {
1065 if (!video->cap._DOS) {
1066 printk(KERN_WARNING FW_BUG
1067 "ACPI(%s) defines _DOD but not _DOS\n",
1068 acpi_device_bid(video->device));
1069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 video->flags.multihead = 1;
1071 status = 0;
1072 }
1073
Julius Volz98fb8fe2007-02-20 16:38:40 +01001074 /* Does this device support retrieving a video ROM? */
Len Brown4be44fc2005-08-05 00:44:28 -04001075 if (video->cap._ROM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 video->flags.rom = 1;
1077 status = 0;
1078 }
1079
Julius Volz98fb8fe2007-02-20 16:38:40 +01001080 /* Does this device support configuring which video device to POST? */
Len Brown4be44fc2005-08-05 00:44:28 -04001081 if (video->cap._GPD && video->cap._SPD && video->cap._VPO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 video->flags.post = 1;
1083 status = 0;
1084 }
1085
Patrick Mocheld550d982006-06-27 00:41:40 -04001086 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Felipe Contreras21fcb342013-08-01 18:43:59 -05001089/*
1090 * --------------------------------------------------------------------------
1091 * Driver Interface
1092 * --------------------------------------------------------------------------
1093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095/* device interface */
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001096static struct acpi_video_device_attrib *
Rui Zhang82cae992007-01-03 23:40:53 -05001097acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id)
1098{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001099 struct acpi_video_enumerated_device *ids;
1100 int i;
Rui Zhang82cae992007-01-03 23:40:53 -05001101
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001102 for (i = 0; i < video->attached_count; i++) {
1103 ids = &video->attached_array[i];
1104 if ((ids->value.int_val & 0xffff) == device_id)
1105 return &ids->value.attrib;
1106 }
1107
Rui Zhang82cae992007-01-03 23:40:53 -05001108 return NULL;
1109}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111static int
Matthew Garrette92a7162010-01-12 14:17:03 -05001112acpi_video_get_device_type(struct acpi_video_bus *video,
1113 unsigned long device_id)
1114{
1115 struct acpi_video_enumerated_device *ids;
1116 int i;
1117
1118 for (i = 0; i < video->attached_count; i++) {
1119 ids = &video->attached_array[i];
1120 if ((ids->value.int_val & 0xffff) == device_id)
1121 return ids->value.int_val;
1122 }
1123
1124 return 0;
1125}
1126
1127static int
Len Brown4be44fc2005-08-05 00:44:28 -04001128acpi_video_bus_get_one_device(struct acpi_device *device,
1129 struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Matthew Wilcox27663c52008-10-10 02:22:59 -04001131 unsigned long long device_id;
Matthew Garrette92a7162010-01-12 14:17:03 -05001132 int status, device_type;
Len Brown4be44fc2005-08-05 00:44:28 -04001133 struct acpi_video_device *data;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001134 struct acpi_video_device_attrib *attribute;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Len Brown4be44fc2005-08-05 00:44:28 -04001136 status =
1137 acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id);
Aaron Lu91e13aa2013-04-25 02:47:49 +00001138 /* Some device omits _ADR, we skip them instead of fail */
1139 if (ACPI_FAILURE(status))
1140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Aaron Lu91e13aa2013-04-25 02:47:49 +00001142 data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL);
1143 if (!data)
1144 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Aaron Lu91e13aa2013-04-25 02:47:49 +00001146 strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME);
1147 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
1148 device->driver_data = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Aaron Lu91e13aa2013-04-25 02:47:49 +00001150 data->device_id = device_id;
1151 data->video = video;
1152 data->dev = device;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001153 INIT_DELAYED_WORK(&data->switch_brightness_work,
1154 acpi_video_switch_brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Aaron Lu91e13aa2013-04-25 02:47:49 +00001156 attribute = acpi_video_get_device_attr(video, device_id);
Rui Zhang82cae992007-01-03 23:40:53 -05001157
Aaron Lue50b9be2015-10-28 15:09:23 +08001158 if (attribute && (attribute->device_id_scheme || device_id_scheme)) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001159 switch (attribute->display_type) {
1160 case ACPI_VIDEO_DISPLAY_CRT:
1161 data->flags.crt = 1;
1162 break;
1163 case ACPI_VIDEO_DISPLAY_TV:
1164 data->flags.tvout = 1;
1165 break;
1166 case ACPI_VIDEO_DISPLAY_DVI:
1167 data->flags.dvi = 1;
1168 break;
1169 case ACPI_VIDEO_DISPLAY_LCD:
1170 data->flags.lcd = 1;
1171 break;
1172 default:
1173 data->flags.unknown = 1;
1174 break;
1175 }
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001176 if (attribute->bios_can_detect)
Aaron Lu91e13aa2013-04-25 02:47:49 +00001177 data->flags.bios = 1;
1178 } else {
1179 /* Check for legacy IDs */
1180 device_type = acpi_video_get_device_type(video, device_id);
1181 /* Ignore bits 16 and 18-20 */
1182 switch (device_type & 0xffe2ffff) {
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001183 case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR:
1184 data->flags.crt = 1;
1185 break;
1186 case ACPI_VIDEO_DISPLAY_LEGACY_PANEL:
1187 data->flags.lcd = 1;
1188 break;
1189 case ACPI_VIDEO_DISPLAY_LEGACY_TV:
1190 data->flags.tvout = 1;
1191 break;
1192 default:
1193 data->flags.unknown = 1;
Matthew Garrette92a7162010-01-12 14:17:03 -05001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196
Aaron Lu91e13aa2013-04-25 02:47:49 +00001197 acpi_video_device_bind(video, data);
1198 acpi_video_device_find_cap(data);
1199
Aaron Lu91e13aa2013-04-25 02:47:49 +00001200 mutex_lock(&video->device_list_lock);
1201 list_add_tail(&data->entry, &video->video_device_list);
1202 mutex_unlock(&video->device_list_lock);
1203
1204 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207/*
1208 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001209 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 *
1211 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001212 * none
1213 *
1214 * Enumerate the video device list of the video bus,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 * bind the ids with the corresponding video devices
1216 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001217 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Len Brown4be44fc2005-08-05 00:44:28 -04001219static void acpi_video_device_rebind(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001221 struct acpi_video_device *dev;
1222
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001223 mutex_lock(&video->device_list_lock);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001224
1225 list_for_each_entry(dev, &video->video_device_list, entry)
Len Brown4be44fc2005-08-05 00:44:28 -04001226 acpi_video_device_bind(video, dev);
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001227
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05001228 mutex_unlock(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
1231/*
1232 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001233 * video : video bus device
1234 * device : video output device under the video
1235 * bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 *
1237 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001238 * none
1239 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * Bind the ids with the corresponding video devices
1241 * under the video bus.
Len Brown4be44fc2005-08-05 00:44:28 -04001242 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244static void
Len Brown4be44fc2005-08-05 00:44:28 -04001245acpi_video_device_bind(struct acpi_video_bus *video,
1246 struct acpi_video_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001248 struct acpi_video_enumerated_device *ids;
Len Brown4be44fc2005-08-05 00:44:28 -04001249 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001251 for (i = 0; i < video->attached_count; i++) {
1252 ids = &video->attached_array[i];
1253 if (device->device_id == (ids->value.int_val & 0xffff)) {
1254 ids->bind_info = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i));
1256 }
1257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Aaron Lu0b8db272014-09-30 14:10:17 +08001260static bool acpi_video_device_in_dod(struct acpi_video_device *device)
1261{
1262 struct acpi_video_bus *video = device->video;
1263 int i;
1264
Aaron Lub4df4632014-12-15 16:01:29 +08001265 /*
1266 * If we have a broken _DOD or we have more than 8 output devices
1267 * under the graphics controller node that we can't proper deal with
1268 * in the operation region code currently, no need to test.
1269 */
1270 if (!video->attached_count || video->child_count > 8)
Aaron Lu0b8db272014-09-30 14:10:17 +08001271 return true;
1272
1273 for (i = 0; i < video->attached_count; i++) {
Aaron Lu35d05652014-12-01 02:09:18 +01001274 if ((video->attached_array[i].value.int_val & 0xfff) ==
1275 (device->device_id & 0xfff))
Aaron Lu0b8db272014-09-30 14:10:17 +08001276 return true;
1277 }
1278
1279 return false;
1280}
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282/*
1283 * Arg:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001284 * video : video bus device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 *
1286 * Return:
Felipe Contreras21fcb342013-08-01 18:43:59 -05001287 * < 0 : error
1288 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 * Call _DOD to enumerate all devices attached to display adapter
1290 *
Len Brown4be44fc2005-08-05 00:44:28 -04001291 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293static int acpi_video_device_enumerate(struct acpi_video_bus *video)
1294{
Len Brown4be44fc2005-08-05 00:44:28 -04001295 int status;
1296 int count;
1297 int i;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001298 struct acpi_video_enumerated_device *active_list;
Len Brown4be44fc2005-08-05 00:44:28 -04001299 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1300 union acpi_object *dod = NULL;
1301 union acpi_object *obj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Alex Hunge34fbba2016-05-27 15:47:06 +08001303 if (!video->cap._DOD)
1304 return AE_NOT_EXIST;
1305
Patrick Mochel90130262006-05-19 16:54:48 -04001306 status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (!ACPI_SUCCESS(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001308 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD"));
Patrick Mocheld550d982006-06-27 00:41:40 -04001309 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 }
1311
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001312 dod = buffer.pointer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -04001314 ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 status = -EFAULT;
1316 goto out;
1317 }
1318
1319 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n",
Len Brown4be44fc2005-08-05 00:44:28 -04001320 dod->package.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001322 active_list = kcalloc(1 + dod->package.count,
1323 sizeof(struct acpi_video_enumerated_device),
1324 GFP_KERNEL);
1325 if (!active_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 status = -ENOMEM;
1327 goto out;
1328 }
1329
1330 count = 0;
1331 for (i = 0; i < dod->package.count; i++) {
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001332 obj = &dod->package.elements[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 if (obj->type != ACPI_TYPE_INTEGER) {
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001335 printk(KERN_ERR PREFIX
1336 "Invalid _DOD data in element %d\n", i);
1337 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001339
1340 active_list[count].value.int_val = obj->integer.value;
1341 active_list[count].bind_info = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -04001342 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
1343 (int)obj->integer.value));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 count++;
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Jesper Juhl6044ec82005-11-07 01:01:32 -08001347 kfree(video->attached_array);
Len Brown4be44fc2005-08-05 00:44:28 -04001348
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001349 video->attached_array = active_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 video->attached_count = count;
Dmitry Torokhov78eed022007-11-05 11:43:33 -05001351
Felipe Contreras915ea7e2013-08-03 22:12:50 +02001352out:
Len Brown02438d82006-06-30 03:19:10 -04001353 kfree(buffer.pointer);
Patrick Mocheld550d982006-06-27 00:41:40 -04001354 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Len Brown4be44fc2005-08-05 00:44:28 -04001357static int
1358acpi_video_get_next_level(struct acpi_video_device *device,
1359 u32 level_current, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360{
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001361 int min, max, min_above, max_below, i, l, delta = 255;
Thomas Tuttlef4715182006-12-19 12:56:14 -08001362 max = max_below = 0;
1363 min = min_above = 255;
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001364 /* Find closest level to level_current */
Dmitry Frankd485ef42017-04-19 12:48:07 +03001365 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
Alexey Starikovskiy63f0edf2007-09-03 16:30:08 +04001366 l = device->brightness->levels[i];
1367 if (abs(l - level_current) < abs(delta)) {
1368 delta = l - level_current;
1369 if (!delta)
1370 break;
1371 }
1372 }
1373 /* Ajust level_current to closest available level */
1374 level_current += delta;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001375 for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) {
Thomas Tuttlef4715182006-12-19 12:56:14 -08001376 l = device->brightness->levels[i];
1377 if (l < min)
1378 min = l;
1379 if (l > max)
1380 max = l;
1381 if (l < min_above && l > level_current)
1382 min_above = l;
1383 if (l > max_below && l < level_current)
1384 max_below = l;
1385 }
1386
1387 switch (event) {
1388 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS:
1389 return (level_current < max) ? min_above : min;
1390 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS:
1391 return (level_current < max) ? min_above : max;
1392 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS:
1393 return (level_current > min) ? max_below : min;
1394 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS:
1395 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF:
1396 return 0;
1397 default:
1398 return level_current;
1399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001402static void
1403acpi_video_switch_brightness(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001405 struct acpi_video_device *device = container_of(to_delayed_work(work),
1406 struct acpi_video_device, switch_brightness_work);
Matthew Wilcox27663c52008-10-10 02:22:59 -04001407 unsigned long long level_current, level_next;
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001408 int event = device->switch_brightness_event;
Zhang Ruic8890f92009-03-18 16:27:08 +08001409 int result = -EINVAL;
1410
Aaron Lufbc9fe12013-10-11 21:27:45 +08001411 /* no warning message if acpi_backlight=vendor or a quirk is used */
Hans de Goede654a1822015-06-09 10:32:25 +02001412 if (!device->backlight)
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001413 return;
Zhang Rui28c32e92009-07-13 10:33:24 +08001414
Julia Jomantaite469778c2008-06-23 22:50:42 +01001415 if (!device->brightness)
Zhang Ruic8890f92009-03-18 16:27:08 +08001416 goto out;
1417
1418 result = acpi_video_device_lcd_get_level_current(device,
Danny Baumanna89803d2013-03-19 16:22:50 +00001419 &level_current,
1420 false);
Zhang Ruic8890f92009-03-18 16:27:08 +08001421 if (result)
1422 goto out;
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 level_next = acpi_video_get_next_level(device, level_current, event);
Zhang Ruic8890f92009-03-18 16:27:08 +08001425
Zhang Rui24450c72009-03-18 16:27:10 +08001426 result = acpi_video_device_lcd_set_level(device, level_next);
Zhang Ruic8890f92009-03-18 16:27:08 +08001427
Matthew Garrett36342742009-07-14 17:06:03 +01001428 if (!result)
1429 backlight_force_update(device->backlight,
1430 BACKLIGHT_UPDATE_HOTKEY);
1431
Zhang Ruic8890f92009-03-18 16:27:08 +08001432out:
1433 if (result)
1434 printk(KERN_ERR PREFIX "Failed to switch the brightness\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435}
1436
Matthew Garrette92a7162010-01-12 14:17:03 -05001437int acpi_video_get_edid(struct acpi_device *device, int type, int device_id,
1438 void **edid)
1439{
1440 struct acpi_video_bus *video;
1441 struct acpi_video_device *video_device;
1442 union acpi_object *buffer = NULL;
1443 acpi_status status;
1444 int i, length;
1445
1446 if (!device || !acpi_driver_data(device))
1447 return -EINVAL;
1448
1449 video = acpi_driver_data(device);
1450
1451 for (i = 0; i < video->attached_count; i++) {
1452 video_device = video->attached_array[i].bind_info;
1453 length = 256;
1454
1455 if (!video_device)
1456 continue;
1457
Zhang Rui82069552010-12-06 15:04:24 +08001458 if (!video_device->cap._DDC)
1459 continue;
1460
Matthew Garrette92a7162010-01-12 14:17:03 -05001461 if (type) {
1462 switch (type) {
1463 case ACPI_VIDEO_DISPLAY_CRT:
1464 if (!video_device->flags.crt)
1465 continue;
1466 break;
1467 case ACPI_VIDEO_DISPLAY_TV:
1468 if (!video_device->flags.tvout)
1469 continue;
1470 break;
1471 case ACPI_VIDEO_DISPLAY_DVI:
1472 if (!video_device->flags.dvi)
1473 continue;
1474 break;
1475 case ACPI_VIDEO_DISPLAY_LCD:
1476 if (!video_device->flags.lcd)
1477 continue;
1478 break;
1479 }
1480 } else if (video_device->device_id != device_id) {
1481 continue;
1482 }
1483
1484 status = acpi_video_device_EDID(video_device, &buffer, length);
1485
1486 if (ACPI_FAILURE(status) || !buffer ||
1487 buffer->type != ACPI_TYPE_BUFFER) {
1488 length = 128;
1489 status = acpi_video_device_EDID(video_device, &buffer,
1490 length);
1491 if (ACPI_FAILURE(status) || !buffer ||
1492 buffer->type != ACPI_TYPE_BUFFER) {
1493 continue;
1494 }
1495 }
1496
1497 *edid = buffer->buffer.pointer;
1498 return length;
1499 }
1500
1501 return -ENODEV;
1502}
1503EXPORT_SYMBOL(acpi_video_get_edid);
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505static int
Len Brown4be44fc2005-08-05 00:44:28 -04001506acpi_video_bus_get_devices(struct acpi_video_bus *video,
1507 struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Igor Murzovfba4e082012-10-13 04:41:25 +04001509 int status = 0;
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001510 struct acpi_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Igor Murzovfba4e082012-10-13 04:41:25 +04001512 /*
1513 * There are systems where video module known to work fine regardless
1514 * of broken _DOD and ignoring returned value here doesn't cause
1515 * any issues later.
1516 */
1517 acpi_video_device_enumerate(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Dmitry Torokhovff102ea2007-11-05 11:43:31 -05001519 list_for_each_entry(dev, &device->children, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 status = acpi_video_bus_get_one_device(dev, video);
Igor Murzovea9f8852012-03-30 21:32:08 +04001522 if (status) {
Aaron Lu91e13aa2013-04-25 02:47:49 +00001523 dev_err(&dev->dev, "Can't attach device\n");
1524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
Aaron Lub4df4632014-12-15 16:01:29 +08001526 video->child_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001528 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531/* acpi_video interface */
1532
Aaron Luefaa14c2013-07-16 13:08:05 +08001533/*
1534 * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't
1535 * preform any automatic brightness change on receiving a notification.
1536 */
Len Brown4be44fc2005-08-05 00:44:28 -04001537static int acpi_video_bus_start_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Aaron Luefaa14c2013-07-16 13:08:05 +08001539 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001540 acpi_osi_is_win8() ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Len Brown4be44fc2005-08-05 00:44:28 -04001543static int acpi_video_bus_stop_devices(struct acpi_video_bus *video)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Aaron Luefaa14c2013-07-16 13:08:05 +08001545 return acpi_video_bus_DOS(video, 0,
Aaron Lufbc9fe12013-10-11 21:27:45 +08001546 acpi_osi_is_win8() ? 0 : 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
Bjorn Helgaas70155582009-04-07 15:37:11 +00001549static void acpi_video_bus_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Bjorn Helgaas70155582009-04-07 15:37:11 +00001551 struct acpi_video_bus *video = acpi_driver_data(device);
Luming Yue9dab192007-08-20 18:23:53 +08001552 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001553 int keycode = 0;
Luming Yue9dab192007-08-20 18:23:53 +08001554
Aaron Lu67b662e2013-10-11 21:27:44 +08001555 if (!video || !video->input)
Patrick Mocheld550d982006-06-27 00:41:40 -04001556 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Luming Yue9dab192007-08-20 18:23:53 +08001558 input = video->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 switch (event) {
Julius Volz98fb8fe2007-02-20 16:38:40 +01001561 case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 * most likely via hotkey. */
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001563 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 break;
1565
Julius Volz98fb8fe2007-02-20 16:38:40 +01001566 case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 * connector. */
1568 acpi_video_device_enumerate(video);
1569 acpi_video_device_rebind(video);
Luming Yue9dab192007-08-20 18:23:53 +08001570 keycode = KEY_SWITCHVIDEOMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 break;
1572
Len Brown4be44fc2005-08-05 00:44:28 -04001573 case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001574 keycode = KEY_SWITCHVIDEOMODE;
1575 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001576 case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001577 keycode = KEY_VIDEO_NEXT;
1578 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001579 case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */
Luming Yue9dab192007-08-20 18:23:53 +08001580 keycode = KEY_VIDEO_PREV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 break;
1582
1583 default:
1584 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001585 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 break;
1587 }
1588
Luca Tettamanti8a37c652012-08-02 15:30:27 +02001589 if (acpi_notifier_call_chain(device, event, 0))
1590 /* Something vetoed the keypress. */
1591 keycode = 0;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001592
Hans de Goede05bc59a2015-12-22 19:09:51 +01001593 if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001594 input_report_key(input, keycode, 1);
1595 input_sync(input);
1596 input_report_key(input, keycode, 0);
1597 input_sync(input);
1598 }
Luming Yue9dab192007-08-20 18:23:53 +08001599
Patrick Mocheld550d982006-06-27 00:41:40 -04001600 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601}
1602
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001603static void brightness_switch_event(struct acpi_video_device *video_device,
1604 u32 event)
1605{
1606 if (!brightness_switch_enabled)
1607 return;
1608
1609 video_device->switch_brightness_event = event;
1610 schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10);
1611}
1612
Len Brown4be44fc2005-08-05 00:44:28 -04001613static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Jan Engelhardt50dd0962006-10-01 00:28:50 +02001615 struct acpi_video_device *video_device = data;
Len Brown4be44fc2005-08-05 00:44:28 -04001616 struct acpi_device *device = NULL;
Luming Yue9dab192007-08-20 18:23:53 +08001617 struct acpi_video_bus *bus;
1618 struct input_dev *input;
Matthew Garrett17c452f2009-12-11 17:40:46 -05001619 int keycode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (!video_device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001622 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Patrick Mochele6afa0d2006-05-19 16:54:40 -04001624 device = video_device->dev;
Luming Yue9dab192007-08-20 18:23:53 +08001625 bus = video_device->video;
1626 input = bus->input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 switch (event) {
Len Brown4be44fc2005-08-05 00:44:28 -04001629 case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001630 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001631 keycode = KEY_BRIGHTNESS_CYCLE;
1632 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001633 case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001634 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001635 keycode = KEY_BRIGHTNESSUP;
1636 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001637 case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001638 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001639 keycode = KEY_BRIGHTNESSDOWN;
1640 break;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02001641 case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001642 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001643 keycode = KEY_BRIGHTNESS_ZERO;
1644 break;
Len Brown4be44fc2005-08-05 00:44:28 -04001645 case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */
Linus Torvalds8ab58e82014-07-18 14:32:51 +02001646 brightness_switch_event(video_device, event);
Luming Yue9dab192007-08-20 18:23:53 +08001647 keycode = KEY_DISPLAY_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 break;
1649 default:
1650 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -04001651 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 break;
1653 }
Luming Yue9dab192007-08-20 18:23:53 +08001654
Zhang Rui7761f632008-01-25 14:48:12 +08001655 acpi_notifier_call_chain(device, event, 0);
Matthew Garrett17c452f2009-12-11 17:40:46 -05001656
Hans de Goede05bc59a2015-12-22 19:09:51 +01001657 if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) {
Matthew Garrett17c452f2009-12-11 17:40:46 -05001658 input_report_key(input, keycode, 1);
1659 input_sync(input);
1660 input_report_key(input, keycode, 0);
1661 input_sync(input);
1662 }
Luming Yue9dab192007-08-20 18:23:53 +08001663
Patrick Mocheld550d982006-06-27 00:41:40 -04001664 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001667static int acpi_video_resume(struct notifier_block *nb,
1668 unsigned long val, void *ign)
Matthew Garrett863c1492008-02-04 23:31:24 -08001669{
1670 struct acpi_video_bus *video;
1671 struct acpi_video_device *video_device;
1672 int i;
1673
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001674 switch (val) {
1675 case PM_HIBERNATION_PREPARE:
1676 case PM_SUSPEND_PREPARE:
1677 case PM_RESTORE_PREPARE:
1678 return NOTIFY_DONE;
1679 }
Matthew Garrett863c1492008-02-04 23:31:24 -08001680
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001681 video = container_of(nb, struct acpi_video_bus, pm_nb);
1682
1683 dev_info(&video->device->dev, "Restoring backlight state\n");
Matthew Garrett863c1492008-02-04 23:31:24 -08001684
1685 for (i = 0; i < video->attached_count; i++) {
1686 video_device = video->attached_array[i].bind_info;
Hans de Goede654a1822015-06-09 10:32:25 +02001687 if (video_device && video_device->brightness)
1688 acpi_video_device_lcd_set_level(video_device,
1689 video_device->brightness->curr);
Matthew Garrett863c1492008-02-04 23:31:24 -08001690 }
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001691
1692 return NOTIFY_OK;
Matthew Garrett863c1492008-02-04 23:31:24 -08001693}
1694
Zhang Ruic504f8c2009-12-30 15:59:23 +08001695static acpi_status
1696acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
1697 void **return_value)
1698{
1699 struct acpi_device *device = context;
1700 struct acpi_device *sibling;
1701 int result;
1702
1703 if (handle == device->handle)
1704 return AE_CTRL_TERMINATE;
1705
1706 result = acpi_bus_get_device(handle, &sibling);
1707 if (result)
1708 return AE_OK;
1709
1710 if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME))
1711 return AE_ALREADY_EXISTS;
1712
1713 return AE_OK;
1714}
1715
Aaron Lu67b662e2013-10-11 21:27:44 +08001716static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
1717{
Hans de Goede99678ed2014-05-15 13:22:33 +02001718 struct backlight_properties props;
1719 struct pci_dev *pdev;
1720 acpi_handle acpi_parent;
1721 struct device *parent = NULL;
1722 int result;
1723 static int count;
1724 char *name;
Aaron Lu67b662e2013-10-11 21:27:44 +08001725
Hans de Goede99678ed2014-05-15 13:22:33 +02001726 result = acpi_video_init_brightness(device);
1727 if (result)
1728 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001729
1730 if (disable_backlight_sysfs_if > 0)
1731 return;
1732
Hans de Goede99678ed2014-05-15 13:22:33 +02001733 name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
1734 if (!name)
1735 return;
1736 count++;
Aaron Lu67b662e2013-10-11 21:27:44 +08001737
Hans de Goede99678ed2014-05-15 13:22:33 +02001738 acpi_get_parent(device->dev->handle, &acpi_parent);
Aaron Lu67b662e2013-10-11 21:27:44 +08001739
Hans de Goede99678ed2014-05-15 13:22:33 +02001740 pdev = acpi_get_pci_dev(acpi_parent);
1741 if (pdev) {
1742 parent = &pdev->dev;
1743 pci_dev_put(pdev);
Aaron Lu67b662e2013-10-11 21:27:44 +08001744 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001745
1746 memset(&props, 0, sizeof(struct backlight_properties));
1747 props.type = BACKLIGHT_FIRMWARE;
Dmitry Frankd485ef42017-04-19 12:48:07 +03001748 props.max_brightness =
1749 device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1;
Hans de Goede99678ed2014-05-15 13:22:33 +02001750 device->backlight = backlight_device_register(name,
1751 parent,
1752 device,
1753 &acpi_backlight_ops,
1754 &props);
1755 kfree(name);
Hans de Goede654a1822015-06-09 10:32:25 +02001756 if (IS_ERR(device->backlight)) {
1757 device->backlight = NULL;
Hans de Goede99678ed2014-05-15 13:22:33 +02001758 return;
Hans de Goede654a1822015-06-09 10:32:25 +02001759 }
Hans de Goede99678ed2014-05-15 13:22:33 +02001760
1761 /*
1762 * Save current brightness level in case we have to restore it
1763 * before acpi_video_device_lcd_set_level() is called next time.
1764 */
1765 device->backlight->props.brightness =
1766 acpi_video_get_brightness(device->backlight);
1767
1768 device->cooling_dev = thermal_cooling_device_register("LCD",
1769 device->dev, &video_cooling_ops);
1770 if (IS_ERR(device->cooling_dev)) {
1771 /*
1772 * Set cooling_dev to NULL so we don't crash trying to free it.
1773 * Also, why the hell we are returning early and not attempt to
1774 * register video output if cooling device registration failed?
1775 * -- dtor
1776 */
1777 device->cooling_dev = NULL;
1778 return;
1779 }
1780
1781 dev_info(&device->dev->dev, "registered as cooling_device%d\n",
1782 device->cooling_dev->id);
1783 result = sysfs_create_link(&device->dev->dev.kobj,
1784 &device->cooling_dev->device.kobj,
1785 "thermal_cooling");
1786 if (result)
1787 printk(KERN_ERR PREFIX "Create sysfs link\n");
1788 result = sysfs_create_link(&device->cooling_dev->device.kobj,
1789 &device->dev->dev.kobj, "device");
1790 if (result)
1791 printk(KERN_ERR PREFIX "Create sysfs link\n");
Aaron Lu67b662e2013-10-11 21:27:44 +08001792}
1793
Aaron Ludce4ec22014-10-28 14:35:59 +08001794static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video)
1795{
1796 struct acpi_video_device *dev;
1797 union acpi_object *levels;
1798
1799 mutex_lock(&video->device_list_lock);
1800 list_for_each_entry(dev, &video->video_device_list, entry) {
Aaron Lu9f9cd7e2016-05-21 15:30:46 +08001801 if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels))
Aaron Ludce4ec22014-10-28 14:35:59 +08001802 kfree(levels);
1803 }
1804 mutex_unlock(&video->device_list_lock);
1805}
1806
Aaron Lue50b9be2015-10-28 15:09:23 +08001807static bool acpi_video_should_register_backlight(struct acpi_video_device *dev)
1808{
1809 /*
1810 * Do not create backlight device for video output
1811 * device that is not in the enumerated list.
1812 */
1813 if (!acpi_video_device_in_dod(dev)) {
1814 dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n");
1815 return false;
1816 }
1817
1818 if (only_lcd)
1819 return dev->flags.lcd;
1820 return true;
1821}
1822
Aaron Lu67b662e2013-10-11 21:27:44 +08001823static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
1824{
1825 struct acpi_video_device *dev;
1826
Hans de Goede53a92ba2014-05-21 15:39:55 +02001827 if (video->backlight_registered)
1828 return 0;
1829
Aaron Ludce4ec22014-10-28 14:35:59 +08001830 acpi_video_run_bcl_for_osi(video);
1831
Hans de Goede3bd6bce2015-06-16 16:27:51 +02001832 if (acpi_video_get_backlight_type() != acpi_backlight_video)
Hans de Goede99678ed2014-05-15 13:22:33 +02001833 return 0;
1834
Aaron Lu67b662e2013-10-11 21:27:44 +08001835 mutex_lock(&video->device_list_lock);
Aaron Lue50b9be2015-10-28 15:09:23 +08001836 list_for_each_entry(dev, &video->video_device_list, entry) {
1837 if (acpi_video_should_register_backlight(dev))
1838 acpi_video_dev_register_backlight(dev);
1839 }
Aaron Lu67b662e2013-10-11 21:27:44 +08001840 mutex_unlock(&video->device_list_lock);
1841
Hans de Goede99678ed2014-05-15 13:22:33 +02001842 video->backlight_registered = true;
1843
Aaron Lu67b662e2013-10-11 21:27:44 +08001844 video->pm_nb.notifier_call = acpi_video_resume;
1845 video->pm_nb.priority = 0;
1846 return register_pm_notifier(&video->pm_nb);
1847}
1848
1849static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device)
1850{
1851 if (device->backlight) {
1852 backlight_device_unregister(device->backlight);
1853 device->backlight = NULL;
1854 }
1855 if (device->brightness) {
1856 kfree(device->brightness->levels);
1857 kfree(device->brightness);
1858 device->brightness = NULL;
1859 }
1860 if (device->cooling_dev) {
1861 sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling");
1862 sysfs_remove_link(&device->cooling_dev->device.kobj, "device");
1863 thermal_cooling_device_unregister(device->cooling_dev);
1864 device->cooling_dev = NULL;
1865 }
1866}
1867
1868static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
1869{
1870 struct acpi_video_device *dev;
Hans de Goede99678ed2014-05-15 13:22:33 +02001871 int error;
1872
1873 if (!video->backlight_registered)
1874 return 0;
1875
1876 error = unregister_pm_notifier(&video->pm_nb);
Aaron Lu67b662e2013-10-11 21:27:44 +08001877
1878 mutex_lock(&video->device_list_lock);
1879 list_for_each_entry(dev, &video->video_device_list, entry)
1880 acpi_video_dev_unregister_backlight(dev);
1881 mutex_unlock(&video->device_list_lock);
1882
Hans de Goede99678ed2014-05-15 13:22:33 +02001883 video->backlight_registered = false;
1884
Aaron Lu67b662e2013-10-11 21:27:44 +08001885 return error;
1886}
1887
1888static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device)
1889{
1890 acpi_status status;
1891 struct acpi_device *adev = device->dev;
1892
1893 status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
1894 acpi_video_device_notify, device);
1895 if (ACPI_FAILURE(status))
1896 dev_err(&adev->dev, "Error installing notify handler\n");
1897 else
1898 device->flags.notify = 1;
1899}
1900
1901static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video)
1902{
1903 struct input_dev *input;
1904 struct acpi_video_device *dev;
1905 int error;
1906
1907 video->input = input = input_allocate_device();
1908 if (!input) {
1909 error = -ENOMEM;
1910 goto out;
1911 }
1912
1913 error = acpi_video_bus_start_devices(video);
1914 if (error)
1915 goto err_free_input;
1916
1917 snprintf(video->phys, sizeof(video->phys),
1918 "%s/video/input0", acpi_device_hid(video->device));
1919
1920 input->name = acpi_device_name(video->device);
1921 input->phys = video->phys;
1922 input->id.bustype = BUS_HOST;
1923 input->id.product = 0x06;
1924 input->dev.parent = &video->device->dev;
1925 input->evbit[0] = BIT(EV_KEY);
1926 set_bit(KEY_SWITCHVIDEOMODE, input->keybit);
1927 set_bit(KEY_VIDEO_NEXT, input->keybit);
1928 set_bit(KEY_VIDEO_PREV, input->keybit);
1929 set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit);
1930 set_bit(KEY_BRIGHTNESSUP, input->keybit);
1931 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
1932 set_bit(KEY_BRIGHTNESS_ZERO, input->keybit);
1933 set_bit(KEY_DISPLAY_OFF, input->keybit);
1934
1935 error = input_register_device(input);
1936 if (error)
1937 goto err_stop_dev;
1938
1939 mutex_lock(&video->device_list_lock);
1940 list_for_each_entry(dev, &video->video_device_list, entry)
1941 acpi_video_dev_add_notify_handler(dev);
1942 mutex_unlock(&video->device_list_lock);
1943
1944 return 0;
1945
1946err_stop_dev:
1947 acpi_video_bus_stop_devices(video);
1948err_free_input:
1949 input_free_device(input);
1950 video->input = NULL;
1951out:
1952 return error;
1953}
1954
1955static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev)
1956{
1957 if (dev->flags.notify) {
1958 acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY,
1959 acpi_video_device_notify);
1960 dev->flags.notify = 0;
1961 }
1962}
1963
1964static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
1965{
1966 struct acpi_video_device *dev;
1967
1968 mutex_lock(&video->device_list_lock);
1969 list_for_each_entry(dev, &video->video_device_list, entry)
1970 acpi_video_dev_remove_notify_handler(dev);
1971 mutex_unlock(&video->device_list_lock);
1972
1973 acpi_video_bus_stop_devices(video);
1974 input_unregister_device(video->input);
1975 video->input = NULL;
1976}
1977
1978static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
1979{
1980 struct acpi_video_device *dev, *next;
1981
1982 mutex_lock(&video->device_list_lock);
1983 list_for_each_entry_safe(dev, next, &video->video_device_list, entry) {
1984 list_del(&dev->entry);
1985 kfree(dev);
1986 }
1987 mutex_unlock(&video->device_list_lock);
1988
1989 return 0;
1990}
1991
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02001992static int instance;
1993
Len Brown4be44fc2005-08-05 00:44:28 -04001994static int acpi_video_bus_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001996 struct acpi_video_bus *video;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05001997 int error;
Zhang Ruic504f8c2009-12-30 15:59:23 +08001998 acpi_status status;
1999
2000 status = acpi_walk_namespace(ACPI_TYPE_DEVICE,
2001 device->parent->handle, 1,
2002 acpi_video_bus_match, NULL,
2003 device, NULL);
2004 if (status == AE_ALREADY_EXISTS) {
2005 printk(KERN_WARNING FW_BUG
2006 "Duplicate ACPI video bus devices for the"
2007 " same VGA controller, please try module "
2008 "parameter \"video.allow_duplicates=1\""
2009 "if the current driver doesn't work.\n");
2010 if (!allow_duplicates)
2011 return -ENODEV;
2012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Burman Yan36bcbec2006-12-19 12:56:11 -08002014 video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (!video)
Patrick Mocheld550d982006-06-27 00:41:40 -04002016 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Zhang Ruie6d9da12007-08-25 02:23:31 -04002018 /* a hack to fix the duplicate name "VID" problem on T61 */
2019 if (!strcmp(device->pnp.bus_id, "VID")) {
2020 if (instance)
2021 device->pnp.bus_id[3] = '0' + instance;
Felipe Contreras915ea7e2013-08-03 22:12:50 +02002022 instance++;
Zhang Ruie6d9da12007-08-25 02:23:31 -04002023 }
Zhao Yakuif3b39f12009-02-02 22:55:01 -05002024 /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */
2025 if (!strcmp(device->pnp.bus_id, "VGA")) {
2026 if (instance)
2027 device->pnp.bus_id[3] = '0' + instance;
2028 instance++;
2029 }
Zhang Ruie6d9da12007-08-25 02:23:31 -04002030
Patrick Mochele6afa0d2006-05-19 16:54:40 -04002031 video->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME);
2033 strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002034 device->driver_data = video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 acpi_video_bus_find_cap(video);
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002037 error = acpi_video_bus_check(video);
2038 if (error)
2039 goto err_free_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Dmitry Torokhovbbac81f2007-11-05 11:43:32 -05002041 mutex_init(&video->device_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 INIT_LIST_HEAD(&video->video_device_list);
2043
Igor Murzovea9f8852012-03-30 21:32:08 +04002044 error = acpi_video_bus_get_devices(video, device);
2045 if (error)
Aaron Lu91e13aa2013-04-25 02:47:49 +00002046 goto err_put_video;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n",
Len Brown4be44fc2005-08-05 00:44:28 -04002049 ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device),
2050 video->flags.multihead ? "yes" : "no",
2051 video->flags.rom ? "yes" : "no",
2052 video->flags.post ? "yes" : "no");
Aaron Lu67b662e2013-10-11 21:27:44 +08002053 mutex_lock(&video_list_lock);
2054 list_add_tail(&video->entry, &video_bus_head);
2055 mutex_unlock(&video_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Aaron Lu67b662e2013-10-11 21:27:44 +08002057 acpi_video_bus_register_backlight(video);
2058 acpi_video_bus_add_notify_handler(video);
Rafael J. Wysockiac7729d2010-04-05 01:43:51 +02002059
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002060 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Aaron Lu67b662e2013-10-11 21:27:44 +08002062err_put_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002063 acpi_video_bus_put_devices(video);
2064 kfree(video->attached_array);
Aaron Lu67b662e2013-10-11 21:27:44 +08002065err_free_video:
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002066 kfree(video);
Pavel Machekdb89b4f2008-09-22 14:37:34 -07002067 device->driver_data = NULL;
Dmitry Torokhovf51e8392007-11-05 11:43:30 -05002068
2069 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01002072static int acpi_video_bus_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
Len Brown4be44fc2005-08-05 00:44:28 -04002074 struct acpi_video_bus *video = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -04002078 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Jan Engelhardt50dd0962006-10-01 00:28:50 +02002080 video = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Aaron Lu67b662e2013-10-11 21:27:44 +08002082 acpi_video_bus_remove_notify_handler(video);
2083 acpi_video_bus_unregister_backlight(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 acpi_video_bus_put_devices(video);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Aaron Lu67b662e2013-10-11 21:27:44 +08002086 mutex_lock(&video_list_lock);
2087 list_del(&video->entry);
2088 mutex_unlock(&video_list_lock);
2089
Jesper Juhl6044ec82005-11-07 01:01:32 -08002090 kfree(video->attached_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 kfree(video);
2092
Patrick Mocheld550d982006-06-27 00:41:40 -04002093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
Alan Coxc6996bd2012-04-25 14:33:48 +01002096static int __init is_i740(struct pci_dev *dev)
2097{
2098 if (dev->device == 0x00D1)
2099 return 1;
2100 if (dev->device == 0x7000)
2101 return 1;
2102 return 0;
2103}
2104
Matthew Garrett74a365b2009-03-19 21:35:39 +00002105static int __init intel_opregion_present(void)
2106{
Alan Coxc6996bd2012-04-25 14:33:48 +01002107 int opregion = 0;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002108 struct pci_dev *dev = NULL;
2109 u32 address;
2110
2111 for_each_pci_dev(dev) {
2112 if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA)
2113 continue;
2114 if (dev->vendor != PCI_VENDOR_ID_INTEL)
2115 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002116 /* We don't want to poke around undefined i740 registers */
2117 if (is_i740(dev))
2118 continue;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002119 pci_read_config_dword(dev, 0xfc, &address);
2120 if (!address)
2121 continue;
Alan Coxc6996bd2012-04-25 14:33:48 +01002122 opregion = 1;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002123 }
Alan Coxc6996bd2012-04-25 14:33:48 +01002124 return opregion;
Matthew Garrett74a365b2009-03-19 21:35:39 +00002125}
2126
Hans de Goedececf3e32019-01-07 17:08:20 +01002127/* Check if the chassis-type indicates there is no builtin LCD panel */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002128static bool dmi_is_desktop(void)
2129{
2130 const char *chassis_type;
Hans de Goedececf3e32019-01-07 17:08:20 +01002131 unsigned long type;
Hans de Goede53fa1f62018-04-17 18:23:50 +02002132
2133 chassis_type = dmi_get_system_info(DMI_CHASSIS_TYPE);
2134 if (!chassis_type)
2135 return false;
2136
Hans de Goedececf3e32019-01-07 17:08:20 +01002137 if (kstrtoul(chassis_type, 10, &type) != 0)
2138 return false;
2139
2140 switch (type) {
2141 case 0x03: /* Desktop */
2142 case 0x04: /* Low Profile Desktop */
2143 case 0x05: /* Pizza Box */
2144 case 0x06: /* Mini Tower */
2145 case 0x07: /* Tower */
Hans de Goeded693c002019-01-07 17:08:21 +01002146 case 0x10: /* Lunch Box */
Hans de Goedececf3e32019-01-07 17:08:20 +01002147 case 0x11: /* Main Server Chassis */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002148 return true;
Hans de Goedececf3e32019-01-07 17:08:20 +01002149 }
Hans de Goede53fa1f62018-04-17 18:23:50 +02002150
2151 return false;
2152}
2153
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002154int acpi_video_register(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002156 int ret = 0;
Chris Wilson28d63402015-03-01 10:41:38 +00002157
Hans de Goede970530c2016-01-14 09:41:45 +01002158 mutex_lock(&register_count_mutex);
2159 if (register_count) {
Zhao Yakui86e437f2009-06-16 11:23:13 +08002160 /*
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002161 * if the function of acpi_video_register is already called,
2162 * don't register the acpi_vide_bus again and return no error.
Zhao Yakui86e437f2009-06-16 11:23:13 +08002163 */
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002164 goto leave;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Hans de Goede5928c282017-12-23 19:41:47 +01002167 /*
2168 * We're seeing a lot of bogus backlight interfaces on newer machines
2169 * without a LCD such as desktops, servers and HDMI sticks. Checking
2170 * the lcd flag fixes this, so enable this on any machines which are
2171 * win8 ready (where we also prefer the native backlight driver, so
2172 * normally the acpi_video code should not register there anyways).
2173 */
Hans de Goede53fa1f62018-04-17 18:23:50 +02002174 if (only_lcd == -1) {
2175 if (dmi_is_desktop() && acpi_osi_is_win8())
2176 only_lcd = true;
2177 else
2178 only_lcd = false;
2179 }
Hans de Goede5928c282017-12-23 19:41:47 +01002180
Hans de Goede7ee33ba2015-06-16 16:27:53 +02002181 dmi_check_system(video_dmi_table);
2182
Chris Wilson28d63402015-03-01 10:41:38 +00002183 ret = acpi_bus_register_driver(&acpi_video_bus);
2184 if (ret)
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002185 goto leave;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Zhao Yakui86e437f2009-06-16 11:23:13 +08002187 /*
2188 * When the acpi_video_bus is loaded successfully, increase
2189 * the counter reference.
2190 */
Hans de Goede970530c2016-01-14 09:41:45 +01002191 register_count = 1;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002192
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002193leave:
Hans de Goede970530c2016-01-14 09:41:45 +01002194 mutex_unlock(&register_count_mutex);
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002195 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196}
Rafael J. Wysocki8e5c2b72013-07-25 21:43:39 +02002197EXPORT_SYMBOL(acpi_video_register);
Matthew Garrett74a365b2009-03-19 21:35:39 +00002198
Zhao Yakui86e437f2009-06-16 11:23:13 +08002199void acpi_video_unregister(void)
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 acpi_bus_unregister_driver(&acpi_video_bus);
Hans de Goede970530c2016-01-14 09:41:45 +01002204 register_count = 0;
Zhao Yakui86e437f2009-06-16 11:23:13 +08002205 }
Hans de Goede970530c2016-01-14 09:41:45 +01002206 mutex_unlock(&register_count_mutex);
Zhao Yakui86e437f2009-06-16 11:23:13 +08002207}
2208EXPORT_SYMBOL(acpi_video_unregister);
2209
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002210void acpi_video_unregister_backlight(void)
2211{
2212 struct acpi_video_bus *video;
2213
Hans de Goede970530c2016-01-14 09:41:45 +01002214 mutex_lock(&register_count_mutex);
2215 if (register_count) {
Hans de Goede2a8b18e2015-06-16 16:27:54 +02002216 mutex_lock(&video_list_lock);
2217 list_for_each_entry(video, &video_bus_head, entry)
2218 acpi_video_bus_unregister_backlight(video);
2219 mutex_unlock(&video_list_lock);
2220 }
Hans de Goede970530c2016-01-14 09:41:45 +01002221 mutex_unlock(&register_count_mutex);
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002222}
Hans de Goede1b7f37e2014-05-17 10:48:01 +02002223
Hans de Goede90b066b2015-12-22 19:09:48 +01002224bool acpi_video_handles_brightness_key_presses(void)
2225{
2226 bool have_video_busses;
2227
2228 mutex_lock(&video_list_lock);
2229 have_video_busses = !list_empty(&video_bus_head);
2230 mutex_unlock(&video_list_lock);
2231
Hans de Goede05bc59a2015-12-22 19:09:51 +01002232 return have_video_busses &&
2233 (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS);
Hans de Goede90b066b2015-12-22 19:09:48 +01002234}
2235EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses);
2236
Matthew Garrett74a365b2009-03-19 21:35:39 +00002237/*
2238 * This is kind of nasty. Hardware using Intel chipsets may require
2239 * the video opregion code to be run first in order to initialise
2240 * state before any ACPI video calls are made. To handle this we defer
2241 * registration of the video class until the opregion code has run.
2242 */
2243
2244static int __init acpi_video_init(void)
2245{
Chris Wilson6e17cb12015-03-01 10:41:37 +00002246 /*
2247 * Let the module load even if ACPI is disabled (e.g. due to
2248 * a broken BIOS) so that i915.ko can still be loaded on such
2249 * old systems without an AcpiOpRegion.
2250 *
2251 * acpi_video_register() will report -ENODEV later as well due
2252 * to acpi_disabled when i915.ko tries to register itself afterwards.
2253 */
2254 if (acpi_disabled)
2255 return 0;
2256
Matthew Garrett74a365b2009-03-19 21:35:39 +00002257 if (intel_opregion_present())
2258 return 0;
2259
2260 return acpi_video_register();
2261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Zhao Yakui86e437f2009-06-16 11:23:13 +08002263static void __exit acpi_video_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
Hans de Goede93a291d2015-06-16 16:27:52 +02002265 acpi_video_detect_exit();
Zhao Yakui86e437f2009-06-16 11:23:13 +08002266 acpi_video_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Patrick Mocheld550d982006-06-27 00:41:40 -04002268 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
2271module_init(acpi_video_init);
2272module_exit(acpi_video_exit);