blob: 6ce8e786001303bc9aa89f7588adca7f70c04502 [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
81#define ACPI_FUJITSU_CLASS "fujitsu"
82#define ACPI_FUJITSU_HID "FUJ02B1"
Jonathan Woithe20b93732008-06-11 10:14:56 +093083#define ACPI_FUJITSU_DRIVER_NAME "Fujitsu laptop FUJ02B1 ACPI brightness driver"
Jonathan Woithed0482532007-08-29 15:58:19 +093084#define ACPI_FUJITSU_DEVICE_NAME "Fujitsu FUJ02B1"
Jonathan Woithe20b93732008-06-11 10:14:56 +093085#define ACPI_FUJITSU_HOTKEY_HID "FUJ02E3"
86#define ACPI_FUJITSU_HOTKEY_DRIVER_NAME "Fujitsu laptop FUJ02E3 ACPI hotkeys driver"
87#define ACPI_FUJITSU_HOTKEY_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 */
92#define FUNC_RFKILL 0x1000
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
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400100#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000101/* FUNC interface - LED control */
102#define FUNC_LED_OFF 0x1
103#define FUNC_LED_ON 0x30001
104#define KEYBOARD_LAMPS 0x100
105#define LOGOLAMP_POWERON 0x2000
106#define LOGOLAMP_ALWAYS 0x4000
Michał Kępień4f625682016-04-12 22:06:34 +0930107#define RADIO_LED_ON 0x20
Matej Gromad6b88f62016-06-21 10:09:21 +0200108#define ECO_LED 0x10000
109#define ECO_LED_ON 0x80000
Tony Vroon3a407082008-12-31 18:19:59 +0000110#endif
111
Jonathan Woithe20b93732008-06-11 10:14:56 +0930112/* Hotkey details */
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930113#define KEY1_CODE 0x410 /* codes for the keys in the GIRB register */
114#define KEY2_CODE 0x411
115#define KEY3_CODE 0x412
116#define KEY4_CODE 0x413
Michał Kępieńb5df36c2016-02-24 14:23:32 +0100117#define KEY5_CODE 0x420
Jonathan Woithe20b93732008-06-11 10:14:56 +0930118
119#define MAX_HOTKEY_RINGBUFFER_SIZE 100
120#define RINGBUFFERSIZE 40
121
122/* Debugging */
Jonathan Woithe20b93732008-06-11 10:14:56 +0930123#define FUJLAPTOP_DBG_ERROR 0x0001
124#define FUJLAPTOP_DBG_WARN 0x0002
125#define FUJLAPTOP_DBG_INFO 0x0004
126#define FUJLAPTOP_DBG_TRACE 0x0008
127
Jean Delvarec4960cf2014-06-16 11:55:13 +0200128#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
129#define vdbg_printk(a_dbg_level, format, arg...) \
Jonathan Woithe20b93732008-06-11 10:14:56 +0930130 do { if (dbg_level & a_dbg_level) \
Michał Kępień98020a42016-06-23 12:02:47 +0200131 printk(KERN_DEBUG pr_fmt("%s: " format), __func__, ## arg); \
Jonathan Woithe20b93732008-06-11 10:14:56 +0930132 } while (0)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930133#else
Jean Delvarec4960cf2014-06-16 11:55:13 +0200134#define vdbg_printk(a_dbg_level, format, arg...) \
135 do { } while (0)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930136#endif
137
138/* Device controlling the backlight and associated keys */
Jonathan Woithed0482532007-08-29 15:58:19 +0930139struct fujitsu_t {
140 acpi_handle acpi_handle;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930141 struct acpi_device *dev;
142 struct input_dev *input;
143 char phys[32];
Jonathan Woithed0482532007-08-29 15:58:19 +0930144 struct backlight_device *bl_device;
145 struct platform_device *pf_device;
Michał Kępieńb5df36c2016-02-24 14:23:32 +0100146 int keycode1, keycode2, keycode3, keycode4, keycode5;
Jonathan Woithed0482532007-08-29 15:58:19 +0930147
Jonathan Woithe20b93732008-06-11 10:14:56 +0930148 unsigned int max_brightness;
Jonathan Woithed0482532007-08-29 15:58:19 +0930149 unsigned int brightness_changed;
150 unsigned int brightness_level;
151};
152
153static struct fujitsu_t *fujitsu;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930154static int use_alt_lcd_levels = -1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930155static int disable_brightness_adjust = -1;
Jonathan Woithed0482532007-08-29 15:58:19 +0930156
Jonathan Woithe20b93732008-06-11 10:14:56 +0930157/* Device used to access other hotkeys on the laptop */
158struct fujitsu_hotkey_t {
159 acpi_handle acpi_handle;
160 struct acpi_device *dev;
161 struct input_dev *input;
162 char phys[32];
163 struct platform_device *pf_device;
Stefani Seibold45465482009-12-21 14:37:26 -0800164 struct kfifo fifo;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930165 spinlock_t fifo_lock;
Tony Vroon4898c2b2009-02-02 11:11:10 +0000166 int rfkill_supported;
Tony Vroon3a407082008-12-31 18:19:59 +0000167 int rfkill_state;
168 int logolamp_registered;
169 int kblamps_registered;
Michał Kępień4f625682016-04-12 22:06:34 +0930170 int radio_led_registered;
Matej Gromad6b88f62016-06-21 10:09:21 +0200171 int eco_led_registered;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930172};
173
174static struct fujitsu_hotkey_t *fujitsu_hotkey;
175
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +0000176static void acpi_fujitsu_hotkey_notify(struct acpi_device *device, u32 event);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930177
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400178#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000179static enum led_brightness logolamp_get(struct led_classdev *cdev);
180static void logolamp_set(struct led_classdev *cdev,
181 enum led_brightness brightness);
182
Axel Lin67af7112010-07-20 15:19:45 -0700183static struct led_classdev logolamp_led = {
Tony Vroon3a407082008-12-31 18:19:59 +0000184 .name = "fujitsu::logolamp",
185 .brightness_get = logolamp_get,
186 .brightness_set = logolamp_set
187};
188
189static enum led_brightness kblamps_get(struct led_classdev *cdev);
190static void kblamps_set(struct led_classdev *cdev,
191 enum led_brightness brightness);
192
Axel Lin67af7112010-07-20 15:19:45 -0700193static struct led_classdev kblamps_led = {
Tony Vroon3a407082008-12-31 18:19:59 +0000194 .name = "fujitsu::kblamps",
195 .brightness_get = kblamps_get,
196 .brightness_set = kblamps_set
197};
Michał Kępień4f625682016-04-12 22:06:34 +0930198
199static enum led_brightness radio_led_get(struct led_classdev *cdev);
200static void radio_led_set(struct led_classdev *cdev,
201 enum led_brightness brightness);
202
203static struct led_classdev radio_led = {
204 .name = "fujitsu::radio_led",
205 .brightness_get = radio_led_get,
206 .brightness_set = radio_led_set
207};
Matej Gromad6b88f62016-06-21 10:09:21 +0200208
209static enum led_brightness eco_led_get(struct led_classdev *cdev);
210static void eco_led_set(struct led_classdev *cdev,
211 enum led_brightness brightness);
212
213static struct led_classdev eco_led = {
214 .name = "fujitsu::eco_led",
215 .max_brightness = 1,
216 .brightness_get = eco_led_get,
217 .brightness_set = eco_led_set
218};
Tony Vroon3a407082008-12-31 18:19:59 +0000219#endif
220
Jonathan Woithe20b93732008-06-11 10:14:56 +0930221#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
222static u32 dbg_level = 0x03;
223#endif
224
Bjorn Helgaas700b6722009-04-07 15:37:16 +0000225static void acpi_fujitsu_notify(struct acpi_device *device, u32 event);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930226
Tony Vroon3a407082008-12-31 18:19:59 +0000227/* Fujitsu ACPI interface function */
228
229static int call_fext_func(int cmd, int arg0, int arg1, int arg2)
230{
231 acpi_status status = AE_OK;
232 union acpi_object params[4] = {
233 { .type = ACPI_TYPE_INTEGER },
234 { .type = ACPI_TYPE_INTEGER },
235 { .type = ACPI_TYPE_INTEGER },
236 { .type = ACPI_TYPE_INTEGER }
237 };
238 struct acpi_object_list arg_list = { 4, &params[0] };
Zhang Rui29c29a92013-09-03 08:32:12 +0800239 unsigned long long value;
Tony Vroon3a407082008-12-31 18:19:59 +0000240 acpi_handle handle = NULL;
241
242 status = acpi_get_handle(fujitsu_hotkey->acpi_handle, "FUNC", &handle);
243 if (ACPI_FAILURE(status)) {
244 vdbg_printk(FUJLAPTOP_DBG_ERROR,
245 "FUNC interface is not present\n");
246 return -ENODEV;
247 }
248
249 params[0].integer.value = cmd;
250 params[1].integer.value = arg0;
251 params[2].integer.value = arg1;
252 params[3].integer.value = arg2;
253
Zhang Rui29c29a92013-09-03 08:32:12 +0800254 status = acpi_evaluate_integer(handle, NULL, &arg_list, &value);
Tony Vroon3a407082008-12-31 18:19:59 +0000255 if (ACPI_FAILURE(status)) {
256 vdbg_printk(FUJLAPTOP_DBG_WARN,
257 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) call failed\n",
258 cmd, arg0, arg1, arg2);
259 return -ENODEV;
260 }
261
Tony Vroon3a407082008-12-31 18:19:59 +0000262 vdbg_printk(FUJLAPTOP_DBG_TRACE,
263 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
Zhang Rui29c29a92013-09-03 08:32:12 +0800264 cmd, arg0, arg1, arg2, (int)value);
265 return value;
Tony Vroon3a407082008-12-31 18:19:59 +0000266}
267
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400268#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000269/* LED class callbacks */
270
271static void logolamp_set(struct led_classdev *cdev,
272 enum led_brightness brightness)
273{
274 if (brightness >= LED_FULL) {
275 call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, FUNC_LED_ON);
276 call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, FUNC_LED_ON);
277 } else if (brightness >= LED_HALF) {
278 call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, FUNC_LED_ON);
279 call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, FUNC_LED_OFF);
280 } else {
281 call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, FUNC_LED_OFF);
282 }
283}
284
285static void kblamps_set(struct led_classdev *cdev,
286 enum led_brightness brightness)
287{
288 if (brightness >= LED_FULL)
289 call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_ON);
290 else
291 call_fext_func(FUNC_LEDS, 0x1, KEYBOARD_LAMPS, FUNC_LED_OFF);
292}
293
Michał Kępień4f625682016-04-12 22:06:34 +0930294static void radio_led_set(struct led_classdev *cdev,
295 enum led_brightness brightness)
296{
297 if (brightness >= LED_FULL)
298 call_fext_func(FUNC_RFKILL, 0x5, RADIO_LED_ON, RADIO_LED_ON);
299 else
300 call_fext_func(FUNC_RFKILL, 0x5, RADIO_LED_ON, 0x0);
301}
302
Matej Gromad6b88f62016-06-21 10:09:21 +0200303static void eco_led_set(struct led_classdev *cdev,
304 enum led_brightness brightness)
305{
306 int curr;
307
308 curr = call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0);
309 if (brightness)
310 call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr | ECO_LED_ON);
311 else
312 call_fext_func(FUNC_LEDS, 0x1, ECO_LED, curr & ~ECO_LED_ON);
313}
314
Tony Vroon3a407082008-12-31 18:19:59 +0000315static enum led_brightness logolamp_get(struct led_classdev *cdev)
316{
317 enum led_brightness brightness = LED_OFF;
318 int poweron, always;
319
320 poweron = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_POWERON, 0x0);
321 if (poweron == FUNC_LED_ON) {
322 brightness = LED_HALF;
323 always = call_fext_func(FUNC_LEDS, 0x2, LOGOLAMP_ALWAYS, 0x0);
324 if (always == FUNC_LED_ON)
325 brightness = LED_FULL;
326 }
327 return brightness;
328}
329
330static enum led_brightness kblamps_get(struct led_classdev *cdev)
331{
332 enum led_brightness brightness = LED_OFF;
333
334 if (call_fext_func(FUNC_LEDS, 0x2, KEYBOARD_LAMPS, 0x0) == FUNC_LED_ON)
335 brightness = LED_FULL;
336
337 return brightness;
338}
Michał Kępień4f625682016-04-12 22:06:34 +0930339
340static enum led_brightness radio_led_get(struct led_classdev *cdev)
341{
342 enum led_brightness brightness = LED_OFF;
343
344 if (call_fext_func(FUNC_RFKILL, 0x4, 0x0, 0x0) & RADIO_LED_ON)
345 brightness = LED_FULL;
346
347 return brightness;
348}
Matej Gromad6b88f62016-06-21 10:09:21 +0200349
350static enum led_brightness eco_led_get(struct led_classdev *cdev)
351{
352 enum led_brightness brightness = LED_OFF;
353
354 if (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) & ECO_LED_ON)
355 brightness = cdev->max_brightness;
356
357 return brightness;
358}
Tony Vroon3a407082008-12-31 18:19:59 +0000359#endif
360
Jonathan Woithe20b93732008-06-11 10:14:56 +0930361/* Hardware access for LCD brightness control */
Jonathan Woithed0482532007-08-29 15:58:19 +0930362
363static int set_lcd_level(int level)
364{
365 acpi_status status = AE_OK;
Jonathan Woithed0482532007-08-29 15:58:19 +0930366 acpi_handle handle = NULL;
367
Jonathan Woithe20b93732008-06-11 10:14:56 +0930368 vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBLL [%d]\n",
369 level);
370
371 if (level < 0 || level >= fujitsu->max_brightness)
Jonathan Woithed0482532007-08-29 15:58:19 +0930372 return -EINVAL;
373
Jonathan Woithed0482532007-08-29 15:58:19 +0930374 status = acpi_get_handle(fujitsu->acpi_handle, "SBLL", &handle);
375 if (ACPI_FAILURE(status)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930376 vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBLL not present\n");
377 return -ENODEV;
378 }
379
Jonathan Woithe20b93732008-06-11 10:14:56 +0930380
Zhang Rui6c7fe47a2013-09-03 08:31:52 +0800381 status = acpi_execute_simple_method(handle, NULL, level);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930382 if (ACPI_FAILURE(status))
383 return -ENODEV;
384
385 return 0;
386}
387
388static int set_lcd_level_alt(int level)
389{
390 acpi_status status = AE_OK;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930391 acpi_handle handle = NULL;
392
393 vdbg_printk(FUJLAPTOP_DBG_TRACE, "set lcd level via SBL2 [%d]\n",
394 level);
395
396 if (level < 0 || level >= fujitsu->max_brightness)
397 return -EINVAL;
398
Jonathan Woithe20b93732008-06-11 10:14:56 +0930399 status = acpi_get_handle(fujitsu->acpi_handle, "SBL2", &handle);
400 if (ACPI_FAILURE(status)) {
401 vdbg_printk(FUJLAPTOP_DBG_ERROR, "SBL2 not present\n");
Jonathan Woithed0482532007-08-29 15:58:19 +0930402 return -ENODEV;
403 }
404
Zhang Rui6c7fe47a2013-09-03 08:31:52 +0800405 status = acpi_execute_simple_method(handle, NULL, level);
Jonathan Woithed0482532007-08-29 15:58:19 +0930406 if (ACPI_FAILURE(status))
407 return -ENODEV;
408
409 return 0;
410}
411
412static int get_lcd_level(void)
413{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400414 unsigned long long state = 0;
Jonathan Woithed0482532007-08-29 15:58:19 +0930415 acpi_status status = AE_OK;
416
Jonathan Woithe20b93732008-06-11 10:14:56 +0930417 vdbg_printk(FUJLAPTOP_DBG_TRACE, "get lcd level via GBLL\n");
418
Jonathan Woithed0482532007-08-29 15:58:19 +0930419 status =
420 acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state);
Jonathan Woithe3b1c37c2009-12-23 09:19:42 +1030421 if (ACPI_FAILURE(status))
422 return 0;
Jonathan Woithed0482532007-08-29 15:58:19 +0930423
Jonathan Woithe20b93732008-06-11 10:14:56 +0930424 fujitsu->brightness_level = state & 0x0fffffff;
425
426 if (state & 0x80000000)
427 fujitsu->brightness_changed = 1;
428 else
429 fujitsu->brightness_changed = 0;
430
431 return fujitsu->brightness_level;
432}
433
434static int get_max_brightness(void)
435{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400436 unsigned long long state = 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930437 acpi_status status = AE_OK;
438
439 vdbg_printk(FUJLAPTOP_DBG_TRACE, "get max lcd level via RBLL\n");
440
441 status =
442 acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state);
Jonathan Woithe3b1c37c2009-12-23 09:19:42 +1030443 if (ACPI_FAILURE(status))
444 return -1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930445
446 fujitsu->max_brightness = state;
447
448 return fujitsu->max_brightness;
449}
450
Jonathan Woithed0482532007-08-29 15:58:19 +0930451/* Backlight device stuff */
452
453static int bl_get_brightness(struct backlight_device *b)
454{
Tony Vroonf87a1a52009-01-07 10:11:24 +0000455 return get_lcd_level();
Jonathan Woithed0482532007-08-29 15:58:19 +0930456}
457
458static int bl_update_status(struct backlight_device *b)
459{
Tony Vroon3a407082008-12-31 18:19:59 +0000460 int ret;
Michael Karchere8549e22015-01-18 20:28:46 +0100461 if (b->props.power == FB_BLANK_POWERDOWN)
Tony Vroon3a407082008-12-31 18:19:59 +0000462 ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930463 else
Tony Vroon3a407082008-12-31 18:19:59 +0000464 ret = call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
465 if (ret != 0)
466 vdbg_printk(FUJLAPTOP_DBG_ERROR,
467 "Unable to adjust backlight power, error code %i\n",
468 ret);
469
470 if (use_alt_lcd_levels)
471 ret = set_lcd_level_alt(b->props.brightness);
472 else
473 ret = set_lcd_level(b->props.brightness);
474 if (ret != 0)
475 vdbg_printk(FUJLAPTOP_DBG_ERROR,
476 "Unable to adjust LCD brightness, error code %i\n",
477 ret);
478 return ret;
Jonathan Woithed0482532007-08-29 15:58:19 +0930479}
480
Lionel Debrouxacc24722010-11-16 14:14:02 +0100481static const struct backlight_ops fujitsubl_ops = {
Jonathan Woithed0482532007-08-29 15:58:19 +0930482 .get_brightness = bl_get_brightness,
483 .update_status = bl_update_status,
484};
485
Jonathan Woithe20b93732008-06-11 10:14:56 +0930486/* Platform LCD brightness device */
487
488static ssize_t
489show_max_brightness(struct device *dev,
490 struct device_attribute *attr, char *buf)
491{
492
493 int ret;
494
495 ret = get_max_brightness();
496 if (ret < 0)
497 return ret;
498
499 return sprintf(buf, "%i\n", ret);
500}
501
502static ssize_t
503show_brightness_changed(struct device *dev,
504 struct device_attribute *attr, char *buf)
505{
506
507 int ret;
508
509 ret = fujitsu->brightness_changed;
510 if (ret < 0)
511 return ret;
512
513 return sprintf(buf, "%i\n", ret);
514}
Jonathan Woithed0482532007-08-29 15:58:19 +0930515
516static ssize_t show_lcd_level(struct device *dev,
517 struct device_attribute *attr, char *buf)
518{
519
520 int ret;
521
Tony Vroonf87a1a52009-01-07 10:11:24 +0000522 ret = get_lcd_level();
Jonathan Woithed0482532007-08-29 15:58:19 +0930523 if (ret < 0)
524 return ret;
525
526 return sprintf(buf, "%i\n", ret);
527}
528
529static ssize_t store_lcd_level(struct device *dev,
530 struct device_attribute *attr, const char *buf,
531 size_t count)
532{
533
534 int level, ret;
535
536 if (sscanf(buf, "%i", &level) != 1
Jonathan Woithe20b93732008-06-11 10:14:56 +0930537 || (level < 0 || level >= fujitsu->max_brightness))
Jonathan Woithed0482532007-08-29 15:58:19 +0930538 return -EINVAL;
539
Jonathan Woithe20b93732008-06-11 10:14:56 +0930540 if (use_alt_lcd_levels)
541 ret = set_lcd_level_alt(level);
542 else
543 ret = set_lcd_level(level);
544 if (ret < 0)
545 return ret;
546
Tony Vroonf87a1a52009-01-07 10:11:24 +0000547 ret = get_lcd_level();
Jonathan Woithed0482532007-08-29 15:58:19 +0930548 if (ret < 0)
549 return ret;
550
551 return count;
552}
553
Jonathan Woithe20b93732008-06-11 10:14:56 +0930554static ssize_t
555ignore_store(struct device *dev,
556 struct device_attribute *attr, const char *buf, size_t count)
557{
558 return count;
559}
560
Tony Vroon3a407082008-12-31 18:19:59 +0000561static ssize_t
562show_lid_state(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
Tony Vroon4898c2b2009-02-02 11:11:10 +0000565 if (!(fujitsu_hotkey->rfkill_supported & 0x100))
Tony Vroon3a407082008-12-31 18:19:59 +0000566 return sprintf(buf, "unknown\n");
567 if (fujitsu_hotkey->rfkill_state & 0x100)
568 return sprintf(buf, "open\n");
569 else
570 return sprintf(buf, "closed\n");
571}
572
573static ssize_t
574show_dock_state(struct device *dev,
575 struct device_attribute *attr, char *buf)
576{
Tony Vroon4898c2b2009-02-02 11:11:10 +0000577 if (!(fujitsu_hotkey->rfkill_supported & 0x200))
Tony Vroon3a407082008-12-31 18:19:59 +0000578 return sprintf(buf, "unknown\n");
579 if (fujitsu_hotkey->rfkill_state & 0x200)
580 return sprintf(buf, "docked\n");
581 else
582 return sprintf(buf, "undocked\n");
583}
584
585static ssize_t
586show_radios_state(struct device *dev,
587 struct device_attribute *attr, char *buf)
588{
Tony Vroon4898c2b2009-02-02 11:11:10 +0000589 if (!(fujitsu_hotkey->rfkill_supported & 0x20))
Tony Vroon3a407082008-12-31 18:19:59 +0000590 return sprintf(buf, "unknown\n");
591 if (fujitsu_hotkey->rfkill_state & 0x20)
592 return sprintf(buf, "on\n");
593 else
594 return sprintf(buf, "killed\n");
595}
596
Jonathan Woithe20b93732008-06-11 10:14:56 +0930597static DEVICE_ATTR(max_brightness, 0444, show_max_brightness, ignore_store);
598static DEVICE_ATTR(brightness_changed, 0444, show_brightness_changed,
599 ignore_store);
Jonathan Woithed0482532007-08-29 15:58:19 +0930600static DEVICE_ATTR(lcd_level, 0644, show_lcd_level, store_lcd_level);
Tony Vroon3a407082008-12-31 18:19:59 +0000601static DEVICE_ATTR(lid, 0444, show_lid_state, ignore_store);
602static DEVICE_ATTR(dock, 0444, show_dock_state, ignore_store);
603static DEVICE_ATTR(radios, 0444, show_radios_state, ignore_store);
Jonathan Woithed0482532007-08-29 15:58:19 +0930604
605static struct attribute *fujitsupf_attributes[] = {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930606 &dev_attr_brightness_changed.attr,
607 &dev_attr_max_brightness.attr,
Jonathan Woithed0482532007-08-29 15:58:19 +0930608 &dev_attr_lcd_level.attr,
Tony Vroon3a407082008-12-31 18:19:59 +0000609 &dev_attr_lid.attr,
610 &dev_attr_dock.attr,
611 &dev_attr_radios.attr,
Jonathan Woithed0482532007-08-29 15:58:19 +0930612 NULL
613};
614
615static struct attribute_group fujitsupf_attribute_group = {
616 .attrs = fujitsupf_attributes
617};
618
619static struct platform_driver fujitsupf_driver = {
620 .driver = {
621 .name = "fujitsu-laptop",
Jonathan Woithed0482532007-08-29 15:58:19 +0930622 }
623};
624
Mathias Krausefbe9b792014-07-16 19:43:11 +0200625static void __init dmi_check_cb_common(const struct dmi_system_id *id)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930626{
Joe Perches77bad7c2011-03-29 15:21:39 -0700627 pr_info("Identified laptop model '%s'\n", id->ident);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930628 if (use_alt_lcd_levels == -1) {
Zhang Ruidd13b9a2013-09-03 08:32:03 +0800629 if (acpi_has_method(NULL,
630 "\\_SB.PCI0.LPCB.FJEX.SBL2"))
Tony Vroonf87a1a52009-01-07 10:11:24 +0000631 use_alt_lcd_levels = 1;
632 else
633 use_alt_lcd_levels = 0;
634 vdbg_printk(FUJLAPTOP_DBG_TRACE, "auto-detected usealt as "
635 "%i\n", use_alt_lcd_levels);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930636 }
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930637}
638
Mathias Krausefbe9b792014-07-16 19:43:11 +0200639static int __init dmi_check_cb_s6410(const struct dmi_system_id *id)
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930640{
641 dmi_check_cb_common(id);
642 fujitsu->keycode1 = KEY_SCREENLOCK; /* "Lock" */
643 fujitsu->keycode2 = KEY_HELP; /* "Mobility Center" */
Axel Lin80183a42010-07-20 15:19:40 -0700644 return 1;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930645}
646
Mathias Krausefbe9b792014-07-16 19:43:11 +0200647static int __init dmi_check_cb_s6420(const struct dmi_system_id *id)
Tony Vroon56960b52008-11-09 04:20:05 +0000648{
649 dmi_check_cb_common(id);
650 fujitsu->keycode1 = KEY_SCREENLOCK; /* "Lock" */
651 fujitsu->keycode2 = KEY_HELP; /* "Mobility Center" */
Axel Lin80183a42010-07-20 15:19:40 -0700652 return 1;
Tony Vroon56960b52008-11-09 04:20:05 +0000653}
654
Mathias Krausefbe9b792014-07-16 19:43:11 +0200655static int __init dmi_check_cb_p8010(const struct dmi_system_id *id)
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930656{
657 dmi_check_cb_common(id);
658 fujitsu->keycode1 = KEY_HELP; /* "Support" */
659 fujitsu->keycode3 = KEY_SWITCHVIDEOMODE; /* "Presentation" */
660 fujitsu->keycode4 = KEY_WWW; /* "Internet" */
Axel Lin80183a42010-07-20 15:19:40 -0700661 return 1;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930662}
663
Mathias Krausefbe9b792014-07-16 19:43:11 +0200664static const struct dmi_system_id fujitsu_dmi_table[] __initconst = {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930665 {
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930666 .ident = "Fujitsu Siemens S6410",
Jonathan Woithe20b93732008-06-11 10:14:56 +0930667 .matches = {
668 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
669 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6410"),
670 },
671 .callback = dmi_check_cb_s6410},
Jonathan Woithed8196a92008-08-29 11:06:21 +0930672 {
Tony Vroon56960b52008-11-09 04:20:05 +0000673 .ident = "Fujitsu Siemens S6420",
674 .matches = {
675 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
676 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK S6420"),
677 },
678 .callback = dmi_check_cb_s6420},
679 {
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930680 .ident = "Fujitsu LifeBook P8010",
Jonathan Woithed8196a92008-08-29 11:06:21 +0930681 .matches = {
682 DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
683 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook P8010"),
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930684 },
685 .callback = dmi_check_cb_p8010},
Jonathan Woithe20b93732008-06-11 10:14:56 +0930686 {}
687};
688
689/* ACPI device for LCD brightness control */
Jonathan Woithed0482532007-08-29 15:58:19 +0930690
Adrian Bunkb6f03ae2007-10-24 18:23:16 +0200691static int acpi_fujitsu_add(struct acpi_device *device)
Jonathan Woithed0482532007-08-29 15:58:19 +0930692{
Jonathan Woithed0482532007-08-29 15:58:19 +0930693 int state = 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930694 struct input_dev *input;
695 int error;
Jonathan Woithed0482532007-08-29 15:58:19 +0930696
697 if (!device)
698 return -EINVAL;
699
700 fujitsu->acpi_handle = device->handle;
701 sprintf(acpi_device_name(device), "%s", ACPI_FUJITSU_DEVICE_NAME);
702 sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700703 device->driver_data = fujitsu;
Jonathan Woithed0482532007-08-29 15:58:19 +0930704
Jonathan Woithe20b93732008-06-11 10:14:56 +0930705 fujitsu->input = input = input_allocate_device();
706 if (!input) {
707 error = -ENOMEM;
Bjorn Helgaas700b6722009-04-07 15:37:16 +0000708 goto err_stop;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930709 }
710
711 snprintf(fujitsu->phys, sizeof(fujitsu->phys),
712 "%s/video/input0", acpi_device_hid(device));
713
714 input->name = acpi_device_name(device);
715 input->phys = fujitsu->phys;
716 input->id.bustype = BUS_HOST;
717 input->id.product = 0x06;
718 input->dev.parent = &device->dev;
719 input->evbit[0] = BIT(EV_KEY);
720 set_bit(KEY_BRIGHTNESSUP, input->keybit);
721 set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
722 set_bit(KEY_UNKNOWN, input->keybit);
723
724 error = input_register_device(input);
725 if (error)
726 goto err_free_input_dev;
727
Julia Lawallb30bb892013-12-29 23:47:36 +0100728 error = acpi_bus_update_power(fujitsu->acpi_handle, &state);
729 if (error) {
Joe Perches77bad7c2011-03-29 15:21:39 -0700730 pr_err("Error reading power state\n");
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930731 goto err_unregister_input_dev;
Jonathan Woithed0482532007-08-29 15:58:19 +0930732 }
733
Joe Perches77bad7c2011-03-29 15:21:39 -0700734 pr_info("ACPI: %s [%s] (%s)\n",
Jonathan Woithed0482532007-08-29 15:58:19 +0930735 acpi_device_name(device), acpi_device_bid(device),
736 !device->power.state ? "on" : "off");
737
Jonathan Woithe20b93732008-06-11 10:14:56 +0930738 fujitsu->dev = device;
739
Zhang Ruidd13b9a2013-09-03 08:32:03 +0800740 if (acpi_has_method(device->handle, METHOD_NAME__INI)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930741 vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n");
742 if (ACPI_FAILURE
743 (acpi_evaluate_object
744 (device->handle, METHOD_NAME__INI, NULL, NULL)))
Joe Perches77bad7c2011-03-29 15:21:39 -0700745 pr_err("_INI Method failed\n");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930746 }
747
748 /* do config (detect defaults) */
Jonathan Woithe20b93732008-06-11 10:14:56 +0930749 use_alt_lcd_levels = use_alt_lcd_levels == 1 ? 1 : 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930750 disable_brightness_adjust = disable_brightness_adjust == 1 ? 1 : 0;
751 vdbg_printk(FUJLAPTOP_DBG_INFO,
Tony Vroonf87a1a52009-01-07 10:11:24 +0000752 "config: [alt interface: %d], [adjust disable: %d]\n",
753 use_alt_lcd_levels, disable_brightness_adjust);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930754
755 if (get_max_brightness() <= 0)
756 fujitsu->max_brightness = FUJITSU_LCD_N_LEVELS;
Tony Vroonf87a1a52009-01-07 10:11:24 +0000757 get_lcd_level();
Jonathan Woithe20b93732008-06-11 10:14:56 +0930758
Julia Lawallb30bb892013-12-29 23:47:36 +0100759 return 0;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930760
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930761err_unregister_input_dev:
762 input_unregister_device(input);
Axel Lin8e4e2ef2010-07-20 15:19:34 -0700763 input = NULL;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930764err_free_input_dev:
765 input_free_device(input);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930766err_stop:
Julia Lawallb30bb892013-12-29 23:47:36 +0100767 return error;
Jonathan Woithed0482532007-08-29 15:58:19 +0930768}
769
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100770static int acpi_fujitsu_remove(struct acpi_device *device)
Jonathan Woithed0482532007-08-29 15:58:19 +0930771{
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930772 struct fujitsu_t *fujitsu = acpi_driver_data(device);
773 struct input_dev *input = fujitsu->input;
Jonathan Woithed0482532007-08-29 15:58:19 +0930774
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930775 input_unregister_device(input);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930776
Al Viro5cf83b92008-03-29 03:07:48 +0000777 fujitsu->acpi_handle = NULL;
Jonathan Woithed0482532007-08-29 15:58:19 +0930778
779 return 0;
780}
781
Jonathan Woithe20b93732008-06-11 10:14:56 +0930782/* Brightness notify */
783
Bjorn Helgaas700b6722009-04-07 15:37:16 +0000784static void acpi_fujitsu_notify(struct acpi_device *device, u32 event)
Jonathan Woithe20b93732008-06-11 10:14:56 +0930785{
786 struct input_dev *input;
787 int keycode;
788 int oldb, newb;
789
790 input = fujitsu->input;
791
792 switch (event) {
793 case ACPI_FUJITSU_NOTIFY_CODE1:
794 keycode = 0;
795 oldb = fujitsu->brightness_level;
Tony Vroonf87a1a52009-01-07 10:11:24 +0000796 get_lcd_level();
Jonathan Woithe20b93732008-06-11 10:14:56 +0930797 newb = fujitsu->brightness_level;
798
799 vdbg_printk(FUJLAPTOP_DBG_TRACE,
800 "brightness button event [%i -> %i (%i)]\n",
801 oldb, newb, fujitsu->brightness_changed);
802
Tony Vroonf87a1a52009-01-07 10:11:24 +0000803 if (oldb < newb) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930804 if (disable_brightness_adjust != 1) {
805 if (use_alt_lcd_levels)
806 set_lcd_level_alt(newb);
807 else
808 set_lcd_level(newb);
809 }
Tony Vroonf87a1a52009-01-07 10:11:24 +0000810 keycode = KEY_BRIGHTNESSUP;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930811 } else if (oldb > newb) {
812 if (disable_brightness_adjust != 1) {
813 if (use_alt_lcd_levels)
814 set_lcd_level_alt(newb);
815 else
816 set_lcd_level(newb);
817 }
Tony Vroonf87a1a52009-01-07 10:11:24 +0000818 keycode = KEY_BRIGHTNESSDOWN;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930819 }
820 break;
821 default:
822 keycode = KEY_UNKNOWN;
823 vdbg_printk(FUJLAPTOP_DBG_WARN,
824 "unsupported event [0x%x]\n", event);
825 break;
826 }
827
828 if (keycode != 0) {
829 input_report_key(input, keycode, 1);
830 input_sync(input);
831 input_report_key(input, keycode, 0);
832 input_sync(input);
833 }
Jonathan Woithe20b93732008-06-11 10:14:56 +0930834}
835
836/* ACPI device for hotkey handling */
837
838static int acpi_fujitsu_hotkey_add(struct acpi_device *device)
839{
Jonathan Woithe20b93732008-06-11 10:14:56 +0930840 int result = 0;
841 int state = 0;
842 struct input_dev *input;
843 int error;
844 int i;
845
846 if (!device)
847 return -EINVAL;
848
849 fujitsu_hotkey->acpi_handle = device->handle;
850 sprintf(acpi_device_name(device), "%s",
851 ACPI_FUJITSU_HOTKEY_DEVICE_NAME);
852 sprintf(acpi_device_class(device), "%s", ACPI_FUJITSU_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700853 device->driver_data = fujitsu_hotkey;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930854
Jonathan Woithe20b93732008-06-11 10:14:56 +0930855 /* kfifo */
856 spin_lock_init(&fujitsu_hotkey->fifo_lock);
Stefani Seibold45465482009-12-21 14:37:26 -0800857 error = kfifo_alloc(&fujitsu_hotkey->fifo, RINGBUFFERSIZE * sizeof(int),
Stefani Seiboldc1e13f22009-12-21 14:37:27 -0800858 GFP_KERNEL);
Stefani Seibold45465482009-12-21 14:37:26 -0800859 if (error) {
Joe Perches77bad7c2011-03-29 15:21:39 -0700860 pr_err("kfifo_alloc failed\n");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930861 goto err_stop;
862 }
863
864 fujitsu_hotkey->input = input = input_allocate_device();
865 if (!input) {
866 error = -ENOMEM;
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +0000867 goto err_free_fifo;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930868 }
869
870 snprintf(fujitsu_hotkey->phys, sizeof(fujitsu_hotkey->phys),
871 "%s/video/input0", acpi_device_hid(device));
872
873 input->name = acpi_device_name(device);
874 input->phys = fujitsu_hotkey->phys;
875 input->id.bustype = BUS_HOST;
876 input->id.product = 0x06;
877 input->dev.parent = &device->dev;
Tony Vroon3a407082008-12-31 18:19:59 +0000878
879 set_bit(EV_KEY, input->evbit);
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +0930880 set_bit(fujitsu->keycode1, input->keybit);
881 set_bit(fujitsu->keycode2, input->keybit);
882 set_bit(fujitsu->keycode3, input->keybit);
883 set_bit(fujitsu->keycode4, input->keybit);
Michał Kępieńb5df36c2016-02-24 14:23:32 +0100884 set_bit(fujitsu->keycode5, input->keybit);
Michał Kępień1879e692016-06-28 09:25:50 +0200885 set_bit(KEY_TOUCHPAD_TOGGLE, input->keybit);
Jonathan Woithe20b93732008-06-11 10:14:56 +0930886 set_bit(KEY_UNKNOWN, input->keybit);
887
888 error = input_register_device(input);
889 if (error)
890 goto err_free_input_dev;
891
Julia Lawallb30bb892013-12-29 23:47:36 +0100892 error = acpi_bus_update_power(fujitsu_hotkey->acpi_handle, &state);
893 if (error) {
Joe Perches77bad7c2011-03-29 15:21:39 -0700894 pr_err("Error reading power state\n");
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930895 goto err_unregister_input_dev;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930896 }
897
Joe Perches77bad7c2011-03-29 15:21:39 -0700898 pr_info("ACPI: %s [%s] (%s)\n",
899 acpi_device_name(device), acpi_device_bid(device),
900 !device->power.state ? "on" : "off");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930901
902 fujitsu_hotkey->dev = device;
903
Zhang Ruidd13b9a2013-09-03 08:32:03 +0800904 if (acpi_has_method(device->handle, METHOD_NAME__INI)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +0930905 vdbg_printk(FUJLAPTOP_DBG_INFO, "Invoking _INI\n");
906 if (ACPI_FAILURE
907 (acpi_evaluate_object
908 (device->handle, METHOD_NAME__INI, NULL, NULL)))
Joe Perches77bad7c2011-03-29 15:21:39 -0700909 pr_err("_INI Method failed\n");
Jonathan Woithe20b93732008-06-11 10:14:56 +0930910 }
911
Tony Vroon3a407082008-12-31 18:19:59 +0000912 i = 0;
913 while (call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0) != 0
914 && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE)
915 ; /* No action, result is discarded */
Jonathan Woithe20b93732008-06-11 10:14:56 +0930916 vdbg_printk(FUJLAPTOP_DBG_INFO, "Discarded %i ringbuffer entries\n", i);
917
Tony Vroon4898c2b2009-02-02 11:11:10 +0000918 fujitsu_hotkey->rfkill_supported =
919 call_fext_func(FUNC_RFKILL, 0x0, 0x0, 0x0);
920
921 /* Make sure our bitmask of supported functions is cleared if the
922 RFKILL function block is not implemented, like on the S7020. */
923 if (fujitsu_hotkey->rfkill_supported == UNSUPPORTED_CMD)
924 fujitsu_hotkey->rfkill_supported = 0;
925
926 if (fujitsu_hotkey->rfkill_supported)
927 fujitsu_hotkey->rfkill_state =
928 call_fext_func(FUNC_RFKILL, 0x4, 0x0, 0x0);
Tony Vroon3a407082008-12-31 18:19:59 +0000929
930 /* Suspect this is a keymap of the application panel, print it */
Joe Perches77bad7c2011-03-29 15:21:39 -0700931 pr_info("BTNI: [0x%x]\n", call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0));
Tony Vroon3a407082008-12-31 18:19:59 +0000932
Javier Martinez Canillas575b2452016-04-26 18:28:17 -0400933#if IS_ENABLED(CONFIG_LEDS_CLASS)
Tony Vroon3a407082008-12-31 18:19:59 +0000934 if (call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON) {
935 result = led_classdev_register(&fujitsu->pf_device->dev,
936 &logolamp_led);
937 if (result == 0) {
938 fujitsu_hotkey->logolamp_registered = 1;
939 } else {
Joe Perches77bad7c2011-03-29 15:21:39 -0700940 pr_err("Could not register LED handler for logo lamp, error %i\n",
941 result);
Tony Vroon3a407082008-12-31 18:19:59 +0000942 }
943 }
944
945 if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS) &&
946 (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) == 0x0)) {
947 result = led_classdev_register(&fujitsu->pf_device->dev,
948 &kblamps_led);
949 if (result == 0) {
950 fujitsu_hotkey->kblamps_registered = 1;
951 } else {
Joe Perches77bad7c2011-03-29 15:21:39 -0700952 pr_err("Could not register LED handler for keyboard lamps, error %i\n",
953 result);
Tony Vroon3a407082008-12-31 18:19:59 +0000954 }
955 }
Michał Kępień4f625682016-04-12 22:06:34 +0930956
957 /*
958 * BTNI bit 24 seems to indicate the presence of a radio toggle
959 * button in place of a slide switch, and all such machines appear
960 * to also have an RF LED. Therefore use bit 24 as an indicator
961 * that an RF LED is present.
962 */
963 if (call_fext_func(FUNC_BUTTONS, 0x0, 0x0, 0x0) & BIT(24)) {
964 result = led_classdev_register(&fujitsu->pf_device->dev,
965 &radio_led);
966 if (result == 0) {
967 fujitsu_hotkey->radio_led_registered = 1;
968 } else {
969 pr_err("Could not register LED handler for radio LED, error %i\n",
970 result);
971 }
972 }
Matej Gromad6b88f62016-06-21 10:09:21 +0200973
974 /* Support for eco led is not always signaled in bit corresponding
975 * to the bit used to control the led. According to the DSDT table,
976 * bit 14 seems to indicate presence of said led as well.
977 * Confirm by testing the status.
978 */
979 if ((call_fext_func(FUNC_LEDS, 0x0, 0x0, 0x0) & BIT(14)) &&
980 (call_fext_func(FUNC_LEDS, 0x2, ECO_LED, 0x0) != UNSUPPORTED_CMD)) {
981 result = led_classdev_register(&fujitsu->pf_device->dev,
982 &eco_led);
983 if (result == 0) {
984 fujitsu_hotkey->eco_led_registered = 1;
985 } else {
986 pr_err("Could not register LED handler for eco LED, error %i\n",
987 result);
988 }
989 }
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930990#endif
Tony Vroon3a407082008-12-31 18:19:59 +0000991
Jonathan Woithe20b93732008-06-11 10:14:56 +0930992 return result;
993
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +0930994err_unregister_input_dev:
995 input_unregister_device(input);
Axel Lin8e4e2ef2010-07-20 15:19:34 -0700996 input = NULL;
Jonathan Woithe20b93732008-06-11 10:14:56 +0930997err_free_input_dev:
998 input_free_device(input);
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +0000999err_free_fifo:
Stefani Seibold45465482009-12-21 14:37:26 -08001000 kfifo_free(&fujitsu_hotkey->fifo);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301001err_stop:
Julia Lawallb30bb892013-12-29 23:47:36 +01001002 return error;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301003}
1004
Rafael J. Wysocki51fac832013-01-24 00:24:48 +01001005static int acpi_fujitsu_hotkey_remove(struct acpi_device *device)
Jonathan Woithe20b93732008-06-11 10:14:56 +09301006{
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301007 struct fujitsu_hotkey_t *fujitsu_hotkey = acpi_driver_data(device);
1008 struct input_dev *input = fujitsu_hotkey->input;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301009
Javier Martinez Canillas575b2452016-04-26 18:28:17 -04001010#if IS_ENABLED(CONFIG_LEDS_CLASS)
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301011 if (fujitsu_hotkey->logolamp_registered)
1012 led_classdev_unregister(&logolamp_led);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301013
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301014 if (fujitsu_hotkey->kblamps_registered)
1015 led_classdev_unregister(&kblamps_led);
Michał Kępień4f625682016-04-12 22:06:34 +09301016
1017 if (fujitsu_hotkey->radio_led_registered)
1018 led_classdev_unregister(&radio_led);
Matej Gromad6b88f62016-06-21 10:09:21 +02001019
1020 if (fujitsu_hotkey->eco_led_registered)
1021 led_classdev_unregister(&eco_led);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301022#endif
Jonathan Woithe20b93732008-06-11 10:14:56 +09301023
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301024 input_unregister_device(input);
1025
Stefani Seibold45465482009-12-21 14:37:26 -08001026 kfifo_free(&fujitsu_hotkey->fifo);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301027
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301028 fujitsu_hotkey->acpi_handle = NULL;
1029
Jonathan Woithe20b93732008-06-11 10:14:56 +09301030 return 0;
1031}
1032
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +00001033static void acpi_fujitsu_hotkey_notify(struct acpi_device *device, u32 event)
Jonathan Woithe20b93732008-06-11 10:14:56 +09301034{
1035 struct input_dev *input;
1036 int keycode, keycode_r;
1037 unsigned int irb = 1;
1038 int i, status;
1039
1040 input = fujitsu_hotkey->input;
1041
Tony Vroon4898c2b2009-02-02 11:11:10 +00001042 if (fujitsu_hotkey->rfkill_supported)
1043 fujitsu_hotkey->rfkill_state =
1044 call_fext_func(FUNC_RFKILL, 0x4, 0x0, 0x0);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301045
1046 switch (event) {
1047 case ACPI_FUJITSU_NOTIFY_CODE1:
1048 i = 0;
Tony Vroon3a407082008-12-31 18:19:59 +00001049 while ((irb =
1050 call_fext_func(FUNC_BUTTONS, 0x1, 0x0, 0x0)) != 0
1051 && (i++) < MAX_HOTKEY_RINGBUFFER_SIZE) {
Jonathan Woithe20b93732008-06-11 10:14:56 +09301052 switch (irb & 0x4ff) {
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301053 case KEY1_CODE:
1054 keycode = fujitsu->keycode1;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301055 break;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301056 case KEY2_CODE:
1057 keycode = fujitsu->keycode2;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301058 break;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301059 case KEY3_CODE:
1060 keycode = fujitsu->keycode3;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301061 break;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301062 case KEY4_CODE:
1063 keycode = fujitsu->keycode4;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301064 break;
Michał Kępieńb5df36c2016-02-24 14:23:32 +01001065 case KEY5_CODE:
1066 keycode = fujitsu->keycode5;
1067 break;
Jonathan Woithe20b93732008-06-11 10:14:56 +09301068 case 0:
1069 keycode = 0;
1070 break;
1071 default:
1072 vdbg_printk(FUJLAPTOP_DBG_WARN,
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301073 "Unknown GIRB result [%x]\n", irb);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301074 keycode = -1;
1075 break;
1076 }
1077 if (keycode > 0) {
1078 vdbg_printk(FUJLAPTOP_DBG_TRACE,
1079 "Push keycode into ringbuffer [%d]\n",
1080 keycode);
Stefani Seibold7acd72e2009-12-21 14:37:28 -08001081 status = kfifo_in_locked(&fujitsu_hotkey->fifo,
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301082 (unsigned char *)&keycode,
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08001083 sizeof(keycode),
1084 &fujitsu_hotkey->fifo_lock);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301085 if (status != sizeof(keycode)) {
1086 vdbg_printk(FUJLAPTOP_DBG_WARN,
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301087 "Could not push keycode [0x%x]\n",
1088 keycode);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301089 } else {
1090 input_report_key(input, keycode, 1);
1091 input_sync(input);
1092 }
1093 } else if (keycode == 0) {
1094 while ((status =
Stefani Seibold7acd72e2009-12-21 14:37:28 -08001095 kfifo_out_locked(
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08001096 &fujitsu_hotkey->fifo,
1097 (unsigned char *) &keycode_r,
1098 sizeof(keycode_r),
1099 &fujitsu_hotkey->fifo_lock))
1100 == sizeof(keycode_r)) {
Jonathan Woithe20b93732008-06-11 10:14:56 +09301101 input_report_key(input, keycode_r, 0);
1102 input_sync(input);
1103 vdbg_printk(FUJLAPTOP_DBG_TRACE,
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301104 "Pop keycode from ringbuffer [%d]\n",
1105 keycode_r);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301106 }
1107 }
1108 }
1109
Michał Kępień1879e692016-06-28 09:25:50 +02001110 /* On some models (first seen on the Skylake-based Lifebook
1111 * E736/E746/E756), the touchpad toggle hotkey (Fn+F4) is
1112 * handled in software; its state is queried using FUNC_RFKILL
1113 */
1114 if ((fujitsu_hotkey->rfkill_supported & BIT(26)) &&
1115 (call_fext_func(FUNC_RFKILL, 0x1, 0x0, 0x0) & BIT(26))) {
1116 keycode = KEY_TOUCHPAD_TOGGLE;
1117 input_report_key(input, keycode, 1);
1118 input_sync(input);
1119 input_report_key(input, keycode, 0);
1120 input_sync(input);
1121 }
1122
Jonathan Woithe20b93732008-06-11 10:14:56 +09301123 break;
1124 default:
1125 keycode = KEY_UNKNOWN;
1126 vdbg_printk(FUJLAPTOP_DBG_WARN,
1127 "Unsupported event [0x%x]\n", event);
1128 input_report_key(input, keycode, 1);
1129 input_sync(input);
1130 input_report_key(input, keycode, 0);
1131 input_sync(input);
1132 break;
1133 }
Jonathan Woithe20b93732008-06-11 10:14:56 +09301134}
1135
1136/* Initialization */
1137
Jonathan Woithed0482532007-08-29 15:58:19 +09301138static const struct acpi_device_id fujitsu_device_ids[] = {
1139 {ACPI_FUJITSU_HID, 0},
1140 {"", 0},
1141};
1142
1143static struct acpi_driver acpi_fujitsu_driver = {
1144 .name = ACPI_FUJITSU_DRIVER_NAME,
1145 .class = ACPI_FUJITSU_CLASS,
1146 .ids = fujitsu_device_ids,
1147 .ops = {
1148 .add = acpi_fujitsu_add,
1149 .remove = acpi_fujitsu_remove,
Bjorn Helgaas700b6722009-04-07 15:37:16 +00001150 .notify = acpi_fujitsu_notify,
Jonathan Woithed0482532007-08-29 15:58:19 +09301151 },
1152};
1153
Jonathan Woithe20b93732008-06-11 10:14:56 +09301154static const struct acpi_device_id fujitsu_hotkey_device_ids[] = {
1155 {ACPI_FUJITSU_HOTKEY_HID, 0},
1156 {"", 0},
1157};
1158
1159static struct acpi_driver acpi_fujitsu_hotkey_driver = {
1160 .name = ACPI_FUJITSU_HOTKEY_DRIVER_NAME,
1161 .class = ACPI_FUJITSU_CLASS,
1162 .ids = fujitsu_hotkey_device_ids,
1163 .ops = {
1164 .add = acpi_fujitsu_hotkey_add,
1165 .remove = acpi_fujitsu_hotkey_remove,
Bjorn Helgaasb4ec0272009-04-07 15:37:22 +00001166 .notify = acpi_fujitsu_hotkey_notify,
Jonathan Woithe20b93732008-06-11 10:14:56 +09301167 },
1168};
Jonathan Woithed0482532007-08-29 15:58:19 +09301169
Zhang Rui49901412014-09-09 00:21:59 +02001170static const struct acpi_device_id fujitsu_ids[] __used = {
1171 {ACPI_FUJITSU_HID, 0},
1172 {ACPI_FUJITSU_HOTKEY_HID, 0},
1173 {"", 0}
1174};
1175MODULE_DEVICE_TABLE(acpi, fujitsu_ids);
1176
Jonathan Woithed0482532007-08-29 15:58:19 +09301177static int __init fujitsu_init(void)
1178{
Jonathan Woithe20b93732008-06-11 10:14:56 +09301179 int ret, result, max_brightness;
Jonathan Woithed0482532007-08-29 15:58:19 +09301180
1181 if (acpi_disabled)
1182 return -ENODEV;
1183
Julia Lawall6c75dd02010-05-13 22:06:20 +02001184 fujitsu = kzalloc(sizeof(struct fujitsu_t), GFP_KERNEL);
Jonathan Woithed0482532007-08-29 15:58:19 +09301185 if (!fujitsu)
1186 return -ENOMEM;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301187 fujitsu->keycode1 = KEY_PROG1;
1188 fujitsu->keycode2 = KEY_PROG2;
1189 fujitsu->keycode3 = KEY_PROG3;
1190 fujitsu->keycode4 = KEY_PROG4;
Michał Kępieńb5df36c2016-02-24 14:23:32 +01001191 fujitsu->keycode5 = KEY_RFKILL;
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301192 dmi_check_system(fujitsu_dmi_table);
Jonathan Woithed0482532007-08-29 15:58:19 +09301193
1194 result = acpi_bus_register_driver(&acpi_fujitsu_driver);
1195 if (result < 0) {
1196 ret = -ENODEV;
1197 goto fail_acpi;
1198 }
1199
Jonathan Woithed0482532007-08-29 15:58:19 +09301200 /* Register platform stuff */
1201
1202 fujitsu->pf_device = platform_device_alloc("fujitsu-laptop", -1);
1203 if (!fujitsu->pf_device) {
1204 ret = -ENOMEM;
1205 goto fail_platform_driver;
1206 }
1207
1208 ret = platform_device_add(fujitsu->pf_device);
1209 if (ret)
1210 goto fail_platform_device1;
1211
1212 ret =
1213 sysfs_create_group(&fujitsu->pf_device->dev.kobj,
1214 &fujitsupf_attribute_group);
1215 if (ret)
1216 goto fail_platform_device2;
1217
Jonathan Woithe20b93732008-06-11 10:14:56 +09301218 /* Register backlight stuff */
1219
Hans de Goede413226f2015-06-16 16:28:03 +02001220 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001221 struct backlight_properties props;
1222
1223 memset(&props, 0, sizeof(struct backlight_properties));
1224 max_brightness = fujitsu->max_brightness;
Matthew Garrettbb7ca742011-03-22 16:30:21 -07001225 props.type = BACKLIGHT_PLATFORM;
Matthew Garretta19a6ee2010-02-17 16:39:44 -05001226 props.max_brightness = max_brightness - 1;
1227 fujitsu->bl_device = backlight_device_register("fujitsu-laptop",
1228 NULL, NULL,
1229 &fujitsubl_ops,
1230 &props);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301231 if (IS_ERR(fujitsu->bl_device)) {
1232 ret = PTR_ERR(fujitsu->bl_device);
1233 fujitsu->bl_device = NULL;
1234 goto fail_sysfs_group;
1235 }
Thomas Renninger7d5c89a2008-08-01 17:38:00 +02001236 fujitsu->bl_device->props.brightness = fujitsu->brightness_level;
1237 }
Jonathan Woithe20b93732008-06-11 10:14:56 +09301238
1239 ret = platform_driver_register(&fujitsupf_driver);
1240 if (ret)
1241 goto fail_backlight;
1242
1243 /* Register hotkey driver */
1244
Julia Lawall6c75dd02010-05-13 22:06:20 +02001245 fujitsu_hotkey = kzalloc(sizeof(struct fujitsu_hotkey_t), GFP_KERNEL);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301246 if (!fujitsu_hotkey) {
1247 ret = -ENOMEM;
1248 goto fail_hotkey;
1249 }
Jonathan Woithe20b93732008-06-11 10:14:56 +09301250
1251 result = acpi_bus_register_driver(&acpi_fujitsu_hotkey_driver);
1252 if (result < 0) {
1253 ret = -ENODEV;
1254 goto fail_hotkey1;
1255 }
1256
Tony Vroon3a407082008-12-31 18:19:59 +00001257 /* Sync backlight power status (needs FUJ02E3 device, hence deferred) */
Hans de Goede413226f2015-06-16 16:28:03 +02001258 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
Tony Vroon3a407082008-12-31 18:19:59 +00001259 if (call_fext_func(FUNC_BACKLIGHT, 0x2, 0x4, 0x0) == 3)
Michael Karchere8549e22015-01-18 20:28:46 +01001260 fujitsu->bl_device->props.power = FB_BLANK_POWERDOWN;
Tony Vroon3a407082008-12-31 18:19:59 +00001261 else
Michael Karchere8549e22015-01-18 20:28:46 +01001262 fujitsu->bl_device->props.power = FB_BLANK_UNBLANK;
Tony Vroon3a407082008-12-31 18:19:59 +00001263 }
1264
Joe Perches77bad7c2011-03-29 15:21:39 -07001265 pr_info("driver " FUJITSU_DRIVER_VERSION " successfully loaded\n");
Jonathan Woithed0482532007-08-29 15:58:19 +09301266
1267 return 0;
1268
Jonathan Woithe20b93732008-06-11 10:14:56 +09301269fail_hotkey1:
Jonathan Woithe20b93732008-06-11 10:14:56 +09301270 kfree(fujitsu_hotkey);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301271fail_hotkey:
Jonathan Woithed0482532007-08-29 15:58:19 +09301272 platform_driver_unregister(&fujitsupf_driver);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301273fail_backlight:
Markus Elfring00981812014-11-24 20:30:29 +01001274 backlight_device_unregister(fujitsu->bl_device);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301275fail_sysfs_group:
1276 sysfs_remove_group(&fujitsu->pf_device->dev.kobj,
1277 &fujitsupf_attribute_group);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301278fail_platform_device2:
Jonathan Woithe20b93732008-06-11 10:14:56 +09301279 platform_device_del(fujitsu->pf_device);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301280fail_platform_device1:
Jonathan Woithe20b93732008-06-11 10:14:56 +09301281 platform_device_put(fujitsu->pf_device);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301282fail_platform_driver:
Jonathan Woithe20b93732008-06-11 10:14:56 +09301283 acpi_bus_unregister_driver(&acpi_fujitsu_driver);
Jonathan Woithe20b93732008-06-11 10:14:56 +09301284fail_acpi:
Jonathan Woithed0482532007-08-29 15:58:19 +09301285 kfree(fujitsu);
1286
1287 return ret;
1288}
1289
1290static void __exit fujitsu_cleanup(void)
1291{
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301292 acpi_bus_unregister_driver(&acpi_fujitsu_hotkey_driver);
Tony Vroon3a407082008-12-31 18:19:59 +00001293
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301294 kfree(fujitsu_hotkey);
1295
1296 platform_driver_unregister(&fujitsupf_driver);
1297
Markus Elfring00981812014-11-24 20:30:29 +01001298 backlight_device_unregister(fujitsu->bl_device);
Tony Vroon3a407082008-12-31 18:19:59 +00001299
Jonathan Woithed0482532007-08-29 15:58:19 +09301300 sysfs_remove_group(&fujitsu->pf_device->dev.kobj,
1301 &fujitsupf_attribute_group);
Bartlomiej Zolnierkiewicz72afeea2009-07-31 18:16:02 +09301302
Jonathan Woithed0482532007-08-29 15:58:19 +09301303 platform_device_unregister(fujitsu->pf_device);
Jonathan Woithed0482532007-08-29 15:58:19 +09301304
1305 acpi_bus_unregister_driver(&acpi_fujitsu_driver);
1306
1307 kfree(fujitsu);
1308
Joe Perches77bad7c2011-03-29 15:21:39 -07001309 pr_info("driver unloaded\n");
Jonathan Woithed0482532007-08-29 15:58:19 +09301310}
1311
1312module_init(fujitsu_init);
1313module_exit(fujitsu_cleanup);
1314
Jonathan Woithe20b93732008-06-11 10:14:56 +09301315module_param(use_alt_lcd_levels, uint, 0644);
1316MODULE_PARM_DESC(use_alt_lcd_levels,
1317 "Use alternative interface for lcd_levels (needed for Lifebook s6410).");
Jonathan Woithe20b93732008-06-11 10:14:56 +09301318module_param(disable_brightness_adjust, uint, 0644);
1319MODULE_PARM_DESC(disable_brightness_adjust, "Disable brightness adjustment .");
1320#ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
1321module_param_named(debug, dbg_level, uint, 0644);
1322MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
1323#endif
1324
Tony Vroon3a407082008-12-31 18:19:59 +00001325MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon");
Jonathan Woithed0482532007-08-29 15:58:19 +09301326MODULE_DESCRIPTION("Fujitsu laptop extras support");
1327MODULE_VERSION(FUJITSU_DRIVER_VERSION);
1328MODULE_LICENSE("GPL");
Dan Williamsa361a822008-06-05 22:46:08 -07001329
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301330MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1D3:*:cvrS6410:*");
Tony Vroon3a407082008-12-31 18:19:59 +00001331MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1E6:*:cvrS6420:*");
Jonathan Woithe0e6a66e2008-10-09 13:44:40 +09301332MODULE_ALIAS("dmi:*:svnFUJITSU:*:pvr:rvnFUJITSU:rnFJNB19C:*:cvrS7020:*");