| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1 | /*-*-linux-c-*-*/ |
| 2 | |
| 3 | /* |
| Jonathan Woithe | 409a3e9 | 2012-03-27 13:01:01 +1030 | [diff] [blame] | 4 | Copyright (C) 2007,2008 Jonathan Woithe <jwoithe@just42.net> |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 5 | Copyright (C) 2008 Peter Gruber <nokos@gmx.net> |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 6 | Copyright (C) 2008 Tony Vroon <tony@linx.net> |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 7 | Based on earlier work: |
| 8 | Copyright (C) 2003 Shane Spencer <shane@bogomip.com> |
| 9 | Adrian Yee <brewt-fujitsu@brewt.org> |
| 10 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 11 | Templated from msi-laptop.c and thinkpad_acpi.c which is copyright |
| 12 | by its respective authors. |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 13 | |
| 14 | This program is free software; you can redistribute it and/or modify |
| 15 | it under the terms of the GNU General Public License as published by |
| 16 | the Free Software Foundation; either version 2 of the License, or |
| 17 | (at your option) any later version. |
| 18 | |
| 19 | This program is distributed in the hope that it will be useful, but |
| 20 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 22 | General Public License for more details. |
| 23 | |
| 24 | You should have received a copy of the GNU General Public License |
| 25 | along with this program; if not, write to the Free Software |
| 26 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 27 | 02110-1301, USA. |
| 28 | */ |
| 29 | |
| 30 | /* |
| 31 | * fujitsu-laptop.c - Fujitsu laptop support, providing access to additional |
| 32 | * features made available on a range of Fujitsu laptops including the |
| 33 | * P2xxx/P5xxx/S6xxx/S7xxx series. |
| 34 | * |
| 35 | * This driver exports a few files in /sys/devices/platform/fujitsu-laptop/; |
| 36 | * others may be added at a later date. |
| 37 | * |
| 38 | * lcd_level - Screen brightness: contains a single integer in the |
| 39 | * range 0..7. (rw) |
| 40 | * |
| 41 | * In addition to these platform device attributes the driver |
| 42 | * registers itself in the Linux backlight control subsystem and is |
| 43 | * available to userspace under /sys/class/backlight/fujitsu-laptop/. |
| 44 | * |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 45 | * Hotkeys present on certain Fujitsu laptops (eg: the S6xxx series) are |
| 46 | * also supported by this driver. |
| 47 | * |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 48 | * This driver has been tested on a Fujitsu Lifebook S6410, S7020 and |
| 49 | * P8010. It should work on most P-series and S-series Lifebooks, but |
| 50 | * YMMV. |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 51 | * |
| 52 | * The module parameter use_alt_lcd_levels switches between different ACPI |
| 53 | * brightness controls which are used by different Fujitsu laptops. In most |
| 54 | * cases the correct method is automatically detected. "use_alt_lcd_levels=1" |
| 55 | * is applicable for a Fujitsu Lifebook S6410 if autodetection fails. |
| 56 | * |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 57 | */ |
| 58 | |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 59 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 60 | |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 61 | #include <linux/module.h> |
| 62 | #include <linux/kernel.h> |
| 63 | #include <linux/init.h> |
| 64 | #include <linux/acpi.h> |
| 65 | #include <linux/dmi.h> |
| 66 | #include <linux/backlight.h> |
| Michael Karcher | e8549e2 | 2015-01-18 20:28:46 +0100 | [diff] [blame] | 67 | #include <linux/fb.h> |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 68 | #include <linux/input.h> |
| 69 | #include <linux/kfifo.h> |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 70 | #include <linux/platform_device.h> |
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 71 | #include <linux/slab.h> |
| Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 72 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 73 | #include <linux/leds.h> |
| 74 | #endif |
| Hans de Goede | 413226f | 2015-06-16 16:28:03 +0200 | [diff] [blame] | 75 | #include <acpi/video.h> |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 76 | |
| Jonathan Woithe | 84a6ce2 | 2009-07-31 18:16:59 +0930 | [diff] [blame] | 77 | #define FUJITSU_DRIVER_VERSION "0.6.0" |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 78 | |
| 79 | #define FUJITSU_LCD_N_LEVELS 8 |
| 80 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 81 | #define ACPI_FUJITSU_CLASS "fujitsu" |
| 82 | #define ACPI_FUJITSU_BL_HID "FUJ02B1" |
| 83 | #define ACPI_FUJITSU_BL_DRIVER_NAME "Fujitsu laptop FUJ02B1 ACPI brightness driver" |
| 84 | #define ACPI_FUJITSU_BL_DEVICE_NAME "Fujitsu FUJ02B1" |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 85 | #define ACPI_FUJITSU_LAPTOP_HID "FUJ02E3" |
| 86 | #define ACPI_FUJITSU_LAPTOP_DRIVER_NAME "Fujitsu laptop FUJ02E3 ACPI hotkeys driver" |
| 87 | #define ACPI_FUJITSU_LAPTOP_DEVICE_NAME "Fujitsu FUJ02E3" |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 88 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 89 | #define ACPI_FUJITSU_NOTIFY_CODE1 0x80 |
| 90 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 91 | /* FUNC interface - command values */ |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 92 | #define FUNC_FLAGS 0x1000 |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 93 | #define FUNC_LEDS 0x1001 |
| 94 | #define FUNC_BUTTONS 0x1002 |
| 95 | #define FUNC_BACKLIGHT 0x1004 |
| 96 | |
| 97 | /* FUNC interface - responses */ |
| 98 | #define UNSUPPORTED_CMD 0x80000000 |
| 99 | |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 100 | /* FUNC interface - status flags */ |
| 101 | #define FLAG_RFKILL 0x020 |
| 102 | #define FLAG_LID 0x100 |
| 103 | #define FLAG_DOCK 0x200 |
| 104 | |
| Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 105 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 106 | /* FUNC interface - LED control */ |
| 107 | #define FUNC_LED_OFF 0x1 |
| 108 | #define FUNC_LED_ON 0x30001 |
| 109 | #define KEYBOARD_LAMPS 0x100 |
| 110 | #define LOGOLAMP_POWERON 0x2000 |
| 111 | #define LOGOLAMP_ALWAYS 0x4000 |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 112 | #define RADIO_LED_ON 0x20 |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 113 | #define ECO_LED 0x10000 |
| 114 | #define ECO_LED_ON 0x80000 |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 115 | #endif |
| 116 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 117 | /* Hotkey details */ |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 118 | #define KEY1_CODE 0x410 /* codes for the keys in the GIRB register */ |
| 119 | #define KEY2_CODE 0x411 |
| 120 | #define KEY3_CODE 0x412 |
| 121 | #define KEY4_CODE 0x413 |
| Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 122 | #define KEY5_CODE 0x420 |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 123 | |
| 124 | #define MAX_HOTKEY_RINGBUFFER_SIZE 100 |
| 125 | #define RINGBUFFERSIZE 40 |
| 126 | |
| 127 | /* Debugging */ |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 128 | #define FUJLAPTOP_DBG_ERROR 0x0001 |
| 129 | #define FUJLAPTOP_DBG_WARN 0x0002 |
| 130 | #define FUJLAPTOP_DBG_INFO 0x0004 |
| 131 | #define FUJLAPTOP_DBG_TRACE 0x0008 |
| 132 | |
| Jean Delvare | c4960cf | 2014-06-16 11:55:13 +0200 | [diff] [blame] | 133 | #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG |
| 134 | #define vdbg_printk(a_dbg_level, format, arg...) \ |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 135 | do { if (dbg_level & a_dbg_level) \ |
| Michał Kępień | 98020a4 | 2016-06-23 12:02:47 +0200 | [diff] [blame] | 136 | printk(KERN_DEBUG pr_fmt("%s: " format), __func__, ## arg); \ |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 137 | } while (0) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 138 | #else |
| Jean Delvare | c4960cf | 2014-06-16 11:55:13 +0200 | [diff] [blame] | 139 | #define vdbg_printk(a_dbg_level, format, arg...) \ |
| 140 | do { } while (0) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 141 | #endif |
| 142 | |
| 143 | /* Device controlling the backlight and associated keys */ |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 144 | struct fujitsu_bl { |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 145 | acpi_handle acpi_handle; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 146 | struct acpi_device *dev; |
| 147 | struct input_dev *input; |
| 148 | char phys[32]; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 149 | struct backlight_device *bl_device; |
| 150 | struct platform_device *pf_device; |
| Michał Kępień | b5df36c | 2016-02-24 14:23:32 +0100 | [diff] [blame] | 151 | int keycode1, keycode2, keycode3, keycode4, keycode5; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 152 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 153 | unsigned int max_brightness; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 154 | unsigned int brightness_changed; |
| 155 | unsigned int brightness_level; |
| 156 | }; |
| 157 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 158 | static struct fujitsu_bl *fujitsu_bl; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 159 | static int use_alt_lcd_levels = -1; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 160 | static int disable_brightness_adjust = -1; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 161 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 162 | /* Device used to access hotkeys and other features on the laptop */ |
| 163 | struct fujitsu_laptop { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 164 | acpi_handle acpi_handle; |
| 165 | struct acpi_device *dev; |
| 166 | struct input_dev *input; |
| 167 | char phys[32]; |
| 168 | struct platform_device *pf_device; |
| Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 169 | struct kfifo fifo; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 170 | spinlock_t fifo_lock; |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 171 | int flags_supported; |
| 172 | int flags_state; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 173 | int logolamp_registered; |
| 174 | int kblamps_registered; |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 175 | int radio_led_registered; |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 176 | int eco_led_registered; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 177 | }; |
| 178 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 179 | static struct fujitsu_laptop *fujitsu_laptop; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 180 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 181 | static void acpi_fujitsu_laptop_notify(struct acpi_device *device, u32 event); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 182 | |
| Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 183 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 184 | static enum led_brightness logolamp_get(struct led_classdev *cdev); |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 185 | static int logolamp_set(struct led_classdev *cdev, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 186 | enum led_brightness brightness); |
| 187 | |
| Axel Lin | 67af711 | 2010-07-20 15:19:45 -0700 | [diff] [blame] | 188 | static struct led_classdev logolamp_led = { |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 189 | .name = "fujitsu::logolamp", |
| 190 | .brightness_get = logolamp_get, |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 191 | .brightness_set_blocking = logolamp_set |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 192 | }; |
| 193 | |
| 194 | static enum led_brightness kblamps_get(struct led_classdev *cdev); |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 195 | static int kblamps_set(struct led_classdev *cdev, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 196 | enum led_brightness brightness); |
| 197 | |
| Axel Lin | 67af711 | 2010-07-20 15:19:45 -0700 | [diff] [blame] | 198 | static struct led_classdev kblamps_led = { |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 199 | .name = "fujitsu::kblamps", |
| 200 | .brightness_get = kblamps_get, |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 201 | .brightness_set_blocking = kblamps_set |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 202 | }; |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 203 | |
| 204 | static enum led_brightness radio_led_get(struct led_classdev *cdev); |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 205 | static int radio_led_set(struct led_classdev *cdev, |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 206 | enum led_brightness brightness); |
| 207 | |
| 208 | static struct led_classdev radio_led = { |
| 209 | .name = "fujitsu::radio_led", |
| Micha? K?pie? | 5f25b00 | 2016-12-16 15:46:03 +0100 | [diff] [blame] | 210 | .default_trigger = "rfkill-any", |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 211 | .brightness_get = radio_led_get, |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 212 | .brightness_set_blocking = radio_led_set |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 213 | }; |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 214 | |
| 215 | static enum led_brightness eco_led_get(struct led_classdev *cdev); |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 216 | static int eco_led_set(struct led_classdev *cdev, |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 217 | enum led_brightness brightness); |
| 218 | |
| 219 | static struct led_classdev eco_led = { |
| 220 | .name = "fujitsu::eco_led", |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 221 | .brightness_get = eco_led_get, |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 222 | .brightness_set_blocking = eco_led_set |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 223 | }; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 224 | #endif |
| 225 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 226 | #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG |
| 227 | static u32 dbg_level = 0x03; |
| 228 | #endif |
| 229 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 230 | static void acpi_fujitsu_bl_notify(struct acpi_device *device, u32 event); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 231 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 232 | /* Fujitsu ACPI interface function */ |
| 233 | |
| 234 | static int call_fext_func(int cmd, int arg0, int arg1, int arg2) |
| 235 | { |
| 236 | acpi_status status = AE_OK; |
| 237 | union acpi_object params[4] = { |
| 238 | { .type = ACPI_TYPE_INTEGER }, |
| 239 | { .type = ACPI_TYPE_INTEGER }, |
| 240 | { .type = ACPI_TYPE_INTEGER }, |
| 241 | { .type = ACPI_TYPE_INTEGER } |
| 242 | }; |
| 243 | struct acpi_object_list arg_list = { 4, ¶ms[0] }; |
| Zhang Rui | 29c29a9 | 2013-09-03 08:32:12 +0800 | [diff] [blame] | 244 | unsigned long long value; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 245 | acpi_handle handle = NULL; |
| 246 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 247 | status = acpi_get_handle(fujitsu_laptop->acpi_handle, "FUNC", &handle); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 248 | if (ACPI_FAILURE(status)) { |
| 249 | vdbg_printk(FUJLAPTOP_DBG_ERROR, |
| 250 | "FUNC interface is not present\n"); |
| 251 | return -ENODEV; |
| 252 | } |
| 253 | |
| 254 | params[0].integer.value = cmd; |
| 255 | params[1].integer.value = arg0; |
| 256 | params[2].integer.value = arg1; |
| 257 | params[3].integer.value = arg2; |
| 258 | |
| Zhang Rui | 29c29a9 | 2013-09-03 08:32:12 +0800 | [diff] [blame] | 259 | status = acpi_evaluate_integer(handle, NULL, &arg_list, &value); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 260 | if (ACPI_FAILURE(status)) { |
| 261 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 262 | "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) call failed\n", |
| 263 | cmd, arg0, arg1, arg2); |
| 264 | return -ENODEV; |
| 265 | } |
| 266 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 267 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 268 | "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n", |
| Zhang Rui | 29c29a9 | 2013-09-03 08:32:12 +0800 | [diff] [blame] | 269 | cmd, arg0, arg1, arg2, (int)value); |
| 270 | return value; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 271 | } |
| 272 | |
| Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 273 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 274 | /* LED class callbacks */ |
| 275 | |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 276 | static int logolamp_set(struct led_classdev *cdev, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 277 | enum led_brightness brightness) |
| 278 | { |
| Michał Kępień | dcb50b3 | 2017-01-09 14:14:16 +0100 | [diff] [blame] | 279 | int poweron = FUNC_LED_ON, always = FUNC_LED_ON; |
| 280 | int ret; |
| 281 | |
| 282 | if (brightness < LED_HALF) |
| 283 | poweron = FUNC_LED_OFF; |
| 284 | |
| 285 | if (brightness < LED_FULL) |
| 286 | always = FUNC_LED_OFF; |
| 287 | |
| 288 | ret = call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, poweron); |
| 289 | if (ret < 0) |
| 290 | return ret; |
| 291 | |
| 292 | return call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, always); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 295 | static int kblamps_set(struct led_classdev *cdev, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 296 | enum led_brightness brightness) |
| 297 | { |
| 298 | if (brightness >= LED_FULL) |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 299 | return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_ON); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 300 | else |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 301 | return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_OFF); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 302 | } |
| 303 | |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 304 | static int radio_led_set(struct led_classdev *cdev, |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 305 | enum led_brightness brightness) |
| 306 | { |
| 307 | if (brightness >= LED_FULL) |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 308 | return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, RADIO_LED_ON); |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 309 | else |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 310 | return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, 0x0); |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 311 | } |
| 312 | |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 313 | static int eco_led_set(struct led_classdev *cdev, |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 314 | enum led_brightness brightness) |
| 315 | { |
| 316 | int curr; |
| 317 | |
| 318 | curr = call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0); |
| Matej Groma | 6967893 | 2016-07-04 12:04:12 +0200 | [diff] [blame] | 319 | if (brightness >= LED_FULL) |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 320 | return call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr | ECO_LED_ON); |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 321 | else |
| Micha? K?pie? | a608a9d | 2016-12-23 10:00:08 +0100 | [diff] [blame] | 322 | return call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr & ~ECO_LED_ON); |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 323 | } |
| 324 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 325 | static enum led_brightness logolamp_get(struct led_classdev *cdev) |
| 326 | { |
| Michał Kępień | 5c461e8 | 2017-01-09 14:14:17 +0100 | [diff] [blame] | 327 | int ret; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 328 | |
| Michał Kępień | 5c461e8 | 2017-01-09 14:14:17 +0100 | [diff] [blame] | 329 | ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_ALWAYS, 0x0); |
| 330 | if (ret == FUNC_LED_ON) |
| 331 | return LED_FULL; |
| 332 | |
| 333 | ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_POWERON, 0x0); |
| 334 | if (ret == FUNC_LED_ON) |
| 335 | return LED_HALF; |
| 336 | |
| 337 | return LED_OFF; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | static enum led_brightness kblamps_get(struct led_classdev *cdev) |
| 341 | { |
| 342 | enum led_brightness brightness = LED_OFF; |
| 343 | |
| 344 | if (call_fext_func(FUNC_LEDS, 0x2, KEYBOARD_LAMPS, 0x0) == FUNC_LED_ON) |
| 345 | brightness = LED_FULL; |
| 346 | |
| 347 | return brightness; |
| 348 | } |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 349 | |
| 350 | static enum led_brightness radio_led_get(struct led_classdev *cdev) |
| 351 | { |
| 352 | enum led_brightness brightness = LED_OFF; |
| 353 | |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 354 | if (call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0) & RADIO_LED_ON) |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 355 | brightness = LED_FULL; |
| 356 | |
| 357 | return brightness; |
| 358 | } |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 359 | |
| 360 | static enum led_brightness eco_led_get(struct led_classdev *cdev) |
| 361 | { |
| 362 | enum led_brightness brightness = LED_OFF; |
| 363 | |
| 364 | if (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) & ECO_LED_ON) |
| Matej Groma | 6967893 | 2016-07-04 12:04:12 +0200 | [diff] [blame] | 365 | brightness = LED_FULL; |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 366 | |
| 367 | return brightness; |
| 368 | } |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 369 | #endif |
| 370 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 371 | /* Hardware access for LCD brightness control */ |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 372 | |
| 373 | static int set_lcd_level(int level) |
| 374 | { |
| 375 | acpi_status status = AE_OK; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 376 | acpi_handle handle = NULL; |
| 377 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 378 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBLL [%d]\n", |
| 379 | level); |
| 380 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 381 | if (level < 0 || level >= fujitsu_bl->max_brightness) |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 382 | return -EINVAL; |
| 383 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 384 | status = acpi_get_handle(fujitsu_bl->acpi_handle, "SBLL", &handle); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 385 | if (ACPI_FAILURE(status)) { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 386 | vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBLL not present\n"); |
| 387 | return -ENODEV; |
| 388 | } |
| 389 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 390 | |
| Zhang Rui | 6c7fe47a | 2013-09-03 08:31:52 +0800 | [diff] [blame] | 391 | status = acpi_execute_simple_method(handle, NULL, level); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 392 | if (ACPI_FAILURE(status)) |
| 393 | return -ENODEV; |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static int set_lcd_level_alt(int level) |
| 399 | { |
| 400 | acpi_status status = AE_OK; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 401 | acpi_handle handle = NULL; |
| 402 | |
| 403 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBL2 [%d]\n", |
| 404 | level); |
| 405 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 406 | if (level < 0 || level >= fujitsu_bl->max_brightness) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 407 | return -EINVAL; |
| 408 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 409 | status = acpi_get_handle(fujitsu_bl->acpi_handle, "SBL2", &handle); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 410 | if (ACPI_FAILURE(status)) { |
| 411 | vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBL2 not present\n"); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 412 | return -ENODEV; |
| 413 | } |
| 414 | |
| Zhang Rui | 6c7fe47a | 2013-09-03 08:31:52 +0800 | [diff] [blame] | 415 | status = acpi_execute_simple_method(handle, NULL, level); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 416 | if (ACPI_FAILURE(status)) |
| 417 | return -ENODEV; |
| 418 | |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | static int get_lcd_level(void) |
| 423 | { |
| Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 424 | unsigned long long state = 0; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 425 | acpi_status status = AE_OK; |
| 426 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 427 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "get lcd level via GBLL\n"); |
| 428 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 429 | status = acpi_evaluate_integer(fujitsu_bl->acpi_handle, "GBLL", NULL, |
| 430 | &state); |
| Jonathan Woithe | 3b1c37c | 2009-12-23 09:19:42 +1030 | [diff] [blame] | 431 | if (ACPI_FAILURE(status)) |
| 432 | return 0; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 433 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 434 | fujitsu_bl->brightness_level = state & 0x0fffffff; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 435 | |
| 436 | if (state & 0x80000000) |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 437 | fujitsu_bl->brightness_changed = 1; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 438 | else |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 439 | fujitsu_bl->brightness_changed = 0; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 440 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 441 | return fujitsu_bl->brightness_level; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | static int get_max_brightness(void) |
| 445 | { |
| Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 446 | unsigned long long state = 0; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 447 | acpi_status status = AE_OK; |
| 448 | |
| 449 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "get max lcd level via RBLL\n"); |
| 450 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 451 | status = acpi_evaluate_integer(fujitsu_bl->acpi_handle, "RBLL", NULL, |
| 452 | &state); |
| Jonathan Woithe | 3b1c37c | 2009-12-23 09:19:42 +1030 | [diff] [blame] | 453 | if (ACPI_FAILURE(status)) |
| 454 | return -1; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 455 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 456 | fujitsu_bl->max_brightness = state; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 457 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 458 | return fujitsu_bl->max_brightness; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 459 | } |
| 460 | |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 461 | /* Backlight device stuff */ |
| 462 | |
| 463 | static int bl_get_brightness(struct backlight_device *b) |
| 464 | { |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 465 | return get_lcd_level(); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | static int bl_update_status(struct backlight_device *b) |
| 469 | { |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 470 | int ret; |
| Michael Karcher | e8549e2 | 2015-01-18 20:28:46 +0100 | [diff] [blame] | 471 | if (b->props.power == FB_BLANK_POWERDOWN) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 472 | ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 473 | else |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 474 | ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0); |
| 475 | if (ret != 0) |
| 476 | vdbg_printk(FUJLAPTOP_DBG_ERROR, |
| 477 | "Unable to adjust backlight power, error code %i\n", |
| 478 | ret); |
| 479 | |
| 480 | if (use_alt_lcd_levels) |
| 481 | ret = set_lcd_level_alt(b->props.brightness); |
| 482 | else |
| 483 | ret = set_lcd_level(b->props.brightness); |
| 484 | if (ret != 0) |
| 485 | vdbg_printk(FUJLAPTOP_DBG_ERROR, |
| 486 | "Unable to adjust LCD brightness, error code %i\n", |
| 487 | ret); |
| 488 | return ret; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 489 | } |
| 490 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 491 | static const struct backlight_ops fujitsu_bl_ops = { |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 492 | .get_brightness = bl_get_brightness, |
| 493 | .update_status = bl_update_status, |
| 494 | }; |
| 495 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 496 | /* Platform LCD brightness device */ |
| 497 | |
| 498 | static ssize_t |
| 499 | show_max_brightness(struct device *dev, |
| 500 | struct device_attribute *attr, char *buf) |
| 501 | { |
| 502 | |
| 503 | int ret; |
| 504 | |
| 505 | ret = get_max_brightness(); |
| 506 | if (ret < 0) |
| 507 | return ret; |
| 508 | |
| 509 | return sprintf(buf, "%i\n", ret); |
| 510 | } |
| 511 | |
| 512 | static ssize_t |
| 513 | show_brightness_changed(struct device *dev, |
| 514 | struct device_attribute *attr, char *buf) |
| 515 | { |
| 516 | |
| 517 | int ret; |
| 518 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 519 | ret = fujitsu_bl->brightness_changed; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 520 | if (ret < 0) |
| 521 | return ret; |
| 522 | |
| 523 | return sprintf(buf, "%i\n", ret); |
| 524 | } |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 525 | |
| 526 | static ssize_t show_lcd_level(struct device *dev, |
| 527 | struct device_attribute *attr, char *buf) |
| 528 | { |
| 529 | |
| 530 | int ret; |
| 531 | |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 532 | ret = get_lcd_level(); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 533 | if (ret < 0) |
| 534 | return ret; |
| 535 | |
| 536 | return sprintf(buf, "%i\n", ret); |
| 537 | } |
| 538 | |
| 539 | static ssize_t store_lcd_level(struct device *dev, |
| 540 | struct device_attribute *attr, const char *buf, |
| 541 | size_t count) |
| 542 | { |
| 543 | |
| 544 | int level, ret; |
| 545 | |
| 546 | if (sscanf(buf, "%i", &level) != 1 |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 547 | || (level < 0 || level >= fujitsu_bl->max_brightness)) |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 548 | return -EINVAL; |
| 549 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 550 | if (use_alt_lcd_levels) |
| 551 | ret = set_lcd_level_alt(level); |
| 552 | else |
| 553 | ret = set_lcd_level(level); |
| 554 | if (ret < 0) |
| 555 | return ret; |
| 556 | |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 557 | ret = get_lcd_level(); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 558 | if (ret < 0) |
| 559 | return ret; |
| 560 | |
| 561 | return count; |
| 562 | } |
| 563 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 564 | static ssize_t |
| 565 | ignore_store(struct device *dev, |
| 566 | struct device_attribute *attr, const char *buf, size_t count) |
| 567 | { |
| 568 | return count; |
| 569 | } |
| 570 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 571 | static ssize_t |
| 572 | show_lid_state(struct device *dev, |
| 573 | struct device_attribute *attr, char *buf) |
| 574 | { |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 575 | if (!(fujitsu_laptop->flags_supported & FLAG_LID)) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 576 | return sprintf(buf, "unknown\n"); |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 577 | if (fujitsu_laptop->flags_state & FLAG_LID) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 578 | return sprintf(buf, "open\n"); |
| 579 | else |
| 580 | return sprintf(buf, "closed\n"); |
| 581 | } |
| 582 | |
| 583 | static ssize_t |
| 584 | show_dock_state(struct device *dev, |
| 585 | struct device_attribute *attr, char *buf) |
| 586 | { |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 587 | if (!(fujitsu_laptop->flags_supported & FLAG_DOCK)) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 588 | return sprintf(buf, "unknown\n"); |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 589 | if (fujitsu_laptop->flags_state & FLAG_DOCK) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 590 | return sprintf(buf, "docked\n"); |
| 591 | else |
| 592 | return sprintf(buf, "undocked\n"); |
| 593 | } |
| 594 | |
| 595 | static ssize_t |
| 596 | show_radios_state(struct device *dev, |
| 597 | struct device_attribute *attr, char *buf) |
| 598 | { |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 599 | if (!(fujitsu_laptop->flags_supported & FLAG_RFKILL)) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 600 | return sprintf(buf, "unknown\n"); |
| Alan Jenkins | d3dd448 | 2017-02-08 14:46:28 +0100 | [diff] [blame^] | 601 | if (fujitsu_laptop->flags_state & FLAG_RFKILL) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 602 | return sprintf(buf, "on\n"); |
| 603 | else |
| 604 | return sprintf(buf, "killed\n"); |
| 605 | } |
| 606 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 607 | static DEVICE_ATTR(max_brightness, 0444, show_max_brightness, ignore_store); |
| 608 | static DEVICE_ATTR(brightness_changed, 0444, show_brightness_changed, |
| 609 | ignore_store); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 610 | static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 611 | static DEVICE_ATTR(lid, 0444, show_lid_state, ignore_store); |
| 612 | static DEVICE_ATTR(dock, 0444, show_dock_state, ignore_store); |
| 613 | static DEVICE_ATTR(radios, 0444, show_radios_state, ignore_store); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 614 | |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 615 | static struct attribute *fujitsu_pf_attributes[] = { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 616 | &dev_attr_brightness_changed.attr, |
| 617 | &dev_attr_max_brightness.attr, |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 618 | &dev_attr_lcd_level.attr, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 619 | &dev_attr_lid.attr, |
| 620 | &dev_attr_dock.attr, |
| 621 | &dev_attr_radios.attr, |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 622 | NULL |
| 623 | }; |
| 624 | |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 625 | static struct attribute_group fujitsu_pf_attribute_group = { |
| 626 | .attrs = fujitsu_pf_attributes |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 627 | }; |
| 628 | |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 629 | static struct platform_driver fujitsu_pf_driver = { |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 630 | .driver = { |
| 631 | .name = "fujitsu-laptop", |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 632 | } |
| 633 | }; |
| 634 | |
| Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 635 | static void __init dmi_check_cb_common(const struct dmi_system_id *id) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 636 | { |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 637 | pr_info("Identified laptop model '%s'\n", id->ident); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 638 | if (use_alt_lcd_levels == -1) { |
| Zhang Rui | dd13b9a | 2013-09-03 08:32:03 +0800 | [diff] [blame] | 639 | if (acpi_has_method(NULL, |
| 640 | "\\_SB.PCI0.LPCB.FJEX.SBL2")) |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 641 | use_alt_lcd_levels = 1; |
| 642 | else |
| 643 | use_alt_lcd_levels = 0; |
| 644 | vdbg_printk(FUJLAPTOP_DBG_TRACE, "auto-detected usealt as " |
| 645 | "%i\n", use_alt_lcd_levels); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 646 | } |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 647 | } |
| 648 | |
| Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 649 | static int __init dmi_check_cb_s6410(const struct dmi_system_id *id) |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 650 | { |
| 651 | dmi_check_cb_common(id); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 652 | fujitsu_bl->keycode1 = KEY_SCREENLOCK; /* "Lock" */ |
| 653 | fujitsu_bl->keycode2 = KEY_HELP; /* "Mobility Center" */ |
| Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 654 | return 1; |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 655 | } |
| 656 | |
| Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 657 | static int __init dmi_check_cb_s6420(const struct dmi_system_id *id) |
| Tony Vroon | 56960b5 | 2008-11-09 04:20:05 +0000 | [diff] [blame] | 658 | { |
| 659 | dmi_check_cb_common(id); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 660 | fujitsu_bl->keycode1 = KEY_SCREENLOCK; /* "Lock" */ |
| 661 | fujitsu_bl->keycode2 = KEY_HELP; /* "Mobility Center" */ |
| Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 662 | return 1; |
| Tony Vroon | 56960b5 | 2008-11-09 04:20:05 +0000 | [diff] [blame] | 663 | } |
| 664 | |
| Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 665 | static int __init dmi_check_cb_p8010(const struct dmi_system_id *id) |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 666 | { |
| 667 | dmi_check_cb_common(id); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 668 | fujitsu_bl->keycode1 = KEY_HELP; /* "Support" */ |
| 669 | fujitsu_bl->keycode3 = KEY_SWITCHVIDEOMODE; /* "Presentation" */ |
| 670 | fujitsu_bl->keycode4 = KEY_WWW; /* "Internet" */ |
| Axel Lin | 80183a4 | 2010-07-20 15:19:40 -0700 | [diff] [blame] | 671 | return 1; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 672 | } |
| 673 | |
| Mathias Krause | fbe9b79 | 2014-07-16 19:43:11 +0200 | [diff] [blame] | 674 | static const struct dmi_system_id fujitsu_dmi_table[] __initconst = { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 675 | { |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 676 | .ident = "Fujitsu Siemens S6410", |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 677 | .matches = { |
| 678 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 679 | DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"), |
| 680 | }, |
| 681 | .callback = dmi_check_cb_s6410}, |
| Jonathan Woithe | d8196a9 | 2008-08-29 11:06:21 +0930 | [diff] [blame] | 682 | { |
| Tony Vroon | 56960b5 | 2008-11-09 04:20:05 +0000 | [diff] [blame] | 683 | .ident = "Fujitsu Siemens S6420", |
| 684 | .matches = { |
| 685 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 686 | DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"), |
| 687 | }, |
| 688 | .callback = dmi_check_cb_s6420}, |
| 689 | { |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 690 | .ident = "Fujitsu LifeBook P8010", |
| Jonathan Woithe | d8196a9 | 2008-08-29 11:06:21 +0930 | [diff] [blame] | 691 | .matches = { |
| 692 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), |
| 693 | DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P8010"), |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 694 | }, |
| 695 | .callback = dmi_check_cb_p8010}, |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 696 | {} |
| 697 | }; |
| 698 | |
| 699 | /* ACPI device for LCD brightness control */ |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 700 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 701 | static int acpi_fujitsu_bl_add(struct acpi_device *device) |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 702 | { |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 703 | int state = 0; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 704 | struct input_dev *input; |
| 705 | int error; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 706 | |
| 707 | if (!device) |
| 708 | return -EINVAL; |
| 709 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 710 | fujitsu_bl->acpi_handle = device->handle; |
| 711 | sprintf(acpi_device_name(device), "%s", ACPI_FUJITSU_BL_DEVICE_NAME); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 712 | sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 713 | device->driver_data = fujitsu_bl; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 714 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 715 | fujitsu_bl->input = input = input_allocate_device(); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 716 | if (!input) { |
| 717 | error = -ENOMEM; |
| Bjorn Helgaas | 700b672 | 2009-04-07 15:37:16 +0000 | [diff] [blame] | 718 | goto err_stop; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 719 | } |
| 720 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 721 | snprintf(fujitsu_bl->phys, sizeof(fujitsu_bl->phys), |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 722 | "%s/video/input0", acpi_device_hid(device)); |
| 723 | |
| 724 | input->name = acpi_device_name(device); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 725 | input->phys = fujitsu_bl->phys; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 726 | input->id.bustype = BUS_HOST; |
| 727 | input->id.product = 0x06; |
| 728 | input->dev.parent = &device->dev; |
| 729 | input->evbit[0] = BIT(EV_KEY); |
| 730 | set_bit(KEY_BRIGHTNESSUP, input->keybit); |
| 731 | set_bit(KEY_BRIGHTNESSDOWN, input->keybit); |
| 732 | set_bit(KEY_UNKNOWN, input->keybit); |
| 733 | |
| 734 | error = input_register_device(input); |
| 735 | if (error) |
| 736 | goto err_free_input_dev; |
| 737 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 738 | error = acpi_bus_update_power(fujitsu_bl->acpi_handle, &state); |
| Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 739 | if (error) { |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 740 | pr_err("Error reading power state\n"); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 741 | goto err_unregister_input_dev; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 742 | } |
| 743 | |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 744 | pr_info("ACPI: %s [%s] (%s)\n", |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 745 | acpi_device_name(device), acpi_device_bid(device), |
| 746 | !device->power.state ? "on" : "off"); |
| 747 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 748 | fujitsu_bl->dev = device; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 749 | |
| Zhang Rui | dd13b9a | 2013-09-03 08:32:03 +0800 | [diff] [blame] | 750 | if (acpi_has_method(device->handle, METHOD_NAME__INI)) { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 751 | vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n"); |
| 752 | if (ACPI_FAILURE |
| 753 | (acpi_evaluate_object |
| 754 | (device->handle, METHOD_NAME__INI, NULL, NULL))) |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 755 | pr_err("_INI Method failed\n"); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | /* do config (detect defaults) */ |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 759 | use_alt_lcd_levels = use_alt_lcd_levels == 1 ? 1 : 0; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 760 | disable_brightness_adjust = disable_brightness_adjust == 1 ? 1 : 0; |
| 761 | vdbg_printk(FUJLAPTOP_DBG_INFO, |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 762 | "config: [alt interface: %d], [adjust disable: %d]\n", |
| 763 | use_alt_lcd_levels, disable_brightness_adjust); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 764 | |
| 765 | if (get_max_brightness() <= 0) |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 766 | fujitsu_bl->max_brightness = FUJITSU_LCD_N_LEVELS; |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 767 | get_lcd_level(); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 768 | |
| Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 769 | return 0; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 770 | |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 771 | err_unregister_input_dev: |
| 772 | input_unregister_device(input); |
| Axel Lin | 8e4e2ef | 2010-07-20 15:19:34 -0700 | [diff] [blame] | 773 | input = NULL; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 774 | err_free_input_dev: |
| 775 | input_free_device(input); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 776 | err_stop: |
| Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 777 | return error; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 778 | } |
| 779 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 780 | static int acpi_fujitsu_bl_remove(struct acpi_device *device) |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 781 | { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 782 | struct fujitsu_bl *fujitsu_bl = acpi_driver_data(device); |
| 783 | struct input_dev *input = fujitsu_bl->input; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 784 | |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 785 | input_unregister_device(input); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 786 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 787 | fujitsu_bl->acpi_handle = NULL; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 788 | |
| 789 | return 0; |
| 790 | } |
| 791 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 792 | /* Brightness notify */ |
| 793 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 794 | static void acpi_fujitsu_bl_notify(struct acpi_device *device, u32 event) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 795 | { |
| 796 | struct input_dev *input; |
| 797 | int keycode; |
| 798 | int oldb, newb; |
| 799 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 800 | input = fujitsu_bl->input; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 801 | |
| 802 | switch (event) { |
| 803 | case ACPI_FUJITSU_NOTIFY_CODE1: |
| 804 | keycode = 0; |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 805 | oldb = fujitsu_bl->brightness_level; |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 806 | get_lcd_level(); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 807 | newb = fujitsu_bl->brightness_level; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 808 | |
| 809 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 810 | "brightness button event [%i -> %i (%i)]\n", |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 811 | oldb, newb, fujitsu_bl->brightness_changed); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 812 | |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 813 | if (oldb < newb) { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 814 | if (disable_brightness_adjust != 1) { |
| 815 | if (use_alt_lcd_levels) |
| 816 | set_lcd_level_alt(newb); |
| 817 | else |
| 818 | set_lcd_level(newb); |
| 819 | } |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 820 | keycode = KEY_BRIGHTNESSUP; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 821 | } else if (oldb > newb) { |
| 822 | if (disable_brightness_adjust != 1) { |
| 823 | if (use_alt_lcd_levels) |
| 824 | set_lcd_level_alt(newb); |
| 825 | else |
| 826 | set_lcd_level(newb); |
| 827 | } |
| Tony Vroon | f87a1a5 | 2009-01-07 10:11:24 +0000 | [diff] [blame] | 828 | keycode = KEY_BRIGHTNESSDOWN; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 829 | } |
| 830 | break; |
| 831 | default: |
| 832 | keycode = KEY_UNKNOWN; |
| 833 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 834 | "unsupported event [0x%x]\n", event); |
| 835 | break; |
| 836 | } |
| 837 | |
| 838 | if (keycode != 0) { |
| 839 | input_report_key(input, keycode, 1); |
| 840 | input_sync(input); |
| 841 | input_report_key(input, keycode, 0); |
| 842 | input_sync(input); |
| 843 | } |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 844 | } |
| 845 | |
| 846 | /* ACPI device for hotkey handling */ |
| 847 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 848 | static int acpi_fujitsu_laptop_add(struct acpi_device *device) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 849 | { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 850 | int result = 0; |
| 851 | int state = 0; |
| 852 | struct input_dev *input; |
| 853 | int error; |
| 854 | int i; |
| 855 | |
| 856 | if (!device) |
| 857 | return -EINVAL; |
| 858 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 859 | fujitsu_laptop->acpi_handle = device->handle; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 860 | sprintf(acpi_device_name(device), "%s", |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 861 | ACPI_FUJITSU_LAPTOP_DEVICE_NAME); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 862 | sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS); |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 863 | device->driver_data = fujitsu_laptop; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 864 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 865 | /* kfifo */ |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 866 | spin_lock_init(&fujitsu_laptop->fifo_lock); |
| 867 | error = kfifo_alloc(&fujitsu_laptop->fifo, RINGBUFFERSIZE * sizeof(int), |
| Stefani Seibold | c1e13f2 | 2009-12-21 14:37:27 -0800 | [diff] [blame] | 868 | GFP_KERNEL); |
| Stefani Seibold | 4546548 | 2009-12-21 14:37:26 -0800 | [diff] [blame] | 869 | if (error) { |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 870 | pr_err("kfifo_alloc failed\n"); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 871 | goto err_stop; |
| 872 | } |
| 873 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 874 | fujitsu_laptop->input = input = input_allocate_device(); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 875 | if (!input) { |
| 876 | error = -ENOMEM; |
| Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 877 | goto err_free_fifo; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 878 | } |
| 879 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 880 | snprintf(fujitsu_laptop->phys, sizeof(fujitsu_laptop->phys), |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 881 | "%s/video/input0", acpi_device_hid(device)); |
| 882 | |
| 883 | input->name = acpi_device_name(device); |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 884 | input->phys = fujitsu_laptop->phys; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 885 | input->id.bustype = BUS_HOST; |
| 886 | input->id.product = 0x06; |
| 887 | input->dev.parent = &device->dev; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 888 | |
| 889 | set_bit(EV_KEY, input->evbit); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 890 | set_bit(fujitsu_bl->keycode1, input->keybit); |
| 891 | set_bit(fujitsu_bl->keycode2, input->keybit); |
| 892 | set_bit(fujitsu_bl->keycode3, input->keybit); |
| 893 | set_bit(fujitsu_bl->keycode4, input->keybit); |
| 894 | set_bit(fujitsu_bl->keycode5, input->keybit); |
| Michał Kępień | 1879e69 | 2016-06-28 09:25:50 +0200 | [diff] [blame] | 895 | set_bit(KEY_TOUCHPAD_TOGGLE, input->keybit); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 896 | set_bit(KEY_UNKNOWN, input->keybit); |
| 897 | |
| 898 | error = input_register_device(input); |
| 899 | if (error) |
| 900 | goto err_free_input_dev; |
| 901 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 902 | error = acpi_bus_update_power(fujitsu_laptop->acpi_handle, &state); |
| Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 903 | if (error) { |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 904 | pr_err("Error reading power state\n"); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 905 | goto err_unregister_input_dev; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 906 | } |
| 907 | |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 908 | pr_info("ACPI: %s [%s] (%s)\n", |
| 909 | acpi_device_name(device), acpi_device_bid(device), |
| 910 | !device->power.state ? "on" : "off"); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 911 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 912 | fujitsu_laptop->dev = device; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 913 | |
| Zhang Rui | dd13b9a | 2013-09-03 08:32:03 +0800 | [diff] [blame] | 914 | if (acpi_has_method(device->handle, METHOD_NAME__INI)) { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 915 | vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n"); |
| 916 | if (ACPI_FAILURE |
| 917 | (acpi_evaluate_object |
| 918 | (device->handle, METHOD_NAME__INI, NULL, NULL))) |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 919 | pr_err("_INI Method failed\n"); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 920 | } |
| 921 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 922 | i = 0; |
| 923 | while (call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0) != 0 |
| 924 | && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) |
| 925 | ; /* No action, result is discarded */ |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 926 | vdbg_printk(FUJLAPTOP_DBG_INFO, "Discarded %i ringbuffer entries\n", i); |
| 927 | |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 928 | fujitsu_laptop->flags_supported = |
| 929 | call_fext_func(FUNC_FLAGS, 0x0, 0x0, 0x0); |
| Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 930 | |
| 931 | /* Make sure our bitmask of supported functions is cleared if the |
| 932 | RFKILL function block is not implemented, like on the S7020. */ |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 933 | if (fujitsu_laptop->flags_supported == UNSUPPORTED_CMD) |
| 934 | fujitsu_laptop->flags_supported = 0; |
| Tony Vroon | 4898c2b | 2009-02-02 11:11:10 +0000 | [diff] [blame] | 935 | |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 936 | if (fujitsu_laptop->flags_supported) |
| 937 | fujitsu_laptop->flags_state = |
| 938 | call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 939 | |
| 940 | /* Suspect this is a keymap of the application panel, print it */ |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 941 | pr_info("BTNI: [0x%x]\n", call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0)); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 942 | |
| Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 943 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 944 | if (call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON) { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 945 | result = led_classdev_register(&fujitsu_bl->pf_device->dev, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 946 | &logolamp_led); |
| 947 | if (result == 0) { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 948 | fujitsu_laptop->logolamp_registered = 1; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 949 | } else { |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 950 | pr_err("Could not register LED handler for logo lamp, error %i\n", |
| 951 | result); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 952 | } |
| 953 | } |
| 954 | |
| 955 | if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS) && |
| 956 | (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) == 0x0)) { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 957 | result = led_classdev_register(&fujitsu_bl->pf_device->dev, |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 958 | &kblamps_led); |
| 959 | if (result == 0) { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 960 | fujitsu_laptop->kblamps_registered = 1; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 961 | } else { |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 962 | pr_err("Could not register LED handler for keyboard lamps, error %i\n", |
| 963 | result); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 964 | } |
| 965 | } |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 966 | |
| 967 | /* |
| 968 | * BTNI bit 24 seems to indicate the presence of a radio toggle |
| 969 | * button in place of a slide switch, and all such machines appear |
| 970 | * to also have an RF LED. Therefore use bit 24 as an indicator |
| 971 | * that an RF LED is present. |
| 972 | */ |
| 973 | if (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) & BIT(24)) { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 974 | result = led_classdev_register(&fujitsu_bl->pf_device->dev, |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 975 | &radio_led); |
| 976 | if (result == 0) { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 977 | fujitsu_laptop->radio_led_registered = 1; |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 978 | } else { |
| 979 | pr_err("Could not register LED handler for radio LED, error %i\n", |
| 980 | result); |
| 981 | } |
| 982 | } |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 983 | |
| 984 | /* Support for eco led is not always signaled in bit corresponding |
| 985 | * to the bit used to control the led. According to the DSDT table, |
| 986 | * bit 14 seems to indicate presence of said led as well. |
| 987 | * Confirm by testing the status. |
| 988 | */ |
| 989 | if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & BIT(14)) && |
| 990 | (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) != UNSUPPORTED_CMD)) { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 991 | result = led_classdev_register(&fujitsu_bl->pf_device->dev, |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 992 | &eco_led); |
| 993 | if (result == 0) { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 994 | fujitsu_laptop->eco_led_registered = 1; |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 995 | } else { |
| 996 | pr_err("Could not register LED handler for eco LED, error %i\n", |
| 997 | result); |
| 998 | } |
| 999 | } |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1000 | #endif |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1001 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1002 | return result; |
| 1003 | |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1004 | err_unregister_input_dev: |
| 1005 | input_unregister_device(input); |
| Axel Lin | 8e4e2ef | 2010-07-20 15:19:34 -0700 | [diff] [blame] | 1006 | input = NULL; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1007 | err_free_input_dev: |
| 1008 | input_free_device(input); |
| Bjorn Helgaas | b4ec027 | 2009-04-07 15:37:22 +0000 | [diff] [blame] | 1009 | err_free_fifo: |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1010 | kfifo_free(&fujitsu_laptop->fifo); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1011 | err_stop: |
| Julia Lawall | b30bb89 | 2013-12-29 23:47:36 +0100 | [diff] [blame] | 1012 | return error; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1013 | } |
| 1014 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1015 | static int acpi_fujitsu_laptop_remove(struct acpi_device *device) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1016 | { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1017 | struct fujitsu_laptop *fujitsu_laptop = acpi_driver_data(device); |
| 1018 | struct input_dev *input = fujitsu_laptop->input; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1019 | |
| Javier Martinez Canillas | 575b245 | 2016-04-26 18:28:17 -0400 | [diff] [blame] | 1020 | #if IS_ENABLED(CONFIG_LEDS_CLASS) |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1021 | if (fujitsu_laptop->logolamp_registered) |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1022 | led_classdev_unregister(&logolamp_led); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1023 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1024 | if (fujitsu_laptop->kblamps_registered) |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1025 | led_classdev_unregister(&kblamps_led); |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 1026 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1027 | if (fujitsu_laptop->radio_led_registered) |
| Michał Kępień | 4f62568 | 2016-04-12 22:06:34 +0930 | [diff] [blame] | 1028 | led_classdev_unregister(&radio_led); |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 1029 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1030 | if (fujitsu_laptop->eco_led_registered) |
| Matej Groma | d6b88f6 | 2016-06-21 10:09:21 +0200 | [diff] [blame] | 1031 | led_classdev_unregister(&eco_led); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1032 | #endif |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1033 | |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1034 | input_unregister_device(input); |
| 1035 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1036 | kfifo_free(&fujitsu_laptop->fifo); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1037 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1038 | fujitsu_laptop->acpi_handle = NULL; |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1039 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1040 | return 0; |
| 1041 | } |
| 1042 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1043 | static void acpi_fujitsu_laptop_press(int keycode) |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1044 | { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1045 | struct input_dev *input = fujitsu_laptop->input; |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1046 | int status; |
| 1047 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1048 | status = kfifo_in_locked(&fujitsu_laptop->fifo, |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1049 | (unsigned char *)&keycode, sizeof(keycode), |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1050 | &fujitsu_laptop->fifo_lock); |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1051 | if (status != sizeof(keycode)) { |
| 1052 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 1053 | "Could not push keycode [0x%x]\n", keycode); |
| Michał Kępień | a28c7e9 | 2017-01-11 09:59:33 +0100 | [diff] [blame] | 1054 | return; |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1055 | } |
| Michał Kępień | a28c7e9 | 2017-01-11 09:59:33 +0100 | [diff] [blame] | 1056 | input_report_key(input, keycode, 1); |
| 1057 | input_sync(input); |
| 1058 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 1059 | "Push keycode into ringbuffer [%d]\n", keycode); |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1060 | } |
| 1061 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1062 | static void acpi_fujitsu_laptop_release(void) |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1063 | { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1064 | struct input_dev *input = fujitsu_laptop->input; |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1065 | int keycode, status; |
| 1066 | |
| Michał Kępień | 29544f0 | 2017-01-11 09:59:32 +0100 | [diff] [blame] | 1067 | while (true) { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1068 | status = kfifo_out_locked(&fujitsu_laptop->fifo, |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1069 | (unsigned char *)&keycode, |
| 1070 | sizeof(keycode), |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1071 | &fujitsu_laptop->fifo_lock); |
| Michał Kępień | 29544f0 | 2017-01-11 09:59:32 +0100 | [diff] [blame] | 1072 | if (status != sizeof(keycode)) |
| 1073 | return; |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1074 | input_report_key(input, keycode, 0); |
| 1075 | input_sync(input); |
| 1076 | vdbg_printk(FUJLAPTOP_DBG_TRACE, |
| 1077 | "Pop keycode from ringbuffer [%d]\n", keycode); |
| 1078 | } |
| 1079 | } |
| 1080 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1081 | static void acpi_fujitsu_laptop_notify(struct acpi_device *device, u32 event) |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1082 | { |
| 1083 | struct input_dev *input; |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1084 | int keycode; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1085 | unsigned int irb = 1; |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1086 | int i; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1087 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1088 | input = fujitsu_laptop->input; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1089 | |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1090 | if (event != ACPI_FUJITSU_NOTIFY_CODE1) { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1091 | keycode = KEY_UNKNOWN; |
| 1092 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 1093 | "Unsupported event [0x%x]\n", event); |
| 1094 | input_report_key(input, keycode, 1); |
| 1095 | input_sync(input); |
| 1096 | input_report_key(input, keycode, 0); |
| 1097 | input_sync(input); |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1098 | return; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1099 | } |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1100 | |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 1101 | if (fujitsu_laptop->flags_supported) |
| 1102 | fujitsu_laptop->flags_state = |
| 1103 | call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0); |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1104 | |
| 1105 | i = 0; |
| 1106 | while ((irb = |
| 1107 | call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0)) != 0 |
| 1108 | && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) { |
| 1109 | switch (irb & 0x4ff) { |
| 1110 | case KEY1_CODE: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1111 | keycode = fujitsu_bl->keycode1; |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1112 | break; |
| 1113 | case KEY2_CODE: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1114 | keycode = fujitsu_bl->keycode2; |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1115 | break; |
| 1116 | case KEY3_CODE: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1117 | keycode = fujitsu_bl->keycode3; |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1118 | break; |
| 1119 | case KEY4_CODE: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1120 | keycode = fujitsu_bl->keycode4; |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1121 | break; |
| 1122 | case KEY5_CODE: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1123 | keycode = fujitsu_bl->keycode5; |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1124 | break; |
| 1125 | case 0: |
| 1126 | keycode = 0; |
| 1127 | break; |
| 1128 | default: |
| 1129 | vdbg_printk(FUJLAPTOP_DBG_WARN, |
| 1130 | "Unknown GIRB result [%x]\n", irb); |
| 1131 | keycode = -1; |
| 1132 | break; |
| 1133 | } |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1134 | |
| 1135 | if (keycode > 0) |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1136 | acpi_fujitsu_laptop_press(keycode); |
| Michał Kępień | 2451d19 | 2017-01-11 09:59:31 +0100 | [diff] [blame] | 1137 | else if (keycode == 0) |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1138 | acpi_fujitsu_laptop_release(); |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | /* On some models (first seen on the Skylake-based Lifebook |
| 1142 | * E736/E746/E756), the touchpad toggle hotkey (Fn+F4) is |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 1143 | * handled in software; its state is queried using FUNC_FLAGS |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1144 | */ |
| Alan Jenkins | 8ef27bd | 2017-02-08 14:46:27 +0100 | [diff] [blame] | 1145 | if ((fujitsu_laptop->flags_supported & BIT(26)) && |
| 1146 | (call_fext_func(FUNC_FLAGS, 0x1, 0x0, 0x0) & BIT(26))) { |
| Michał Kępień | eb357cb | 2017-01-11 09:59:30 +0100 | [diff] [blame] | 1147 | keycode = KEY_TOUCHPAD_TOGGLE; |
| 1148 | input_report_key(input, keycode, 1); |
| 1149 | input_sync(input); |
| 1150 | input_report_key(input, keycode, 0); |
| 1151 | input_sync(input); |
| 1152 | } |
| 1153 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1154 | } |
| 1155 | |
| 1156 | /* Initialization */ |
| 1157 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1158 | static const struct acpi_device_id fujitsu_bl_device_ids[] = { |
| 1159 | {ACPI_FUJITSU_BL_HID, 0}, |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1160 | {"", 0}, |
| 1161 | }; |
| 1162 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1163 | static struct acpi_driver acpi_fujitsu_bl_driver = { |
| 1164 | .name = ACPI_FUJITSU_BL_DRIVER_NAME, |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1165 | .class = ACPI_FUJITSU_CLASS, |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1166 | .ids = fujitsu_bl_device_ids, |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1167 | .ops = { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1168 | .add = acpi_fujitsu_bl_add, |
| 1169 | .remove = acpi_fujitsu_bl_remove, |
| 1170 | .notify = acpi_fujitsu_bl_notify, |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1171 | }, |
| 1172 | }; |
| 1173 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1174 | static const struct acpi_device_id fujitsu_laptop_device_ids[] = { |
| 1175 | {ACPI_FUJITSU_LAPTOP_HID, 0}, |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1176 | {"", 0}, |
| 1177 | }; |
| 1178 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1179 | static struct acpi_driver acpi_fujitsu_laptop_driver = { |
| 1180 | .name = ACPI_FUJITSU_LAPTOP_DRIVER_NAME, |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1181 | .class = ACPI_FUJITSU_CLASS, |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1182 | .ids = fujitsu_laptop_device_ids, |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1183 | .ops = { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1184 | .add = acpi_fujitsu_laptop_add, |
| 1185 | .remove = acpi_fujitsu_laptop_remove, |
| 1186 | .notify = acpi_fujitsu_laptop_notify, |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1187 | }, |
| 1188 | }; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1189 | |
| Zhang Rui | 4990141 | 2014-09-09 00:21:59 +0200 | [diff] [blame] | 1190 | static const struct acpi_device_id fujitsu_ids[] __used = { |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1191 | {ACPI_FUJITSU_BL_HID, 0}, |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1192 | {ACPI_FUJITSU_LAPTOP_HID, 0}, |
| Zhang Rui | 4990141 | 2014-09-09 00:21:59 +0200 | [diff] [blame] | 1193 | {"", 0} |
| 1194 | }; |
| 1195 | MODULE_DEVICE_TABLE(acpi, fujitsu_ids); |
| 1196 | |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1197 | static int __init fujitsu_init(void) |
| 1198 | { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1199 | int ret, result, max_brightness; |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1200 | |
| 1201 | if (acpi_disabled) |
| 1202 | return -ENODEV; |
| 1203 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1204 | fujitsu_bl = kzalloc(sizeof(struct fujitsu_bl), GFP_KERNEL); |
| 1205 | if (!fujitsu_bl) |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1206 | return -ENOMEM; |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1207 | fujitsu_bl->keycode1 = KEY_PROG1; |
| 1208 | fujitsu_bl->keycode2 = KEY_PROG2; |
| 1209 | fujitsu_bl->keycode3 = KEY_PROG3; |
| 1210 | fujitsu_bl->keycode4 = KEY_PROG4; |
| 1211 | fujitsu_bl->keycode5 = KEY_RFKILL; |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1212 | dmi_check_system(fujitsu_dmi_table); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1213 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1214 | result = acpi_bus_register_driver(&acpi_fujitsu_bl_driver); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1215 | if (result < 0) { |
| 1216 | ret = -ENODEV; |
| 1217 | goto fail_acpi; |
| 1218 | } |
| 1219 | |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1220 | /* Register platform stuff */ |
| 1221 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1222 | fujitsu_bl->pf_device = platform_device_alloc("fujitsu-laptop", -1); |
| 1223 | if (!fujitsu_bl->pf_device) { |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1224 | ret = -ENOMEM; |
| 1225 | goto fail_platform_driver; |
| 1226 | } |
| 1227 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1228 | ret = platform_device_add(fujitsu_bl->pf_device); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1229 | if (ret) |
| 1230 | goto fail_platform_device1; |
| 1231 | |
| 1232 | ret = |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1233 | sysfs_create_group(&fujitsu_bl->pf_device->dev.kobj, |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 1234 | &fujitsu_pf_attribute_group); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1235 | if (ret) |
| 1236 | goto fail_platform_device2; |
| 1237 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1238 | /* Register backlight stuff */ |
| 1239 | |
| Hans de Goede | 413226f | 2015-06-16 16:28:03 +0200 | [diff] [blame] | 1240 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
| Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1241 | struct backlight_properties props; |
| 1242 | |
| 1243 | memset(&props, 0, sizeof(struct backlight_properties)); |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1244 | max_brightness = fujitsu_bl->max_brightness; |
| Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 1245 | props.type = BACKLIGHT_PLATFORM; |
| Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 1246 | props.max_brightness = max_brightness - 1; |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1247 | fujitsu_bl->bl_device = backlight_device_register("fujitsu-laptop", |
| 1248 | NULL, NULL, |
| 1249 | &fujitsu_bl_ops, |
| 1250 | &props); |
| 1251 | if (IS_ERR(fujitsu_bl->bl_device)) { |
| 1252 | ret = PTR_ERR(fujitsu_bl->bl_device); |
| 1253 | fujitsu_bl->bl_device = NULL; |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1254 | goto fail_sysfs_group; |
| 1255 | } |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1256 | fujitsu_bl->bl_device->props.brightness = fujitsu_bl->brightness_level; |
| Thomas Renninger | 7d5c89a | 2008-08-01 17:38:00 +0200 | [diff] [blame] | 1257 | } |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1258 | |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 1259 | ret = platform_driver_register(&fujitsu_pf_driver); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1260 | if (ret) |
| 1261 | goto fail_backlight; |
| 1262 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1263 | /* Register laptop driver */ |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1264 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1265 | fujitsu_laptop = kzalloc(sizeof(struct fujitsu_laptop), GFP_KERNEL); |
| 1266 | if (!fujitsu_laptop) { |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1267 | ret = -ENOMEM; |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1268 | goto fail_laptop; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1269 | } |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1270 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1271 | result = acpi_bus_register_driver(&acpi_fujitsu_laptop_driver); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1272 | if (result < 0) { |
| 1273 | ret = -ENODEV; |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1274 | goto fail_laptop1; |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1275 | } |
| 1276 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1277 | /* Sync backlight power status (needs FUJ02E3 device, hence deferred) */ |
| Hans de Goede | 413226f | 2015-06-16 16:28:03 +0200 | [diff] [blame] | 1278 | if (acpi_video_get_backlight_type() == acpi_backlight_vendor) { |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1279 | if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3) |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1280 | fujitsu_bl->bl_device->props.power = FB_BLANK_POWERDOWN; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1281 | else |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1282 | fujitsu_bl->bl_device->props.power = FB_BLANK_UNBLANK; |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1283 | } |
| 1284 | |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 1285 | pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n"); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1286 | |
| 1287 | return 0; |
| 1288 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1289 | fail_laptop1: |
| 1290 | kfree(fujitsu_laptop); |
| 1291 | fail_laptop: |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 1292 | platform_driver_unregister(&fujitsu_pf_driver); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1293 | fail_backlight: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1294 | backlight_device_unregister(fujitsu_bl->bl_device); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1295 | fail_sysfs_group: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1296 | sysfs_remove_group(&fujitsu_bl->pf_device->dev.kobj, |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 1297 | &fujitsu_pf_attribute_group); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1298 | fail_platform_device2: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1299 | platform_device_del(fujitsu_bl->pf_device); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1300 | fail_platform_device1: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1301 | platform_device_put(fujitsu_bl->pf_device); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1302 | fail_platform_driver: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1303 | acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1304 | fail_acpi: |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1305 | kfree(fujitsu_bl); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1306 | |
| 1307 | return ret; |
| 1308 | } |
| 1309 | |
| 1310 | static void __exit fujitsu_cleanup(void) |
| 1311 | { |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1312 | acpi_bus_unregister_driver(&acpi_fujitsu_laptop_driver); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1313 | |
| Alan Jenkins | 6942eab | 2017-02-08 14:46:25 +0100 | [diff] [blame] | 1314 | kfree(fujitsu_laptop); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1315 | |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 1316 | platform_driver_unregister(&fujitsu_pf_driver); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1317 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1318 | backlight_device_unregister(fujitsu_bl->bl_device); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1319 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1320 | sysfs_remove_group(&fujitsu_bl->pf_device->dev.kobj, |
| Alan Jenkins | 1650602 | 2017-02-08 14:46:26 +0100 | [diff] [blame] | 1321 | &fujitsu_pf_attribute_group); |
| Bartlomiej Zolnierkiewicz | 72afeea | 2009-07-31 18:16:02 +0930 | [diff] [blame] | 1322 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1323 | platform_device_unregister(fujitsu_bl->pf_device); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1324 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1325 | acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1326 | |
| Alan Jenkins | 9fc5cf6 | 2017-02-08 14:46:24 +0100 | [diff] [blame] | 1327 | kfree(fujitsu_bl); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1328 | |
| Joe Perches | 77bad7c | 2011-03-29 15:21:39 -0700 | [diff] [blame] | 1329 | pr_info("driver unloaded\n"); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1330 | } |
| 1331 | |
| 1332 | module_init(fujitsu_init); |
| 1333 | module_exit(fujitsu_cleanup); |
| 1334 | |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1335 | module_param(use_alt_lcd_levels, uint, 0644); |
| 1336 | MODULE_PARM_DESC(use_alt_lcd_levels, |
| 1337 | "Use alternative interface for lcd_levels (needed for Lifebook s6410)."); |
| Jonathan Woithe | 20b9373 | 2008-06-11 10:14:56 +0930 | [diff] [blame] | 1338 | module_param(disable_brightness_adjust, uint, 0644); |
| 1339 | MODULE_PARM_DESC(disable_brightness_adjust, "Disable brightness adjustment ."); |
| 1340 | #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG |
| 1341 | module_param_named(debug, dbg_level, uint, 0644); |
| 1342 | MODULE_PARM_DESC(debug, "Sets debug level bit-mask"); |
| 1343 | #endif |
| 1344 | |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1345 | MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon"); |
| Jonathan Woithe | d048253 | 2007-08-29 15:58:19 +0930 | [diff] [blame] | 1346 | MODULE_DESCRIPTION("Fujitsu laptop extras support"); |
| 1347 | MODULE_VERSION(FUJITSU_DRIVER_VERSION); |
| 1348 | MODULE_LICENSE("GPL"); |
| Dan Williams | a361a82 | 2008-06-05 22:46:08 -0700 | [diff] [blame] | 1349 | |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1350 | MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1D3:*:cvrS6410:*"); |
| Tony Vroon | 3a40708 | 2008-12-31 18:19:59 +0000 | [diff] [blame] | 1351 | MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1E6:*:cvrS6420:*"); |
| Jonathan Woithe | 0e6a66e | 2008-10-09 13:44:40 +0930 | [diff] [blame] | 1352 | MODULE_ALIAS("dmi:*:svnFUJITSU:*:pvr:rvnFUJITSU:rnFJNB19C:*:cvrS7020:*"); |