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