1 // SPDX-License-Identifier: GPL-2.0-or-later
5 Copyright (C) 2007,2008 Jonathan Woithe <jwoithe@just42.net>
6 Copyright (C) 2008 Peter Gruber <nokos@gmx.net>
7 Copyright (C) 2008 Tony Vroon <tony@linx.net>
9 Copyright (C) 2003 Shane Spencer <shane@bogomip.com>
10 Adrian Yee <brewt-fujitsu@brewt.org>
12 Templated from msi-laptop.c and thinkpad_acpi.c which is copyright
13 by its respective authors.
18 * fujitsu-laptop.c - Fujitsu laptop support, providing access to additional
19 * features made available on a range of Fujitsu laptops including the
20 * P2xxx/P5xxx/S6xxx/S7xxx series.
22 * This driver implements a vendor-specific backlight control interface for
23 * Fujitsu laptops and provides support for hotkeys present on certain Fujitsu
26 * This driver has been tested on a Fujitsu Lifebook S6410, S7020 and
27 * P8010. It should work on most P-series and S-series Lifebooks, but
30 * The module parameter use_alt_lcd_levels switches between different ACPI
31 * brightness controls which are used by different Fujitsu laptops. In most
32 * cases the correct method is automatically detected. "use_alt_lcd_levels=1"
33 * is applicable for a Fujitsu Lifebook S6410 if autodetection fails.
37 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/init.h>
42 #include <linux/acpi.h>
43 #include <linux/bitops.h>
44 #include <linux/dmi.h>
45 #include <linux/backlight.h>
47 #include <linux/input.h>
48 #include <linux/input/sparse-keymap.h>
49 #include <linux/kfifo.h>
50 #include <linux/leds.h>
51 #include <linux/platform_device.h>
52 #include <acpi/video.h>
54 #define FUJITSU_DRIVER_VERSION "0.6.0"
56 #define FUJITSU_LCD_N_LEVELS 8
58 #define ACPI_FUJITSU_CLASS "fujitsu"
59 #define ACPI_FUJITSU_BL_HID "FUJ02B1"
60 #define ACPI_FUJITSU_BL_DRIVER_NAME "Fujitsu laptop FUJ02B1 ACPI brightness driver"
61 #define ACPI_FUJITSU_BL_DEVICE_NAME "Fujitsu FUJ02B1"
62 #define ACPI_FUJITSU_LAPTOP_HID "FUJ02E3"
63 #define ACPI_FUJITSU_LAPTOP_DRIVER_NAME "Fujitsu laptop FUJ02E3 ACPI hotkeys driver"
64 #define ACPI_FUJITSU_LAPTOP_DEVICE_NAME "Fujitsu FUJ02E3"
66 #define ACPI_FUJITSU_NOTIFY_CODE 0x80
68 /* FUNC interface - command values */
69 #define FUNC_FLAGS BIT(12)
70 #define FUNC_LEDS (BIT(12) | BIT(0))
71 #define FUNC_BUTTONS (BIT(12) | BIT(1))
72 #define FUNC_BACKLIGHT (BIT(12) | BIT(2))
74 /* FUNC interface - responses */
75 #define UNSUPPORTED_CMD 0x80000000
77 /* FUNC interface - status flags */
78 #define FLAG_RFKILL BIT(5)
79 #define FLAG_LID BIT(8)
80 #define FLAG_DOCK BIT(9)
81 #define FLAG_TOUCHPAD_TOGGLE BIT(26)
82 #define FLAG_MICMUTE BIT(29)
83 #define FLAG_SOFTKEYS (FLAG_RFKILL | FLAG_TOUCHPAD_TOGGLE | FLAG_MICMUTE)
85 /* FUNC interface - LED control */
86 #define FUNC_LED_OFF BIT(0)
87 #define FUNC_LED_ON (BIT(0) | BIT(16) | BIT(17))
88 #define LOGOLAMP_POWERON BIT(13)
89 #define LOGOLAMP_ALWAYS BIT(14)
90 #define KEYBOARD_LAMPS BIT(8)
91 #define RADIO_LED_ON BIT(5)
92 #define ECO_LED BIT(16)
93 #define ECO_LED_ON BIT(19)
95 /* FUNC interface - backlight power control */
96 #define BACKLIGHT_PARAM_POWER BIT(2)
97 #define BACKLIGHT_OFF (BIT(0) | BIT(1))
98 #define BACKLIGHT_ON 0
100 /* Scancodes read from the GIRB register */
101 #define KEY1_CODE 0x410
102 #define KEY2_CODE 0x411
103 #define KEY3_CODE 0x412
104 #define KEY4_CODE 0x413
105 #define KEY5_CODE 0x420
107 /* Hotkey ringbuffer limits */
108 #define MAX_HOTKEY_RINGBUFFER_SIZE 100
109 #define RINGBUFFERSIZE 40
111 /* Module parameters */
112 static int use_alt_lcd_levels
= -1;
113 static bool disable_brightness_adjust
;
115 /* Device controlling the backlight and associated keys */
117 struct input_dev
*input
;
119 struct backlight_device
*bl_device
;
120 unsigned int max_brightness
;
121 unsigned int brightness_level
;
124 static struct fujitsu_bl
*fujitsu_bl
;
126 /* Device used to access hotkeys and other features on the laptop */
127 struct fujitsu_laptop
{
128 struct input_dev
*input
;
130 struct platform_device
*pf_device
;
132 spinlock_t fifo_lock
;
137 static struct acpi_device
*fext
;
139 /* Fujitsu ACPI interface function */
141 static int call_fext_func(struct acpi_device
*device
,
142 int func
, int op
, int feature
, int state
)
144 union acpi_object params
[4] = {
145 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= func
},
146 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= op
},
147 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= feature
},
148 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= state
}
150 struct acpi_object_list arg_list
= { 4, params
};
151 unsigned long long value
;
154 status
= acpi_evaluate_integer(device
->handle
, "FUNC", &arg_list
,
156 if (ACPI_FAILURE(status
)) {
157 acpi_handle_err(device
->handle
, "Failed to evaluate FUNC\n");
161 acpi_handle_debug(device
->handle
,
162 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
163 func
, op
, feature
, state
, (int)value
);
167 /* Hardware access for LCD brightness control */
169 static int set_lcd_level(struct acpi_device
*device
, int level
)
171 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
175 switch (use_alt_lcd_levels
) {
177 if (acpi_has_method(device
->handle
, "SBL2"))
190 acpi_handle_debug(device
->handle
, "set lcd level via %s [%d]\n", method
,
193 if (level
< 0 || level
>= priv
->max_brightness
)
196 status
= acpi_execute_simple_method(device
->handle
, method
, level
);
197 if (ACPI_FAILURE(status
)) {
198 acpi_handle_err(device
->handle
, "Failed to evaluate %s\n",
203 priv
->brightness_level
= level
;
208 static int get_lcd_level(struct acpi_device
*device
)
210 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
211 unsigned long long state
= 0;
212 acpi_status status
= AE_OK
;
214 acpi_handle_debug(device
->handle
, "get lcd level via GBLL\n");
216 status
= acpi_evaluate_integer(device
->handle
, "GBLL", NULL
, &state
);
217 if (ACPI_FAILURE(status
))
220 priv
->brightness_level
= state
& 0x0fffffff;
222 return priv
->brightness_level
;
225 static int get_max_brightness(struct acpi_device
*device
)
227 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
228 unsigned long long state
= 0;
229 acpi_status status
= AE_OK
;
231 acpi_handle_debug(device
->handle
, "get max lcd level via RBLL\n");
233 status
= acpi_evaluate_integer(device
->handle
, "RBLL", NULL
, &state
);
234 if (ACPI_FAILURE(status
))
237 priv
->max_brightness
= state
;
239 return priv
->max_brightness
;
242 /* Backlight device stuff */
244 static int bl_get_brightness(struct backlight_device
*b
)
246 struct acpi_device
*device
= bl_get_data(b
);
248 return b
->props
.power
== FB_BLANK_POWERDOWN
? 0 : get_lcd_level(device
);
251 static int bl_update_status(struct backlight_device
*b
)
253 struct acpi_device
*device
= bl_get_data(b
);
256 if (b
->props
.power
== FB_BLANK_POWERDOWN
)
257 call_fext_func(fext
, FUNC_BACKLIGHT
, 0x1,
258 BACKLIGHT_PARAM_POWER
, BACKLIGHT_OFF
);
260 call_fext_func(fext
, FUNC_BACKLIGHT
, 0x1,
261 BACKLIGHT_PARAM_POWER
, BACKLIGHT_ON
);
264 return set_lcd_level(device
, b
->props
.brightness
);
267 static const struct backlight_ops fujitsu_bl_ops
= {
268 .get_brightness
= bl_get_brightness
,
269 .update_status
= bl_update_status
,
272 static ssize_t
lid_show(struct device
*dev
, struct device_attribute
*attr
,
275 struct fujitsu_laptop
*priv
= dev_get_drvdata(dev
);
277 if (!(priv
->flags_supported
& FLAG_LID
))
278 return sprintf(buf
, "unknown\n");
279 if (priv
->flags_state
& FLAG_LID
)
280 return sprintf(buf
, "open\n");
282 return sprintf(buf
, "closed\n");
285 static ssize_t
dock_show(struct device
*dev
, struct device_attribute
*attr
,
288 struct fujitsu_laptop
*priv
= dev_get_drvdata(dev
);
290 if (!(priv
->flags_supported
& FLAG_DOCK
))
291 return sprintf(buf
, "unknown\n");
292 if (priv
->flags_state
& FLAG_DOCK
)
293 return sprintf(buf
, "docked\n");
295 return sprintf(buf
, "undocked\n");
298 static ssize_t
radios_show(struct device
*dev
, struct device_attribute
*attr
,
301 struct fujitsu_laptop
*priv
= dev_get_drvdata(dev
);
303 if (!(priv
->flags_supported
& FLAG_RFKILL
))
304 return sprintf(buf
, "unknown\n");
305 if (priv
->flags_state
& FLAG_RFKILL
)
306 return sprintf(buf
, "on\n");
308 return sprintf(buf
, "killed\n");
311 static DEVICE_ATTR_RO(lid
);
312 static DEVICE_ATTR_RO(dock
);
313 static DEVICE_ATTR_RO(radios
);
315 static struct attribute
*fujitsu_pf_attributes
[] = {
318 &dev_attr_radios
.attr
,
322 static const struct attribute_group fujitsu_pf_attribute_group
= {
323 .attrs
= fujitsu_pf_attributes
326 static struct platform_driver fujitsu_pf_driver
= {
328 .name
= "fujitsu-laptop",
332 /* ACPI device for LCD brightness control */
334 static const struct key_entry keymap_backlight
[] = {
335 { KE_KEY
, true, { KEY_BRIGHTNESSUP
} },
336 { KE_KEY
, false, { KEY_BRIGHTNESSDOWN
} },
340 static int acpi_fujitsu_bl_input_setup(struct acpi_device
*device
)
342 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
345 priv
->input
= devm_input_allocate_device(&device
->dev
);
349 snprintf(priv
->phys
, sizeof(priv
->phys
), "%s/video/input0",
350 acpi_device_hid(device
));
352 priv
->input
->name
= acpi_device_name(device
);
353 priv
->input
->phys
= priv
->phys
;
354 priv
->input
->id
.bustype
= BUS_HOST
;
355 priv
->input
->id
.product
= 0x06;
357 ret
= sparse_keymap_setup(priv
->input
, keymap_backlight
, NULL
);
361 return input_register_device(priv
->input
);
364 static int fujitsu_backlight_register(struct acpi_device
*device
)
366 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
367 const struct backlight_properties props
= {
368 .brightness
= priv
->brightness_level
,
369 .max_brightness
= priv
->max_brightness
- 1,
370 .type
= BACKLIGHT_PLATFORM
372 struct backlight_device
*bd
;
374 bd
= devm_backlight_device_register(&device
->dev
, "fujitsu-laptop",
375 &device
->dev
, device
,
376 &fujitsu_bl_ops
, &props
);
380 priv
->bl_device
= bd
;
385 static int acpi_fujitsu_bl_add(struct acpi_device
*device
)
387 struct fujitsu_bl
*priv
;
390 if (acpi_video_get_backlight_type() != acpi_backlight_vendor
)
393 priv
= devm_kzalloc(&device
->dev
, sizeof(*priv
), GFP_KERNEL
);
398 strcpy(acpi_device_name(device
), ACPI_FUJITSU_BL_DEVICE_NAME
);
399 strcpy(acpi_device_class(device
), ACPI_FUJITSU_CLASS
);
400 device
->driver_data
= priv
;
402 pr_info("ACPI: %s [%s]\n",
403 acpi_device_name(device
), acpi_device_bid(device
));
405 if (get_max_brightness(device
) <= 0)
406 priv
->max_brightness
= FUJITSU_LCD_N_LEVELS
;
407 get_lcd_level(device
);
409 ret
= acpi_fujitsu_bl_input_setup(device
);
413 return fujitsu_backlight_register(device
);
416 /* Brightness notify */
418 static void acpi_fujitsu_bl_notify(struct acpi_device
*device
, u32 event
)
420 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
423 if (event
!= ACPI_FUJITSU_NOTIFY_CODE
) {
424 acpi_handle_info(device
->handle
, "unsupported event [0x%x]\n",
426 sparse_keymap_report_event(priv
->input
, -1, 1, true);
430 oldb
= priv
->brightness_level
;
431 get_lcd_level(device
);
432 newb
= priv
->brightness_level
;
434 acpi_handle_debug(device
->handle
,
435 "brightness button event [%i -> %i]\n", oldb
, newb
);
440 if (!disable_brightness_adjust
)
441 set_lcd_level(device
, newb
);
443 sparse_keymap_report_event(priv
->input
, oldb
< newb
, 1, true);
446 /* ACPI device for hotkey handling */
448 static const struct key_entry keymap_default
[] = {
449 { KE_KEY
, KEY1_CODE
, { KEY_PROG1
} },
450 { KE_KEY
, KEY2_CODE
, { KEY_PROG2
} },
451 { KE_KEY
, KEY3_CODE
, { KEY_PROG3
} },
452 { KE_KEY
, KEY4_CODE
, { KEY_PROG4
} },
453 { KE_KEY
, KEY5_CODE
, { KEY_RFKILL
} },
454 /* Soft keys read from status flags */
455 { KE_KEY
, FLAG_RFKILL
, { KEY_RFKILL
} },
456 { KE_KEY
, FLAG_TOUCHPAD_TOGGLE
, { KEY_TOUCHPAD_TOGGLE
} },
457 { KE_KEY
, FLAG_MICMUTE
, { KEY_MICMUTE
} },
461 static const struct key_entry keymap_s64x0
[] = {
462 { KE_KEY
, KEY1_CODE
, { KEY_SCREENLOCK
} }, /* "Lock" */
463 { KE_KEY
, KEY2_CODE
, { KEY_HELP
} }, /* "Mobility Center */
464 { KE_KEY
, KEY3_CODE
, { KEY_PROG3
} },
465 { KE_KEY
, KEY4_CODE
, { KEY_PROG4
} },
469 static const struct key_entry keymap_p8010
[] = {
470 { KE_KEY
, KEY1_CODE
, { KEY_HELP
} }, /* "Support" */
471 { KE_KEY
, KEY2_CODE
, { KEY_PROG2
} },
472 { KE_KEY
, KEY3_CODE
, { KEY_SWITCHVIDEOMODE
} }, /* "Presentation" */
473 { KE_KEY
, KEY4_CODE
, { KEY_WWW
} }, /* "WWW" */
477 static const struct key_entry
*keymap
= keymap_default
;
479 static int fujitsu_laptop_dmi_keymap_override(const struct dmi_system_id
*id
)
481 pr_info("Identified laptop model '%s'\n", id
->ident
);
482 keymap
= id
->driver_data
;
486 static const struct dmi_system_id fujitsu_laptop_dmi_table
[] = {
488 .callback
= fujitsu_laptop_dmi_keymap_override
,
489 .ident
= "Fujitsu Siemens S6410",
491 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
492 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK S6410"),
494 .driver_data
= (void *)keymap_s64x0
497 .callback
= fujitsu_laptop_dmi_keymap_override
,
498 .ident
= "Fujitsu Siemens S6420",
500 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
501 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK S6420"),
503 .driver_data
= (void *)keymap_s64x0
506 .callback
= fujitsu_laptop_dmi_keymap_override
,
507 .ident
= "Fujitsu LifeBook P8010",
509 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
510 DMI_MATCH(DMI_PRODUCT_NAME
, "LifeBook P8010"),
512 .driver_data
= (void *)keymap_p8010
517 static int acpi_fujitsu_laptop_input_setup(struct acpi_device
*device
)
519 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
522 priv
->input
= devm_input_allocate_device(&device
->dev
);
526 snprintf(priv
->phys
, sizeof(priv
->phys
), "%s/input0",
527 acpi_device_hid(device
));
529 priv
->input
->name
= acpi_device_name(device
);
530 priv
->input
->phys
= priv
->phys
;
531 priv
->input
->id
.bustype
= BUS_HOST
;
533 dmi_check_system(fujitsu_laptop_dmi_table
);
534 ret
= sparse_keymap_setup(priv
->input
, keymap
, NULL
);
538 return input_register_device(priv
->input
);
541 static int fujitsu_laptop_platform_add(struct acpi_device
*device
)
543 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
546 priv
->pf_device
= platform_device_alloc("fujitsu-laptop", -1);
547 if (!priv
->pf_device
)
550 platform_set_drvdata(priv
->pf_device
, priv
);
552 ret
= platform_device_add(priv
->pf_device
);
554 goto err_put_platform_device
;
556 ret
= sysfs_create_group(&priv
->pf_device
->dev
.kobj
,
557 &fujitsu_pf_attribute_group
);
559 goto err_del_platform_device
;
563 err_del_platform_device
:
564 platform_device_del(priv
->pf_device
);
565 err_put_platform_device
:
566 platform_device_put(priv
->pf_device
);
571 static void fujitsu_laptop_platform_remove(struct acpi_device
*device
)
573 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
575 sysfs_remove_group(&priv
->pf_device
->dev
.kobj
,
576 &fujitsu_pf_attribute_group
);
577 platform_device_unregister(priv
->pf_device
);
580 static int logolamp_set(struct led_classdev
*cdev
,
581 enum led_brightness brightness
)
583 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
584 int poweron
= FUNC_LED_ON
, always
= FUNC_LED_ON
;
587 if (brightness
< LED_HALF
)
588 poweron
= FUNC_LED_OFF
;
590 if (brightness
< LED_FULL
)
591 always
= FUNC_LED_OFF
;
593 ret
= call_fext_func(device
, FUNC_LEDS
, 0x1, LOGOLAMP_POWERON
, poweron
);
597 return call_fext_func(device
, FUNC_LEDS
, 0x1, LOGOLAMP_ALWAYS
, always
);
600 static enum led_brightness
logolamp_get(struct led_classdev
*cdev
)
602 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
605 ret
= call_fext_func(device
, FUNC_LEDS
, 0x2, LOGOLAMP_ALWAYS
, 0x0);
606 if (ret
== FUNC_LED_ON
)
609 ret
= call_fext_func(device
, FUNC_LEDS
, 0x2, LOGOLAMP_POWERON
, 0x0);
610 if (ret
== FUNC_LED_ON
)
616 static int kblamps_set(struct led_classdev
*cdev
,
617 enum led_brightness brightness
)
619 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
621 if (brightness
>= LED_FULL
)
622 return call_fext_func(device
, FUNC_LEDS
, 0x1, KEYBOARD_LAMPS
,
625 return call_fext_func(device
, FUNC_LEDS
, 0x1, KEYBOARD_LAMPS
,
629 static enum led_brightness
kblamps_get(struct led_classdev
*cdev
)
631 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
632 enum led_brightness brightness
= LED_OFF
;
634 if (call_fext_func(device
,
635 FUNC_LEDS
, 0x2, KEYBOARD_LAMPS
, 0x0) == FUNC_LED_ON
)
636 brightness
= LED_FULL
;
641 static int radio_led_set(struct led_classdev
*cdev
,
642 enum led_brightness brightness
)
644 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
646 if (brightness
>= LED_FULL
)
647 return call_fext_func(device
, FUNC_FLAGS
, 0x5, RADIO_LED_ON
,
650 return call_fext_func(device
, FUNC_FLAGS
, 0x5, RADIO_LED_ON
,
654 static enum led_brightness
radio_led_get(struct led_classdev
*cdev
)
656 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
657 enum led_brightness brightness
= LED_OFF
;
659 if (call_fext_func(device
, FUNC_FLAGS
, 0x4, 0x0, 0x0) & RADIO_LED_ON
)
660 brightness
= LED_FULL
;
665 static int eco_led_set(struct led_classdev
*cdev
,
666 enum led_brightness brightness
)
668 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
671 curr
= call_fext_func(device
, FUNC_LEDS
, 0x2, ECO_LED
, 0x0);
672 if (brightness
>= LED_FULL
)
673 return call_fext_func(device
, FUNC_LEDS
, 0x1, ECO_LED
,
676 return call_fext_func(device
, FUNC_LEDS
, 0x1, ECO_LED
,
680 static enum led_brightness
eco_led_get(struct led_classdev
*cdev
)
682 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
683 enum led_brightness brightness
= LED_OFF
;
685 if (call_fext_func(device
, FUNC_LEDS
, 0x2, ECO_LED
, 0x0) & ECO_LED_ON
)
686 brightness
= LED_FULL
;
691 static int acpi_fujitsu_laptop_leds_register(struct acpi_device
*device
)
693 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
694 struct led_classdev
*led
;
697 if (call_fext_func(device
,
698 FUNC_LEDS
, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON
) {
699 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
703 led
->name
= "fujitsu::logolamp";
704 led
->brightness_set_blocking
= logolamp_set
;
705 led
->brightness_get
= logolamp_get
;
706 ret
= devm_led_classdev_register(&device
->dev
, led
);
711 if ((call_fext_func(device
,
712 FUNC_LEDS
, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS
) &&
713 (call_fext_func(device
, FUNC_BUTTONS
, 0x0, 0x0, 0x0) == 0x0)) {
714 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
718 led
->name
= "fujitsu::kblamps";
719 led
->brightness_set_blocking
= kblamps_set
;
720 led
->brightness_get
= kblamps_get
;
721 ret
= devm_led_classdev_register(&device
->dev
, led
);
727 * Some Fujitsu laptops have a radio toggle button in place of a slide
728 * switch and all such machines appear to also have an RF LED. Based on
729 * comparing DSDT tables of four Fujitsu Lifebook models (E744, E751,
730 * S7110, S8420; the first one has a radio toggle button, the other
731 * three have slide switches), bit 17 of flags_supported (the value
732 * returned by method S000 of ACPI device FUJ02E3) seems to indicate
733 * whether given model has a radio toggle button.
735 if (priv
->flags_supported
& BIT(17)) {
736 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
740 led
->name
= "fujitsu::radio_led";
741 led
->brightness_set_blocking
= radio_led_set
;
742 led
->brightness_get
= radio_led_get
;
743 led
->default_trigger
= "rfkill-any";
744 ret
= devm_led_classdev_register(&device
->dev
, led
);
749 /* Support for eco led is not always signaled in bit corresponding
750 * to the bit used to control the led. According to the DSDT table,
751 * bit 14 seems to indicate presence of said led as well.
752 * Confirm by testing the status.
754 if ((call_fext_func(device
, FUNC_LEDS
, 0x0, 0x0, 0x0) & BIT(14)) &&
755 (call_fext_func(device
,
756 FUNC_LEDS
, 0x2, ECO_LED
, 0x0) != UNSUPPORTED_CMD
)) {
757 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
761 led
->name
= "fujitsu::eco_led";
762 led
->brightness_set_blocking
= eco_led_set
;
763 led
->brightness_get
= eco_led_get
;
764 ret
= devm_led_classdev_register(&device
->dev
, led
);
772 static int acpi_fujitsu_laptop_add(struct acpi_device
*device
)
774 struct fujitsu_laptop
*priv
;
777 priv
= devm_kzalloc(&device
->dev
, sizeof(*priv
), GFP_KERNEL
);
781 WARN_ONCE(fext
, "More than one FUJ02E3 ACPI device was found. Driver may not work as intended.");
784 strcpy(acpi_device_name(device
), ACPI_FUJITSU_LAPTOP_DEVICE_NAME
);
785 strcpy(acpi_device_class(device
), ACPI_FUJITSU_CLASS
);
786 device
->driver_data
= priv
;
789 spin_lock_init(&priv
->fifo_lock
);
790 ret
= kfifo_alloc(&priv
->fifo
, RINGBUFFERSIZE
* sizeof(int),
795 pr_info("ACPI: %s [%s]\n",
796 acpi_device_name(device
), acpi_device_bid(device
));
798 while (call_fext_func(device
, FUNC_BUTTONS
, 0x1, 0x0, 0x0) != 0 &&
799 i
++ < MAX_HOTKEY_RINGBUFFER_SIZE
)
800 ; /* No action, result is discarded */
801 acpi_handle_debug(device
->handle
, "Discarded %i ringbuffer entries\n",
804 priv
->flags_supported
= call_fext_func(device
, FUNC_FLAGS
, 0x0, 0x0,
807 /* Make sure our bitmask of supported functions is cleared if the
808 RFKILL function block is not implemented, like on the S7020. */
809 if (priv
->flags_supported
== UNSUPPORTED_CMD
)
810 priv
->flags_supported
= 0;
812 if (priv
->flags_supported
)
813 priv
->flags_state
= call_fext_func(device
, FUNC_FLAGS
, 0x4, 0x0,
816 /* Suspect this is a keymap of the application panel, print it */
817 acpi_handle_info(device
->handle
, "BTNI: [0x%x]\n",
818 call_fext_func(device
, FUNC_BUTTONS
, 0x0, 0x0, 0x0));
820 /* Sync backlight power status */
821 if (fujitsu_bl
&& fujitsu_bl
->bl_device
&&
822 acpi_video_get_backlight_type() == acpi_backlight_vendor
) {
823 if (call_fext_func(fext
, FUNC_BACKLIGHT
, 0x2,
824 BACKLIGHT_PARAM_POWER
, 0x0) == BACKLIGHT_OFF
)
825 fujitsu_bl
->bl_device
->props
.power
= FB_BLANK_POWERDOWN
;
827 fujitsu_bl
->bl_device
->props
.power
= FB_BLANK_UNBLANK
;
830 ret
= acpi_fujitsu_laptop_input_setup(device
);
834 ret
= acpi_fujitsu_laptop_leds_register(device
);
838 ret
= fujitsu_laptop_platform_add(device
);
845 kfifo_free(&priv
->fifo
);
850 static int acpi_fujitsu_laptop_remove(struct acpi_device
*device
)
852 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
854 fujitsu_laptop_platform_remove(device
);
856 kfifo_free(&priv
->fifo
);
861 static void acpi_fujitsu_laptop_press(struct acpi_device
*device
, int scancode
)
863 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
866 ret
= kfifo_in_locked(&priv
->fifo
, (unsigned char *)&scancode
,
867 sizeof(scancode
), &priv
->fifo_lock
);
868 if (ret
!= sizeof(scancode
)) {
869 dev_info(&priv
->input
->dev
, "Could not push scancode [0x%x]\n",
873 sparse_keymap_report_event(priv
->input
, scancode
, 1, false);
874 dev_dbg(&priv
->input
->dev
, "Push scancode into ringbuffer [0x%x]\n",
878 static void acpi_fujitsu_laptop_release(struct acpi_device
*device
)
880 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
884 ret
= kfifo_out_locked(&priv
->fifo
, (unsigned char *)&scancode
,
885 sizeof(scancode
), &priv
->fifo_lock
);
886 if (ret
!= sizeof(scancode
))
888 sparse_keymap_report_event(priv
->input
, scancode
, 0, false);
889 dev_dbg(&priv
->input
->dev
,
890 "Pop scancode from ringbuffer [0x%x]\n", scancode
);
894 static void acpi_fujitsu_laptop_notify(struct acpi_device
*device
, u32 event
)
896 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
901 if (event
!= ACPI_FUJITSU_NOTIFY_CODE
) {
902 acpi_handle_info(device
->handle
, "Unsupported event [0x%x]\n",
904 sparse_keymap_report_event(priv
->input
, -1, 1, true);
908 if (priv
->flags_supported
)
909 priv
->flags_state
= call_fext_func(device
, FUNC_FLAGS
, 0x4, 0x0,
912 while ((irb
= call_fext_func(device
,
913 FUNC_BUTTONS
, 0x1, 0x0, 0x0)) != 0 &&
914 i
++ < MAX_HOTKEY_RINGBUFFER_SIZE
) {
915 scancode
= irb
& 0x4ff;
916 if (sparse_keymap_entry_from_scancode(priv
->input
, scancode
))
917 acpi_fujitsu_laptop_press(device
, scancode
);
918 else if (scancode
== 0)
919 acpi_fujitsu_laptop_release(device
);
921 acpi_handle_info(device
->handle
,
922 "Unknown GIRB result [%x]\n", irb
);
926 * First seen on the Skylake-based Lifebook E736/E746/E756), the
927 * touchpad toggle hotkey (Fn+F4) is handled in software. Other models
928 * have since added additional "soft keys". These are reported in the
929 * status flags queried using FUNC_FLAGS.
931 if (priv
->flags_supported
& (FLAG_SOFTKEYS
)) {
932 flags
= call_fext_func(device
, FUNC_FLAGS
, 0x1, 0x0, 0x0);
933 flags
&= (FLAG_SOFTKEYS
);
934 for_each_set_bit(i
, &flags
, BITS_PER_LONG
)
935 sparse_keymap_report_event(priv
->input
, BIT(i
), 1, true);
941 static const struct acpi_device_id fujitsu_bl_device_ids
[] = {
942 {ACPI_FUJITSU_BL_HID
, 0},
946 static struct acpi_driver acpi_fujitsu_bl_driver
= {
947 .name
= ACPI_FUJITSU_BL_DRIVER_NAME
,
948 .class = ACPI_FUJITSU_CLASS
,
949 .ids
= fujitsu_bl_device_ids
,
951 .add
= acpi_fujitsu_bl_add
,
952 .notify
= acpi_fujitsu_bl_notify
,
956 static const struct acpi_device_id fujitsu_laptop_device_ids
[] = {
957 {ACPI_FUJITSU_LAPTOP_HID
, 0},
961 static struct acpi_driver acpi_fujitsu_laptop_driver
= {
962 .name
= ACPI_FUJITSU_LAPTOP_DRIVER_NAME
,
963 .class = ACPI_FUJITSU_CLASS
,
964 .ids
= fujitsu_laptop_device_ids
,
966 .add
= acpi_fujitsu_laptop_add
,
967 .remove
= acpi_fujitsu_laptop_remove
,
968 .notify
= acpi_fujitsu_laptop_notify
,
972 static const struct acpi_device_id fujitsu_ids
[] __used
= {
973 {ACPI_FUJITSU_BL_HID
, 0},
974 {ACPI_FUJITSU_LAPTOP_HID
, 0},
977 MODULE_DEVICE_TABLE(acpi
, fujitsu_ids
);
979 static int __init
fujitsu_init(void)
983 ret
= acpi_bus_register_driver(&acpi_fujitsu_bl_driver
);
987 /* Register platform stuff */
989 ret
= platform_driver_register(&fujitsu_pf_driver
);
991 goto err_unregister_acpi
;
993 /* Register laptop driver */
995 ret
= acpi_bus_register_driver(&acpi_fujitsu_laptop_driver
);
997 goto err_unregister_platform_driver
;
999 pr_info("driver " FUJITSU_DRIVER_VERSION
" successfully loaded\n");
1003 err_unregister_platform_driver
:
1004 platform_driver_unregister(&fujitsu_pf_driver
);
1005 err_unregister_acpi
:
1006 acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver
);
1011 static void __exit
fujitsu_cleanup(void)
1013 acpi_bus_unregister_driver(&acpi_fujitsu_laptop_driver
);
1015 platform_driver_unregister(&fujitsu_pf_driver
);
1017 acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver
);
1019 pr_info("driver unloaded\n");
1022 module_init(fujitsu_init
);
1023 module_exit(fujitsu_cleanup
);
1025 module_param(use_alt_lcd_levels
, int, 0644);
1026 MODULE_PARM_DESC(use_alt_lcd_levels
, "Interface used for setting LCD brightness level (-1 = auto, 0 = force SBLL, 1 = force SBL2)");
1027 module_param(disable_brightness_adjust
, bool, 0644);
1028 MODULE_PARM_DESC(disable_brightness_adjust
, "Disable LCD brightness adjustment");
1030 MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon");
1031 MODULE_DESCRIPTION("Fujitsu laptop extras support");
1032 MODULE_VERSION(FUJITSU_DRIVER_VERSION
);
1033 MODULE_LICENSE("GPL");