Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 2 | * video.c - ACPI Video Driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2004 Luming Yu <luming.yu@intel.com> |
| 5 | * Copyright (C) 2004 Bruno Ducrot <ducrot@poupinou.org> |
Thomas Tuttle | f471518 | 2006-12-19 12:56:14 -0800 | [diff] [blame] | 6 | * Copyright (C) 2006 Thomas Tuttle <linux-kernel@ttuttle.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 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 Torokhov | bbac81f | 2007-11-05 11:43:32 -0500 | [diff] [blame] | 28 | #include <linux/mutex.h> |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 29 | #include <linux/input.h> |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 30 | #include <linux/backlight.h> |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 31 | #include <linux/thermal.h> |
Zhang Rui | 935e5f2 | 2008-12-11 16:24:52 -0500 | [diff] [blame] | 32 | #include <linux/sort.h> |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 33 | #include <linux/pci.h> |
| 34 | #include <linux/pci_ids.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Len Brown | eb27cae | 2009-07-06 23:40:19 -0400 | [diff] [blame] | 36 | #include <linux/dmi.h> |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 37 | #include <linux/suspend.h> |
Lv Zheng | 8b48463 | 2013-12-03 08:49:16 +0800 | [diff] [blame] | 38 | #include <linux/acpi.h> |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 39 | #include <acpi/video.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 40 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 42 | #define PREFIX "ACPI: " |
Rafael J. Wysocki | 8c5bd7a | 2013-07-18 02:08:06 +0200 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define ACPI_VIDEO_BUS_NAME "Video Bus" |
| 45 | #define ACPI_VIDEO_DEVICE_NAME "Video Device" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 47 | #define MAX_NAME_LEN 20 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #define _COMPONENT ACPI_VIDEO_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 50 | ACPI_MODULE_NAME("video"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 52 | MODULE_AUTHOR("Bruno Ducrot"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 53 | MODULE_DESCRIPTION("ACPI Video Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | MODULE_LICENSE("GPL"); |
| 55 | |
Gustavo A. R. Silva | 97e45dd | 2018-01-23 09:59:20 -0600 | [diff] [blame] | 56 | static bool brightness_switch_enabled = true; |
Zhang Rui | 8a681a4 | 2008-01-25 14:47:49 +0800 | [diff] [blame] | 57 | module_param(brightness_switch_enabled, bool, 0644); |
| 58 | |
Zhang Rui | c504f8c | 2009-12-30 15:59:23 +0800 | [diff] [blame] | 59 | /* |
| 60 | * By default, we don't allow duplicate ACPI video bus devices |
| 61 | * under the same VGA controller |
| 62 | */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 63 | static bool allow_duplicates; |
Zhang Rui | c504f8c | 2009-12-30 15:59:23 +0800 | [diff] [blame] | 64 | module_param(allow_duplicates, bool, 0644); |
| 65 | |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 66 | static int disable_backlight_sysfs_if = -1; |
| 67 | module_param(disable_backlight_sysfs_if, int, 0444); |
| 68 | |
Hans de Goede | 05bc59a | 2015-12-22 19:09:51 +0100 | [diff] [blame] | 69 | #define REPORT_OUTPUT_KEY_EVENTS 0x01 |
| 70 | #define REPORT_BRIGHTNESS_KEY_EVENTS 0x02 |
| 71 | static int report_key_events = -1; |
| 72 | module_param(report_key_events, int, 0644); |
| 73 | MODULE_PARM_DESC(report_key_events, |
| 74 | "0: none, 1: output changes, 2: brightness changes, 3: all"); |
| 75 | |
Dmitry Frank | 592c809 | 2017-04-19 13:36:18 +0300 | [diff] [blame] | 76 | /* |
| 77 | * Whether the struct acpi_video_device_attrib::device_id_scheme bit should be |
| 78 | * assumed even if not actually set. |
| 79 | */ |
Aaron Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 80 | static bool device_id_scheme = false; |
| 81 | module_param(device_id_scheme, bool, 0444); |
| 82 | |
Hans de Goede | 5928c28 | 2017-12-23 19:41:47 +0100 | [diff] [blame] | 83 | static int only_lcd = -1; |
| 84 | module_param(only_lcd, int, 0444); |
Aaron Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 85 | |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 86 | static int register_count; |
| 87 | static DEFINE_MUTEX(register_count_mutex); |
Hans de Goede | 14e9355 | 2016-01-14 09:41:46 +0100 | [diff] [blame] | 88 | static DEFINE_MUTEX(video_list_lock); |
| 89 | static LIST_HEAD(video_bus_head); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 90 | static int acpi_video_bus_add(struct acpi_device *device); |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 91 | static int acpi_video_bus_remove(struct acpi_device *device); |
Bjorn Helgaas | 7015558 | 2009-04-07 15:37:11 +0000 | [diff] [blame] | 92 | static void acpi_video_bus_notify(struct acpi_device *device, u32 event); |
Hans de Goede | 93a291d | 2015-06-16 16:27:52 +0200 | [diff] [blame] | 93 | void acpi_video_detect_exit(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 95 | /* |
| 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 | */ |
| 101 | enum 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 Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 107 | static const struct acpi_device_id video_device_ids[] = { |
| 108 | {ACPI_VIDEO_HID, 0}, |
| 109 | {"", 0}, |
| 110 | }; |
| 111 | MODULE_DEVICE_TABLE(acpi, video_device_ids); |
| 112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | static struct acpi_driver acpi_video_bus = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 114 | .name = "video", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | .class = ACPI_VIDEO_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 116 | .ids = video_device_ids, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | .ops = { |
| 118 | .add = acpi_video_bus_add, |
| 119 | .remove = acpi_video_bus_remove, |
Bjorn Helgaas | 7015558 | 2009-04-07 15:37:11 +0000 | [diff] [blame] | 120 | .notify = acpi_video_bus_notify, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 121 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | struct acpi_video_bus_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 125 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | }; |
| 130 | |
| 131 | struct acpi_video_bus_cap { |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 132 | 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 Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | u8 reserved:2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | }; |
| 140 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 141 | struct acpi_video_device_attrib { |
| 142 | u32 display_index:4; /* A zero-based instance of the Display */ |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 143 | 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 Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 148 | the VGA device. */ |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 149 | u32 pipe_id:3; /* For VGA multiple-head devices. */ |
| 150 | u32 reserved:10; /* Must be 0 */ |
Dmitry Frank | 592c809 | 2017-04-19 13:36:18 +0300 | [diff] [blame] | 151 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | }; |
| 161 | |
| 162 | struct acpi_video_enumerated_device { |
| 163 | union { |
| 164 | u32 int_val; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 165 | struct acpi_video_device_attrib attrib; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | } value; |
| 167 | struct acpi_video_device *bind_info; |
| 168 | }; |
| 169 | |
| 170 | struct acpi_video_bus { |
Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 171 | struct acpi_device *device; |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 172 | bool backlight_registered; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 173 | u8 dos_setting; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | struct acpi_video_enumerated_device *attached_array; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 175 | u8 attached_count; |
Aaron Lu | b4df463 | 2014-12-15 16:01:29 +0800 | [diff] [blame] | 176 | u8 child_count; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 177 | struct acpi_video_bus_cap cap; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | struct acpi_video_bus_flags flags; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 179 | struct list_head video_device_list; |
Dmitry Torokhov | bbac81f | 2007-11-05 11:43:32 -0500 | [diff] [blame] | 180 | struct mutex device_list_lock; /* protects video_device_list */ |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 181 | struct list_head entry; |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 182 | struct input_dev *input; |
| 183 | char phys[32]; /* for input device */ |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 184 | struct notifier_block pm_nb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | }; |
| 186 | |
| 187 | struct acpi_video_device_flags { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 188 | u8 crt:1; |
| 189 | u8 lcd:1; |
| 190 | u8 tvout:1; |
Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 191 | u8 dvi:1; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 192 | u8 bios:1; |
| 193 | u8 unknown:1; |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 194 | u8 notify:1; |
| 195 | u8 reserved:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | }; |
| 197 | |
| 198 | struct acpi_video_device_cap { |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 199 | 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 Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 202 | u8 _BQC:1; /* Get current brightness level */ |
Zhang Rui | c60d638 | 2009-03-18 16:27:18 +0800 | [diff] [blame] | 203 | u8 _BCQ:1; /* Some buggy BIOS uses _BCQ instead of _BQC */ |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 204 | u8 _DDC:1; /* Return the EDID for this device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | }; |
| 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | struct acpi_video_device { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 208 | unsigned long device_id; |
| 209 | struct acpi_video_device_flags flags; |
| 210 | struct acpi_video_device_cap cap; |
| 211 | struct list_head entry; |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 212 | struct delayed_work switch_brightness_work; |
| 213 | int switch_brightness_event; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 214 | struct acpi_video_bus *video; |
| 215 | struct acpi_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | struct acpi_video_device_brightness *brightness; |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 217 | struct backlight_device *backlight; |
Dmitry Torokhov | 4a703a8 | 2009-08-29 23:03:16 -0400 | [diff] [blame] | 218 | struct thermal_cooling_device *cooling_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | }; |
| 220 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 221 | static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data); |
| 222 | static void acpi_video_device_rebind(struct acpi_video_bus *video); |
| 223 | static void acpi_video_device_bind(struct acpi_video_bus *video, |
| 224 | struct acpi_video_device *device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | static int acpi_video_device_enumerate(struct acpi_video_bus *video); |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 226 | static int acpi_video_device_lcd_set_level(struct acpi_video_device *device, |
| 227 | int level); |
| 228 | static int acpi_video_device_lcd_get_level_current( |
| 229 | struct acpi_video_device *device, |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 230 | unsigned long long *level, bool raw); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 231 | static int acpi_video_get_next_level(struct acpi_video_device *device, |
| 232 | u32 level_current, u32 event); |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 233 | static void acpi_video_switch_brightness(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 235 | /* backlight device sysfs support */ |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 236 | static int acpi_video_get_brightness(struct backlight_device *bd) |
| 237 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 238 | unsigned long long cur_level; |
Matthew Garrett | 38531e6 | 2007-12-26 02:03:26 +0000 | [diff] [blame] | 239 | int i; |
Felipe Contreras | 7c364e7 | 2013-08-03 22:15:21 +0200 | [diff] [blame] | 240 | struct acpi_video_device *vd = bl_get_data(bd); |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 241 | |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 242 | if (acpi_video_device_lcd_get_level_current(vd, &cur_level, false)) |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 243 | return -EINVAL; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 244 | for (i = ACPI_VIDEO_FIRST_LEVEL; i < vd->brightness->count; i++) { |
Matthew Garrett | 38531e6 | 2007-12-26 02:03:26 +0000 | [diff] [blame] | 245 | if (vd->brightness->levels[i] == cur_level) |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 246 | return i - ACPI_VIDEO_FIRST_LEVEL; |
Matthew Garrett | 38531e6 | 2007-12-26 02:03:26 +0000 | [diff] [blame] | 247 | } |
| 248 | return 0; |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | static int acpi_video_set_brightness(struct backlight_device *bd) |
| 252 | { |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 253 | int request_level = bd->props.brightness + ACPI_VIDEO_FIRST_LEVEL; |
Felipe Contreras | 7c364e7 | 2013-08-03 22:15:21 +0200 | [diff] [blame] | 254 | struct acpi_video_device *vd = bl_get_data(bd); |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 255 | |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 256 | cancel_delayed_work(&vd->switch_brightness_work); |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 257 | return acpi_video_device_lcd_set_level(vd, |
| 258 | vd->brightness->levels[request_level]); |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 259 | } |
| 260 | |
Lionel Debroux | acc2472 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 261 | static const struct backlight_ops acpi_backlight_ops = { |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 262 | .get_brightness = acpi_video_get_brightness, |
| 263 | .update_status = acpi_video_set_brightness, |
| 264 | }; |
| 265 | |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 266 | /* thermal cooling device callbacks */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 267 | static int video_get_max_state(struct thermal_cooling_device *cooling_dev, |
| 268 | unsigned long *state) |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 269 | { |
Dmitry Torokhov | 4a703a8 | 2009-08-29 23:03:16 -0400 | [diff] [blame] | 270 | struct acpi_device *device = cooling_dev->devdata; |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 271 | struct acpi_video_device *video = acpi_driver_data(device); |
| 272 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 273 | *state = video->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1; |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 274 | return 0; |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 275 | } |
| 276 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 277 | static int video_get_cur_state(struct thermal_cooling_device *cooling_dev, |
| 278 | unsigned long *state) |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 279 | { |
Dmitry Torokhov | 4a703a8 | 2009-08-29 23:03:16 -0400 | [diff] [blame] | 280 | struct acpi_device *device = cooling_dev->devdata; |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 281 | struct acpi_video_device *video = acpi_driver_data(device); |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 282 | unsigned long long level; |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 283 | int offset; |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 284 | |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 285 | if (acpi_video_device_lcd_get_level_current(video, &level, false)) |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 286 | return -EINVAL; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 287 | for (offset = ACPI_VIDEO_FIRST_LEVEL; offset < video->brightness->count; |
| 288 | offset++) |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 289 | if (level == video->brightness->levels[offset]) { |
| 290 | *state = video->brightness->count - offset - 1; |
| 291 | return 0; |
| 292 | } |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 293 | |
| 294 | return -EINVAL; |
| 295 | } |
| 296 | |
| 297 | static int |
Dmitry Torokhov | 4a703a8 | 2009-08-29 23:03:16 -0400 | [diff] [blame] | 298 | video_set_cur_state(struct thermal_cooling_device *cooling_dev, unsigned long state) |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 299 | { |
Dmitry Torokhov | 4a703a8 | 2009-08-29 23:03:16 -0400 | [diff] [blame] | 300 | struct acpi_device *device = cooling_dev->devdata; |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 301 | struct acpi_video_device *video = acpi_driver_data(device); |
| 302 | int level; |
| 303 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 304 | if (state >= video->brightness->count - ACPI_VIDEO_FIRST_LEVEL) |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 305 | return -EINVAL; |
| 306 | |
| 307 | state = video->brightness->count - state; |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 308 | level = video->brightness->levels[state - 1]; |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 309 | return acpi_video_device_lcd_set_level(video, level); |
| 310 | } |
| 311 | |
Vasiliy Kulikov | 9c8b04b | 2011-06-25 21:07:52 +0400 | [diff] [blame] | 312 | static const struct thermal_cooling_device_ops video_cooling_ops = { |
Zhang Rui | 702ed51 | 2008-01-17 15:51:22 +0800 | [diff] [blame] | 313 | .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 Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 318 | /* |
| 319 | * -------------------------------------------------------------------------- |
| 320 | * Video Management |
| 321 | * -------------------------------------------------------------------------- |
| 322 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | static int |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 325 | acpi_video_device_lcd_query_levels(acpi_handle handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 326 | union acpi_object **levels) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 328 | int status; |
| 329 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 330 | union acpi_object *obj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | *levels = NULL; |
| 334 | |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 335 | status = acpi_evaluate_object(handle, "_BCL", NULL, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | if (!ACPI_SUCCESS(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 337 | return status; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 338 | obj = (union acpi_object *)buffer.pointer; |
Adrian Bunk | 6665bda | 2006-03-11 10:12:00 -0500 | [diff] [blame] | 339 | if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 340 | printk(KERN_ERR PREFIX "Invalid _BCL data\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | status = -EFAULT; |
| 342 | goto err; |
| 343 | } |
| 344 | |
| 345 | *levels = obj; |
| 346 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 347 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 349 | err: |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 350 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 352 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 356 | acpi_video_device_lcd_set_level(struct acpi_video_device *device, int level) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | { |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 358 | int status; |
Zhang Rui | 9e6dada | 2008-12-31 10:58:48 +0800 | [diff] [blame] | 359 | int state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
Jiang Liu | 0db9820 | 2013-06-29 00:24:39 +0800 | [diff] [blame] | 361 | status = acpi_execute_simple_method(device->dev->handle, |
| 362 | "_BCM", level); |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 363 | if (ACPI_FAILURE(status)) { |
| 364 | ACPI_ERROR((AE_INFO, "Evaluating _BCM failed")); |
| 365 | return -EIO; |
| 366 | } |
| 367 | |
Alexey Starikovskiy | 4500ca8 | 2007-09-03 16:29:58 +0400 | [diff] [blame] | 368 | device->brightness->curr = level; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 369 | for (state = ACPI_VIDEO_FIRST_LEVEL; state < device->brightness->count; |
| 370 | state++) |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 371 | if (level == device->brightness->levels[state]) { |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 372 | if (device->backlight) |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 373 | device->backlight->props.brightness = |
| 374 | state - ACPI_VIDEO_FIRST_LEVEL; |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 375 | return 0; |
| 376 | } |
Zhang Rui | 9e6dada | 2008-12-31 10:58:48 +0800 | [diff] [blame] | 377 | |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 378 | ACPI_ERROR((AE_INFO, "Current brightness invalid")); |
| 379 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Zhang Rui | 45cb50e | 2009-04-24 12:13:18 -0400 | [diff] [blame] | 382 | /* |
| 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 | |
| 387 | static int bqc_offset_aml_bug_workaround; |
Hans de Goede | 7ee33ba | 2015-06-16 16:27:53 +0200 | [diff] [blame] | 388 | static int video_set_bqc_offset(const struct dmi_system_id *d) |
Zhang Rui | 45cb50e | 2009-04-24 12:13:18 -0400 | [diff] [blame] | 389 | { |
| 390 | bqc_offset_aml_bug_workaround = 9; |
| 391 | return 0; |
| 392 | } |
| 393 | |
Hans de Goede | 7ee33ba | 2015-06-16 16:27:53 +0200 | [diff] [blame] | 394 | static int video_disable_backlight_sysfs_if( |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 395 | 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 Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 402 | static int video_set_device_id_scheme(const struct dmi_system_id *d) |
| 403 | { |
| 404 | device_id_scheme = true; |
| 405 | return 0; |
| 406 | } |
| 407 | |
| 408 | static int video_enable_only_lcd(const struct dmi_system_id *d) |
| 409 | { |
| 410 | only_lcd = true; |
| 411 | return 0; |
| 412 | } |
| 413 | |
Hans de Goede | 4b4b3b2 | 2015-12-22 19:09:52 +0100 | [diff] [blame] | 414 | static 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 Hellwig | 6faadbb | 2017-09-14 11:59:30 +0200 | [diff] [blame] | 421 | static const struct dmi_system_id video_dmi_table[] = { |
Zhang Rui | 45cb50e | 2009-04-24 12:13:18 -0400 | [diff] [blame] | 422 | /* |
| 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 Brown | 5afc4ab | 2009-05-07 21:11:56 -0400 | [diff] [blame] | 433 | { |
| 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 Rui | 34ac272 | 2009-05-26 23:35:34 -0400 | [diff] [blame] | 441 | { |
| 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 Rui | 93bcece | 2009-05-19 15:08:41 -0400 | [diff] [blame] | 449 | { |
| 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 Rui | 152a4e6 | 2009-06-22 11:31:18 +0800 | [diff] [blame] | 457 | { |
| 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 Goede | 5f24079 | 2014-08-28 10:20:46 +0200 | [diff] [blame] | 465 | |
| 466 | /* |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 467 | * 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 Goede | de588b8 | 2016-01-11 14:46:17 +0100 | [diff] [blame] | 474 | /* 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 Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 483 | /* 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 Goede | b21f2e8 | 2016-01-14 14:24:39 +0100 | [diff] [blame] | 491 | { |
| 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 Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 500 | /* |
| 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 Goede | 4b4b3b2 | 2015-12-22 19:09:52 +0100 | [diff] [blame] | 527 | /* |
| 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 Rui | 45cb50e | 2009-04-24 12:13:18 -0400 | [diff] [blame] | 545 | {} |
| 546 | }; |
| 547 | |
Danny Baumann | 994fa63 | 2013-03-19 16:22:52 +0000 | [diff] [blame] | 548 | static unsigned long long |
| 549 | acpi_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 Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 556 | * _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 Baumann | 994fa63 | 2013-03-19 16:22:52 +0000 | [diff] [blame] | 559 | */ |
| 560 | if (device->brightness->flags._BCL_reversed) |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 561 | bqc_value = device->brightness->count - |
| 562 | ACPI_VIDEO_FIRST_LEVEL - 1 - bqc_value; |
Danny Baumann | 994fa63 | 2013-03-19 16:22:52 +0000 | [diff] [blame] | 563 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 564 | level = device->brightness->levels[bqc_value + |
| 565 | ACPI_VIDEO_FIRST_LEVEL]; |
Danny Baumann | 994fa63 | 2013-03-19 16:22:52 +0000 | [diff] [blame] | 566 | } else { |
| 567 | level = bqc_value; |
| 568 | } |
| 569 | |
| 570 | level += bqc_offset_aml_bug_workaround; |
| 571 | |
| 572 | return level; |
| 573 | } |
| 574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 576 | acpi_video_device_lcd_get_level_current(struct acpi_video_device *device, |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 577 | unsigned long long *level, bool raw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | { |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 579 | acpi_status status = AE_OK; |
Vladimir Serbinenko | 4e231fa | 2009-06-24 15:17:36 +0800 | [diff] [blame] | 580 | int i; |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 581 | |
Zhang Rui | c60d638 | 2009-03-18 16:27:18 +0800 | [diff] [blame] | 582 | 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 Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 586 | NULL, level); |
| 587 | if (ACPI_SUCCESS(status)) { |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 588 | 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 Baumann | 994fa63 | 2013-03-19 16:22:52 +0000 | [diff] [blame] | 597 | *level = acpi_video_bqc_value_to_level(device, *level); |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 598 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 599 | for (i = ACPI_VIDEO_FIRST_LEVEL; |
| 600 | i < device->brightness->count; i++) |
Vladimir Serbinenko | 4e231fa | 2009-06-24 15:17:36 +0800 | [diff] [blame] | 601 | if (device->brightness->levels[i] == *level) { |
| 602 | device->brightness->curr = *level; |
| 603 | return 0; |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 604 | } |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 605 | /* |
| 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 Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 613 | } else { |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 614 | /* |
| 615 | * Fixme: |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 616 | * 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 Rui | c60d638 | 2009-03-18 16:27:18 +0800 | [diff] [blame] | 622 | ACPI_WARNING((AE_INFO, "Evaluating %s failed", buf)); |
| 623 | device->cap._BQC = device->cap._BCQ = 0; |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 624 | } |
| 625 | } |
| 626 | |
Alexey Starikovskiy | 4500ca8 | 2007-09-03 16:29:58 +0400 | [diff] [blame] | 627 | *level = device->brightness->curr; |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 628 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | } |
| 630 | |
| 631 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 632 | acpi_video_device_EDID(struct acpi_video_device *device, |
| 633 | union acpi_object **edid, ssize_t length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 635 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
| 642 | *edid = NULL; |
| 643 | |
| 644 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 645 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | if (length == 128) |
| 647 | arg0.integer.value = 1; |
| 648 | else if (length == 256) |
| 649 | arg0.integer.value = 2; |
| 650 | else |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 651 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 653 | status = acpi_evaluate_object(device->dev->handle, "_DDC", &args, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | if (ACPI_FAILURE(status)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 655 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 657 | obj = buffer.pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
| 659 | if (obj && obj->type == ACPI_TYPE_BUFFER) |
| 660 | *edid = obj; |
| 661 | else { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 662 | printk(KERN_ERR PREFIX "Invalid _DDC data\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | status = -EFAULT; |
| 664 | kfree(obj); |
| 665 | } |
| 666 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 667 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | } |
| 669 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | /* bus */ |
| 671 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | /* |
| 673 | * Arg: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 674 | * video : video bus device pointer |
| 675 | * bios_flag : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | * 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 Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 679 | * active display output. No switch event. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | * 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 Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 686 | * of the LCD when the power changes from AC to DC |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 687 | * 1. The system BIOS should NOT automatically control the brightness |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 688 | * level of the LCD when the power changes from AC to DC. |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 689 | * Return Value: |
Igor Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 690 | * -EINVAL wrong arg. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | */ |
| 692 | |
| 693 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 694 | acpi_video_bus_DOS(struct acpi_video_bus *video, int bios_flag, int lcd_flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | { |
Igor Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 696 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Zhang Rui | b037384 | 2012-06-20 09:48:43 +0800 | [diff] [blame] | 698 | if (!video->cap._DOS) |
| 699 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Igor Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 701 | if (bios_flag < 0 || bios_flag > 3 || lcd_flag < 0 || lcd_flag > 1) |
| 702 | return -EINVAL; |
Jiang Liu | 0db9820 | 2013-06-29 00:24:39 +0800 | [diff] [blame] | 703 | 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 Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 706 | if (ACPI_FAILURE(status)) |
| 707 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
Igor Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 709 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | /* |
Zhang Rui | 935e5f2 | 2008-12-11 16:24:52 -0500 | [diff] [blame] | 713 | * Simple comparison function used to sort backlight levels. |
| 714 | */ |
| 715 | |
| 716 | static int |
| 717 | acpi_video_cmp_level(const void *a, const void *b) |
| 718 | { |
| 719 | return *(int *)a - *(int *)b; |
| 720 | } |
| 721 | |
| 722 | /* |
Aaron Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 723 | * 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 | */ |
| 729 | static 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 Frank | 592c809 | 2017-04-19 13:36:18 +0300 | [diff] [blame] | 743 | * 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 Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 770 | */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 771 | test_level = current_level == max_level |
| 772 | ? br->levels[ACPI_VIDEO_FIRST_LEVEL + 1] |
| 773 | : max_level; |
Aaron Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 774 | |
| 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 Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 787 | level = br->count - ACPI_VIDEO_FIRST_LEVEL - 1 - level; |
| 788 | if (br->levels[level + ACPI_VIDEO_FIRST_LEVEL] == test_level) |
Aaron Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 789 | 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 Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 799 | int acpi_video_get_levels(struct acpi_device *device, |
Aaron Lu | 9f9cd7e | 2016-05-21 15:30:46 +0800 | [diff] [blame] | 800 | struct acpi_video_device_brightness **dev_br, |
| 801 | int *pmax_level) |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 802 | { |
| 803 | union acpi_object *obj = NULL; |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 804 | int i, max_level = 0, count = 0, level_ac_battery = 0; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 805 | union acpi_object *o; |
| 806 | struct acpi_video_device_brightness *br = NULL; |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 807 | int result = 0; |
Hans de Goede | bd8ba20 | 2014-02-13 16:32:51 +0100 | [diff] [blame] | 808 | u32 value; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 809 | |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 810 | if (!ACPI_SUCCESS(acpi_video_device_lcd_query_levels(device->handle, |
| 811 | &obj))) { |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 812 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Could not query available " |
| 813 | "LCD brightness level\n")); |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 814 | result = -ENODEV; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 815 | goto out; |
| 816 | } |
| 817 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 818 | if (obj->package.count < ACPI_VIDEO_FIRST_LEVEL) { |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 819 | result = -EINVAL; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 820 | goto out; |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 821 | } |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 822 | |
| 823 | br = kzalloc(sizeof(*br), GFP_KERNEL); |
| 824 | if (!br) { |
| 825 | printk(KERN_ERR "can't allocate memory\n"); |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 826 | result = -ENOMEM; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 827 | goto out; |
| 828 | } |
| 829 | |
Dmitry Frank | 592c809 | 2017-04-19 13:36:18 +0300 | [diff] [blame] | 830 | /* |
| 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 | */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 835 | br->levels = kmalloc((obj->package.count + ACPI_VIDEO_FIRST_LEVEL) * |
| 836 | sizeof(*br->levels), GFP_KERNEL); |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 837 | if (!br->levels) { |
| 838 | result = -ENOMEM; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 839 | goto out_free; |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 840 | } |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 841 | |
| 842 | for (i = 0; i < obj->package.count; i++) { |
| 843 | o = (union acpi_object *)&obj->package.elements[i]; |
| 844 | if (o->type != ACPI_TYPE_INTEGER) { |
| 845 | printk(KERN_ERR PREFIX "Invalid data\n"); |
| 846 | continue; |
| 847 | } |
Hans de Goede | bd8ba20 | 2014-02-13 16:32:51 +0100 | [diff] [blame] | 848 | value = (u32) o->integer.value; |
| 849 | /* Skip duplicate entries */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 850 | if (count > ACPI_VIDEO_FIRST_LEVEL |
| 851 | && br->levels[count - 1] == value) |
Hans de Goede | bd8ba20 | 2014-02-13 16:32:51 +0100 | [diff] [blame] | 852 | continue; |
| 853 | |
| 854 | br->levels[count] = value; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 855 | |
| 856 | if (br->levels[count] > max_level) |
| 857 | max_level = br->levels[count]; |
| 858 | count++; |
| 859 | } |
| 860 | |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 861 | /* |
| 862 | * some buggy BIOS don't export the levels |
| 863 | * when machine is on AC/Battery in _BCL package. |
| 864 | * In this case, the first two elements in _BCL packages |
| 865 | * are also supported brightness levels that OS should take care of. |
| 866 | */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 867 | for (i = ACPI_VIDEO_FIRST_LEVEL; i < count; i++) { |
| 868 | if (br->levels[i] == br->levels[ACPI_VIDEO_AC_LEVEL]) |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 869 | level_ac_battery++; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 870 | if (br->levels[i] == br->levels[ACPI_VIDEO_BATTERY_LEVEL]) |
Zhang Rui | 90af2cf | 2009-04-14 11:02:18 +0800 | [diff] [blame] | 871 | level_ac_battery++; |
| 872 | } |
Zhang Rui | 935e5f2 | 2008-12-11 16:24:52 -0500 | [diff] [blame] | 873 | |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 874 | if (level_ac_battery < ACPI_VIDEO_FIRST_LEVEL) { |
| 875 | level_ac_battery = ACPI_VIDEO_FIRST_LEVEL - level_ac_battery; |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 876 | br->flags._BCL_no_ac_battery_levels = 1; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 877 | for (i = (count - 1 + level_ac_battery); |
| 878 | i >= ACPI_VIDEO_FIRST_LEVEL; i--) |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 879 | br->levels[i] = br->levels[i - level_ac_battery]; |
| 880 | count += level_ac_battery; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 881 | } else if (level_ac_battery > ACPI_VIDEO_FIRST_LEVEL) |
Colin Ian King | bf6787e | 2012-11-29 11:53:13 +0000 | [diff] [blame] | 882 | ACPI_ERROR((AE_INFO, "Too many duplicates in _BCL package")); |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 883 | |
Zhang Rui | d80fb99 | 2009-03-18 16:27:14 +0800 | [diff] [blame] | 884 | /* Check if the _BCL package is in a reversed order */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 885 | if (max_level == br->levels[ACPI_VIDEO_FIRST_LEVEL]) { |
Zhang Rui | d80fb99 | 2009-03-18 16:27:14 +0800 | [diff] [blame] | 886 | br->flags._BCL_reversed = 1; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 887 | sort(&br->levels[ACPI_VIDEO_FIRST_LEVEL], |
| 888 | count - ACPI_VIDEO_FIRST_LEVEL, |
| 889 | sizeof(br->levels[ACPI_VIDEO_FIRST_LEVEL]), |
| 890 | acpi_video_cmp_level, NULL); |
Zhang Rui | d80fb99 | 2009-03-18 16:27:14 +0800 | [diff] [blame] | 891 | } else if (max_level != br->levels[count - 1]) |
| 892 | ACPI_ERROR((AE_INFO, |
Colin Ian King | bf6787e | 2012-11-29 11:53:13 +0000 | [diff] [blame] | 893 | "Found unordered _BCL package")); |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 894 | |
| 895 | br->count = count; |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 896 | *dev_br = br; |
Aaron Lu | 9f9cd7e | 2016-05-21 15:30:46 +0800 | [diff] [blame] | 897 | if (pmax_level) |
| 898 | *pmax_level = max_level; |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 899 | |
| 900 | out: |
| 901 | kfree(obj); |
| 902 | return result; |
| 903 | out_free: |
| 904 | kfree(br); |
| 905 | goto out; |
| 906 | } |
| 907 | EXPORT_SYMBOL(acpi_video_get_levels); |
| 908 | |
| 909 | /* |
| 910 | * Arg: |
| 911 | * device : video output device (LCD, CRT, ..) |
| 912 | * |
| 913 | * Return Value: |
| 914 | * Maximum brightness level |
| 915 | * |
| 916 | * Allocate and initialize device->brightness. |
| 917 | */ |
| 918 | |
| 919 | static int |
| 920 | acpi_video_init_brightness(struct acpi_video_device *device) |
| 921 | { |
| 922 | int i, max_level = 0; |
| 923 | unsigned long long level, level_old; |
| 924 | struct acpi_video_device_brightness *br = NULL; |
| 925 | int result = -EINVAL; |
| 926 | |
Aaron Lu | 9f9cd7e | 2016-05-21 15:30:46 +0800 | [diff] [blame] | 927 | result = acpi_video_get_levels(device->dev, &br, &max_level); |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 928 | if (result) |
| 929 | return result; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 930 | device->brightness = br; |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 931 | |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 932 | /* _BQC uses INDEX while _BCL uses VALUE in some laptops */ |
Zhang Rui | 90c53ca | 2009-08-31 12:39:54 -0400 | [diff] [blame] | 933 | br->curr = level = max_level; |
Zhang Rui | e047cca | 2009-04-09 14:24:35 +0800 | [diff] [blame] | 934 | |
| 935 | if (!device->cap._BQC) |
| 936 | goto set_level; |
| 937 | |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 938 | result = acpi_video_device_lcd_get_level_current(device, |
| 939 | &level_old, true); |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 940 | if (result) |
| 941 | goto out_free_levels; |
| 942 | |
Aaron Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 943 | result = acpi_video_bqc_quirk(device, max_level, level_old); |
| 944 | if (result) |
| 945 | goto out_free_levels; |
Zhang Rui | e047cca | 2009-04-09 14:24:35 +0800 | [diff] [blame] | 946 | /* |
Aaron Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 947 | * cap._BQC may get cleared due to _BQC is found to be broken |
| 948 | * in acpi_video_bqc_quirk, so check again here. |
Zhang Rui | e047cca | 2009-04-09 14:24:35 +0800 | [diff] [blame] | 949 | */ |
Aaron Lu | a50188d | 2013-04-22 14:08:32 +0200 | [diff] [blame] | 950 | if (!device->cap._BQC) |
| 951 | goto set_level; |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 952 | |
Aaron Lu | 545ef36 | 2013-11-15 14:39:12 +0800 | [diff] [blame] | 953 | level = acpi_video_bqc_value_to_level(device, level_old); |
| 954 | /* |
| 955 | * On some buggy laptops, _BQC returns an uninitialized |
| 956 | * value when invoked for the first time, i.e. |
| 957 | * level_old is invalid (no matter whether it's a level |
| 958 | * or an index). Set the backlight to max_level in this case. |
| 959 | */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 960 | for (i = ACPI_VIDEO_FIRST_LEVEL; i < br->count; i++) |
Aaron Lu | 545ef36 | 2013-11-15 14:39:12 +0800 | [diff] [blame] | 961 | if (level == br->levels[i]) |
| 962 | break; |
| 963 | if (i == br->count || !level) |
| 964 | level = max_level; |
Zhang Rui | e047cca | 2009-04-09 14:24:35 +0800 | [diff] [blame] | 965 | |
Zhang Rui | e047cca | 2009-04-09 14:24:35 +0800 | [diff] [blame] | 966 | set_level: |
Zhang Rui | 90c53ca | 2009-08-31 12:39:54 -0400 | [diff] [blame] | 967 | result = acpi_video_device_lcd_set_level(device, level); |
Zhang Rui | e047cca | 2009-04-09 14:24:35 +0800 | [diff] [blame] | 968 | if (result) |
| 969 | goto out_free_levels; |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 970 | |
Zhang Rui | d32f694 | 2009-03-18 16:27:12 +0800 | [diff] [blame] | 971 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 972 | "found %d brightness levels\n", |
| 973 | br->count - ACPI_VIDEO_FIRST_LEVEL)); |
Aaron Lu | 0595009 | 2016-04-27 20:45:04 +0800 | [diff] [blame] | 974 | return 0; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 975 | |
| 976 | out_free_levels: |
| 977 | kfree(br->levels); |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 978 | kfree(br); |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 979 | device->brightness = NULL; |
Zhang Rui | 1a7c618 | 2009-03-18 16:27:16 +0800 | [diff] [blame] | 980 | return result; |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 981 | } |
| 982 | |
| 983 | /* |
| 984 | * Arg: |
| 985 | * device : video output device (LCD, CRT, ..) |
| 986 | * |
| 987 | * Return Value: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 988 | * None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | * |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 990 | * Find out all required AML methods defined under the output |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | * device. |
| 992 | */ |
| 993 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 994 | static void acpi_video_device_find_cap(struct acpi_video_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | { |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 996 | if (acpi_has_method(device->dev->handle, "_ADR")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | device->cap._ADR = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 998 | if (acpi_has_method(device->dev->handle, "_BCL")) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 999 | device->cap._BCL = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1000 | if (acpi_has_method(device->dev->handle, "_BCM")) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1001 | device->cap._BCM = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1002 | if (acpi_has_method(device->dev->handle, "_BQC")) { |
Yu Luming | 2f3d000 | 2006-11-11 02:40:34 +0800 | [diff] [blame] | 1003 | device->cap._BQC = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1004 | } else if (acpi_has_method(device->dev->handle, "_BCQ")) { |
Zhang Rui | c60d638 | 2009-03-18 16:27:18 +0800 | [diff] [blame] | 1005 | printk(KERN_WARNING FW_BUG "_BCQ is used instead of _BQC\n"); |
| 1006 | device->cap._BCQ = 1; |
| 1007 | } |
| 1008 | |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1009 | if (acpi_has_method(device->dev->handle, "_DDC")) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1010 | device->cap._DDC = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | /* |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1014 | * Arg: |
| 1015 | * device : video output device (VGA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | * |
| 1017 | * Return Value: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1018 | * None |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | * |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 1020 | * Find out all required AML methods defined under the video bus device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | */ |
| 1022 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1023 | static void acpi_video_bus_find_cap(struct acpi_video_bus *video) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | { |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1025 | if (acpi_has_method(video->device->handle, "_DOS")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | video->cap._DOS = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1027 | if (acpi_has_method(video->device->handle, "_DOD")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | video->cap._DOD = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1029 | if (acpi_has_method(video->device->handle, "_ROM")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | video->cap._ROM = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1031 | if (acpi_has_method(video->device->handle, "_GPD")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | video->cap._GPD = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1033 | if (acpi_has_method(video->device->handle, "_SPD")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | video->cap._SPD = 1; |
Jiang Liu | 952c63e | 2013-06-29 00:24:38 +0800 | [diff] [blame] | 1035 | if (acpi_has_method(video->device->handle, "_VPO")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | video->cap._VPO = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | /* |
| 1040 | * Check whether the video bus device has required AML method to |
| 1041 | * support the desired features |
| 1042 | */ |
| 1043 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1044 | static int acpi_video_bus_check(struct acpi_video_bus *video) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1046 | acpi_status status = -ENOENT; |
Alexander Chiang | 1e4cffe | 2009-06-10 19:56:00 +0000 | [diff] [blame] | 1047 | struct pci_dev *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
| 1049 | if (!video) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1050 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
Alexander Chiang | 1e4cffe | 2009-06-10 19:56:00 +0000 | [diff] [blame] | 1052 | dev = acpi_get_pci_dev(video->device->handle); |
Thomas Renninger | 22c13f9 | 2008-08-01 17:37:54 +0200 | [diff] [blame] | 1053 | if (!dev) |
| 1054 | return -ENODEV; |
Alexander Chiang | 1e4cffe | 2009-06-10 19:56:00 +0000 | [diff] [blame] | 1055 | pci_dev_put(dev); |
Thomas Renninger | 22c13f9 | 2008-08-01 17:37:54 +0200 | [diff] [blame] | 1056 | |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1057 | /* |
| 1058 | * Since there is no HID, CID and so on for VGA driver, we have |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | * to check well known required nodes. |
| 1060 | */ |
| 1061 | |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 1062 | /* Does this device support video switching? */ |
Stefan Bader | 3a1151e | 2009-08-21 11:03:05 +0200 | [diff] [blame] | 1063 | if (video->cap._DOS || video->cap._DOD) { |
| 1064 | if (!video->cap._DOS) { |
| 1065 | printk(KERN_WARNING FW_BUG |
| 1066 | "ACPI(%s) defines _DOD but not _DOS\n", |
| 1067 | acpi_device_bid(video->device)); |
| 1068 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | video->flags.multihead = 1; |
| 1070 | status = 0; |
| 1071 | } |
| 1072 | |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 1073 | /* Does this device support retrieving a video ROM? */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1074 | if (video->cap._ROM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | video->flags.rom = 1; |
| 1076 | status = 0; |
| 1077 | } |
| 1078 | |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 1079 | /* Does this device support configuring which video device to POST? */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1080 | if (video->cap._GPD && video->cap._SPD && video->cap._VPO) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1081 | video->flags.post = 1; |
| 1082 | status = 0; |
| 1083 | } |
| 1084 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1085 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | } |
| 1087 | |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1088 | /* |
| 1089 | * -------------------------------------------------------------------------- |
| 1090 | * Driver Interface |
| 1091 | * -------------------------------------------------------------------------- |
| 1092 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | |
| 1094 | /* device interface */ |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 1095 | static struct acpi_video_device_attrib * |
Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1096 | acpi_video_get_device_attr(struct acpi_video_bus *video, unsigned long device_id) |
| 1097 | { |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1098 | struct acpi_video_enumerated_device *ids; |
| 1099 | int i; |
Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1100 | |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1101 | for (i = 0; i < video->attached_count; i++) { |
| 1102 | ids = &video->attached_array[i]; |
| 1103 | if ((ids->value.int_val & 0xffff) == device_id) |
| 1104 | return &ids->value.attrib; |
| 1105 | } |
| 1106 | |
Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1107 | return NULL; |
| 1108 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1109 | |
| 1110 | static int |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 1111 | acpi_video_get_device_type(struct acpi_video_bus *video, |
| 1112 | unsigned long device_id) |
| 1113 | { |
| 1114 | struct acpi_video_enumerated_device *ids; |
| 1115 | int i; |
| 1116 | |
| 1117 | for (i = 0; i < video->attached_count; i++) { |
| 1118 | ids = &video->attached_array[i]; |
| 1119 | if ((ids->value.int_val & 0xffff) == device_id) |
| 1120 | return ids->value.int_val; |
| 1121 | } |
| 1122 | |
| 1123 | return 0; |
| 1124 | } |
| 1125 | |
| 1126 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1127 | acpi_video_bus_get_one_device(struct acpi_device *device, |
| 1128 | struct acpi_video_bus *video) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 1130 | unsigned long long device_id; |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 1131 | int status, device_type; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1132 | struct acpi_video_device *data; |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 1133 | struct acpi_video_device_attrib *attribute; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1135 | status = |
| 1136 | acpi_evaluate_integer(device->handle, "_ADR", NULL, &device_id); |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1137 | /* Some device omits _ADR, we skip them instead of fail */ |
| 1138 | if (ACPI_FAILURE(status)) |
| 1139 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1141 | data = kzalloc(sizeof(struct acpi_video_device), GFP_KERNEL); |
| 1142 | if (!data) |
| 1143 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1145 | strcpy(acpi_device_name(device), ACPI_VIDEO_DEVICE_NAME); |
| 1146 | strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS); |
| 1147 | device->driver_data = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1149 | data->device_id = device_id; |
| 1150 | data->video = video; |
| 1151 | data->dev = device; |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1152 | INIT_DELAYED_WORK(&data->switch_brightness_work, |
| 1153 | acpi_video_switch_brightness); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1155 | attribute = acpi_video_get_device_attr(video, device_id); |
Rui Zhang | 82cae99 | 2007-01-03 23:40:53 -0500 | [diff] [blame] | 1156 | |
Aaron Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 1157 | if (attribute && (attribute->device_id_scheme || device_id_scheme)) { |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1158 | switch (attribute->display_type) { |
| 1159 | case ACPI_VIDEO_DISPLAY_CRT: |
| 1160 | data->flags.crt = 1; |
| 1161 | break; |
| 1162 | case ACPI_VIDEO_DISPLAY_TV: |
| 1163 | data->flags.tvout = 1; |
| 1164 | break; |
| 1165 | case ACPI_VIDEO_DISPLAY_DVI: |
| 1166 | data->flags.dvi = 1; |
| 1167 | break; |
| 1168 | case ACPI_VIDEO_DISPLAY_LCD: |
| 1169 | data->flags.lcd = 1; |
| 1170 | break; |
| 1171 | default: |
| 1172 | data->flags.unknown = 1; |
| 1173 | break; |
| 1174 | } |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 1175 | if (attribute->bios_can_detect) |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1176 | data->flags.bios = 1; |
| 1177 | } else { |
| 1178 | /* Check for legacy IDs */ |
| 1179 | device_type = acpi_video_get_device_type(video, device_id); |
| 1180 | /* Ignore bits 16 and 18-20 */ |
| 1181 | switch (device_type & 0xffe2ffff) { |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 1182 | case ACPI_VIDEO_DISPLAY_LEGACY_MONITOR: |
| 1183 | data->flags.crt = 1; |
| 1184 | break; |
| 1185 | case ACPI_VIDEO_DISPLAY_LEGACY_PANEL: |
| 1186 | data->flags.lcd = 1; |
| 1187 | break; |
| 1188 | case ACPI_VIDEO_DISPLAY_LEGACY_TV: |
| 1189 | data->flags.tvout = 1; |
| 1190 | break; |
| 1191 | default: |
| 1192 | data->flags.unknown = 1; |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 1193 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | } |
| 1195 | |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1196 | acpi_video_device_bind(video, data); |
| 1197 | acpi_video_device_find_cap(data); |
| 1198 | |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1199 | mutex_lock(&video->device_list_lock); |
| 1200 | list_add_tail(&data->entry, &video->video_device_list); |
| 1201 | mutex_unlock(&video->device_list_lock); |
| 1202 | |
| 1203 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
| 1206 | /* |
| 1207 | * Arg: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1208 | * video : video bus device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | * |
| 1210 | * Return: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1211 | * none |
| 1212 | * |
| 1213 | * Enumerate the video device list of the video bus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | * bind the ids with the corresponding video devices |
| 1215 | * under the video bus. |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1216 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1218 | static void acpi_video_device_rebind(struct acpi_video_bus *video) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | { |
Dmitry Torokhov | ff102ea | 2007-11-05 11:43:31 -0500 | [diff] [blame] | 1220 | struct acpi_video_device *dev; |
| 1221 | |
Dmitry Torokhov | bbac81f | 2007-11-05 11:43:32 -0500 | [diff] [blame] | 1222 | mutex_lock(&video->device_list_lock); |
Dmitry Torokhov | ff102ea | 2007-11-05 11:43:31 -0500 | [diff] [blame] | 1223 | |
| 1224 | list_for_each_entry(dev, &video->video_device_list, entry) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1225 | acpi_video_device_bind(video, dev); |
Dmitry Torokhov | ff102ea | 2007-11-05 11:43:31 -0500 | [diff] [blame] | 1226 | |
Dmitry Torokhov | bbac81f | 2007-11-05 11:43:32 -0500 | [diff] [blame] | 1227 | mutex_unlock(&video->device_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | } |
| 1229 | |
| 1230 | /* |
| 1231 | * Arg: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1232 | * video : video bus device |
| 1233 | * device : video output device under the video |
| 1234 | * bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | * |
| 1236 | * Return: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1237 | * none |
| 1238 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1239 | * Bind the ids with the corresponding video devices |
| 1240 | * under the video bus. |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1241 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | |
| 1243 | static void |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1244 | acpi_video_device_bind(struct acpi_video_bus *video, |
| 1245 | struct acpi_video_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | { |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1247 | struct acpi_video_enumerated_device *ids; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1248 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1250 | for (i = 0; i < video->attached_count; i++) { |
| 1251 | ids = &video->attached_array[i]; |
| 1252 | if (device->device_id == (ids->value.int_val & 0xffff)) { |
| 1253 | ids->bind_info = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "device_bind %d\n", i)); |
| 1255 | } |
| 1256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | } |
| 1258 | |
Aaron Lu | 0b8db27 | 2014-09-30 14:10:17 +0800 | [diff] [blame] | 1259 | static bool acpi_video_device_in_dod(struct acpi_video_device *device) |
| 1260 | { |
| 1261 | struct acpi_video_bus *video = device->video; |
| 1262 | int i; |
| 1263 | |
Aaron Lu | b4df463 | 2014-12-15 16:01:29 +0800 | [diff] [blame] | 1264 | /* |
| 1265 | * If we have a broken _DOD or we have more than 8 output devices |
| 1266 | * under the graphics controller node that we can't proper deal with |
| 1267 | * in the operation region code currently, no need to test. |
| 1268 | */ |
| 1269 | if (!video->attached_count || video->child_count > 8) |
Aaron Lu | 0b8db27 | 2014-09-30 14:10:17 +0800 | [diff] [blame] | 1270 | return true; |
| 1271 | |
| 1272 | for (i = 0; i < video->attached_count; i++) { |
Aaron Lu | 35d0565 | 2014-12-01 02:09:18 +0100 | [diff] [blame] | 1273 | if ((video->attached_array[i].value.int_val & 0xfff) == |
| 1274 | (device->device_id & 0xfff)) |
Aaron Lu | 0b8db27 | 2014-09-30 14:10:17 +0800 | [diff] [blame] | 1275 | return true; |
| 1276 | } |
| 1277 | |
| 1278 | return false; |
| 1279 | } |
| 1280 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | /* |
| 1282 | * Arg: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1283 | * video : video bus device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | * |
| 1285 | * Return: |
Felipe Contreras | 21fcb34 | 2013-08-01 18:43:59 -0500 | [diff] [blame] | 1286 | * < 0 : error |
| 1287 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | * Call _DOD to enumerate all devices attached to display adapter |
| 1289 | * |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1290 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1291 | |
| 1292 | static int acpi_video_device_enumerate(struct acpi_video_bus *video) |
| 1293 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1294 | int status; |
| 1295 | int count; |
| 1296 | int i; |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1297 | struct acpi_video_enumerated_device *active_list; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1298 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 1299 | union acpi_object *dod = NULL; |
| 1300 | union acpi_object *obj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | |
Alex Hung | e34fbba | 2016-05-27 15:47:06 +0800 | [diff] [blame] | 1302 | if (!video->cap._DOD) |
| 1303 | return AE_NOT_EXIST; |
| 1304 | |
Patrick Mochel | 9013026 | 2006-05-19 16:54:48 -0400 | [diff] [blame] | 1305 | status = acpi_evaluate_object(video->device->handle, "_DOD", NULL, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | if (!ACPI_SUCCESS(status)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1307 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _DOD")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1308 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | } |
| 1310 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1311 | dod = buffer.pointer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | if (!dod || (dod->type != ACPI_TYPE_PACKAGE)) { |
Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 1313 | ACPI_EXCEPTION((AE_INFO, status, "Invalid _DOD data")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1314 | status = -EFAULT; |
| 1315 | goto out; |
| 1316 | } |
| 1317 | |
| 1318 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d video heads in _DOD\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1319 | dod->package.count)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1321 | active_list = kcalloc(1 + dod->package.count, |
| 1322 | sizeof(struct acpi_video_enumerated_device), |
| 1323 | GFP_KERNEL); |
| 1324 | if (!active_list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1325 | status = -ENOMEM; |
| 1326 | goto out; |
| 1327 | } |
| 1328 | |
| 1329 | count = 0; |
| 1330 | for (i = 0; i < dod->package.count; i++) { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1331 | obj = &dod->package.elements[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
| 1333 | if (obj->type != ACPI_TYPE_INTEGER) { |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1334 | printk(KERN_ERR PREFIX |
| 1335 | "Invalid _DOD data in element %d\n", i); |
| 1336 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | } |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1338 | |
| 1339 | active_list[count].value.int_val = obj->integer.value; |
| 1340 | active_list[count].bind_info = NULL; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1341 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i, |
| 1342 | (int)obj->integer.value)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | count++; |
| 1344 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 1346 | kfree(video->attached_array); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1347 | |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1348 | video->attached_array = active_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | video->attached_count = count; |
Dmitry Torokhov | 78eed02 | 2007-11-05 11:43:33 -0500 | [diff] [blame] | 1350 | |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 1351 | out: |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 1352 | kfree(buffer.pointer); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1353 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | } |
| 1355 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1356 | static int |
| 1357 | acpi_video_get_next_level(struct acpi_video_device *device, |
| 1358 | u32 level_current, u32 event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | { |
Alexey Starikovskiy | 63f0edf | 2007-09-03 16:30:08 +0400 | [diff] [blame] | 1360 | int min, max, min_above, max_below, i, l, delta = 255; |
Thomas Tuttle | f471518 | 2006-12-19 12:56:14 -0800 | [diff] [blame] | 1361 | max = max_below = 0; |
| 1362 | min = min_above = 255; |
Alexey Starikovskiy | 63f0edf | 2007-09-03 16:30:08 +0400 | [diff] [blame] | 1363 | /* Find closest level to level_current */ |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 1364 | for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) { |
Alexey Starikovskiy | 63f0edf | 2007-09-03 16:30:08 +0400 | [diff] [blame] | 1365 | l = device->brightness->levels[i]; |
| 1366 | if (abs(l - level_current) < abs(delta)) { |
| 1367 | delta = l - level_current; |
| 1368 | if (!delta) |
| 1369 | break; |
| 1370 | } |
| 1371 | } |
| 1372 | /* Ajust level_current to closest available level */ |
| 1373 | level_current += delta; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 1374 | for (i = ACPI_VIDEO_FIRST_LEVEL; i < device->brightness->count; i++) { |
Thomas Tuttle | f471518 | 2006-12-19 12:56:14 -0800 | [diff] [blame] | 1375 | l = device->brightness->levels[i]; |
| 1376 | if (l < min) |
| 1377 | min = l; |
| 1378 | if (l > max) |
| 1379 | max = l; |
| 1380 | if (l < min_above && l > level_current) |
| 1381 | min_above = l; |
| 1382 | if (l > max_below && l < level_current) |
| 1383 | max_below = l; |
| 1384 | } |
| 1385 | |
| 1386 | switch (event) { |
| 1387 | case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: |
| 1388 | return (level_current < max) ? min_above : min; |
| 1389 | case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: |
| 1390 | return (level_current < max) ? min_above : max; |
| 1391 | case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: |
| 1392 | return (level_current > min) ? max_below : min; |
| 1393 | case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: |
| 1394 | case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: |
| 1395 | return 0; |
| 1396 | default: |
| 1397 | return level_current; |
| 1398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1401 | static void |
| 1402 | acpi_video_switch_brightness(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | { |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1404 | struct acpi_video_device *device = container_of(to_delayed_work(work), |
| 1405 | struct acpi_video_device, switch_brightness_work); |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 1406 | unsigned long long level_current, level_next; |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1407 | int event = device->switch_brightness_event; |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 1408 | int result = -EINVAL; |
| 1409 | |
Aaron Lu | fbc9fe1 | 2013-10-11 21:27:45 +0800 | [diff] [blame] | 1410 | /* no warning message if acpi_backlight=vendor or a quirk is used */ |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 1411 | if (!device->backlight) |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1412 | return; |
Zhang Rui | 28c32e9 | 2009-07-13 10:33:24 +0800 | [diff] [blame] | 1413 | |
Julia Jomantaite | 469778c | 2008-06-23 22:50:42 +0100 | [diff] [blame] | 1414 | if (!device->brightness) |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 1415 | goto out; |
| 1416 | |
| 1417 | result = acpi_video_device_lcd_get_level_current(device, |
Danny Baumann | a89803d | 2013-03-19 16:22:50 +0000 | [diff] [blame] | 1418 | &level_current, |
| 1419 | false); |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 1420 | if (result) |
| 1421 | goto out; |
| 1422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | level_next = acpi_video_get_next_level(device, level_current, event); |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 1424 | |
Zhang Rui | 24450c7 | 2009-03-18 16:27:10 +0800 | [diff] [blame] | 1425 | result = acpi_video_device_lcd_set_level(device, level_next); |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 1426 | |
Matthew Garrett | 3634274 | 2009-07-14 17:06:03 +0100 | [diff] [blame] | 1427 | if (!result) |
| 1428 | backlight_force_update(device->backlight, |
| 1429 | BACKLIGHT_UPDATE_HOTKEY); |
| 1430 | |
Zhang Rui | c8890f9 | 2009-03-18 16:27:08 +0800 | [diff] [blame] | 1431 | out: |
| 1432 | if (result) |
| 1433 | printk(KERN_ERR PREFIX "Failed to switch the brightness\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1434 | } |
| 1435 | |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 1436 | int acpi_video_get_edid(struct acpi_device *device, int type, int device_id, |
| 1437 | void **edid) |
| 1438 | { |
| 1439 | struct acpi_video_bus *video; |
| 1440 | struct acpi_video_device *video_device; |
| 1441 | union acpi_object *buffer = NULL; |
| 1442 | acpi_status status; |
| 1443 | int i, length; |
| 1444 | |
| 1445 | if (!device || !acpi_driver_data(device)) |
| 1446 | return -EINVAL; |
| 1447 | |
| 1448 | video = acpi_driver_data(device); |
| 1449 | |
| 1450 | for (i = 0; i < video->attached_count; i++) { |
| 1451 | video_device = video->attached_array[i].bind_info; |
| 1452 | length = 256; |
| 1453 | |
| 1454 | if (!video_device) |
| 1455 | continue; |
| 1456 | |
Zhang Rui | 8206955 | 2010-12-06 15:04:24 +0800 | [diff] [blame] | 1457 | if (!video_device->cap._DDC) |
| 1458 | continue; |
| 1459 | |
Matthew Garrett | e92a716 | 2010-01-12 14:17:03 -0500 | [diff] [blame] | 1460 | if (type) { |
| 1461 | switch (type) { |
| 1462 | case ACPI_VIDEO_DISPLAY_CRT: |
| 1463 | if (!video_device->flags.crt) |
| 1464 | continue; |
| 1465 | break; |
| 1466 | case ACPI_VIDEO_DISPLAY_TV: |
| 1467 | if (!video_device->flags.tvout) |
| 1468 | continue; |
| 1469 | break; |
| 1470 | case ACPI_VIDEO_DISPLAY_DVI: |
| 1471 | if (!video_device->flags.dvi) |
| 1472 | continue; |
| 1473 | break; |
| 1474 | case ACPI_VIDEO_DISPLAY_LCD: |
| 1475 | if (!video_device->flags.lcd) |
| 1476 | continue; |
| 1477 | break; |
| 1478 | } |
| 1479 | } else if (video_device->device_id != device_id) { |
| 1480 | continue; |
| 1481 | } |
| 1482 | |
| 1483 | status = acpi_video_device_EDID(video_device, &buffer, length); |
| 1484 | |
| 1485 | if (ACPI_FAILURE(status) || !buffer || |
| 1486 | buffer->type != ACPI_TYPE_BUFFER) { |
| 1487 | length = 128; |
| 1488 | status = acpi_video_device_EDID(video_device, &buffer, |
| 1489 | length); |
| 1490 | if (ACPI_FAILURE(status) || !buffer || |
| 1491 | buffer->type != ACPI_TYPE_BUFFER) { |
| 1492 | continue; |
| 1493 | } |
| 1494 | } |
| 1495 | |
| 1496 | *edid = buffer->buffer.pointer; |
| 1497 | return length; |
| 1498 | } |
| 1499 | |
| 1500 | return -ENODEV; |
| 1501 | } |
| 1502 | EXPORT_SYMBOL(acpi_video_get_edid); |
| 1503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1505 | acpi_video_bus_get_devices(struct acpi_video_bus *video, |
| 1506 | struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | { |
Igor Murzov | fba4e08 | 2012-10-13 04:41:25 +0400 | [diff] [blame] | 1508 | int status = 0; |
Dmitry Torokhov | ff102ea | 2007-11-05 11:43:31 -0500 | [diff] [blame] | 1509 | struct acpi_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | |
Igor Murzov | fba4e08 | 2012-10-13 04:41:25 +0400 | [diff] [blame] | 1511 | /* |
| 1512 | * There are systems where video module known to work fine regardless |
| 1513 | * of broken _DOD and ignoring returned value here doesn't cause |
| 1514 | * any issues later. |
| 1515 | */ |
| 1516 | acpi_video_device_enumerate(video); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | |
Dmitry Torokhov | ff102ea | 2007-11-05 11:43:31 -0500 | [diff] [blame] | 1518 | list_for_each_entry(dev, &device->children, node) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
| 1520 | status = acpi_video_bus_get_one_device(dev, video); |
Igor Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 1521 | if (status) { |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 1522 | dev_err(&dev->dev, "Can't attach device\n"); |
| 1523 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | } |
Aaron Lu | b4df463 | 2014-12-15 16:01:29 +0800 | [diff] [blame] | 1525 | video->child_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | } |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1527 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | } |
| 1529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | /* acpi_video interface */ |
| 1531 | |
Aaron Lu | efaa14c | 2013-07-16 13:08:05 +0800 | [diff] [blame] | 1532 | /* |
| 1533 | * Win8 requires setting bit2 of _DOS to let firmware know it shouldn't |
| 1534 | * preform any automatic brightness change on receiving a notification. |
| 1535 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1536 | static int acpi_video_bus_start_devices(struct acpi_video_bus *video) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | { |
Aaron Lu | efaa14c | 2013-07-16 13:08:05 +0800 | [diff] [blame] | 1538 | return acpi_video_bus_DOS(video, 0, |
Aaron Lu | fbc9fe1 | 2013-10-11 21:27:45 +0800 | [diff] [blame] | 1539 | acpi_osi_is_win8() ? 1 : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } |
| 1541 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1542 | static int acpi_video_bus_stop_devices(struct acpi_video_bus *video) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | { |
Aaron Lu | efaa14c | 2013-07-16 13:08:05 +0800 | [diff] [blame] | 1544 | return acpi_video_bus_DOS(video, 0, |
Aaron Lu | fbc9fe1 | 2013-10-11 21:27:45 +0800 | [diff] [blame] | 1545 | acpi_osi_is_win8() ? 0 : 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | } |
| 1547 | |
Bjorn Helgaas | 7015558 | 2009-04-07 15:37:11 +0000 | [diff] [blame] | 1548 | static void acpi_video_bus_notify(struct acpi_device *device, u32 event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | { |
Bjorn Helgaas | 7015558 | 2009-04-07 15:37:11 +0000 | [diff] [blame] | 1550 | struct acpi_video_bus *video = acpi_driver_data(device); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1551 | struct input_dev *input; |
Matthew Garrett | 17c452f | 2009-12-11 17:40:46 -0500 | [diff] [blame] | 1552 | int keycode = 0; |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1553 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1554 | if (!video || !video->input) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1555 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1557 | input = video->input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1558 | |
| 1559 | switch (event) { |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 1560 | case ACPI_VIDEO_NOTIFY_SWITCH: /* User requested a switch, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | * most likely via hotkey. */ |
Luca Tettamanti | 8a37c65 | 2012-08-02 15:30:27 +0200 | [diff] [blame] | 1562 | keycode = KEY_SWITCHVIDEOMODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | break; |
| 1564 | |
Julius Volz | 98fb8fe | 2007-02-20 16:38:40 +0100 | [diff] [blame] | 1565 | case ACPI_VIDEO_NOTIFY_PROBE: /* User plugged in or removed a video |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | * connector. */ |
| 1567 | acpi_video_device_enumerate(video); |
| 1568 | acpi_video_device_rebind(video); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1569 | keycode = KEY_SWITCHVIDEOMODE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | break; |
| 1571 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1572 | case ACPI_VIDEO_NOTIFY_CYCLE: /* Cycle Display output hotkey pressed. */ |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1573 | keycode = KEY_SWITCHVIDEOMODE; |
| 1574 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1575 | case ACPI_VIDEO_NOTIFY_NEXT_OUTPUT: /* Next Display output hotkey pressed. */ |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1576 | keycode = KEY_VIDEO_NEXT; |
| 1577 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1578 | case ACPI_VIDEO_NOTIFY_PREV_OUTPUT: /* previous Display output hotkey pressed. */ |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1579 | keycode = KEY_VIDEO_PREV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | break; |
| 1581 | |
| 1582 | default: |
| 1583 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1584 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | break; |
| 1586 | } |
| 1587 | |
Luca Tettamanti | 8a37c65 | 2012-08-02 15:30:27 +0200 | [diff] [blame] | 1588 | if (acpi_notifier_call_chain(device, event, 0)) |
| 1589 | /* Something vetoed the keypress. */ |
| 1590 | keycode = 0; |
Matthew Garrett | 17c452f | 2009-12-11 17:40:46 -0500 | [diff] [blame] | 1591 | |
Hans de Goede | 05bc59a | 2015-12-22 19:09:51 +0100 | [diff] [blame] | 1592 | if (keycode && (report_key_events & REPORT_OUTPUT_KEY_EVENTS)) { |
Matthew Garrett | 17c452f | 2009-12-11 17:40:46 -0500 | [diff] [blame] | 1593 | input_report_key(input, keycode, 1); |
| 1594 | input_sync(input); |
| 1595 | input_report_key(input, keycode, 0); |
| 1596 | input_sync(input); |
| 1597 | } |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1598 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1599 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | } |
| 1601 | |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1602 | static void brightness_switch_event(struct acpi_video_device *video_device, |
| 1603 | u32 event) |
| 1604 | { |
| 1605 | if (!brightness_switch_enabled) |
| 1606 | return; |
| 1607 | |
| 1608 | video_device->switch_brightness_event = event; |
| 1609 | schedule_delayed_work(&video_device->switch_brightness_work, HZ / 10); |
| 1610 | } |
| 1611 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1612 | static void acpi_video_device_notify(acpi_handle handle, u32 event, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 1614 | struct acpi_video_device *video_device = data; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1615 | struct acpi_device *device = NULL; |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1616 | struct acpi_video_bus *bus; |
| 1617 | struct input_dev *input; |
Matthew Garrett | 17c452f | 2009-12-11 17:40:46 -0500 | [diff] [blame] | 1618 | int keycode = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | if (!video_device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1621 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | |
Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 1623 | device = video_device->dev; |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1624 | bus = video_device->video; |
| 1625 | input = bus->input; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | |
| 1627 | switch (event) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1628 | case ACPI_VIDEO_NOTIFY_CYCLE_BRIGHTNESS: /* Cycle brightness */ |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1629 | brightness_switch_event(video_device, event); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1630 | keycode = KEY_BRIGHTNESS_CYCLE; |
| 1631 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1632 | case ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS: /* Increase brightness */ |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1633 | brightness_switch_event(video_device, event); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1634 | keycode = KEY_BRIGHTNESSUP; |
| 1635 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1636 | case ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS: /* Decrease brightness */ |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1637 | brightness_switch_event(video_device, event); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1638 | keycode = KEY_BRIGHTNESSDOWN; |
| 1639 | break; |
Justin P. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 1640 | case ACPI_VIDEO_NOTIFY_ZERO_BRIGHTNESS: /* zero brightness */ |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1641 | brightness_switch_event(video_device, event); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1642 | keycode = KEY_BRIGHTNESS_ZERO; |
| 1643 | break; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1644 | case ACPI_VIDEO_NOTIFY_DISPLAY_OFF: /* display device off */ |
Linus Torvalds | 8ab58e8 | 2014-07-18 14:32:51 +0200 | [diff] [blame] | 1645 | brightness_switch_event(video_device, event); |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1646 | keycode = KEY_DISPLAY_OFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | break; |
| 1648 | default: |
| 1649 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1650 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | break; |
| 1652 | } |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1653 | |
Zhang Rui | 7761f63 | 2008-01-25 14:48:12 +0800 | [diff] [blame] | 1654 | acpi_notifier_call_chain(device, event, 0); |
Matthew Garrett | 17c452f | 2009-12-11 17:40:46 -0500 | [diff] [blame] | 1655 | |
Hans de Goede | 05bc59a | 2015-12-22 19:09:51 +0100 | [diff] [blame] | 1656 | if (keycode && (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS)) { |
Matthew Garrett | 17c452f | 2009-12-11 17:40:46 -0500 | [diff] [blame] | 1657 | input_report_key(input, keycode, 1); |
| 1658 | input_sync(input); |
| 1659 | input_report_key(input, keycode, 0); |
| 1660 | input_sync(input); |
| 1661 | } |
Luming Yu | e9dab19 | 2007-08-20 18:23:53 +0800 | [diff] [blame] | 1662 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1663 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | } |
| 1665 | |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 1666 | static int acpi_video_resume(struct notifier_block *nb, |
| 1667 | unsigned long val, void *ign) |
Matthew Garrett | 863c149 | 2008-02-04 23:31:24 -0800 | [diff] [blame] | 1668 | { |
| 1669 | struct acpi_video_bus *video; |
| 1670 | struct acpi_video_device *video_device; |
| 1671 | int i; |
| 1672 | |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 1673 | switch (val) { |
| 1674 | case PM_HIBERNATION_PREPARE: |
| 1675 | case PM_SUSPEND_PREPARE: |
| 1676 | case PM_RESTORE_PREPARE: |
| 1677 | return NOTIFY_DONE; |
| 1678 | } |
Matthew Garrett | 863c149 | 2008-02-04 23:31:24 -0800 | [diff] [blame] | 1679 | |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 1680 | video = container_of(nb, struct acpi_video_bus, pm_nb); |
| 1681 | |
| 1682 | dev_info(&video->device->dev, "Restoring backlight state\n"); |
Matthew Garrett | 863c149 | 2008-02-04 23:31:24 -0800 | [diff] [blame] | 1683 | |
| 1684 | for (i = 0; i < video->attached_count; i++) { |
| 1685 | video_device = video->attached_array[i].bind_info; |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 1686 | if (video_device && video_device->brightness) |
| 1687 | acpi_video_device_lcd_set_level(video_device, |
| 1688 | video_device->brightness->curr); |
Matthew Garrett | 863c149 | 2008-02-04 23:31:24 -0800 | [diff] [blame] | 1689 | } |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 1690 | |
| 1691 | return NOTIFY_OK; |
Matthew Garrett | 863c149 | 2008-02-04 23:31:24 -0800 | [diff] [blame] | 1692 | } |
| 1693 | |
Zhang Rui | c504f8c | 2009-12-30 15:59:23 +0800 | [diff] [blame] | 1694 | static acpi_status |
| 1695 | acpi_video_bus_match(acpi_handle handle, u32 level, void *context, |
| 1696 | void **return_value) |
| 1697 | { |
| 1698 | struct acpi_device *device = context; |
| 1699 | struct acpi_device *sibling; |
| 1700 | int result; |
| 1701 | |
| 1702 | if (handle == device->handle) |
| 1703 | return AE_CTRL_TERMINATE; |
| 1704 | |
| 1705 | result = acpi_bus_get_device(handle, &sibling); |
| 1706 | if (result) |
| 1707 | return AE_OK; |
| 1708 | |
| 1709 | if (!strcmp(acpi_device_name(sibling), ACPI_VIDEO_BUS_NAME)) |
| 1710 | return AE_ALREADY_EXISTS; |
| 1711 | |
| 1712 | return AE_OK; |
| 1713 | } |
| 1714 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1715 | static void acpi_video_dev_register_backlight(struct acpi_video_device *device) |
| 1716 | { |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1717 | struct backlight_properties props; |
| 1718 | struct pci_dev *pdev; |
| 1719 | acpi_handle acpi_parent; |
| 1720 | struct device *parent = NULL; |
| 1721 | int result; |
| 1722 | static int count; |
| 1723 | char *name; |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1724 | |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1725 | result = acpi_video_init_brightness(device); |
| 1726 | if (result) |
| 1727 | return; |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 1728 | |
| 1729 | if (disable_backlight_sysfs_if > 0) |
| 1730 | return; |
| 1731 | |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1732 | name = kasprintf(GFP_KERNEL, "acpi_video%d", count); |
| 1733 | if (!name) |
| 1734 | return; |
| 1735 | count++; |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1736 | |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1737 | acpi_get_parent(device->dev->handle, &acpi_parent); |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1738 | |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1739 | pdev = acpi_get_pci_dev(acpi_parent); |
| 1740 | if (pdev) { |
| 1741 | parent = &pdev->dev; |
| 1742 | pci_dev_put(pdev); |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1743 | } |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1744 | |
| 1745 | memset(&props, 0, sizeof(struct backlight_properties)); |
| 1746 | props.type = BACKLIGHT_FIRMWARE; |
Dmitry Frank | d485ef4 | 2017-04-19 12:48:07 +0300 | [diff] [blame] | 1747 | props.max_brightness = |
| 1748 | device->brightness->count - ACPI_VIDEO_FIRST_LEVEL - 1; |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1749 | device->backlight = backlight_device_register(name, |
| 1750 | parent, |
| 1751 | device, |
| 1752 | &acpi_backlight_ops, |
| 1753 | &props); |
| 1754 | kfree(name); |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 1755 | if (IS_ERR(device->backlight)) { |
| 1756 | device->backlight = NULL; |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1757 | return; |
Hans de Goede | 654a182 | 2015-06-09 10:32:25 +0200 | [diff] [blame] | 1758 | } |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1759 | |
| 1760 | /* |
| 1761 | * Save current brightness level in case we have to restore it |
| 1762 | * before acpi_video_device_lcd_set_level() is called next time. |
| 1763 | */ |
| 1764 | device->backlight->props.brightness = |
| 1765 | acpi_video_get_brightness(device->backlight); |
| 1766 | |
| 1767 | device->cooling_dev = thermal_cooling_device_register("LCD", |
| 1768 | device->dev, &video_cooling_ops); |
| 1769 | if (IS_ERR(device->cooling_dev)) { |
| 1770 | /* |
| 1771 | * Set cooling_dev to NULL so we don't crash trying to free it. |
| 1772 | * Also, why the hell we are returning early and not attempt to |
| 1773 | * register video output if cooling device registration failed? |
| 1774 | * -- dtor |
| 1775 | */ |
| 1776 | device->cooling_dev = NULL; |
| 1777 | return; |
| 1778 | } |
| 1779 | |
| 1780 | dev_info(&device->dev->dev, "registered as cooling_device%d\n", |
| 1781 | device->cooling_dev->id); |
| 1782 | result = sysfs_create_link(&device->dev->dev.kobj, |
| 1783 | &device->cooling_dev->device.kobj, |
| 1784 | "thermal_cooling"); |
| 1785 | if (result) |
| 1786 | printk(KERN_ERR PREFIX "Create sysfs link\n"); |
| 1787 | result = sysfs_create_link(&device->cooling_dev->device.kobj, |
| 1788 | &device->dev->dev.kobj, "device"); |
| 1789 | if (result) |
| 1790 | printk(KERN_ERR PREFIX "Create sysfs link\n"); |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1791 | } |
| 1792 | |
Aaron Lu | dce4ec2 | 2014-10-28 14:35:59 +0800 | [diff] [blame] | 1793 | static void acpi_video_run_bcl_for_osi(struct acpi_video_bus *video) |
| 1794 | { |
| 1795 | struct acpi_video_device *dev; |
| 1796 | union acpi_object *levels; |
| 1797 | |
| 1798 | mutex_lock(&video->device_list_lock); |
| 1799 | list_for_each_entry(dev, &video->video_device_list, entry) { |
Aaron Lu | 9f9cd7e | 2016-05-21 15:30:46 +0800 | [diff] [blame] | 1800 | if (!acpi_video_device_lcd_query_levels(dev->dev->handle, &levels)) |
Aaron Lu | dce4ec2 | 2014-10-28 14:35:59 +0800 | [diff] [blame] | 1801 | kfree(levels); |
| 1802 | } |
| 1803 | mutex_unlock(&video->device_list_lock); |
| 1804 | } |
| 1805 | |
Aaron Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 1806 | static bool acpi_video_should_register_backlight(struct acpi_video_device *dev) |
| 1807 | { |
| 1808 | /* |
| 1809 | * Do not create backlight device for video output |
| 1810 | * device that is not in the enumerated list. |
| 1811 | */ |
| 1812 | if (!acpi_video_device_in_dod(dev)) { |
| 1813 | dev_dbg(&dev->dev->dev, "not in _DOD list, ignore\n"); |
| 1814 | return false; |
| 1815 | } |
| 1816 | |
| 1817 | if (only_lcd) |
| 1818 | return dev->flags.lcd; |
| 1819 | return true; |
| 1820 | } |
| 1821 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1822 | static int acpi_video_bus_register_backlight(struct acpi_video_bus *video) |
| 1823 | { |
| 1824 | struct acpi_video_device *dev; |
| 1825 | |
Hans de Goede | 53a92ba | 2014-05-21 15:39:55 +0200 | [diff] [blame] | 1826 | if (video->backlight_registered) |
| 1827 | return 0; |
| 1828 | |
Aaron Lu | dce4ec2 | 2014-10-28 14:35:59 +0800 | [diff] [blame] | 1829 | acpi_video_run_bcl_for_osi(video); |
| 1830 | |
Hans de Goede | 3bd6bce | 2015-06-16 16:27:51 +0200 | [diff] [blame] | 1831 | if (acpi_video_get_backlight_type() != acpi_backlight_video) |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1832 | return 0; |
| 1833 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1834 | mutex_lock(&video->device_list_lock); |
Aaron Lu | e50b9be | 2015-10-28 15:09:23 +0800 | [diff] [blame] | 1835 | list_for_each_entry(dev, &video->video_device_list, entry) { |
| 1836 | if (acpi_video_should_register_backlight(dev)) |
| 1837 | acpi_video_dev_register_backlight(dev); |
| 1838 | } |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1839 | mutex_unlock(&video->device_list_lock); |
| 1840 | |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1841 | video->backlight_registered = true; |
| 1842 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1843 | video->pm_nb.notifier_call = acpi_video_resume; |
| 1844 | video->pm_nb.priority = 0; |
| 1845 | return register_pm_notifier(&video->pm_nb); |
| 1846 | } |
| 1847 | |
| 1848 | static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device) |
| 1849 | { |
| 1850 | if (device->backlight) { |
| 1851 | backlight_device_unregister(device->backlight); |
| 1852 | device->backlight = NULL; |
| 1853 | } |
| 1854 | if (device->brightness) { |
| 1855 | kfree(device->brightness->levels); |
| 1856 | kfree(device->brightness); |
| 1857 | device->brightness = NULL; |
| 1858 | } |
| 1859 | if (device->cooling_dev) { |
| 1860 | sysfs_remove_link(&device->dev->dev.kobj, "thermal_cooling"); |
| 1861 | sysfs_remove_link(&device->cooling_dev->device.kobj, "device"); |
| 1862 | thermal_cooling_device_unregister(device->cooling_dev); |
| 1863 | device->cooling_dev = NULL; |
| 1864 | } |
| 1865 | } |
| 1866 | |
| 1867 | static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video) |
| 1868 | { |
| 1869 | struct acpi_video_device *dev; |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1870 | int error; |
| 1871 | |
| 1872 | if (!video->backlight_registered) |
| 1873 | return 0; |
| 1874 | |
| 1875 | error = unregister_pm_notifier(&video->pm_nb); |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1876 | |
| 1877 | mutex_lock(&video->device_list_lock); |
| 1878 | list_for_each_entry(dev, &video->video_device_list, entry) |
| 1879 | acpi_video_dev_unregister_backlight(dev); |
| 1880 | mutex_unlock(&video->device_list_lock); |
| 1881 | |
Hans de Goede | 99678ed | 2014-05-15 13:22:33 +0200 | [diff] [blame] | 1882 | video->backlight_registered = false; |
| 1883 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 1884 | return error; |
| 1885 | } |
| 1886 | |
| 1887 | static void acpi_video_dev_add_notify_handler(struct acpi_video_device *device) |
| 1888 | { |
| 1889 | acpi_status status; |
| 1890 | struct acpi_device *adev = device->dev; |
| 1891 | |
| 1892 | status = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY, |
| 1893 | acpi_video_device_notify, device); |
| 1894 | if (ACPI_FAILURE(status)) |
| 1895 | dev_err(&adev->dev, "Error installing notify handler\n"); |
| 1896 | else |
| 1897 | device->flags.notify = 1; |
| 1898 | } |
| 1899 | |
| 1900 | static int acpi_video_bus_add_notify_handler(struct acpi_video_bus *video) |
| 1901 | { |
| 1902 | struct input_dev *input; |
| 1903 | struct acpi_video_device *dev; |
| 1904 | int error; |
| 1905 | |
| 1906 | video->input = input = input_allocate_device(); |
| 1907 | if (!input) { |
| 1908 | error = -ENOMEM; |
| 1909 | goto out; |
| 1910 | } |
| 1911 | |
| 1912 | error = acpi_video_bus_start_devices(video); |
| 1913 | if (error) |
| 1914 | goto err_free_input; |
| 1915 | |
| 1916 | snprintf(video->phys, sizeof(video->phys), |
| 1917 | "%s/video/input0", acpi_device_hid(video->device)); |
| 1918 | |
| 1919 | input->name = acpi_device_name(video->device); |
| 1920 | input->phys = video->phys; |
| 1921 | input->id.bustype = BUS_HOST; |
| 1922 | input->id.product = 0x06; |
| 1923 | input->dev.parent = &video->device->dev; |
| 1924 | input->evbit[0] = BIT(EV_KEY); |
| 1925 | set_bit(KEY_SWITCHVIDEOMODE, input->keybit); |
| 1926 | set_bit(KEY_VIDEO_NEXT, input->keybit); |
| 1927 | set_bit(KEY_VIDEO_PREV, input->keybit); |
| 1928 | set_bit(KEY_BRIGHTNESS_CYCLE, input->keybit); |
| 1929 | set_bit(KEY_BRIGHTNESSUP, input->keybit); |
| 1930 | set_bit(KEY_BRIGHTNESSDOWN, input->keybit); |
| 1931 | set_bit(KEY_BRIGHTNESS_ZERO, input->keybit); |
| 1932 | set_bit(KEY_DISPLAY_OFF, input->keybit); |
| 1933 | |
| 1934 | error = input_register_device(input); |
| 1935 | if (error) |
| 1936 | goto err_stop_dev; |
| 1937 | |
| 1938 | mutex_lock(&video->device_list_lock); |
| 1939 | list_for_each_entry(dev, &video->video_device_list, entry) |
| 1940 | acpi_video_dev_add_notify_handler(dev); |
| 1941 | mutex_unlock(&video->device_list_lock); |
| 1942 | |
| 1943 | return 0; |
| 1944 | |
| 1945 | err_stop_dev: |
| 1946 | acpi_video_bus_stop_devices(video); |
| 1947 | err_free_input: |
| 1948 | input_free_device(input); |
| 1949 | video->input = NULL; |
| 1950 | out: |
| 1951 | return error; |
| 1952 | } |
| 1953 | |
| 1954 | static void acpi_video_dev_remove_notify_handler(struct acpi_video_device *dev) |
| 1955 | { |
| 1956 | if (dev->flags.notify) { |
| 1957 | acpi_remove_notify_handler(dev->dev->handle, ACPI_DEVICE_NOTIFY, |
| 1958 | acpi_video_device_notify); |
| 1959 | dev->flags.notify = 0; |
| 1960 | } |
| 1961 | } |
| 1962 | |
| 1963 | static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video) |
| 1964 | { |
| 1965 | struct acpi_video_device *dev; |
| 1966 | |
| 1967 | mutex_lock(&video->device_list_lock); |
| 1968 | list_for_each_entry(dev, &video->video_device_list, entry) |
| 1969 | acpi_video_dev_remove_notify_handler(dev); |
| 1970 | mutex_unlock(&video->device_list_lock); |
| 1971 | |
| 1972 | acpi_video_bus_stop_devices(video); |
| 1973 | input_unregister_device(video->input); |
| 1974 | video->input = NULL; |
| 1975 | } |
| 1976 | |
| 1977 | static int acpi_video_bus_put_devices(struct acpi_video_bus *video) |
| 1978 | { |
| 1979 | struct acpi_video_device *dev, *next; |
| 1980 | |
| 1981 | mutex_lock(&video->device_list_lock); |
| 1982 | list_for_each_entry_safe(dev, next, &video->video_device_list, entry) { |
| 1983 | list_del(&dev->entry); |
| 1984 | kfree(dev); |
| 1985 | } |
| 1986 | mutex_unlock(&video->device_list_lock); |
| 1987 | |
| 1988 | return 0; |
| 1989 | } |
| 1990 | |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 1991 | static int instance; |
| 1992 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1993 | static int acpi_video_bus_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | { |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 1995 | struct acpi_video_bus *video; |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 1996 | int error; |
Zhang Rui | c504f8c | 2009-12-30 15:59:23 +0800 | [diff] [blame] | 1997 | acpi_status status; |
| 1998 | |
| 1999 | status = acpi_walk_namespace(ACPI_TYPE_DEVICE, |
| 2000 | device->parent->handle, 1, |
| 2001 | acpi_video_bus_match, NULL, |
| 2002 | device, NULL); |
| 2003 | if (status == AE_ALREADY_EXISTS) { |
| 2004 | printk(KERN_WARNING FW_BUG |
| 2005 | "Duplicate ACPI video bus devices for the" |
| 2006 | " same VGA controller, please try module " |
| 2007 | "parameter \"video.allow_duplicates=1\"" |
| 2008 | "if the current driver doesn't work.\n"); |
| 2009 | if (!allow_duplicates) |
| 2010 | return -ENODEV; |
| 2011 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 2013 | video = kzalloc(sizeof(struct acpi_video_bus), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | if (!video) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 2015 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | |
Zhang Rui | e6d9da1 | 2007-08-25 02:23:31 -0400 | [diff] [blame] | 2017 | /* a hack to fix the duplicate name "VID" problem on T61 */ |
| 2018 | if (!strcmp(device->pnp.bus_id, "VID")) { |
| 2019 | if (instance) |
| 2020 | device->pnp.bus_id[3] = '0' + instance; |
Felipe Contreras | 915ea7e | 2013-08-03 22:12:50 +0200 | [diff] [blame] | 2021 | instance++; |
Zhang Rui | e6d9da1 | 2007-08-25 02:23:31 -0400 | [diff] [blame] | 2022 | } |
Zhao Yakui | f3b39f1 | 2009-02-02 22:55:01 -0500 | [diff] [blame] | 2023 | /* a hack to fix the duplicate name "VGA" problem on Pa 3553 */ |
| 2024 | if (!strcmp(device->pnp.bus_id, "VGA")) { |
| 2025 | if (instance) |
| 2026 | device->pnp.bus_id[3] = '0' + instance; |
| 2027 | instance++; |
| 2028 | } |
Zhang Rui | e6d9da1 | 2007-08-25 02:23:31 -0400 | [diff] [blame] | 2029 | |
Patrick Mochel | e6afa0d | 2006-05-19 16:54:40 -0400 | [diff] [blame] | 2030 | video->device = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | strcpy(acpi_device_name(device), ACPI_VIDEO_BUS_NAME); |
| 2032 | strcpy(acpi_device_class(device), ACPI_VIDEO_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 2033 | device->driver_data = video; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | |
| 2035 | acpi_video_bus_find_cap(video); |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 2036 | error = acpi_video_bus_check(video); |
| 2037 | if (error) |
| 2038 | goto err_free_video; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2039 | |
Dmitry Torokhov | bbac81f | 2007-11-05 11:43:32 -0500 | [diff] [blame] | 2040 | mutex_init(&video->device_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | INIT_LIST_HEAD(&video->video_device_list); |
| 2042 | |
Igor Murzov | ea9f885 | 2012-03-30 21:32:08 +0400 | [diff] [blame] | 2043 | error = acpi_video_bus_get_devices(video, device); |
| 2044 | if (error) |
Aaron Lu | 91e13aa | 2013-04-25 02:47:49 +0000 | [diff] [blame] | 2045 | goto err_put_video; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | printk(KERN_INFO PREFIX "%s [%s] (multi-head: %s rom: %s post: %s)\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 2048 | ACPI_VIDEO_DEVICE_NAME, acpi_device_bid(device), |
| 2049 | video->flags.multihead ? "yes" : "no", |
| 2050 | video->flags.rom ? "yes" : "no", |
| 2051 | video->flags.post ? "yes" : "no"); |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 2052 | mutex_lock(&video_list_lock); |
| 2053 | list_add_tail(&video->entry, &video_bus_head); |
| 2054 | mutex_unlock(&video_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 2056 | acpi_video_bus_register_backlight(video); |
| 2057 | acpi_video_bus_add_notify_handler(video); |
Rafael J. Wysocki | ac7729d | 2010-04-05 01:43:51 +0200 | [diff] [blame] | 2058 | |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 2059 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 2061 | err_put_video: |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 2062 | acpi_video_bus_put_devices(video); |
| 2063 | kfree(video->attached_array); |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 2064 | err_free_video: |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 2065 | kfree(video); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 2066 | device->driver_data = NULL; |
Dmitry Torokhov | f51e839 | 2007-11-05 11:43:30 -0500 | [diff] [blame] | 2067 | |
| 2068 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | } |
| 2070 | |
Rafael J. Wysocki | 51fac83 | 2013-01-24 00:24:48 +0100 | [diff] [blame] | 2071 | static int acpi_video_bus_remove(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 2073 | struct acpi_video_bus *video = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | |
| 2076 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 2077 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 2079 | video = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 2081 | acpi_video_bus_remove_notify_handler(video); |
| 2082 | acpi_video_bus_unregister_backlight(video); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | acpi_video_bus_put_devices(video); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | |
Aaron Lu | 67b662e | 2013-10-11 21:27:44 +0800 | [diff] [blame] | 2085 | mutex_lock(&video_list_lock); |
| 2086 | list_del(&video->entry); |
| 2087 | mutex_unlock(&video_list_lock); |
| 2088 | |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 2089 | kfree(video->attached_array); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | kfree(video); |
| 2091 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 2092 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | } |
| 2094 | |
Alan Cox | c6996bd | 2012-04-25 14:33:48 +0100 | [diff] [blame] | 2095 | static int __init is_i740(struct pci_dev *dev) |
| 2096 | { |
| 2097 | if (dev->device == 0x00D1) |
| 2098 | return 1; |
| 2099 | if (dev->device == 0x7000) |
| 2100 | return 1; |
| 2101 | return 0; |
| 2102 | } |
| 2103 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2104 | static int __init intel_opregion_present(void) |
| 2105 | { |
Alan Cox | c6996bd | 2012-04-25 14:33:48 +0100 | [diff] [blame] | 2106 | int opregion = 0; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2107 | struct pci_dev *dev = NULL; |
| 2108 | u32 address; |
| 2109 | |
| 2110 | for_each_pci_dev(dev) { |
| 2111 | if ((dev->class >> 8) != PCI_CLASS_DISPLAY_VGA) |
| 2112 | continue; |
| 2113 | if (dev->vendor != PCI_VENDOR_ID_INTEL) |
| 2114 | continue; |
Alan Cox | c6996bd | 2012-04-25 14:33:48 +0100 | [diff] [blame] | 2115 | /* We don't want to poke around undefined i740 registers */ |
| 2116 | if (is_i740(dev)) |
| 2117 | continue; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2118 | pci_read_config_dword(dev, 0xfc, &address); |
| 2119 | if (!address) |
| 2120 | continue; |
Alan Cox | c6996bd | 2012-04-25 14:33:48 +0100 | [diff] [blame] | 2121 | opregion = 1; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2122 | } |
Alan Cox | c6996bd | 2012-04-25 14:33:48 +0100 | [diff] [blame] | 2123 | return opregion; |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2124 | } |
| 2125 | |
Rafael J. Wysocki | 8e5c2b7 | 2013-07-25 21:43:39 +0200 | [diff] [blame] | 2126 | int acpi_video_register(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | { |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2128 | int ret = 0; |
Chris Wilson | 28d6340 | 2015-03-01 10:41:38 +0000 | [diff] [blame] | 2129 | |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2130 | mutex_lock(®ister_count_mutex); |
| 2131 | if (register_count) { |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2132 | /* |
Rafael J. Wysocki | 8e5c2b7 | 2013-07-25 21:43:39 +0200 | [diff] [blame] | 2133 | * if the function of acpi_video_register is already called, |
| 2134 | * don't register the acpi_vide_bus again and return no error. |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2135 | */ |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2136 | goto leave; |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | |
Hans de Goede | 5928c28 | 2017-12-23 19:41:47 +0100 | [diff] [blame] | 2139 | /* |
| 2140 | * We're seeing a lot of bogus backlight interfaces on newer machines |
| 2141 | * without a LCD such as desktops, servers and HDMI sticks. Checking |
| 2142 | * the lcd flag fixes this, so enable this on any machines which are |
| 2143 | * win8 ready (where we also prefer the native backlight driver, so |
| 2144 | * normally the acpi_video code should not register there anyways). |
| 2145 | */ |
| 2146 | if (only_lcd == -1) |
| 2147 | only_lcd = acpi_osi_is_win8(); |
| 2148 | |
Hans de Goede | 7ee33ba | 2015-06-16 16:27:53 +0200 | [diff] [blame] | 2149 | dmi_check_system(video_dmi_table); |
| 2150 | |
Chris Wilson | 28d6340 | 2015-03-01 10:41:38 +0000 | [diff] [blame] | 2151 | ret = acpi_bus_register_driver(&acpi_video_bus); |
| 2152 | if (ret) |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2153 | goto leave; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2155 | /* |
| 2156 | * When the acpi_video_bus is loaded successfully, increase |
| 2157 | * the counter reference. |
| 2158 | */ |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2159 | register_count = 1; |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2160 | |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2161 | leave: |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2162 | mutex_unlock(®ister_count_mutex); |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2163 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | } |
Rafael J. Wysocki | 8e5c2b7 | 2013-07-25 21:43:39 +0200 | [diff] [blame] | 2165 | EXPORT_SYMBOL(acpi_video_register); |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2166 | |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2167 | void acpi_video_unregister(void) |
| 2168 | { |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2169 | mutex_lock(®ister_count_mutex); |
| 2170 | if (register_count) { |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2171 | acpi_bus_unregister_driver(&acpi_video_bus); |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2172 | register_count = 0; |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2173 | } |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2174 | mutex_unlock(®ister_count_mutex); |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2175 | } |
| 2176 | EXPORT_SYMBOL(acpi_video_unregister); |
| 2177 | |
Hans de Goede | 1b7f37e | 2014-05-17 10:48:01 +0200 | [diff] [blame] | 2178 | void acpi_video_unregister_backlight(void) |
| 2179 | { |
| 2180 | struct acpi_video_bus *video; |
| 2181 | |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2182 | mutex_lock(®ister_count_mutex); |
| 2183 | if (register_count) { |
Hans de Goede | 2a8b18e | 2015-06-16 16:27:54 +0200 | [diff] [blame] | 2184 | mutex_lock(&video_list_lock); |
| 2185 | list_for_each_entry(video, &video_bus_head, entry) |
| 2186 | acpi_video_bus_unregister_backlight(video); |
| 2187 | mutex_unlock(&video_list_lock); |
| 2188 | } |
Hans de Goede | 970530c | 2016-01-14 09:41:45 +0100 | [diff] [blame] | 2189 | mutex_unlock(®ister_count_mutex); |
Hans de Goede | 1b7f37e | 2014-05-17 10:48:01 +0200 | [diff] [blame] | 2190 | } |
Hans de Goede | 1b7f37e | 2014-05-17 10:48:01 +0200 | [diff] [blame] | 2191 | |
Hans de Goede | 90b066b | 2015-12-22 19:09:48 +0100 | [diff] [blame] | 2192 | bool acpi_video_handles_brightness_key_presses(void) |
| 2193 | { |
| 2194 | bool have_video_busses; |
| 2195 | |
| 2196 | mutex_lock(&video_list_lock); |
| 2197 | have_video_busses = !list_empty(&video_bus_head); |
| 2198 | mutex_unlock(&video_list_lock); |
| 2199 | |
Hans de Goede | 05bc59a | 2015-12-22 19:09:51 +0100 | [diff] [blame] | 2200 | return have_video_busses && |
| 2201 | (report_key_events & REPORT_BRIGHTNESS_KEY_EVENTS); |
Hans de Goede | 90b066b | 2015-12-22 19:09:48 +0100 | [diff] [blame] | 2202 | } |
| 2203 | EXPORT_SYMBOL(acpi_video_handles_brightness_key_presses); |
| 2204 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2205 | /* |
| 2206 | * This is kind of nasty. Hardware using Intel chipsets may require |
| 2207 | * the video opregion code to be run first in order to initialise |
| 2208 | * state before any ACPI video calls are made. To handle this we defer |
| 2209 | * registration of the video class until the opregion code has run. |
| 2210 | */ |
| 2211 | |
| 2212 | static int __init acpi_video_init(void) |
| 2213 | { |
Chris Wilson | 6e17cb1 | 2015-03-01 10:41:37 +0000 | [diff] [blame] | 2214 | /* |
| 2215 | * Let the module load even if ACPI is disabled (e.g. due to |
| 2216 | * a broken BIOS) so that i915.ko can still be loaded on such |
| 2217 | * old systems without an AcpiOpRegion. |
| 2218 | * |
| 2219 | * acpi_video_register() will report -ENODEV later as well due |
| 2220 | * to acpi_disabled when i915.ko tries to register itself afterwards. |
| 2221 | */ |
| 2222 | if (acpi_disabled) |
| 2223 | return 0; |
| 2224 | |
Matthew Garrett | 74a365b | 2009-03-19 21:35:39 +0000 | [diff] [blame] | 2225 | if (intel_opregion_present()) |
| 2226 | return 0; |
| 2227 | |
| 2228 | return acpi_video_register(); |
| 2229 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2230 | |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2231 | static void __exit acpi_video_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | { |
Hans de Goede | 93a291d | 2015-06-16 16:27:52 +0200 | [diff] [blame] | 2233 | acpi_video_detect_exit(); |
Zhao Yakui | 86e437f | 2009-06-16 11:23:13 +0800 | [diff] [blame] | 2234 | acpi_video_unregister(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 2236 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | |
| 2239 | module_init(acpi_video_init); |
| 2240 | module_exit(acpi_video_exit); |