blob: 56804c4db33ff48c895046e2da57d8325de4ce7d [file] [log] [blame]
Jonathan Woithed0482532007-08-29 15:58:19 +09301/*-*-linux-c-*-*/
2
3/*
Jonathan Woithe409a3e92012-03-27 13:01:01 +10304 Copyright (C) 2007,2008 Jonathan Woithe <jwoithe@just42.net>
Jonathan Woithe20b93732008-06-11 10:14:56 +09305 Copyright (C) 2008 Peter Gruber <nokos@gmx.net>
Tony Vroon3a407082008-12-31 18:19:59 +00006 Copyright (C) 2008 Tony Vroon <tony@linx.net>
Jonathan Woithed0482532007-08-29 15:58:19 +09307 Based on earlier work:
8 Copyright (C) 2003 Shane Spencer <shane@bogomip.com>
9 Adrian Yee <brewt-fujitsu@brewt.org>
10
Jonathan Woithe20b93732008-06-11 10:14:56 +093011 Templated from msi-laptop.c and thinkpad_acpi.c which is copyright
12 by its respective authors.
Jonathan Woithed0482532007-08-29 15:58:19 +093013
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 Woithe20b93732008-06-11 10:14:56 +093045 * Hotkeys present on certain Fujitsu laptops (eg: the S6xxx series) are
46 * also supported by this driver.
47 *
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +093048 * 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 Woithe20b93732008-06-11 10:14:56 +093051 *
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 Woithed0482532007-08-29 15:58:19 +093057 */
58
Joe Perches77bad7c2011-03-29 15:21:39 -070059#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
60
Jonathan Woithed0482532007-08-29 15:58:19 +093061#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 Karchere8549e22015-01-18 20:28:46 +010067#include <linux/fb.h>
Jonathan Woithe20b93732008-06-11 10:14:56 +093068#include <linux/input.h>
69#include <linux/kfifo.h>
Jonathan Woithed0482532007-08-29 15:58:19 +093070#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090071#include <linux/slab.h>
Javier Martinez Canillas575b2452016-04-26 18:28:17 -040072#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +000073#include <linux/leds.h>
74#endif
Hans de Goede413226f2015-06-16 16:28:03 +020075#include <acpi/video.h>
Jonathan Woithed0482532007-08-29 15:58:19 +093076
Jonathan Woithe84a6ce22009-07-31 18:16:59 +093077#define FUJITSU_DRIVER_VERSION "0.6.0"
Jonathan Woithed0482532007-08-29 15:58:19 +093078
79#define FUJITSU_LCD_N_LEVELS 8
80
Alan Jenkins9fc5cf62017-02-08 14:46:24 +010081#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 Jenkins6942eab2017-02-08 14:46:25 +010085#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 Woithed0482532007-08-29 15:58:19 +093088
Jonathan Woithe20b93732008-06-11 10:14:56 +093089#define ACPI_FUJITSU_NOTIFY_CODE1 0x80
90
Tony Vroon3a407082008-12-31 18:19:59 +000091/* FUNC interface - command values */
Alan Jenkins8ef27bd2017-02-08 14:46:27 +010092#define FUNC_FLAGS 0x1000
Tony Vroon3a407082008-12-31 18:19:59 +000093#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 Jenkinsd3dd4482017-02-08 14:46:28 +0100100/* FUNC interface - status flags */
101#define FLAG_RFKILL 0x020
102#define FLAG_LID 0x100
103#define FLAG_DOCK 0x200
104
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400105#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000106/* 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ń4f625682016-04-12 22:06:34 +0930112#define RADIO_LED_ON 0x20
Matej Gromad6b88f62016-06-21 10:09:21 +0200113#define ECO_LED 0x10000
114#define ECO_LED_ON 0x80000
Tony Vroon3a407082008-12-31 18:19:59 +0000115#endif
116
Jonathan Woithe20b93732008-06-11 10:14:56 +0930117/* Hotkey details */
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930118#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ńb5df36c2016-02-24 14:23:32 +0100122#define KEY5_CODE 0x420
Jonathan Woithe20b93732008-06-11 10:14:56 +0930123
124#define MAX_HOTKEY_RINGBUFFER_SIZE 100
125#define RINGBUFFERSIZE 40
126
127/* Debugging */
Jonathan Woithe20b93732008-06-11 10:14:56 +0930128#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 Delvarec4960cf2014-06-16 11:55:13 +0200133#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
134#define vdbg_printk(a_dbg_level, format, arg...) \
Jonathan Woithe20b93732008-06-11 10:14:56 +0930135 do { if (dbg_level & a_dbg_level) \
Michał Kępień98020a42016-06-23 12:02:47 +0200136 printk(KERN_DEBUG pr_fmt("%s: " format), __func__, ## arg); \
Jonathan Woithe20b93732008-06-11 10:14:56 +0930137 } while (0)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930138#else
Jean Delvarec4960cf2014-06-16 11:55:13 +0200139#define vdbg_printk(a_dbg_level, format, arg...) \
140 do { } while (0)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930141#endif
142
143/* Device controlling the backlight and associated keys */
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100144struct fujitsu_bl {
Jonathan Woithed0482532007-08-29 15:58:19 +0930145 acpi_handle acpi_handle;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930146 struct acpi_device *dev;
147 struct input_dev *input;
148 char phys[32];
Jonathan Woithed0482532007-08-29 15:58:19 +0930149 struct backlight_device *bl_device;
150 struct platform_device *pf_device;
Michał Kępieńb5df36c2016-02-24 14:23:32 +0100151 int keycode1, keycode2, keycode3, keycode4, keycode5;
Jonathan Woithed0482532007-08-29 15:58:19 +0930152
Jonathan Woithe20b93732008-06-11 10:14:56 +0930153 unsigned int max_brightness;
Jonathan Woithed0482532007-08-29 15:58:19 +0930154 unsigned int brightness_changed;
155 unsigned int brightness_level;
156};
157
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100158static struct fujitsu_bl *fujitsu_bl;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930159static int use_alt_lcd_levels = -1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930160static int disable_brightness_adjust = -1;
Jonathan Woithed0482532007-08-29 15:58:19 +0930161
Alan Jenkins6942eab2017-02-08 14:46:25 +0100162/* Device used to access hotkeys and other features on the laptop */
163struct fujitsu_laptop {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930164 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 Seibold45465482009-12-21 14:37:26 -0800169 struct kfifo fifo;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930170 spinlock_t fifo_lock;
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100171 int flags_supported;
172 int flags_state;
Tony Vroon3a407082008-12-31 18:19:59 +0000173 int logolamp_registered;
174 int kblamps_registered;
Michał Kępień4f625682016-04-12 22:06:34 +0930175 int radio_led_registered;
Matej Gromad6b88f62016-06-21 10:09:21 +0200176 int eco_led_registered;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930177};
178
Alan Jenkins6942eab2017-02-08 14:46:25 +0100179static struct fujitsu_laptop *fujitsu_laptop;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930180
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400181#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000182static enum led_brightness logolamp_get(struct led_classdev *cdev);
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100183static int logolamp_set(struct led_classdev *cdev,
Tony Vroon3a407082008-12-31 18:19:59 +0000184 enum led_brightness brightness);
185
Axel Lin67af7112010-07-20 15:19:45 -0700186static struct led_classdev logolamp_led = {
Tony Vroon3a407082008-12-31 18:19:59 +0000187 .name = "fujitsu::logolamp",
188 .brightness_get = logolamp_get,
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100189 .brightness_set_blocking = logolamp_set
Tony Vroon3a407082008-12-31 18:19:59 +0000190};
191
192static enum led_brightness kblamps_get(struct led_classdev *cdev);
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100193static int kblamps_set(struct led_classdev *cdev,
Tony Vroon3a407082008-12-31 18:19:59 +0000194 enum led_brightness brightness);
195
Axel Lin67af7112010-07-20 15:19:45 -0700196static struct led_classdev kblamps_led = {
Tony Vroon3a407082008-12-31 18:19:59 +0000197 .name = "fujitsu::kblamps",
198 .brightness_get = kblamps_get,
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100199 .brightness_set_blocking = kblamps_set
Tony Vroon3a407082008-12-31 18:19:59 +0000200};
Michał Kępień4f625682016-04-12 22:06:34 +0930201
202static enum led_brightness radio_led_get(struct led_classdev *cdev);
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100203static int radio_led_set(struct led_classdev *cdev,
Michał Kępień4f625682016-04-12 22:06:34 +0930204 enum led_brightness brightness);
205
206static struct led_classdev radio_led = {
207 .name = "fujitsu::radio_led",
Micha? K?pie?5f25b002016-12-16 15:46:03 +0100208 .default_trigger = "rfkill-any",
Michał Kępień4f625682016-04-12 22:06:34 +0930209 .brightness_get = radio_led_get,
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100210 .brightness_set_blocking = radio_led_set
Michał Kępień4f625682016-04-12 22:06:34 +0930211};
Matej Gromad6b88f62016-06-21 10:09:21 +0200212
213static enum led_brightness eco_led_get(struct led_classdev *cdev);
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100214static int eco_led_set(struct led_classdev *cdev,
Matej Gromad6b88f62016-06-21 10:09:21 +0200215 enum led_brightness brightness);
216
217static struct led_classdev eco_led = {
218 .name = "fujitsu::eco_led",
Matej Gromad6b88f62016-06-21 10:09:21 +0200219 .brightness_get = eco_led_get,
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100220 .brightness_set_blocking = eco_led_set
Matej Gromad6b88f62016-06-21 10:09:21 +0200221};
Tony Vroon3a407082008-12-31 18:19:59 +0000222#endif
223
Jonathan Woithe20b93732008-06-11 10:14:56 +0930224#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
225static u32 dbg_level = 0x03;
226#endif
227
Tony Vroon3a407082008-12-31 18:19:59 +0000228/* Fujitsu ACPI interface function */
229
230static int call_fext_func(int cmd, int arg0, int arg1, int arg2)
231{
232 acpi_status status = AE_OK;
233 union acpi_object params[4] = {
234 { .type = ACPI_TYPE_INTEGER },
235 { .type = ACPI_TYPE_INTEGER },
236 { .type = ACPI_TYPE_INTEGER },
237 { .type = ACPI_TYPE_INTEGER }
238 };
239 struct acpi_object_list arg_list = { 4, &params[0] };
Zhang Rui29c29a92013-09-03 08:32:12 +0800240 unsigned long long value;
Tony Vroon3a407082008-12-31 18:19:59 +0000241 acpi_handle handle = NULL;
242
Alan Jenkins6942eab2017-02-08 14:46:25 +0100243 status = acpi_get_handle(fujitsu_laptop->acpi_handle, "FUNC", &handle);
Tony Vroon3a407082008-12-31 18:19:59 +0000244 if (ACPI_FAILURE(status)) {
245 vdbg_printk(FUJLAPTOP_DBG_ERROR,
246 "FUNC interface is not present\n");
247 return -ENODEV;
248 }
249
250 params[0].integer.value = cmd;
251 params[1].integer.value = arg0;
252 params[2].integer.value = arg1;
253 params[3].integer.value = arg2;
254
Zhang Rui29c29a92013-09-03 08:32:12 +0800255 status = acpi_evaluate_integer(handle, NULL, &arg_list, &value);
Tony Vroon3a407082008-12-31 18:19:59 +0000256 if (ACPI_FAILURE(status)) {
257 vdbg_printk(FUJLAPTOP_DBG_WARN,
258 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) call failed\n",
259 cmd, arg0, arg1, arg2);
260 return -ENODEV;
261 }
262
Tony Vroon3a407082008-12-31 18:19:59 +0000263 vdbg_printk(FUJLAPTOP_DBG_TRACE,
264 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
Zhang Rui29c29a92013-09-03 08:32:12 +0800265 cmd, arg0, arg1, arg2, (int)value);
266 return value;
Tony Vroon3a407082008-12-31 18:19:59 +0000267}
268
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400269#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000270/* LED class callbacks */
271
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100272static int logolamp_set(struct led_classdev *cdev,
Tony Vroon3a407082008-12-31 18:19:59 +0000273 enum led_brightness brightness)
274{
Michał Kępieńdcb50b32017-01-09 14:14:16 +0100275 int poweron = FUNC_LED_ON, always = FUNC_LED_ON;
276 int ret;
277
278 if (brightness < LED_HALF)
279 poweron = FUNC_LED_OFF;
280
281 if (brightness < LED_FULL)
282 always = FUNC_LED_OFF;
283
284 ret = call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, poweron);
285 if (ret < 0)
286 return ret;
287
288 return call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, always);
Tony Vroon3a407082008-12-31 18:19:59 +0000289}
290
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100291static int kblamps_set(struct led_classdev *cdev,
Tony Vroon3a407082008-12-31 18:19:59 +0000292 enum led_brightness brightness)
293{
294 if (brightness >= LED_FULL)
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100295 return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_ON);
Tony Vroon3a407082008-12-31 18:19:59 +0000296 else
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100297 return call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_OFF);
Tony Vroon3a407082008-12-31 18:19:59 +0000298}
299
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100300static int radio_led_set(struct led_classdev *cdev,
Michał Kępień4f625682016-04-12 22:06:34 +0930301 enum led_brightness brightness)
302{
303 if (brightness >= LED_FULL)
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100304 return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, RADIO_LED_ON);
Michał Kępień4f625682016-04-12 22:06:34 +0930305 else
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100306 return call_fext_func(FUNC_FLAGS, 0x5, RADIO_LED_ON, 0x0);
Michał Kępień4f625682016-04-12 22:06:34 +0930307}
308
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100309static int eco_led_set(struct led_classdev *cdev,
Matej Gromad6b88f62016-06-21 10:09:21 +0200310 enum led_brightness brightness)
311{
312 int curr;
313
314 curr = call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0);
Matej Groma69678932016-07-04 12:04:12 +0200315 if (brightness >= LED_FULL)
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100316 return call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr | ECO_LED_ON);
Matej Gromad6b88f62016-06-21 10:09:21 +0200317 else
Micha? K?pie?a608a9d2016-12-23 10:00:08 +0100318 return call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr & ~ECO_LED_ON);
Matej Gromad6b88f62016-06-21 10:09:21 +0200319}
320
Tony Vroon3a407082008-12-31 18:19:59 +0000321static enum led_brightness logolamp_get(struct led_classdev *cdev)
322{
Michał Kępień5c461e82017-01-09 14:14:17 +0100323 int ret;
Tony Vroon3a407082008-12-31 18:19:59 +0000324
Michał Kępień5c461e82017-01-09 14:14:17 +0100325 ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_ALWAYS, 0x0);
326 if (ret == FUNC_LED_ON)
327 return LED_FULL;
328
329 ret = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_POWERON, 0x0);
330 if (ret == FUNC_LED_ON)
331 return LED_HALF;
332
333 return LED_OFF;
Tony Vroon3a407082008-12-31 18:19:59 +0000334}
335
336static enum led_brightness kblamps_get(struct led_classdev *cdev)
337{
338 enum led_brightness brightness = LED_OFF;
339
340 if (call_fext_func(FUNC_LEDS, 0x2, KEYBOARD_LAMPS, 0x0) == FUNC_LED_ON)
341 brightness = LED_FULL;
342
343 return brightness;
344}
Michał Kępień4f625682016-04-12 22:06:34 +0930345
346static enum led_brightness radio_led_get(struct led_classdev *cdev)
347{
348 enum led_brightness brightness = LED_OFF;
349
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100350 if (call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0) & RADIO_LED_ON)
Michał Kępień4f625682016-04-12 22:06:34 +0930351 brightness = LED_FULL;
352
353 return brightness;
354}
Matej Gromad6b88f62016-06-21 10:09:21 +0200355
356static enum led_brightness eco_led_get(struct led_classdev *cdev)
357{
358 enum led_brightness brightness = LED_OFF;
359
360 if (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) & ECO_LED_ON)
Matej Groma69678932016-07-04 12:04:12 +0200361 brightness = LED_FULL;
Matej Gromad6b88f62016-06-21 10:09:21 +0200362
363 return brightness;
364}
Tony Vroon3a407082008-12-31 18:19:59 +0000365#endif
366
Jonathan Woithe20b93732008-06-11 10:14:56 +0930367/* Hardware access for LCD brightness control */
Jonathan Woithed0482532007-08-29 15:58:19 +0930368
369static int set_lcd_level(int level)
370{
371 acpi_status status = AE_OK;
Jonathan Woithed0482532007-08-29 15:58:19 +0930372 acpi_handle handle = NULL;
373
Jonathan Woithe20b93732008-06-11 10:14:56 +0930374 vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBLL [%d]\n",
375 level);
376
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100377 if (level < 0 || level >= fujitsu_bl->max_brightness)
Jonathan Woithed0482532007-08-29 15:58:19 +0930378 return -EINVAL;
379
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100380 status = acpi_get_handle(fujitsu_bl->acpi_handle, "SBLL", &handle);
Jonathan Woithed0482532007-08-29 15:58:19 +0930381 if (ACPI_FAILURE(status)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930382 vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBLL not present\n");
383 return -ENODEV;
384 }
385
Jonathan Woithe20b93732008-06-11 10:14:56 +0930386
Zhang Rui6c7fe47a2013-09-03 08:31:52 +0800387 status = acpi_execute_simple_method(handle, NULL, level);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930388 if (ACPI_FAILURE(status))
389 return -ENODEV;
390
391 return 0;
392}
393
394static int set_lcd_level_alt(int level)
395{
396 acpi_status status = AE_OK;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930397 acpi_handle handle = NULL;
398
399 vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBL2 [%d]\n",
400 level);
401
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100402 if (level < 0 || level >= fujitsu_bl->max_brightness)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930403 return -EINVAL;
404
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100405 status = acpi_get_handle(fujitsu_bl->acpi_handle, "SBL2", &handle);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930406 if (ACPI_FAILURE(status)) {
407 vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBL2 not present\n");
Jonathan Woithed0482532007-08-29 15:58:19 +0930408 return -ENODEV;
409 }
410
Zhang Rui6c7fe47a2013-09-03 08:31:52 +0800411 status = acpi_execute_simple_method(handle, NULL, level);
Jonathan Woithed0482532007-08-29 15:58:19 +0930412 if (ACPI_FAILURE(status))
413 return -ENODEV;
414
415 return 0;
416}
417
418static int get_lcd_level(void)
419{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400420 unsigned long long state = 0;
Jonathan Woithed0482532007-08-29 15:58:19 +0930421 acpi_status status = AE_OK;
422
Jonathan Woithe20b93732008-06-11 10:14:56 +0930423 vdbg_printk(FUJLAPTOP_DBG_TRACE, "get lcd level via GBLL\n");
424
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100425 status = acpi_evaluate_integer(fujitsu_bl->acpi_handle, "GBLL", NULL,
426 &state);
Jonathan Woithe3b1c37c2009-12-23 09:19:42 +1030427 if (ACPI_FAILURE(status))
428 return 0;
Jonathan Woithed0482532007-08-29 15:58:19 +0930429
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100430 fujitsu_bl->brightness_level = state & 0x0fffffff;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930431
432 if (state & 0x80000000)
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100433 fujitsu_bl->brightness_changed = 1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930434 else
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100435 fujitsu_bl->brightness_changed = 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930436
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100437 return fujitsu_bl->brightness_level;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930438}
439
440static int get_max_brightness(void)
441{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400442 unsigned long long state = 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930443 acpi_status status = AE_OK;
444
445 vdbg_printk(FUJLAPTOP_DBG_TRACE, "get max lcd level via RBLL\n");
446
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100447 status = acpi_evaluate_integer(fujitsu_bl->acpi_handle, "RBLL", NULL,
448 &state);
Jonathan Woithe3b1c37c2009-12-23 09:19:42 +1030449 if (ACPI_FAILURE(status))
450 return -1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930451
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100452 fujitsu_bl->max_brightness = state;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930453
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100454 return fujitsu_bl->max_brightness;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930455}
456
Jonathan Woithed0482532007-08-29 15:58:19 +0930457/* Backlight device stuff */
458
459static int bl_get_brightness(struct backlight_device *b)
460{
Tony Vroonf87a1a52009-01-07 10:11:24 +0000461 return get_lcd_level();
Jonathan Woithed0482532007-08-29 15:58:19 +0930462}
463
464static int bl_update_status(struct backlight_device *b)
465{
Tony Vroon3a407082008-12-31 18:19:59 +0000466 int ret;
Michael Karchere8549e22015-01-18 20:28:46 +0100467 if (b->props.power == FB_BLANK_POWERDOWN)
Tony Vroon3a407082008-12-31 18:19:59 +0000468 ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930469 else
Tony Vroon3a407082008-12-31 18:19:59 +0000470 ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
471 if (ret != 0)
472 vdbg_printk(FUJLAPTOP_DBG_ERROR,
473 "Unable to adjust backlight power, error code %i\n",
474 ret);
475
476 if (use_alt_lcd_levels)
477 ret = set_lcd_level_alt(b->props.brightness);
478 else
479 ret = set_lcd_level(b->props.brightness);
480 if (ret != 0)
481 vdbg_printk(FUJLAPTOP_DBG_ERROR,
482 "Unable to adjust LCD brightness, error code %i\n",
483 ret);
484 return ret;
Jonathan Woithed0482532007-08-29 15:58:19 +0930485}
486
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100487static const struct backlight_ops fujitsu_bl_ops = {
Jonathan Woithed0482532007-08-29 15:58:19 +0930488 .get_brightness = bl_get_brightness,
489 .update_status = bl_update_status,
490};
491
Jonathan Woithe20b93732008-06-11 10:14:56 +0930492/* Platform LCD brightness device */
493
494static ssize_t
495show_max_brightness(struct device *dev,
496 struct device_attribute *attr, char *buf)
497{
498
499 int ret;
500
501 ret = get_max_brightness();
502 if (ret < 0)
503 return ret;
504
505 return sprintf(buf, "%i\n", ret);
506}
507
508static ssize_t
509show_brightness_changed(struct device *dev,
510 struct device_attribute *attr, char *buf)
511{
512
513 int ret;
514
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100515 ret = fujitsu_bl->brightness_changed;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930516 if (ret < 0)
517 return ret;
518
519 return sprintf(buf, "%i\n", ret);
520}
Jonathan Woithed0482532007-08-29 15:58:19 +0930521
522static ssize_t show_lcd_level(struct device *dev,
523 struct device_attribute *attr, char *buf)
524{
525
526 int ret;
527
Tony Vroonf87a1a52009-01-07 10:11:24 +0000528 ret = get_lcd_level();
Jonathan Woithed0482532007-08-29 15:58:19 +0930529 if (ret < 0)
530 return ret;
531
532 return sprintf(buf, "%i\n", ret);
533}
534
535static ssize_t store_lcd_level(struct device *dev,
536 struct device_attribute *attr, const char *buf,
537 size_t count)
538{
539
540 int level, ret;
541
542 if (sscanf(buf, "%i", &level) != 1
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100543 || (level < 0 || level >= fujitsu_bl->max_brightness))
Jonathan Woithed0482532007-08-29 15:58:19 +0930544 return -EINVAL;
545
Jonathan Woithe20b93732008-06-11 10:14:56 +0930546 if (use_alt_lcd_levels)
547 ret = set_lcd_level_alt(level);
548 else
549 ret = set_lcd_level(level);
550 if (ret < 0)
551 return ret;
552
Tony Vroonf87a1a52009-01-07 10:11:24 +0000553 ret = get_lcd_level();
Jonathan Woithed0482532007-08-29 15:58:19 +0930554 if (ret < 0)
555 return ret;
556
557 return count;
558}
559
Jonathan Woithe20b93732008-06-11 10:14:56 +0930560static ssize_t
561ignore_store(struct device *dev,
562 struct device_attribute *attr, const char *buf, size_t count)
563{
564 return count;
565}
566
Tony Vroon3a407082008-12-31 18:19:59 +0000567static ssize_t
568show_lid_state(struct device *dev,
569 struct device_attribute *attr, char *buf)
570{
Alan Jenkinsd3dd4482017-02-08 14:46:28 +0100571 if (!(fujitsu_laptop->flags_supported & FLAG_LID))
Tony Vroon3a407082008-12-31 18:19:59 +0000572 return sprintf(buf, "unknown\n");
Alan Jenkinsd3dd4482017-02-08 14:46:28 +0100573 if (fujitsu_laptop->flags_state & FLAG_LID)
Tony Vroon3a407082008-12-31 18:19:59 +0000574 return sprintf(buf, "open\n");
575 else
576 return sprintf(buf, "closed\n");
577}
578
579static ssize_t
580show_dock_state(struct device *dev,
581 struct device_attribute *attr, char *buf)
582{
Alan Jenkinsd3dd4482017-02-08 14:46:28 +0100583 if (!(fujitsu_laptop->flags_supported & FLAG_DOCK))
Tony Vroon3a407082008-12-31 18:19:59 +0000584 return sprintf(buf, "unknown\n");
Alan Jenkinsd3dd4482017-02-08 14:46:28 +0100585 if (fujitsu_laptop->flags_state & FLAG_DOCK)
Tony Vroon3a407082008-12-31 18:19:59 +0000586 return sprintf(buf, "docked\n");
587 else
588 return sprintf(buf, "undocked\n");
589}
590
591static ssize_t
592show_radios_state(struct device *dev,
593 struct device_attribute *attr, char *buf)
594{
Alan Jenkinsd3dd4482017-02-08 14:46:28 +0100595 if (!(fujitsu_laptop->flags_supported & FLAG_RFKILL))
Tony Vroon3a407082008-12-31 18:19:59 +0000596 return sprintf(buf, "unknown\n");
Alan Jenkinsd3dd4482017-02-08 14:46:28 +0100597 if (fujitsu_laptop->flags_state & FLAG_RFKILL)
Tony Vroon3a407082008-12-31 18:19:59 +0000598 return sprintf(buf, "on\n");
599 else
600 return sprintf(buf, "killed\n");
601}
602
Jonathan Woithe20b93732008-06-11 10:14:56 +0930603static DEVICE_ATTR(max_brightness, 0444, show_max_brightness, ignore_store);
604static DEVICE_ATTR(brightness_changed, 0444, show_brightness_changed,
605 ignore_store);
Jonathan Woithed0482532007-08-29 15:58:19 +0930606static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
Tony Vroon3a407082008-12-31 18:19:59 +0000607static DEVICE_ATTR(lid, 0444, show_lid_state, ignore_store);
608static DEVICE_ATTR(dock, 0444, show_dock_state, ignore_store);
609static DEVICE_ATTR(radios, 0444, show_radios_state, ignore_store);
Jonathan Woithed0482532007-08-29 15:58:19 +0930610
Alan Jenkins16506022017-02-08 14:46:26 +0100611static struct attribute *fujitsu_pf_attributes[] = {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930612 &dev_attr_brightness_changed.attr,
613 &dev_attr_max_brightness.attr,
Jonathan Woithed0482532007-08-29 15:58:19 +0930614 &dev_attr_lcd_level.attr,
Tony Vroon3a407082008-12-31 18:19:59 +0000615 &dev_attr_lid.attr,
616 &dev_attr_dock.attr,
617 &dev_attr_radios.attr,
Jonathan Woithed0482532007-08-29 15:58:19 +0930618 NULL
619};
620
Alan Jenkins16506022017-02-08 14:46:26 +0100621static struct attribute_group fujitsu_pf_attribute_group = {
622 .attrs = fujitsu_pf_attributes
Jonathan Woithed0482532007-08-29 15:58:19 +0930623};
624
Alan Jenkins16506022017-02-08 14:46:26 +0100625static struct platform_driver fujitsu_pf_driver = {
Jonathan Woithed0482532007-08-29 15:58:19 +0930626 .driver = {
627 .name = "fujitsu-laptop",
Jonathan Woithed0482532007-08-29 15:58:19 +0930628 }
629};
630
Mathias Krausefbe9b792014-07-16 19:43:11 +0200631static void __init dmi_check_cb_common(const struct dmi_system_id *id)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930632{
Joe Perches77bad7c2011-03-29 15:21:39 -0700633 pr_info("Identified laptop model '%s'\n", id->ident);
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930634}
635
Mathias Krausefbe9b792014-07-16 19:43:11 +0200636static int __init dmi_check_cb_s6410(const struct dmi_system_id *id)
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930637{
638 dmi_check_cb_common(id);
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100639 fujitsu_bl->keycode1 = KEY_SCREENLOCK; /* "Lock" */
640 fujitsu_bl->keycode2 = KEY_HELP; /* "Mobility Center" */
Axel Lin80183a42010-07-20 15:19:40 -0700641 return 1;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930642}
643
Mathias Krausefbe9b792014-07-16 19:43:11 +0200644static int __init dmi_check_cb_s6420(const struct dmi_system_id *id)
Tony Vroon56960b52008-11-09 04:20:05 +0000645{
646 dmi_check_cb_common(id);
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100647 fujitsu_bl->keycode1 = KEY_SCREENLOCK; /* "Lock" */
648 fujitsu_bl->keycode2 = KEY_HELP; /* "Mobility Center" */
Axel Lin80183a42010-07-20 15:19:40 -0700649 return 1;
Tony Vroon56960b52008-11-09 04:20:05 +0000650}
651
Mathias Krausefbe9b792014-07-16 19:43:11 +0200652static int __init dmi_check_cb_p8010(const struct dmi_system_id *id)
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930653{
654 dmi_check_cb_common(id);
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100655 fujitsu_bl->keycode1 = KEY_HELP; /* "Support" */
656 fujitsu_bl->keycode3 = KEY_SWITCHVIDEOMODE; /* "Presentation" */
657 fujitsu_bl->keycode4 = KEY_WWW; /* "Internet" */
Axel Lin80183a42010-07-20 15:19:40 -0700658 return 1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930659}
660
Mathias Krausefbe9b792014-07-16 19:43:11 +0200661static const struct dmi_system_id fujitsu_dmi_table[] __initconst = {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930662 {
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930663 .ident = "Fujitsu Siemens S6410",
Jonathan Woithe20b93732008-06-11 10:14:56 +0930664 .matches = {
665 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
666 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"),
667 },
668 .callback = dmi_check_cb_s6410},
Jonathan Woithed8196a92008-08-29 11:06:21 +0930669 {
Tony Vroon56960b52008-11-09 04:20:05 +0000670 .ident = "Fujitsu Siemens S6420",
671 .matches = {
672 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
673 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"),
674 },
675 .callback = dmi_check_cb_s6420},
676 {
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930677 .ident = "Fujitsu LifeBook P8010",
Jonathan Woithed8196a92008-08-29 11:06:21 +0930678 .matches = {
679 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
680 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P8010"),
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930681 },
682 .callback = dmi_check_cb_p8010},
Jonathan Woithe20b93732008-06-11 10:14:56 +0930683 {}
684};
685
686/* ACPI device for LCD brightness control */
Jonathan Woithed0482532007-08-29 15:58:19 +0930687
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100688static int acpi_fujitsu_bl_add(struct acpi_device *device)
Jonathan Woithed0482532007-08-29 15:58:19 +0930689{
Jonathan Woithed0482532007-08-29 15:58:19 +0930690 int state = 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930691 struct input_dev *input;
692 int error;
Jonathan Woithed0482532007-08-29 15:58:19 +0930693
694 if (!device)
695 return -EINVAL;
696
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100697 fujitsu_bl->acpi_handle = device->handle;
698 sprintf(acpi_device_name(device), "%s", ACPI_FUJITSU_BL_DEVICE_NAME);
Jonathan Woithed0482532007-08-29 15:58:19 +0930699 sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS);
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100700 device->driver_data = fujitsu_bl;
Jonathan Woithed0482532007-08-29 15:58:19 +0930701
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100702 fujitsu_bl->input = input = input_allocate_device();
Jonathan Woithe20b93732008-06-11 10:14:56 +0930703 if (!input) {
704 error = -ENOMEM;
Bjorn Helgaas700b6722009-04-07 15:37:16 +0000705 goto err_stop;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930706 }
707
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100708 snprintf(fujitsu_bl->phys, sizeof(fujitsu_bl->phys),
Jonathan Woithe20b93732008-06-11 10:14:56 +0930709 "%s/video/input0", acpi_device_hid(device));
710
711 input->name = acpi_device_name(device);
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100712 input->phys = fujitsu_bl->phys;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930713 input->id.bustype = BUS_HOST;
714 input->id.product = 0x06;
715 input->dev.parent = &device->dev;
716 input->evbit[0] = BIT(EV_KEY);
717 set_bit(KEY_BRIGHTNESSUP, input->keybit);
718 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
719 set_bit(KEY_UNKNOWN, input->keybit);
720
721 error = input_register_device(input);
722 if (error)
723 goto err_free_input_dev;
724
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100725 error = acpi_bus_update_power(fujitsu_bl->acpi_handle, &state);
Julia Lawallb30bb892013-12-29 23:47:36 +0100726 if (error) {
Joe Perches77bad7c2011-03-29 15:21:39 -0700727 pr_err("Error reading power state\n");
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930728 goto err_unregister_input_dev;
Jonathan Woithed0482532007-08-29 15:58:19 +0930729 }
730
Joe Perches77bad7c2011-03-29 15:21:39 -0700731 pr_info("ACPI: %s [%s] (%s)\n",
Jonathan Woithed0482532007-08-29 15:58:19 +0930732 acpi_device_name(device), acpi_device_bid(device),
733 !device->power.state ? "on" : "off");
734
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100735 fujitsu_bl->dev = device;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930736
Zhang Ruidd13b9a2013-09-03 08:32:03 +0800737 if (acpi_has_method(device->handle, METHOD_NAME__INI)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930738 vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n");
739 if (ACPI_FAILURE
740 (acpi_evaluate_object
741 (device->handle, METHOD_NAME__INI, NULL, NULL)))
Joe Perches77bad7c2011-03-29 15:21:39 -0700742 pr_err("_INI Method failed\n");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930743 }
744
Alan Jenkins5296a732017-02-08 14:46:32 +0100745 if (use_alt_lcd_levels == -1) {
746 if (acpi_has_method(NULL, "\\_SB.PCI0.LPCB.FJEX.SBL2"))
747 use_alt_lcd_levels = 1;
748 else
749 use_alt_lcd_levels = 0;
750 vdbg_printk(FUJLAPTOP_DBG_TRACE, "auto-detected usealt as %i\n",
751 use_alt_lcd_levels);
752 }
753
Jonathan Woithe20b93732008-06-11 10:14:56 +0930754 /* do config (detect defaults) */
Jonathan Woithe20b93732008-06-11 10:14:56 +0930755 use_alt_lcd_levels = use_alt_lcd_levels == 1 ? 1 : 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930756 disable_brightness_adjust = disable_brightness_adjust == 1 ? 1 : 0;
757 vdbg_printk(FUJLAPTOP_DBG_INFO,
Tony Vroonf87a1a52009-01-07 10:11:24 +0000758 "config: [alt interface: %d], [adjust disable: %d]\n",
759 use_alt_lcd_levels, disable_brightness_adjust);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930760
761 if (get_max_brightness() <= 0)
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100762 fujitsu_bl->max_brightness = FUJITSU_LCD_N_LEVELS;
Tony Vroonf87a1a52009-01-07 10:11:24 +0000763 get_lcd_level();
Jonathan Woithe20b93732008-06-11 10:14:56 +0930764
Julia Lawallb30bb892013-12-29 23:47:36 +0100765 return 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930766
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930767err_unregister_input_dev:
768 input_unregister_device(input);
Axel Lin8e4e2ef2010-07-20 15:19:34 -0700769 input = NULL;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930770err_free_input_dev:
771 input_free_device(input);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930772err_stop:
Julia Lawallb30bb892013-12-29 23:47:36 +0100773 return error;
Jonathan Woithed0482532007-08-29 15:58:19 +0930774}
775
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100776static int acpi_fujitsu_bl_remove(struct acpi_device *device)
Jonathan Woithed0482532007-08-29 15:58:19 +0930777{
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100778 struct fujitsu_bl *fujitsu_bl = acpi_driver_data(device);
779 struct input_dev *input = fujitsu_bl->input;
Jonathan Woithed0482532007-08-29 15:58:19 +0930780
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930781 input_unregister_device(input);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930782
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100783 fujitsu_bl->acpi_handle = NULL;
Jonathan Woithed0482532007-08-29 15:58:19 +0930784
785 return 0;
786}
787
Jonathan Woithe20b93732008-06-11 10:14:56 +0930788/* Brightness notify */
789
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100790static void acpi_fujitsu_bl_notify(struct acpi_device *device, u32 event)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930791{
792 struct input_dev *input;
793 int keycode;
794 int oldb, newb;
795
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100796 input = fujitsu_bl->input;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930797
798 switch (event) {
799 case ACPI_FUJITSU_NOTIFY_CODE1:
800 keycode = 0;
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100801 oldb = fujitsu_bl->brightness_level;
Tony Vroonf87a1a52009-01-07 10:11:24 +0000802 get_lcd_level();
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100803 newb = fujitsu_bl->brightness_level;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930804
805 vdbg_printk(FUJLAPTOP_DBG_TRACE,
806 "brightness button event [%i -> %i (%i)]\n",
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100807 oldb, newb, fujitsu_bl->brightness_changed);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930808
Tony Vroonf87a1a52009-01-07 10:11:24 +0000809 if (oldb < newb) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930810 if (disable_brightness_adjust != 1) {
811 if (use_alt_lcd_levels)
812 set_lcd_level_alt(newb);
813 else
814 set_lcd_level(newb);
815 }
Tony Vroonf87a1a52009-01-07 10:11:24 +0000816 keycode = KEY_BRIGHTNESSUP;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930817 } else if (oldb > newb) {
818 if (disable_brightness_adjust != 1) {
819 if (use_alt_lcd_levels)
820 set_lcd_level_alt(newb);
821 else
822 set_lcd_level(newb);
823 }
Tony Vroonf87a1a52009-01-07 10:11:24 +0000824 keycode = KEY_BRIGHTNESSDOWN;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930825 }
826 break;
827 default:
828 keycode = KEY_UNKNOWN;
829 vdbg_printk(FUJLAPTOP_DBG_WARN,
830 "unsupported event [0x%x]\n", event);
831 break;
832 }
833
834 if (keycode != 0) {
835 input_report_key(input, keycode, 1);
836 input_sync(input);
837 input_report_key(input, keycode, 0);
838 input_sync(input);
839 }
Jonathan Woithe20b93732008-06-11 10:14:56 +0930840}
841
842/* ACPI device for hotkey handling */
843
Alan Jenkins6942eab2017-02-08 14:46:25 +0100844static int acpi_fujitsu_laptop_add(struct acpi_device *device)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930845{
Jonathan Woithe20b93732008-06-11 10:14:56 +0930846 int result = 0;
847 int state = 0;
848 struct input_dev *input;
849 int error;
850 int i;
851
852 if (!device)
853 return -EINVAL;
854
Alan Jenkins6942eab2017-02-08 14:46:25 +0100855 fujitsu_laptop->acpi_handle = device->handle;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930856 sprintf(acpi_device_name(device), "%s",
Alan Jenkins6942eab2017-02-08 14:46:25 +0100857 ACPI_FUJITSU_LAPTOP_DEVICE_NAME);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930858 sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS);
Alan Jenkins6942eab2017-02-08 14:46:25 +0100859 device->driver_data = fujitsu_laptop;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930860
Jonathan Woithe20b93732008-06-11 10:14:56 +0930861 /* kfifo */
Alan Jenkins6942eab2017-02-08 14:46:25 +0100862 spin_lock_init(&fujitsu_laptop->fifo_lock);
863 error = kfifo_alloc(&fujitsu_laptop->fifo, RINGBUFFERSIZE * sizeof(int),
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800864 GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -0800865 if (error) {
Joe Perches77bad7c2011-03-29 15:21:39 -0700866 pr_err("kfifo_alloc failed\n");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930867 goto err_stop;
868 }
869
Alan Jenkins6942eab2017-02-08 14:46:25 +0100870 fujitsu_laptop->input = input = input_allocate_device();
Jonathan Woithe20b93732008-06-11 10:14:56 +0930871 if (!input) {
872 error = -ENOMEM;
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +0000873 goto err_free_fifo;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930874 }
875
Alan Jenkins6942eab2017-02-08 14:46:25 +0100876 snprintf(fujitsu_laptop->phys, sizeof(fujitsu_laptop->phys),
Jonathan Woithe20b93732008-06-11 10:14:56 +0930877 "%s/video/input0", acpi_device_hid(device));
878
879 input->name = acpi_device_name(device);
Alan Jenkins6942eab2017-02-08 14:46:25 +0100880 input->phys = fujitsu_laptop->phys;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930881 input->id.bustype = BUS_HOST;
882 input->id.product = 0x06;
883 input->dev.parent = &device->dev;
Tony Vroon3a407082008-12-31 18:19:59 +0000884
885 set_bit(EV_KEY, input->evbit);
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100886 set_bit(fujitsu_bl->keycode1, input->keybit);
887 set_bit(fujitsu_bl->keycode2, input->keybit);
888 set_bit(fujitsu_bl->keycode3, input->keybit);
889 set_bit(fujitsu_bl->keycode4, input->keybit);
890 set_bit(fujitsu_bl->keycode5, input->keybit);
Michał Kępień1879e692016-06-28 09:25:50 +0200891 set_bit(KEY_TOUCHPAD_TOGGLE, input->keybit);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930892 set_bit(KEY_UNKNOWN, input->keybit);
893
894 error = input_register_device(input);
895 if (error)
896 goto err_free_input_dev;
897
Alan Jenkins6942eab2017-02-08 14:46:25 +0100898 error = acpi_bus_update_power(fujitsu_laptop->acpi_handle, &state);
Julia Lawallb30bb892013-12-29 23:47:36 +0100899 if (error) {
Joe Perches77bad7c2011-03-29 15:21:39 -0700900 pr_err("Error reading power state\n");
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930901 goto err_unregister_input_dev;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930902 }
903
Joe Perches77bad7c2011-03-29 15:21:39 -0700904 pr_info("ACPI: %s [%s] (%s)\n",
905 acpi_device_name(device), acpi_device_bid(device),
906 !device->power.state ? "on" : "off");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930907
Alan Jenkins6942eab2017-02-08 14:46:25 +0100908 fujitsu_laptop->dev = device;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930909
Zhang Ruidd13b9a2013-09-03 08:32:03 +0800910 if (acpi_has_method(device->handle, METHOD_NAME__INI)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930911 vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n");
912 if (ACPI_FAILURE
913 (acpi_evaluate_object
914 (device->handle, METHOD_NAME__INI, NULL, NULL)))
Joe Perches77bad7c2011-03-29 15:21:39 -0700915 pr_err("_INI Method failed\n");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930916 }
917
Tony Vroon3a407082008-12-31 18:19:59 +0000918 i = 0;
919 while (call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0) != 0
920 && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE)
921 ; /* No action, result is discarded */
Jonathan Woithe20b93732008-06-11 10:14:56 +0930922 vdbg_printk(FUJLAPTOP_DBG_INFO, "Discarded %i ringbuffer entries\n", i);
923
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100924 fujitsu_laptop->flags_supported =
925 call_fext_func(FUNC_FLAGS, 0x0, 0x0, 0x0);
Tony Vroon4898c2b2009-02-02 11:11:10 +0000926
927 /* Make sure our bitmask of supported functions is cleared if the
928 RFKILL function block is not implemented, like on the S7020. */
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100929 if (fujitsu_laptop->flags_supported == UNSUPPORTED_CMD)
930 fujitsu_laptop->flags_supported = 0;
Tony Vroon4898c2b2009-02-02 11:11:10 +0000931
Alan Jenkins8ef27bd2017-02-08 14:46:27 +0100932 if (fujitsu_laptop->flags_supported)
933 fujitsu_laptop->flags_state =
934 call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0);
Tony Vroon3a407082008-12-31 18:19:59 +0000935
936 /* Suspect this is a keymap of the application panel, print it */
Joe Perches77bad7c2011-03-29 15:21:39 -0700937 pr_info("BTNI: [0x%x]\n", call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0));
Tony Vroon3a407082008-12-31 18:19:59 +0000938
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400939#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000940 if (call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON) {
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100941 result = led_classdev_register(&fujitsu_bl->pf_device->dev,
Tony Vroon3a407082008-12-31 18:19:59 +0000942 &logolamp_led);
943 if (result == 0) {
Alan Jenkins6942eab2017-02-08 14:46:25 +0100944 fujitsu_laptop->logolamp_registered = 1;
Tony Vroon3a407082008-12-31 18:19:59 +0000945 } else {
Joe Perches77bad7c2011-03-29 15:21:39 -0700946 pr_err("Could not register LED handler for logo lamp, error %i\n",
947 result);
Tony Vroon3a407082008-12-31 18:19:59 +0000948 }
949 }
950
951 if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS) &&
952 (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) == 0x0)) {
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100953 result = led_classdev_register(&fujitsu_bl->pf_device->dev,
Tony Vroon3a407082008-12-31 18:19:59 +0000954 &kblamps_led);
955 if (result == 0) {
Alan Jenkins6942eab2017-02-08 14:46:25 +0100956 fujitsu_laptop->kblamps_registered = 1;
Tony Vroon3a407082008-12-31 18:19:59 +0000957 } else {
Joe Perches77bad7c2011-03-29 15:21:39 -0700958 pr_err("Could not register LED handler for keyboard lamps, error %i\n",
959 result);
Tony Vroon3a407082008-12-31 18:19:59 +0000960 }
961 }
Michał Kępień4f625682016-04-12 22:06:34 +0930962
963 /*
964 * BTNI bit 24 seems to indicate the presence of a radio toggle
965 * button in place of a slide switch, and all such machines appear
966 * to also have an RF LED. Therefore use bit 24 as an indicator
967 * that an RF LED is present.
968 */
969 if (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) & BIT(24)) {
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100970 result = led_classdev_register(&fujitsu_bl->pf_device->dev,
Michał Kępień4f625682016-04-12 22:06:34 +0930971 &radio_led);
972 if (result == 0) {
Alan Jenkins6942eab2017-02-08 14:46:25 +0100973 fujitsu_laptop->radio_led_registered = 1;
Michał Kępień4f625682016-04-12 22:06:34 +0930974 } else {
975 pr_err("Could not register LED handler for radio LED, error %i\n",
976 result);
977 }
978 }
Matej Gromad6b88f62016-06-21 10:09:21 +0200979
980 /* Support for eco led is not always signaled in bit corresponding
981 * to the bit used to control the led. According to the DSDT table,
982 * bit 14 seems to indicate presence of said led as well.
983 * Confirm by testing the status.
984 */
985 if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & BIT(14)) &&
986 (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) != UNSUPPORTED_CMD)) {
Alan Jenkins9fc5cf62017-02-08 14:46:24 +0100987 result = led_classdev_register(&fujitsu_bl->pf_device->dev,
Matej Gromad6b88f62016-06-21 10:09:21 +0200988 &eco_led);
989 if (result == 0) {
Alan Jenkins6942eab2017-02-08 14:46:25 +0100990 fujitsu_laptop->eco_led_registered = 1;
Matej Gromad6b88f62016-06-21 10:09:21 +0200991 } else {
992 pr_err("Could not register LED handler for eco LED, error %i\n",
993 result);
994 }
995 }
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930996#endif
Tony Vroon3a407082008-12-31 18:19:59 +0000997
Jonathan Woithe20b93732008-06-11 10:14:56 +0930998 return result;
999
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301000err_unregister_input_dev:
1001 input_unregister_device(input);
Axel Lin8e4e2ef2010-07-20 15:19:34 -07001002 input = NULL;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301003err_free_input_dev:
1004 input_free_device(input);
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +00001005err_free_fifo:
Alan Jenkins6942eab2017-02-08 14:46:25 +01001006 kfifo_free(&fujitsu_laptop->fifo);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301007err_stop:
Julia Lawallb30bb892013-12-29 23:47:36 +01001008 return error;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301009}
1010
Alan Jenkins6942eab2017-02-08 14:46:25 +01001011static int acpi_fujitsu_laptop_remove(struct acpi_device *device)
Jonathan Woithe20b93732008-06-11 10:14:56 +09301012{
Alan Jenkins6942eab2017-02-08 14:46:25 +01001013 struct fujitsu_laptop *fujitsu_laptop = acpi_driver_data(device);
1014 struct input_dev *input = fujitsu_laptop->input;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301015
Javier Martinez Canillas575b2452016-04-26 18:28:17 -04001016#if IS_ENABLED(CONFIG_LEDS_CLASS)
Alan Jenkins6942eab2017-02-08 14:46:25 +01001017 if (fujitsu_laptop->logolamp_registered)
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301018 led_classdev_unregister(&logolamp_led);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301019
Alan Jenkins6942eab2017-02-08 14:46:25 +01001020 if (fujitsu_laptop->kblamps_registered)
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301021 led_classdev_unregister(&kblamps_led);
Michał Kępień4f625682016-04-12 22:06:34 +09301022
Alan Jenkins6942eab2017-02-08 14:46:25 +01001023 if (fujitsu_laptop->radio_led_registered)
Michał Kępień4f625682016-04-12 22:06:34 +09301024 led_classdev_unregister(&radio_led);
Matej Gromad6b88f62016-06-21 10:09:21 +02001025
Alan Jenkins6942eab2017-02-08 14:46:25 +01001026 if (fujitsu_laptop->eco_led_registered)
Matej Gromad6b88f62016-06-21 10:09:21 +02001027 led_classdev_unregister(&eco_led);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301028#endif
Jonathan Woithe20b93732008-06-11 10:14:56 +09301029
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301030 input_unregister_device(input);
1031
Alan Jenkins6942eab2017-02-08 14:46:25 +01001032 kfifo_free(&fujitsu_laptop->fifo);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301033
Alan Jenkins6942eab2017-02-08 14:46:25 +01001034 fujitsu_laptop->acpi_handle = NULL;
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301035
Jonathan Woithe20b93732008-06-11 10:14:56 +09301036 return 0;
1037}
1038
Alan Jenkins6942eab2017-02-08 14:46:25 +01001039static void acpi_fujitsu_laptop_press(int keycode)
Michał Kępień2451d192017-01-11 09:59:31 +01001040{
Alan Jenkins6942eab2017-02-08 14:46:25 +01001041 struct input_dev *input = fujitsu_laptop->input;
Michał Kępień2451d192017-01-11 09:59:31 +01001042 int status;
1043
Alan Jenkins6942eab2017-02-08 14:46:25 +01001044 status = kfifo_in_locked(&fujitsu_laptop->fifo,
Michał Kępień2451d192017-01-11 09:59:31 +01001045 (unsigned char *)&keycode, sizeof(keycode),
Alan Jenkins6942eab2017-02-08 14:46:25 +01001046 &fujitsu_laptop->fifo_lock);
Michał Kępień2451d192017-01-11 09:59:31 +01001047 if (status != sizeof(keycode)) {
1048 vdbg_printk(FUJLAPTOP_DBG_WARN,
1049 "Could not push keycode [0x%x]\n", keycode);
Michał Kępieńa28c7e92017-01-11 09:59:33 +01001050 return;
Michał Kępień2451d192017-01-11 09:59:31 +01001051 }
Michał Kępieńa28c7e92017-01-11 09:59:33 +01001052 input_report_key(input, keycode, 1);
1053 input_sync(input);
1054 vdbg_printk(FUJLAPTOP_DBG_TRACE,
1055 "Push keycode into ringbuffer [%d]\n", keycode);
Michał Kępień2451d192017-01-11 09:59:31 +01001056}
1057
Alan Jenkins6942eab2017-02-08 14:46:25 +01001058static void acpi_fujitsu_laptop_release(void)
Michał Kępień2451d192017-01-11 09:59:31 +01001059{
Alan Jenkins6942eab2017-02-08 14:46:25 +01001060 struct input_dev *input = fujitsu_laptop->input;
Michał Kępień2451d192017-01-11 09:59:31 +01001061 int keycode, status;
1062
Michał Kępień29544f02017-01-11 09:59:32 +01001063 while (true) {
Alan Jenkins6942eab2017-02-08 14:46:25 +01001064 status = kfifo_out_locked(&fujitsu_laptop->fifo,
Michał Kępień2451d192017-01-11 09:59:31 +01001065 (unsigned char *)&keycode,
1066 sizeof(keycode),
Alan Jenkins6942eab2017-02-08 14:46:25 +01001067 &fujitsu_laptop->fifo_lock);
Michał Kępień29544f02017-01-11 09:59:32 +01001068 if (status != sizeof(keycode))
1069 return;
Michał Kępień2451d192017-01-11 09:59:31 +01001070 input_report_key(input, keycode, 0);
1071 input_sync(input);
1072 vdbg_printk(FUJLAPTOP_DBG_TRACE,
1073 "Pop keycode from ringbuffer [%d]\n", keycode);
1074 }
1075}
1076
Alan Jenkins6942eab2017-02-08 14:46:25 +01001077static void acpi_fujitsu_laptop_notify(struct acpi_device *device, u32 event)
Jonathan Woithe20b93732008-06-11 10:14:56 +09301078{
1079 struct input_dev *input;
Michał Kępień2451d192017-01-11 09:59:31 +01001080 int keycode;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301081 unsigned int irb = 1;
Michał Kępień2451d192017-01-11 09:59:31 +01001082 int i;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301083
Alan Jenkins6942eab2017-02-08 14:46:25 +01001084 input = fujitsu_laptop->input;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301085
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001086 if (event != ACPI_FUJITSU_NOTIFY_CODE1) {
Jonathan Woithe20b93732008-06-11 10:14:56 +09301087 keycode = KEY_UNKNOWN;
1088 vdbg_printk(FUJLAPTOP_DBG_WARN,
1089 "Unsupported event [0x%x]\n", event);
1090 input_report_key(input, keycode, 1);
1091 input_sync(input);
1092 input_report_key(input, keycode, 0);
1093 input_sync(input);
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001094 return;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301095 }
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001096
Alan Jenkins8ef27bd2017-02-08 14:46:27 +01001097 if (fujitsu_laptop->flags_supported)
1098 fujitsu_laptop->flags_state =
1099 call_fext_func(FUNC_FLAGS, 0x4, 0x0, 0x0);
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001100
1101 i = 0;
1102 while ((irb =
1103 call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0)) != 0
1104 && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) {
1105 switch (irb & 0x4ff) {
1106 case KEY1_CODE:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001107 keycode = fujitsu_bl->keycode1;
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001108 break;
1109 case KEY2_CODE:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001110 keycode = fujitsu_bl->keycode2;
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001111 break;
1112 case KEY3_CODE:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001113 keycode = fujitsu_bl->keycode3;
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001114 break;
1115 case KEY4_CODE:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001116 keycode = fujitsu_bl->keycode4;
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001117 break;
1118 case KEY5_CODE:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001119 keycode = fujitsu_bl->keycode5;
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001120 break;
1121 case 0:
1122 keycode = 0;
1123 break;
1124 default:
1125 vdbg_printk(FUJLAPTOP_DBG_WARN,
1126 "Unknown GIRB result [%x]\n", irb);
1127 keycode = -1;
1128 break;
1129 }
Michał Kępień2451d192017-01-11 09:59:31 +01001130
1131 if (keycode > 0)
Alan Jenkins6942eab2017-02-08 14:46:25 +01001132 acpi_fujitsu_laptop_press(keycode);
Michał Kępień2451d192017-01-11 09:59:31 +01001133 else if (keycode == 0)
Alan Jenkins6942eab2017-02-08 14:46:25 +01001134 acpi_fujitsu_laptop_release();
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001135 }
1136
1137 /* On some models (first seen on the Skylake-based Lifebook
1138 * E736/E746/E756), the touchpad toggle hotkey (Fn+F4) is
Alan Jenkins8ef27bd2017-02-08 14:46:27 +01001139 * handled in software; its state is queried using FUNC_FLAGS
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001140 */
Alan Jenkins8ef27bd2017-02-08 14:46:27 +01001141 if ((fujitsu_laptop->flags_supported & BIT(26)) &&
1142 (call_fext_func(FUNC_FLAGS, 0x1, 0x0, 0x0) & BIT(26))) {
Michał Kępieńeb357cb2017-01-11 09:59:30 +01001143 keycode = KEY_TOUCHPAD_TOGGLE;
1144 input_report_key(input, keycode, 1);
1145 input_sync(input);
1146 input_report_key(input, keycode, 0);
1147 input_sync(input);
1148 }
1149
Jonathan Woithe20b93732008-06-11 10:14:56 +09301150}
1151
1152/* Initialization */
1153
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001154static const struct acpi_device_id fujitsu_bl_device_ids[] = {
1155 {ACPI_FUJITSU_BL_HID, 0},
Jonathan Woithed0482532007-08-29 15:58:19 +09301156 {"", 0},
1157};
1158
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001159static struct acpi_driver acpi_fujitsu_bl_driver = {
1160 .name = ACPI_FUJITSU_BL_DRIVER_NAME,
Jonathan Woithed0482532007-08-29 15:58:19 +09301161 .class = ACPI_FUJITSU_CLASS,
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001162 .ids = fujitsu_bl_device_ids,
Jonathan Woithed0482532007-08-29 15:58:19 +09301163 .ops = {
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001164 .add = acpi_fujitsu_bl_add,
1165 .remove = acpi_fujitsu_bl_remove,
1166 .notify = acpi_fujitsu_bl_notify,
Jonathan Woithed0482532007-08-29 15:58:19 +09301167 },
1168};
1169
Alan Jenkins6942eab2017-02-08 14:46:25 +01001170static const struct acpi_device_id fujitsu_laptop_device_ids[] = {
1171 {ACPI_FUJITSU_LAPTOP_HID, 0},
Jonathan Woithe20b93732008-06-11 10:14:56 +09301172 {"", 0},
1173};
1174
Alan Jenkins6942eab2017-02-08 14:46:25 +01001175static struct acpi_driver acpi_fujitsu_laptop_driver = {
1176 .name = ACPI_FUJITSU_LAPTOP_DRIVER_NAME,
Jonathan Woithe20b93732008-06-11 10:14:56 +09301177 .class = ACPI_FUJITSU_CLASS,
Alan Jenkins6942eab2017-02-08 14:46:25 +01001178 .ids = fujitsu_laptop_device_ids,
Jonathan Woithe20b93732008-06-11 10:14:56 +09301179 .ops = {
Alan Jenkins6942eab2017-02-08 14:46:25 +01001180 .add = acpi_fujitsu_laptop_add,
1181 .remove = acpi_fujitsu_laptop_remove,
1182 .notify = acpi_fujitsu_laptop_notify,
Jonathan Woithe20b93732008-06-11 10:14:56 +09301183 },
1184};
Jonathan Woithed0482532007-08-29 15:58:19 +09301185
Zhang Rui49901412014-09-09 00:21:59 +02001186static const struct acpi_device_id fujitsu_ids[] __used = {
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001187 {ACPI_FUJITSU_BL_HID, 0},
Alan Jenkins6942eab2017-02-08 14:46:25 +01001188 {ACPI_FUJITSU_LAPTOP_HID, 0},
Zhang Rui49901412014-09-09 00:21:59 +02001189 {"", 0}
1190};
1191MODULE_DEVICE_TABLE(acpi, fujitsu_ids);
1192
Jonathan Woithed0482532007-08-29 15:58:19 +09301193static int __init fujitsu_init(void)
1194{
Alan Jenkinsc1d1e8a2017-02-08 14:46:30 +01001195 int ret, max_brightness;
Jonathan Woithed0482532007-08-29 15:58:19 +09301196
1197 if (acpi_disabled)
1198 return -ENODEV;
1199
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001200 fujitsu_bl = kzalloc(sizeof(struct fujitsu_bl), GFP_KERNEL);
1201 if (!fujitsu_bl)
Jonathan Woithed0482532007-08-29 15:58:19 +09301202 return -ENOMEM;
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001203 fujitsu_bl->keycode1 = KEY_PROG1;
1204 fujitsu_bl->keycode2 = KEY_PROG2;
1205 fujitsu_bl->keycode3 = KEY_PROG3;
1206 fujitsu_bl->keycode4 = KEY_PROG4;
1207 fujitsu_bl->keycode5 = KEY_RFKILL;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301208 dmi_check_system(fujitsu_dmi_table);
Jonathan Woithed0482532007-08-29 15:58:19 +09301209
Alan Jenkinsc1d1e8a2017-02-08 14:46:30 +01001210 ret = acpi_bus_register_driver(&acpi_fujitsu_bl_driver);
1211 if (ret)
Jonathan Woithed0482532007-08-29 15:58:19 +09301212 goto fail_acpi;
Jonathan Woithed0482532007-08-29 15:58:19 +09301213
Jonathan Woithed0482532007-08-29 15:58:19 +09301214 /* Register platform stuff */
1215
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001216 fujitsu_bl->pf_device = platform_device_alloc("fujitsu-laptop", -1);
1217 if (!fujitsu_bl->pf_device) {
Jonathan Woithed0482532007-08-29 15:58:19 +09301218 ret = -ENOMEM;
1219 goto fail_platform_driver;
1220 }
1221
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001222 ret = platform_device_add(fujitsu_bl->pf_device);
Jonathan Woithed0482532007-08-29 15:58:19 +09301223 if (ret)
1224 goto fail_platform_device1;
1225
1226 ret =
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001227 sysfs_create_group(&fujitsu_bl->pf_device->dev.kobj,
Alan Jenkins16506022017-02-08 14:46:26 +01001228 &fujitsu_pf_attribute_group);
Jonathan Woithed0482532007-08-29 15:58:19 +09301229 if (ret)
1230 goto fail_platform_device2;
1231
Jonathan Woithe20b93732008-06-11 10:14:56 +09301232 /* Register backlight stuff */
1233
Hans de Goede413226f2015-06-16 16:28:03 +02001234 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001235 struct backlight_properties props;
1236
1237 memset(&props, 0, sizeof(struct backlight_properties));
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001238 max_brightness = fujitsu_bl->max_brightness;
Matthew Garrettbb7ca742011-03-22 16:30:21 -07001239 props.type = BACKLIGHT_PLATFORM;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001240 props.max_brightness = max_brightness - 1;
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001241 fujitsu_bl->bl_device = backlight_device_register("fujitsu-laptop",
1242 NULL, NULL,
1243 &fujitsu_bl_ops,
1244 &props);
1245 if (IS_ERR(fujitsu_bl->bl_device)) {
1246 ret = PTR_ERR(fujitsu_bl->bl_device);
1247 fujitsu_bl->bl_device = NULL;
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301248 goto fail_sysfs_group;
1249 }
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001250 fujitsu_bl->bl_device->props.brightness = fujitsu_bl->brightness_level;
Thomas Renninger7d5c89a2008-08-01 17:38:00 +02001251 }
Jonathan Woithe20b93732008-06-11 10:14:56 +09301252
Alan Jenkins16506022017-02-08 14:46:26 +01001253 ret = platform_driver_register(&fujitsu_pf_driver);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301254 if (ret)
1255 goto fail_backlight;
1256
Alan Jenkins6942eab2017-02-08 14:46:25 +01001257 /* Register laptop driver */
Jonathan Woithe20b93732008-06-11 10:14:56 +09301258
Alan Jenkins6942eab2017-02-08 14:46:25 +01001259 fujitsu_laptop = kzalloc(sizeof(struct fujitsu_laptop), GFP_KERNEL);
1260 if (!fujitsu_laptop) {
Jonathan Woithe20b93732008-06-11 10:14:56 +09301261 ret = -ENOMEM;
Alan Jenkins6942eab2017-02-08 14:46:25 +01001262 goto fail_laptop;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301263 }
Jonathan Woithe20b93732008-06-11 10:14:56 +09301264
Alan Jenkinsc1d1e8a2017-02-08 14:46:30 +01001265 ret = acpi_bus_register_driver(&acpi_fujitsu_laptop_driver);
1266 if (ret)
Alan Jenkins6942eab2017-02-08 14:46:25 +01001267 goto fail_laptop1;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301268
Tony Vroon3a407082008-12-31 18:19:59 +00001269 /* Sync backlight power status (needs FUJ02E3 device, hence deferred) */
Hans de Goede413226f2015-06-16 16:28:03 +02001270 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
Tony Vroon3a407082008-12-31 18:19:59 +00001271 if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3)
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001272 fujitsu_bl->bl_device->props.power = FB_BLANK_POWERDOWN;
Tony Vroon3a407082008-12-31 18:19:59 +00001273 else
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001274 fujitsu_bl->bl_device->props.power = FB_BLANK_UNBLANK;
Tony Vroon3a407082008-12-31 18:19:59 +00001275 }
1276
Joe Perches77bad7c2011-03-29 15:21:39 -07001277 pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n");
Jonathan Woithed0482532007-08-29 15:58:19 +09301278
1279 return 0;
1280
Alan Jenkins6942eab2017-02-08 14:46:25 +01001281fail_laptop1:
1282 kfree(fujitsu_laptop);
1283fail_laptop:
Alan Jenkins16506022017-02-08 14:46:26 +01001284 platform_driver_unregister(&fujitsu_pf_driver);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301285fail_backlight:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001286 backlight_device_unregister(fujitsu_bl->bl_device);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301287fail_sysfs_group:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001288 sysfs_remove_group(&fujitsu_bl->pf_device->dev.kobj,
Alan Jenkins16506022017-02-08 14:46:26 +01001289 &fujitsu_pf_attribute_group);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301290fail_platform_device2:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001291 platform_device_del(fujitsu_bl->pf_device);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301292fail_platform_device1:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001293 platform_device_put(fujitsu_bl->pf_device);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301294fail_platform_driver:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001295 acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301296fail_acpi:
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001297 kfree(fujitsu_bl);
Jonathan Woithed0482532007-08-29 15:58:19 +09301298
1299 return ret;
1300}
1301
1302static void __exit fujitsu_cleanup(void)
1303{
Alan Jenkins6942eab2017-02-08 14:46:25 +01001304 acpi_bus_unregister_driver(&acpi_fujitsu_laptop_driver);
Tony Vroon3a407082008-12-31 18:19:59 +00001305
Alan Jenkins6942eab2017-02-08 14:46:25 +01001306 kfree(fujitsu_laptop);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301307
Alan Jenkins16506022017-02-08 14:46:26 +01001308 platform_driver_unregister(&fujitsu_pf_driver);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301309
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001310 backlight_device_unregister(fujitsu_bl->bl_device);
Tony Vroon3a407082008-12-31 18:19:59 +00001311
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001312 sysfs_remove_group(&fujitsu_bl->pf_device->dev.kobj,
Alan Jenkins16506022017-02-08 14:46:26 +01001313 &fujitsu_pf_attribute_group);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301314
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001315 platform_device_unregister(fujitsu_bl->pf_device);
Jonathan Woithed0482532007-08-29 15:58:19 +09301316
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001317 acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver);
Jonathan Woithed0482532007-08-29 15:58:19 +09301318
Alan Jenkins9fc5cf62017-02-08 14:46:24 +01001319 kfree(fujitsu_bl);
Jonathan Woithed0482532007-08-29 15:58:19 +09301320
Joe Perches77bad7c2011-03-29 15:21:39 -07001321 pr_info("driver unloaded\n");
Jonathan Woithed0482532007-08-29 15:58:19 +09301322}
1323
1324module_init(fujitsu_init);
1325module_exit(fujitsu_cleanup);
1326
Jonathan Woithe20b93732008-06-11 10:14:56 +09301327module_param(use_alt_lcd_levels, uint, 0644);
1328MODULE_PARM_DESC(use_alt_lcd_levels,
1329 "Use alternative interface for lcd_levels (needed for Lifebook s6410).");
Jonathan Woithe20b93732008-06-11 10:14:56 +09301330module_param(disable_brightness_adjust, uint, 0644);
1331MODULE_PARM_DESC(disable_brightness_adjust, "Disable brightness adjustment .");
1332#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
1333module_param_named(debug, dbg_level, uint, 0644);
1334MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
1335#endif
1336
Tony Vroon3a407082008-12-31 18:19:59 +00001337MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon");
Jonathan Woithed0482532007-08-29 15:58:19 +09301338MODULE_DESCRIPTION("Fujitsu laptop extras support");
1339MODULE_VERSION(FUJITSU_DRIVER_VERSION);
1340MODULE_LICENSE("GPL");
Dan Williamsa361a822008-06-05 22:46:08 -07001341
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301342MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1D3:*:cvrS6410:*");
Tony Vroon3a407082008-12-31 18:19:59 +00001343MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1E6:*:cvrS6420:*");
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301344MODULE_ALIAS("dmi:*:svnFUJITSU:*:pvr:rvnFUJITSU:rnFJNB19C:*:cvrS7020:*");