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