4 Copyright (C) 2007,2008 Jonathan Woithe <jwoithe@just42.net>
5 Copyright (C) 2008 Peter Gruber <nokos@gmx.net>
6 Copyright (C) 2008 Tony Vroon <tony@linx.net>
8 Copyright (C) 2003 Shane Spencer <shane@bogomip.com>
9 Adrian Yee <brewt-fujitsu@brewt.org>
11 Templated from msi-laptop.c and thinkpad_acpi.c which is copyright
12 by its respective authors.
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.
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.
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
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.
35 * This driver implements a vendor-specific backlight control interface for
36 * Fujitsu laptops and provides support for hotkeys present on certain Fujitsu
39 * This driver has been tested on a Fujitsu Lifebook S6410, S7020 and
40 * P8010. It should work on most P-series and S-series Lifebooks, but
43 * The module parameter use_alt_lcd_levels switches between different ACPI
44 * brightness controls which are used by different Fujitsu laptops. In most
45 * cases the correct method is automatically detected. "use_alt_lcd_levels=1"
46 * is applicable for a Fujitsu Lifebook S6410 if autodetection fails.
50 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
52 #include <linux/module.h>
53 #include <linux/kernel.h>
54 #include <linux/init.h>
55 #include <linux/acpi.h>
56 #include <linux/bitops.h>
57 #include <linux/dmi.h>
58 #include <linux/backlight.h>
60 #include <linux/input.h>
61 #include <linux/input/sparse-keymap.h>
62 #include <linux/kfifo.h>
63 #include <linux/leds.h>
64 #include <linux/platform_device.h>
65 #include <acpi/video.h>
67 #define FUJITSU_DRIVER_VERSION "0.6.0"
69 #define FUJITSU_LCD_N_LEVELS 8
71 #define ACPI_FUJITSU_CLASS "fujitsu"
72 #define ACPI_FUJITSU_BL_HID "FUJ02B1"
73 #define ACPI_FUJITSU_BL_DRIVER_NAME "Fujitsu laptop FUJ02B1 ACPI brightness driver"
74 #define ACPI_FUJITSU_BL_DEVICE_NAME "Fujitsu FUJ02B1"
75 #define ACPI_FUJITSU_LAPTOP_HID "FUJ02E3"
76 #define ACPI_FUJITSU_LAPTOP_DRIVER_NAME "Fujitsu laptop FUJ02E3 ACPI hotkeys driver"
77 #define ACPI_FUJITSU_LAPTOP_DEVICE_NAME "Fujitsu FUJ02E3"
79 #define ACPI_FUJITSU_NOTIFY_CODE 0x80
81 /* FUNC interface - command values */
82 #define FUNC_FLAGS BIT(12)
83 #define FUNC_LEDS (BIT(12) | BIT(0))
84 #define FUNC_BUTTONS (BIT(12) | BIT(1))
85 #define FUNC_BACKLIGHT (BIT(12) | BIT(2))
87 /* FUNC interface - responses */
88 #define UNSUPPORTED_CMD 0x80000000
90 /* FUNC interface - status flags */
91 #define FLAG_RFKILL BIT(5)
92 #define FLAG_LID BIT(8)
93 #define FLAG_DOCK BIT(9)
95 /* FUNC interface - LED control */
96 #define FUNC_LED_OFF BIT(0)
97 #define FUNC_LED_ON (BIT(0) | BIT(16) | BIT(17))
98 #define LOGOLAMP_POWERON BIT(13)
99 #define LOGOLAMP_ALWAYS BIT(14)
100 #define KEYBOARD_LAMPS BIT(8)
101 #define RADIO_LED_ON BIT(5)
102 #define ECO_LED BIT(16)
103 #define ECO_LED_ON BIT(19)
105 /* FUNC interface - backlight power control */
106 #define BACKLIGHT_PARAM_POWER BIT(2)
107 #define BACKLIGHT_OFF (BIT(0) | BIT(1))
108 #define BACKLIGHT_ON 0
110 /* Scancodes read from the GIRB register */
111 #define KEY1_CODE 0x410
112 #define KEY2_CODE 0x411
113 #define KEY3_CODE 0x412
114 #define KEY4_CODE 0x413
115 #define KEY5_CODE 0x420
117 /* Hotkey ringbuffer limits */
118 #define MAX_HOTKEY_RINGBUFFER_SIZE 100
119 #define RINGBUFFERSIZE 40
121 /* Module parameters */
122 static int use_alt_lcd_levels
= -1;
123 static bool disable_brightness_adjust
;
125 /* Device controlling the backlight and associated keys */
127 struct input_dev
*input
;
129 struct backlight_device
*bl_device
;
130 unsigned int max_brightness
;
131 unsigned int brightness_level
;
134 static struct fujitsu_bl
*fujitsu_bl
;
136 /* Device used to access hotkeys and other features on the laptop */
137 struct fujitsu_laptop
{
138 struct input_dev
*input
;
140 struct platform_device
*pf_device
;
142 spinlock_t fifo_lock
;
147 static struct acpi_device
*fext
;
149 /* Fujitsu ACPI interface function */
151 static int call_fext_func(struct acpi_device
*device
,
152 int func
, int op
, int feature
, int state
)
154 union acpi_object params
[4] = {
155 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= func
},
156 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= op
},
157 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= feature
},
158 { .integer
.type
= ACPI_TYPE_INTEGER
, .integer
.value
= state
}
160 struct acpi_object_list arg_list
= { 4, params
};
161 unsigned long long value
;
164 status
= acpi_evaluate_integer(device
->handle
, "FUNC", &arg_list
,
166 if (ACPI_FAILURE(status
)) {
167 acpi_handle_err(device
->handle
, "Failed to evaluate FUNC\n");
171 acpi_handle_debug(device
->handle
,
172 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
173 func
, op
, feature
, state
, (int)value
);
177 /* Hardware access for LCD brightness control */
179 static int set_lcd_level(struct acpi_device
*device
, int level
)
181 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
185 switch (use_alt_lcd_levels
) {
187 if (acpi_has_method(device
->handle
, "SBL2"))
200 acpi_handle_debug(device
->handle
, "set lcd level via %s [%d]\n", method
,
203 if (level
< 0 || level
>= priv
->max_brightness
)
206 status
= acpi_execute_simple_method(device
->handle
, method
, level
);
207 if (ACPI_FAILURE(status
)) {
208 acpi_handle_err(device
->handle
, "Failed to evaluate %s\n",
213 priv
->brightness_level
= level
;
218 static int get_lcd_level(struct acpi_device
*device
)
220 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
221 unsigned long long state
= 0;
222 acpi_status status
= AE_OK
;
224 acpi_handle_debug(device
->handle
, "get lcd level via GBLL\n");
226 status
= acpi_evaluate_integer(device
->handle
, "GBLL", NULL
, &state
);
227 if (ACPI_FAILURE(status
))
230 priv
->brightness_level
= state
& 0x0fffffff;
232 return priv
->brightness_level
;
235 static int get_max_brightness(struct acpi_device
*device
)
237 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
238 unsigned long long state
= 0;
239 acpi_status status
= AE_OK
;
241 acpi_handle_debug(device
->handle
, "get max lcd level via RBLL\n");
243 status
= acpi_evaluate_integer(device
->handle
, "RBLL", NULL
, &state
);
244 if (ACPI_FAILURE(status
))
247 priv
->max_brightness
= state
;
249 return priv
->max_brightness
;
252 /* Backlight device stuff */
254 static int bl_get_brightness(struct backlight_device
*b
)
256 struct acpi_device
*device
= bl_get_data(b
);
258 return b
->props
.power
== FB_BLANK_POWERDOWN
? 0 : get_lcd_level(device
);
261 static int bl_update_status(struct backlight_device
*b
)
263 struct acpi_device
*device
= bl_get_data(b
);
266 if (b
->props
.power
== FB_BLANK_POWERDOWN
)
267 call_fext_func(fext
, FUNC_BACKLIGHT
, 0x1,
268 BACKLIGHT_PARAM_POWER
, BACKLIGHT_OFF
);
270 call_fext_func(fext
, FUNC_BACKLIGHT
, 0x1,
271 BACKLIGHT_PARAM_POWER
, BACKLIGHT_ON
);
274 return set_lcd_level(device
, b
->props
.brightness
);
277 static const struct backlight_ops fujitsu_bl_ops
= {
278 .get_brightness
= bl_get_brightness
,
279 .update_status
= bl_update_status
,
282 static ssize_t
lid_show(struct device
*dev
, struct device_attribute
*attr
,
285 struct fujitsu_laptop
*priv
= dev_get_drvdata(dev
);
287 if (!(priv
->flags_supported
& FLAG_LID
))
288 return sprintf(buf
, "unknown\n");
289 if (priv
->flags_state
& FLAG_LID
)
290 return sprintf(buf
, "open\n");
292 return sprintf(buf
, "closed\n");
295 static ssize_t
dock_show(struct device
*dev
, struct device_attribute
*attr
,
298 struct fujitsu_laptop
*priv
= dev_get_drvdata(dev
);
300 if (!(priv
->flags_supported
& FLAG_DOCK
))
301 return sprintf(buf
, "unknown\n");
302 if (priv
->flags_state
& FLAG_DOCK
)
303 return sprintf(buf
, "docked\n");
305 return sprintf(buf
, "undocked\n");
308 static ssize_t
radios_show(struct device
*dev
, struct device_attribute
*attr
,
311 struct fujitsu_laptop
*priv
= dev_get_drvdata(dev
);
313 if (!(priv
->flags_supported
& FLAG_RFKILL
))
314 return sprintf(buf
, "unknown\n");
315 if (priv
->flags_state
& FLAG_RFKILL
)
316 return sprintf(buf
, "on\n");
318 return sprintf(buf
, "killed\n");
321 static DEVICE_ATTR_RO(lid
);
322 static DEVICE_ATTR_RO(dock
);
323 static DEVICE_ATTR_RO(radios
);
325 static struct attribute
*fujitsu_pf_attributes
[] = {
328 &dev_attr_radios
.attr
,
332 static const struct attribute_group fujitsu_pf_attribute_group
= {
333 .attrs
= fujitsu_pf_attributes
336 static struct platform_driver fujitsu_pf_driver
= {
338 .name
= "fujitsu-laptop",
342 /* ACPI device for LCD brightness control */
344 static const struct key_entry keymap_backlight
[] = {
345 { KE_KEY
, true, { KEY_BRIGHTNESSUP
} },
346 { KE_KEY
, false, { KEY_BRIGHTNESSDOWN
} },
350 static int acpi_fujitsu_bl_input_setup(struct acpi_device
*device
)
352 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
355 priv
->input
= devm_input_allocate_device(&device
->dev
);
359 snprintf(priv
->phys
, sizeof(priv
->phys
), "%s/video/input0",
360 acpi_device_hid(device
));
362 priv
->input
->name
= acpi_device_name(device
);
363 priv
->input
->phys
= priv
->phys
;
364 priv
->input
->id
.bustype
= BUS_HOST
;
365 priv
->input
->id
.product
= 0x06;
367 ret
= sparse_keymap_setup(priv
->input
, keymap_backlight
, NULL
);
371 return input_register_device(priv
->input
);
374 static int fujitsu_backlight_register(struct acpi_device
*device
)
376 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
377 const struct backlight_properties props
= {
378 .brightness
= priv
->brightness_level
,
379 .max_brightness
= priv
->max_brightness
- 1,
380 .type
= BACKLIGHT_PLATFORM
382 struct backlight_device
*bd
;
384 bd
= devm_backlight_device_register(&device
->dev
, "fujitsu-laptop",
385 &device
->dev
, device
,
386 &fujitsu_bl_ops
, &props
);
390 priv
->bl_device
= bd
;
395 static int acpi_fujitsu_bl_add(struct acpi_device
*device
)
397 struct fujitsu_bl
*priv
;
400 if (acpi_video_get_backlight_type() != acpi_backlight_vendor
)
403 priv
= devm_kzalloc(&device
->dev
, sizeof(*priv
), GFP_KERNEL
);
408 strcpy(acpi_device_name(device
), ACPI_FUJITSU_BL_DEVICE_NAME
);
409 strcpy(acpi_device_class(device
), ACPI_FUJITSU_CLASS
);
410 device
->driver_data
= priv
;
412 pr_info("ACPI: %s [%s]\n",
413 acpi_device_name(device
), acpi_device_bid(device
));
415 if (get_max_brightness(device
) <= 0)
416 priv
->max_brightness
= FUJITSU_LCD_N_LEVELS
;
417 get_lcd_level(device
);
419 ret
= acpi_fujitsu_bl_input_setup(device
);
423 return fujitsu_backlight_register(device
);
426 /* Brightness notify */
428 static void acpi_fujitsu_bl_notify(struct acpi_device
*device
, u32 event
)
430 struct fujitsu_bl
*priv
= acpi_driver_data(device
);
433 if (event
!= ACPI_FUJITSU_NOTIFY_CODE
) {
434 acpi_handle_info(device
->handle
, "unsupported event [0x%x]\n",
436 sparse_keymap_report_event(priv
->input
, -1, 1, true);
440 oldb
= priv
->brightness_level
;
441 get_lcd_level(device
);
442 newb
= priv
->brightness_level
;
444 acpi_handle_debug(device
->handle
,
445 "brightness button event [%i -> %i]\n", oldb
, newb
);
450 if (!disable_brightness_adjust
)
451 set_lcd_level(device
, newb
);
453 sparse_keymap_report_event(priv
->input
, oldb
< newb
, 1, true);
456 /* ACPI device for hotkey handling */
458 static const struct key_entry keymap_default
[] = {
459 { KE_KEY
, KEY1_CODE
, { KEY_PROG1
} },
460 { KE_KEY
, KEY2_CODE
, { KEY_PROG2
} },
461 { KE_KEY
, KEY3_CODE
, { KEY_PROG3
} },
462 { KE_KEY
, KEY4_CODE
, { KEY_PROG4
} },
463 { KE_KEY
, KEY5_CODE
, { KEY_RFKILL
} },
464 { KE_KEY
, BIT(5), { KEY_RFKILL
} },
465 { KE_KEY
, BIT(26), { KEY_TOUCHPAD_TOGGLE
} },
466 { KE_KEY
, BIT(29), { KEY_MICMUTE
} },
470 static const struct key_entry keymap_s64x0
[] = {
471 { KE_KEY
, KEY1_CODE
, { KEY_SCREENLOCK
} }, /* "Lock" */
472 { KE_KEY
, KEY2_CODE
, { KEY_HELP
} }, /* "Mobility Center */
473 { KE_KEY
, KEY3_CODE
, { KEY_PROG3
} },
474 { KE_KEY
, KEY4_CODE
, { KEY_PROG4
} },
478 static const struct key_entry keymap_p8010
[] = {
479 { KE_KEY
, KEY1_CODE
, { KEY_HELP
} }, /* "Support" */
480 { KE_KEY
, KEY2_CODE
, { KEY_PROG2
} },
481 { KE_KEY
, KEY3_CODE
, { KEY_SWITCHVIDEOMODE
} }, /* "Presentation" */
482 { KE_KEY
, KEY4_CODE
, { KEY_WWW
} }, /* "WWW" */
486 static const struct key_entry
*keymap
= keymap_default
;
488 static int fujitsu_laptop_dmi_keymap_override(const struct dmi_system_id
*id
)
490 pr_info("Identified laptop model '%s'\n", id
->ident
);
491 keymap
= id
->driver_data
;
495 static const struct dmi_system_id fujitsu_laptop_dmi_table
[] = {
497 .callback
= fujitsu_laptop_dmi_keymap_override
,
498 .ident
= "Fujitsu Siemens S6410",
500 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
501 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK S6410"),
503 .driver_data
= (void *)keymap_s64x0
506 .callback
= fujitsu_laptop_dmi_keymap_override
,
507 .ident
= "Fujitsu Siemens S6420",
509 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
510 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK S6420"),
512 .driver_data
= (void *)keymap_s64x0
515 .callback
= fujitsu_laptop_dmi_keymap_override
,
516 .ident
= "Fujitsu LifeBook P8010",
518 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
519 DMI_MATCH(DMI_PRODUCT_NAME
, "LifeBook P8010"),
521 .driver_data
= (void *)keymap_p8010
526 static int acpi_fujitsu_laptop_input_setup(struct acpi_device
*device
)
528 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
531 priv
->input
= devm_input_allocate_device(&device
->dev
);
535 snprintf(priv
->phys
, sizeof(priv
->phys
), "%s/input0",
536 acpi_device_hid(device
));
538 priv
->input
->name
= acpi_device_name(device
);
539 priv
->input
->phys
= priv
->phys
;
540 priv
->input
->id
.bustype
= BUS_HOST
;
542 dmi_check_system(fujitsu_laptop_dmi_table
);
543 ret
= sparse_keymap_setup(priv
->input
, keymap
, NULL
);
547 return input_register_device(priv
->input
);
550 static int fujitsu_laptop_platform_add(struct acpi_device
*device
)
552 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
555 priv
->pf_device
= platform_device_alloc("fujitsu-laptop", -1);
556 if (!priv
->pf_device
)
559 platform_set_drvdata(priv
->pf_device
, priv
);
561 ret
= platform_device_add(priv
->pf_device
);
563 goto err_put_platform_device
;
565 ret
= sysfs_create_group(&priv
->pf_device
->dev
.kobj
,
566 &fujitsu_pf_attribute_group
);
568 goto err_del_platform_device
;
572 err_del_platform_device
:
573 platform_device_del(priv
->pf_device
);
574 err_put_platform_device
:
575 platform_device_put(priv
->pf_device
);
580 static void fujitsu_laptop_platform_remove(struct acpi_device
*device
)
582 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
584 sysfs_remove_group(&priv
->pf_device
->dev
.kobj
,
585 &fujitsu_pf_attribute_group
);
586 platform_device_unregister(priv
->pf_device
);
589 static int logolamp_set(struct led_classdev
*cdev
,
590 enum led_brightness brightness
)
592 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
593 int poweron
= FUNC_LED_ON
, always
= FUNC_LED_ON
;
596 if (brightness
< LED_HALF
)
597 poweron
= FUNC_LED_OFF
;
599 if (brightness
< LED_FULL
)
600 always
= FUNC_LED_OFF
;
602 ret
= call_fext_func(device
, FUNC_LEDS
, 0x1, LOGOLAMP_POWERON
, poweron
);
606 return call_fext_func(device
, FUNC_LEDS
, 0x1, LOGOLAMP_ALWAYS
, always
);
609 static enum led_brightness
logolamp_get(struct led_classdev
*cdev
)
611 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
614 ret
= call_fext_func(device
, FUNC_LEDS
, 0x2, LOGOLAMP_ALWAYS
, 0x0);
615 if (ret
== FUNC_LED_ON
)
618 ret
= call_fext_func(device
, FUNC_LEDS
, 0x2, LOGOLAMP_POWERON
, 0x0);
619 if (ret
== FUNC_LED_ON
)
625 static int kblamps_set(struct led_classdev
*cdev
,
626 enum led_brightness brightness
)
628 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
630 if (brightness
>= LED_FULL
)
631 return call_fext_func(device
, FUNC_LEDS
, 0x1, KEYBOARD_LAMPS
,
634 return call_fext_func(device
, FUNC_LEDS
, 0x1, KEYBOARD_LAMPS
,
638 static enum led_brightness
kblamps_get(struct led_classdev
*cdev
)
640 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
641 enum led_brightness brightness
= LED_OFF
;
643 if (call_fext_func(device
,
644 FUNC_LEDS
, 0x2, KEYBOARD_LAMPS
, 0x0) == FUNC_LED_ON
)
645 brightness
= LED_FULL
;
650 static int radio_led_set(struct led_classdev
*cdev
,
651 enum led_brightness brightness
)
653 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
655 if (brightness
>= LED_FULL
)
656 return call_fext_func(device
, FUNC_FLAGS
, 0x5, RADIO_LED_ON
,
659 return call_fext_func(device
, FUNC_FLAGS
, 0x5, RADIO_LED_ON
,
663 static enum led_brightness
radio_led_get(struct led_classdev
*cdev
)
665 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
666 enum led_brightness brightness
= LED_OFF
;
668 if (call_fext_func(device
, FUNC_FLAGS
, 0x4, 0x0, 0x0) & RADIO_LED_ON
)
669 brightness
= LED_FULL
;
674 static int eco_led_set(struct led_classdev
*cdev
,
675 enum led_brightness brightness
)
677 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
680 curr
= call_fext_func(device
, FUNC_LEDS
, 0x2, ECO_LED
, 0x0);
681 if (brightness
>= LED_FULL
)
682 return call_fext_func(device
, FUNC_LEDS
, 0x1, ECO_LED
,
685 return call_fext_func(device
, FUNC_LEDS
, 0x1, ECO_LED
,
689 static enum led_brightness
eco_led_get(struct led_classdev
*cdev
)
691 struct acpi_device
*device
= to_acpi_device(cdev
->dev
->parent
);
692 enum led_brightness brightness
= LED_OFF
;
694 if (call_fext_func(device
, FUNC_LEDS
, 0x2, ECO_LED
, 0x0) & ECO_LED_ON
)
695 brightness
= LED_FULL
;
700 static int acpi_fujitsu_laptop_leds_register(struct acpi_device
*device
)
702 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
703 struct led_classdev
*led
;
706 if (call_fext_func(device
,
707 FUNC_LEDS
, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON
) {
708 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
712 led
->name
= "fujitsu::logolamp";
713 led
->brightness_set_blocking
= logolamp_set
;
714 led
->brightness_get
= logolamp_get
;
715 ret
= devm_led_classdev_register(&device
->dev
, led
);
720 if ((call_fext_func(device
,
721 FUNC_LEDS
, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS
) &&
722 (call_fext_func(device
, FUNC_BUTTONS
, 0x0, 0x0, 0x0) == 0x0)) {
723 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
727 led
->name
= "fujitsu::kblamps";
728 led
->brightness_set_blocking
= kblamps_set
;
729 led
->brightness_get
= kblamps_get
;
730 ret
= devm_led_classdev_register(&device
->dev
, led
);
736 * Some Fujitsu laptops have a radio toggle button in place of a slide
737 * switch and all such machines appear to also have an RF LED. Based on
738 * comparing DSDT tables of four Fujitsu Lifebook models (E744, E751,
739 * S7110, S8420; the first one has a radio toggle button, the other
740 * three have slide switches), bit 17 of flags_supported (the value
741 * returned by method S000 of ACPI device FUJ02E3) seems to indicate
742 * whether given model has a radio toggle button.
744 if (priv
->flags_supported
& BIT(17)) {
745 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
749 led
->name
= "fujitsu::radio_led";
750 led
->brightness_set_blocking
= radio_led_set
;
751 led
->brightness_get
= radio_led_get
;
752 led
->default_trigger
= "rfkill-any";
753 ret
= devm_led_classdev_register(&device
->dev
, led
);
758 /* Support for eco led is not always signaled in bit corresponding
759 * to the bit used to control the led. According to the DSDT table,
760 * bit 14 seems to indicate presence of said led as well.
761 * Confirm by testing the status.
763 if ((call_fext_func(device
, FUNC_LEDS
, 0x0, 0x0, 0x0) & BIT(14)) &&
764 (call_fext_func(device
,
765 FUNC_LEDS
, 0x2, ECO_LED
, 0x0) != UNSUPPORTED_CMD
)) {
766 led
= devm_kzalloc(&device
->dev
, sizeof(*led
), GFP_KERNEL
);
770 led
->name
= "fujitsu::eco_led";
771 led
->brightness_set_blocking
= eco_led_set
;
772 led
->brightness_get
= eco_led_get
;
773 ret
= devm_led_classdev_register(&device
->dev
, led
);
781 static int acpi_fujitsu_laptop_add(struct acpi_device
*device
)
783 struct fujitsu_laptop
*priv
;
786 priv
= devm_kzalloc(&device
->dev
, sizeof(*priv
), GFP_KERNEL
);
790 WARN_ONCE(fext
, "More than one FUJ02E3 ACPI device was found. Driver may not work as intended.");
793 strcpy(acpi_device_name(device
), ACPI_FUJITSU_LAPTOP_DEVICE_NAME
);
794 strcpy(acpi_device_class(device
), ACPI_FUJITSU_CLASS
);
795 device
->driver_data
= priv
;
798 spin_lock_init(&priv
->fifo_lock
);
799 ret
= kfifo_alloc(&priv
->fifo
, RINGBUFFERSIZE
* sizeof(int),
804 pr_info("ACPI: %s [%s]\n",
805 acpi_device_name(device
), acpi_device_bid(device
));
807 while (call_fext_func(device
, FUNC_BUTTONS
, 0x1, 0x0, 0x0) != 0 &&
808 i
++ < MAX_HOTKEY_RINGBUFFER_SIZE
)
809 ; /* No action, result is discarded */
810 acpi_handle_debug(device
->handle
, "Discarded %i ringbuffer entries\n",
813 priv
->flags_supported
= call_fext_func(device
, FUNC_FLAGS
, 0x0, 0x0,
816 /* Make sure our bitmask of supported functions is cleared if the
817 RFKILL function block is not implemented, like on the S7020. */
818 if (priv
->flags_supported
== UNSUPPORTED_CMD
)
819 priv
->flags_supported
= 0;
821 if (priv
->flags_supported
)
822 priv
->flags_state
= call_fext_func(device
, FUNC_FLAGS
, 0x4, 0x0,
825 /* Suspect this is a keymap of the application panel, print it */
826 acpi_handle_info(device
->handle
, "BTNI: [0x%x]\n",
827 call_fext_func(device
, FUNC_BUTTONS
, 0x0, 0x0, 0x0));
829 /* Sync backlight power status */
830 if (fujitsu_bl
&& fujitsu_bl
->bl_device
&&
831 acpi_video_get_backlight_type() == acpi_backlight_vendor
) {
832 if (call_fext_func(fext
, FUNC_BACKLIGHT
, 0x2,
833 BACKLIGHT_PARAM_POWER
, 0x0) == BACKLIGHT_OFF
)
834 fujitsu_bl
->bl_device
->props
.power
= FB_BLANK_POWERDOWN
;
836 fujitsu_bl
->bl_device
->props
.power
= FB_BLANK_UNBLANK
;
839 ret
= acpi_fujitsu_laptop_input_setup(device
);
843 ret
= acpi_fujitsu_laptop_leds_register(device
);
847 ret
= fujitsu_laptop_platform_add(device
);
854 kfifo_free(&priv
->fifo
);
859 static int acpi_fujitsu_laptop_remove(struct acpi_device
*device
)
861 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
863 fujitsu_laptop_platform_remove(device
);
865 kfifo_free(&priv
->fifo
);
870 static void acpi_fujitsu_laptop_press(struct acpi_device
*device
, int scancode
)
872 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
875 ret
= kfifo_in_locked(&priv
->fifo
, (unsigned char *)&scancode
,
876 sizeof(scancode
), &priv
->fifo_lock
);
877 if (ret
!= sizeof(scancode
)) {
878 dev_info(&priv
->input
->dev
, "Could not push scancode [0x%x]\n",
882 sparse_keymap_report_event(priv
->input
, scancode
, 1, false);
883 dev_dbg(&priv
->input
->dev
, "Push scancode into ringbuffer [0x%x]\n",
887 static void acpi_fujitsu_laptop_release(struct acpi_device
*device
)
889 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
893 ret
= kfifo_out_locked(&priv
->fifo
, (unsigned char *)&scancode
,
894 sizeof(scancode
), &priv
->fifo_lock
);
895 if (ret
!= sizeof(scancode
))
897 sparse_keymap_report_event(priv
->input
, scancode
, 0, false);
898 dev_dbg(&priv
->input
->dev
,
899 "Pop scancode from ringbuffer [0x%x]\n", scancode
);
903 static void acpi_fujitsu_laptop_notify(struct acpi_device
*device
, u32 event
)
905 struct fujitsu_laptop
*priv
= acpi_driver_data(device
);
906 int scancode
, i
= 0, ret
;
909 if (event
!= ACPI_FUJITSU_NOTIFY_CODE
) {
910 acpi_handle_info(device
->handle
, "Unsupported event [0x%x]\n",
912 sparse_keymap_report_event(priv
->input
, -1, 1, true);
916 if (priv
->flags_supported
)
917 priv
->flags_state
= call_fext_func(device
, FUNC_FLAGS
, 0x4, 0x0,
920 while ((irb
= call_fext_func(device
,
921 FUNC_BUTTONS
, 0x1, 0x0, 0x0)) != 0 &&
922 i
++ < MAX_HOTKEY_RINGBUFFER_SIZE
) {
923 scancode
= irb
& 0x4ff;
924 if (sparse_keymap_entry_from_scancode(priv
->input
, scancode
))
925 acpi_fujitsu_laptop_press(device
, scancode
);
926 else if (scancode
== 0)
927 acpi_fujitsu_laptop_release(device
);
929 acpi_handle_info(device
->handle
,
930 "Unknown GIRB result [%x]\n", irb
);
933 /* On some models (first seen on the Skylake-based Lifebook
934 * E736/E746/E756), the touchpad toggle hotkey (Fn+F4) is
935 * handled in software; its state is queried using FUNC_FLAGS
937 if (priv
->flags_supported
& (BIT(5) | BIT(26) | BIT(29))) {
938 ret
= call_fext_func(device
, FUNC_FLAGS
, 0x1, 0x0, 0x0);
940 sparse_keymap_report_event(priv
->input
,
943 sparse_keymap_report_event(priv
->input
,
946 sparse_keymap_report_event(priv
->input
,
953 static const struct acpi_device_id fujitsu_bl_device_ids
[] = {
954 {ACPI_FUJITSU_BL_HID
, 0},
958 static struct acpi_driver acpi_fujitsu_bl_driver
= {
959 .name
= ACPI_FUJITSU_BL_DRIVER_NAME
,
960 .class = ACPI_FUJITSU_CLASS
,
961 .ids
= fujitsu_bl_device_ids
,
963 .add
= acpi_fujitsu_bl_add
,
964 .notify
= acpi_fujitsu_bl_notify
,
968 static const struct acpi_device_id fujitsu_laptop_device_ids
[] = {
969 {ACPI_FUJITSU_LAPTOP_HID
, 0},
973 static struct acpi_driver acpi_fujitsu_laptop_driver
= {
974 .name
= ACPI_FUJITSU_LAPTOP_DRIVER_NAME
,
975 .class = ACPI_FUJITSU_CLASS
,
976 .ids
= fujitsu_laptop_device_ids
,
978 .add
= acpi_fujitsu_laptop_add
,
979 .remove
= acpi_fujitsu_laptop_remove
,
980 .notify
= acpi_fujitsu_laptop_notify
,
984 static const struct acpi_device_id fujitsu_ids
[] __used
= {
985 {ACPI_FUJITSU_BL_HID
, 0},
986 {ACPI_FUJITSU_LAPTOP_HID
, 0},
989 MODULE_DEVICE_TABLE(acpi
, fujitsu_ids
);
991 static int __init
fujitsu_init(void)
995 ret
= acpi_bus_register_driver(&acpi_fujitsu_bl_driver
);
999 /* Register platform stuff */
1001 ret
= platform_driver_register(&fujitsu_pf_driver
);
1003 goto err_unregister_acpi
;
1005 /* Register laptop driver */
1007 ret
= acpi_bus_register_driver(&acpi_fujitsu_laptop_driver
);
1009 goto err_unregister_platform_driver
;
1011 pr_info("driver " FUJITSU_DRIVER_VERSION
" successfully loaded\n");
1015 err_unregister_platform_driver
:
1016 platform_driver_unregister(&fujitsu_pf_driver
);
1017 err_unregister_acpi
:
1018 acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver
);
1023 static void __exit
fujitsu_cleanup(void)
1025 acpi_bus_unregister_driver(&acpi_fujitsu_laptop_driver
);
1027 platform_driver_unregister(&fujitsu_pf_driver
);
1029 acpi_bus_unregister_driver(&acpi_fujitsu_bl_driver
);
1031 pr_info("driver unloaded\n");
1034 module_init(fujitsu_init
);
1035 module_exit(fujitsu_cleanup
);
1037 module_param(use_alt_lcd_levels
, int, 0644);
1038 MODULE_PARM_DESC(use_alt_lcd_levels
, "Interface used for setting LCD brightness level (-1 = auto, 0 = force SBLL, 1 = force SBL2)");
1039 module_param(disable_brightness_adjust
, bool, 0644);
1040 MODULE_PARM_DESC(disable_brightness_adjust
, "Disable LCD brightness adjustment");
1042 MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon");
1043 MODULE_DESCRIPTION("Fujitsu laptop extras support");
1044 MODULE_VERSION(FUJITSU_DRIVER_VERSION
);
1045 MODULE_LICENSE("GPL");