4 Copyright (C) 2007,2008 Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
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 exports a few files in /sys/devices/platform/fujitsu-laptop/;
36 * others may be added at a later date.
38 * lcd_level - Screen brightness: contains a single integer in the
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/.
45 * Hotkeys present on certain Fujitsu laptops (eg: the S6xxx series) are
46 * also supported by this driver.
48 * This driver has been tested on a Fujitsu Lifebook S6410, S7020 and
49 * P8010. It should work on most P-series and S-series Lifebooks, but
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.
59 #include <linux/module.h>
60 #include <linux/kernel.h>
61 #include <linux/init.h>
62 #include <linux/acpi.h>
63 #include <linux/dmi.h>
64 #include <linux/backlight.h>
65 #include <linux/input.h>
66 #include <linux/kfifo.h>
67 #include <linux/video_output.h>
68 #include <linux/platform_device.h>
69 #ifdef CONFIG_LEDS_CLASS
70 #include <linux/leds.h>
73 #define FUJITSU_DRIVER_VERSION "0.5.0"
75 #define FUJITSU_LCD_N_LEVELS 8
77 #define ACPI_FUJITSU_CLASS "fujitsu"
78 #define ACPI_FUJITSU_HID "FUJ02B1"
79 #define ACPI_FUJITSU_DRIVER_NAME "Fujitsu laptop FUJ02B1 ACPI brightness driver"
80 #define ACPI_FUJITSU_DEVICE_NAME "Fujitsu FUJ02B1"
81 #define ACPI_FUJITSU_HOTKEY_HID "FUJ02E3"
82 #define ACPI_FUJITSU_HOTKEY_DRIVER_NAME "Fujitsu laptop FUJ02E3 ACPI hotkeys driver"
83 #define ACPI_FUJITSU_HOTKEY_DEVICE_NAME "Fujitsu FUJ02E3"
85 #define ACPI_FUJITSU_NOTIFY_CODE1 0x80
87 #define ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS 0x86
88 #define ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS 0x87
90 /* FUNC interface - command values */
91 #define FUNC_RFKILL 0x1000
92 #define FUNC_LEDS 0x1001
93 #define FUNC_BUTTONS 0x1002
94 #define FUNC_BACKLIGHT 0x1004
96 /* FUNC interface - responses */
97 #define UNSUPPORTED_CMD 0x80000000
99 #ifdef CONFIG_LEDS_CLASS
100 /* FUNC interface - LED control */
101 #define FUNC_LED_OFF 0x1
102 #define FUNC_LED_ON 0x30001
103 #define KEYBOARD_LAMPS 0x100
104 #define LOGOLAMP_POWERON 0x2000
105 #define LOGOLAMP_ALWAYS 0x4000
109 #define KEY1_CODE 0x410 /* codes for the keys in the GIRB register */
110 #define KEY2_CODE 0x411
111 #define KEY3_CODE 0x412
112 #define KEY4_CODE 0x413
114 #define MAX_HOTKEY_RINGBUFFER_SIZE 100
115 #define RINGBUFFERSIZE 40
118 #define FUJLAPTOP_LOG ACPI_FUJITSU_HID ": "
119 #define FUJLAPTOP_ERR KERN_ERR FUJLAPTOP_LOG
120 #define FUJLAPTOP_NOTICE KERN_NOTICE FUJLAPTOP_LOG
121 #define FUJLAPTOP_INFO KERN_INFO FUJLAPTOP_LOG
122 #define FUJLAPTOP_DEBUG KERN_DEBUG FUJLAPTOP_LOG
124 #define FUJLAPTOP_DBG_ALL 0xffff
125 #define FUJLAPTOP_DBG_ERROR 0x0001
126 #define FUJLAPTOP_DBG_WARN 0x0002
127 #define FUJLAPTOP_DBG_INFO 0x0004
128 #define FUJLAPTOP_DBG_TRACE 0x0008
130 #define dbg_printk(a_dbg_level, format, arg...) \
131 do { if (dbg_level & a_dbg_level) \
132 printk(FUJLAPTOP_DEBUG "%s: " format, __func__ , ## arg); \
134 #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
135 #define vdbg_printk(a_dbg_level, format, arg...) \
136 dbg_printk(a_dbg_level, format, ## arg)
138 #define vdbg_printk(a_dbg_level, format, arg...)
141 /* Device controlling the backlight and associated keys */
143 acpi_handle acpi_handle
;
144 struct acpi_device
*dev
;
145 struct input_dev
*input
;
147 struct backlight_device
*bl_device
;
148 struct platform_device
*pf_device
;
149 int keycode1
, keycode2
, keycode3
, keycode4
;
151 unsigned int max_brightness
;
152 unsigned int brightness_changed
;
153 unsigned int brightness_level
;
156 static struct fujitsu_t
*fujitsu
;
157 static int use_alt_lcd_levels
= -1;
158 static int disable_brightness_adjust
= -1;
160 /* Device used to access other hotkeys on the laptop */
161 struct fujitsu_hotkey_t
{
162 acpi_handle acpi_handle
;
163 struct acpi_device
*dev
;
164 struct input_dev
*input
;
166 struct platform_device
*pf_device
;
168 spinlock_t fifo_lock
;
169 int rfkill_supported
;
171 int logolamp_registered
;
172 int kblamps_registered
;
175 static struct fujitsu_hotkey_t
*fujitsu_hotkey
;
177 static void acpi_fujitsu_hotkey_notify(acpi_handle handle
, u32 event
,
180 #ifdef CONFIG_LEDS_CLASS
181 static enum led_brightness
logolamp_get(struct led_classdev
*cdev
);
182 static void logolamp_set(struct led_classdev
*cdev
,
183 enum led_brightness brightness
);
185 struct led_classdev logolamp_led
= {
186 .name
= "fujitsu::logolamp",
187 .brightness_get
= logolamp_get
,
188 .brightness_set
= logolamp_set
191 static enum led_brightness
kblamps_get(struct led_classdev
*cdev
);
192 static void kblamps_set(struct led_classdev
*cdev
,
193 enum led_brightness brightness
);
195 struct led_classdev kblamps_led
= {
196 .name
= "fujitsu::kblamps",
197 .brightness_get
= kblamps_get
,
198 .brightness_set
= kblamps_set
202 #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
203 static u32 dbg_level
= 0x03;
206 static void acpi_fujitsu_notify(struct acpi_device
*device
, u32 event
);
208 /* Fujitsu ACPI interface function */
210 static int call_fext_func(int cmd
, int arg0
, int arg1
, int arg2
)
212 acpi_status status
= AE_OK
;
213 union acpi_object params
[4] = {
214 { .type
= ACPI_TYPE_INTEGER
},
215 { .type
= ACPI_TYPE_INTEGER
},
216 { .type
= ACPI_TYPE_INTEGER
},
217 { .type
= ACPI_TYPE_INTEGER
}
219 struct acpi_object_list arg_list
= { 4, ¶ms
[0] };
220 struct acpi_buffer output
;
221 union acpi_object out_obj
;
222 acpi_handle handle
= NULL
;
224 status
= acpi_get_handle(fujitsu_hotkey
->acpi_handle
, "FUNC", &handle
);
225 if (ACPI_FAILURE(status
)) {
226 vdbg_printk(FUJLAPTOP_DBG_ERROR
,
227 "FUNC interface is not present\n");
231 params
[0].integer
.value
= cmd
;
232 params
[1].integer
.value
= arg0
;
233 params
[2].integer
.value
= arg1
;
234 params
[3].integer
.value
= arg2
;
236 output
.length
= sizeof(out_obj
);
237 output
.pointer
= &out_obj
;
239 status
= acpi_evaluate_object(handle
, NULL
, &arg_list
, &output
);
240 if (ACPI_FAILURE(status
)) {
241 vdbg_printk(FUJLAPTOP_DBG_WARN
,
242 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) call failed\n",
243 cmd
, arg0
, arg1
, arg2
);
247 if (out_obj
.type
!= ACPI_TYPE_INTEGER
) {
248 vdbg_printk(FUJLAPTOP_DBG_WARN
,
249 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) did not "
250 "return an integer\n",
251 cmd
, arg0
, arg1
, arg2
);
255 vdbg_printk(FUJLAPTOP_DBG_TRACE
,
256 "FUNC 0x%x (args 0x%x, 0x%x, 0x%x) returned 0x%x\n",
257 cmd
, arg0
, arg1
, arg2
, (int)out_obj
.integer
.value
);
258 return out_obj
.integer
.value
;
261 #ifdef CONFIG_LEDS_CLASS
262 /* LED class callbacks */
264 static void logolamp_set(struct led_classdev
*cdev
,
265 enum led_brightness brightness
)
267 if (brightness
>= LED_FULL
) {
268 call_fext_func(FUNC_LEDS
, 0x1, LOGOLAMP_POWERON
, FUNC_LED_ON
);
269 call_fext_func(FUNC_LEDS
, 0x1, LOGOLAMP_ALWAYS
, FUNC_LED_ON
);
270 } else if (brightness
>= LED_HALF
) {
271 call_fext_func(FUNC_LEDS
, 0x1, LOGOLAMP_POWERON
, FUNC_LED_ON
);
272 call_fext_func(FUNC_LEDS
, 0x1, LOGOLAMP_ALWAYS
, FUNC_LED_OFF
);
274 call_fext_func(FUNC_LEDS
, 0x1, LOGOLAMP_POWERON
, FUNC_LED_OFF
);
278 static void kblamps_set(struct led_classdev
*cdev
,
279 enum led_brightness brightness
)
281 if (brightness
>= LED_FULL
)
282 call_fext_func(FUNC_LEDS
, 0x1, KEYBOARD_LAMPS
, FUNC_LED_ON
);
284 call_fext_func(FUNC_LEDS
, 0x1, KEYBOARD_LAMPS
, FUNC_LED_OFF
);
287 static enum led_brightness
logolamp_get(struct led_classdev
*cdev
)
289 enum led_brightness brightness
= LED_OFF
;
292 poweron
= call_fext_func(FUNC_LEDS
, 0x2, LOGOLAMP_POWERON
, 0x0);
293 if (poweron
== FUNC_LED_ON
) {
294 brightness
= LED_HALF
;
295 always
= call_fext_func(FUNC_LEDS
, 0x2, LOGOLAMP_ALWAYS
, 0x0);
296 if (always
== FUNC_LED_ON
)
297 brightness
= LED_FULL
;
302 static enum led_brightness
kblamps_get(struct led_classdev
*cdev
)
304 enum led_brightness brightness
= LED_OFF
;
306 if (call_fext_func(FUNC_LEDS
, 0x2, KEYBOARD_LAMPS
, 0x0) == FUNC_LED_ON
)
307 brightness
= LED_FULL
;
313 /* Hardware access for LCD brightness control */
315 static int set_lcd_level(int level
)
317 acpi_status status
= AE_OK
;
318 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
319 struct acpi_object_list arg_list
= { 1, &arg0
};
320 acpi_handle handle
= NULL
;
322 vdbg_printk(FUJLAPTOP_DBG_TRACE
, "set lcd level via SBLL [%d]\n",
325 if (level
< 0 || level
>= fujitsu
->max_brightness
)
331 status
= acpi_get_handle(fujitsu
->acpi_handle
, "SBLL", &handle
);
332 if (ACPI_FAILURE(status
)) {
333 vdbg_printk(FUJLAPTOP_DBG_ERROR
, "SBLL not present\n");
337 arg0
.integer
.value
= level
;
339 status
= acpi_evaluate_object(handle
, NULL
, &arg_list
, NULL
);
340 if (ACPI_FAILURE(status
))
346 static int set_lcd_level_alt(int level
)
348 acpi_status status
= AE_OK
;
349 union acpi_object arg0
= { ACPI_TYPE_INTEGER
};
350 struct acpi_object_list arg_list
= { 1, &arg0
};
351 acpi_handle handle
= NULL
;
353 vdbg_printk(FUJLAPTOP_DBG_TRACE
, "set lcd level via SBL2 [%d]\n",
356 if (level
< 0 || level
>= fujitsu
->max_brightness
)
362 status
= acpi_get_handle(fujitsu
->acpi_handle
, "SBL2", &handle
);
363 if (ACPI_FAILURE(status
)) {
364 vdbg_printk(FUJLAPTOP_DBG_ERROR
, "SBL2 not present\n");
368 arg0
.integer
.value
= level
;
370 status
= acpi_evaluate_object(handle
, NULL
, &arg_list
, NULL
);
371 if (ACPI_FAILURE(status
))
377 static int get_lcd_level(void)
379 unsigned long long state
= 0;
380 acpi_status status
= AE_OK
;
382 vdbg_printk(FUJLAPTOP_DBG_TRACE
, "get lcd level via GBLL\n");
385 acpi_evaluate_integer(fujitsu
->acpi_handle
, "GBLL", NULL
, &state
);
389 fujitsu
->brightness_level
= state
& 0x0fffffff;
391 if (state
& 0x80000000)
392 fujitsu
->brightness_changed
= 1;
394 fujitsu
->brightness_changed
= 0;
396 return fujitsu
->brightness_level
;
399 static int get_max_brightness(void)
401 unsigned long long state
= 0;
402 acpi_status status
= AE_OK
;
404 vdbg_printk(FUJLAPTOP_DBG_TRACE
, "get max lcd level via RBLL\n");
407 acpi_evaluate_integer(fujitsu
->acpi_handle
, "RBLL", NULL
, &state
);
411 fujitsu
->max_brightness
= state
;
413 return fujitsu
->max_brightness
;
416 /* Backlight device stuff */
418 static int bl_get_brightness(struct backlight_device
*b
)
420 return get_lcd_level();
423 static int bl_update_status(struct backlight_device
*b
)
426 if (b
->props
.power
== 4)
427 ret
= call_fext_func(FUNC_BACKLIGHT
, 0x1, 0x4, 0x3);
429 ret
= call_fext_func(FUNC_BACKLIGHT
, 0x1, 0x4, 0x0);
431 vdbg_printk(FUJLAPTOP_DBG_ERROR
,
432 "Unable to adjust backlight power, error code %i\n",
435 if (use_alt_lcd_levels
)
436 ret
= set_lcd_level_alt(b
->props
.brightness
);
438 ret
= set_lcd_level(b
->props
.brightness
);
440 vdbg_printk(FUJLAPTOP_DBG_ERROR
,
441 "Unable to adjust LCD brightness, error code %i\n",
446 static struct backlight_ops fujitsubl_ops
= {
447 .get_brightness
= bl_get_brightness
,
448 .update_status
= bl_update_status
,
451 /* Platform LCD brightness device */
454 show_max_brightness(struct device
*dev
,
455 struct device_attribute
*attr
, char *buf
)
460 ret
= get_max_brightness();
464 return sprintf(buf
, "%i\n", ret
);
468 show_brightness_changed(struct device
*dev
,
469 struct device_attribute
*attr
, char *buf
)
474 ret
= fujitsu
->brightness_changed
;
478 return sprintf(buf
, "%i\n", ret
);
481 static ssize_t
show_lcd_level(struct device
*dev
,
482 struct device_attribute
*attr
, char *buf
)
487 ret
= get_lcd_level();
491 return sprintf(buf
, "%i\n", ret
);
494 static ssize_t
store_lcd_level(struct device
*dev
,
495 struct device_attribute
*attr
, const char *buf
,
501 if (sscanf(buf
, "%i", &level
) != 1
502 || (level
< 0 || level
>= fujitsu
->max_brightness
))
505 if (use_alt_lcd_levels
)
506 ret
= set_lcd_level_alt(level
);
508 ret
= set_lcd_level(level
);
512 ret
= get_lcd_level();
520 ignore_store(struct device
*dev
,
521 struct device_attribute
*attr
, const char *buf
, size_t count
)
527 show_lid_state(struct device
*dev
,
528 struct device_attribute
*attr
, char *buf
)
530 if (!(fujitsu_hotkey
->rfkill_supported
& 0x100))
531 return sprintf(buf
, "unknown\n");
532 if (fujitsu_hotkey
->rfkill_state
& 0x100)
533 return sprintf(buf
, "open\n");
535 return sprintf(buf
, "closed\n");
539 show_dock_state(struct device
*dev
,
540 struct device_attribute
*attr
, char *buf
)
542 if (!(fujitsu_hotkey
->rfkill_supported
& 0x200))
543 return sprintf(buf
, "unknown\n");
544 if (fujitsu_hotkey
->rfkill_state
& 0x200)
545 return sprintf(buf
, "docked\n");
547 return sprintf(buf
, "undocked\n");
551 show_radios_state(struct device
*dev
,
552 struct device_attribute
*attr
, char *buf
)
554 if (!(fujitsu_hotkey
->rfkill_supported
& 0x20))
555 return sprintf(buf
, "unknown\n");
556 if (fujitsu_hotkey
->rfkill_state
& 0x20)
557 return sprintf(buf
, "on\n");
559 return sprintf(buf
, "killed\n");
562 static DEVICE_ATTR(max_brightness
, 0444, show_max_brightness
, ignore_store
);
563 static DEVICE_ATTR(brightness_changed
, 0444, show_brightness_changed
,
565 static DEVICE_ATTR(lcd_level
, 0644, show_lcd_level
, store_lcd_level
);
566 static DEVICE_ATTR(lid
, 0444, show_lid_state
, ignore_store
);
567 static DEVICE_ATTR(dock
, 0444, show_dock_state
, ignore_store
);
568 static DEVICE_ATTR(radios
, 0444, show_radios_state
, ignore_store
);
570 static struct attribute
*fujitsupf_attributes
[] = {
571 &dev_attr_brightness_changed
.attr
,
572 &dev_attr_max_brightness
.attr
,
573 &dev_attr_lcd_level
.attr
,
576 &dev_attr_radios
.attr
,
580 static struct attribute_group fujitsupf_attribute_group
= {
581 .attrs
= fujitsupf_attributes
584 static struct platform_driver fujitsupf_driver
= {
586 .name
= "fujitsu-laptop",
587 .owner
= THIS_MODULE
,
591 static void dmi_check_cb_common(const struct dmi_system_id
*id
)
594 printk(KERN_INFO
"fujitsu-laptop: Identified laptop model '%s'.\n",
596 if (use_alt_lcd_levels
== -1) {
597 if (ACPI_SUCCESS(acpi_get_handle(NULL
,
598 "\\_SB.PCI0.LPCB.FJEX.SBL2", &handle
)))
599 use_alt_lcd_levels
= 1;
601 use_alt_lcd_levels
= 0;
602 vdbg_printk(FUJLAPTOP_DBG_TRACE
, "auto-detected usealt as "
603 "%i\n", use_alt_lcd_levels
);
607 static int dmi_check_cb_s6410(const struct dmi_system_id
*id
)
609 dmi_check_cb_common(id
);
610 fujitsu
->keycode1
= KEY_SCREENLOCK
; /* "Lock" */
611 fujitsu
->keycode2
= KEY_HELP
; /* "Mobility Center" */
615 static int dmi_check_cb_s6420(const struct dmi_system_id
*id
)
617 dmi_check_cb_common(id
);
618 fujitsu
->keycode1
= KEY_SCREENLOCK
; /* "Lock" */
619 fujitsu
->keycode2
= KEY_HELP
; /* "Mobility Center" */
623 static int dmi_check_cb_p8010(const struct dmi_system_id
*id
)
625 dmi_check_cb_common(id
);
626 fujitsu
->keycode1
= KEY_HELP
; /* "Support" */
627 fujitsu
->keycode3
= KEY_SWITCHVIDEOMODE
; /* "Presentation" */
628 fujitsu
->keycode4
= KEY_WWW
; /* "Internet" */
632 static struct dmi_system_id fujitsu_dmi_table
[] = {
634 .ident
= "Fujitsu Siemens S6410",
636 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
637 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK S6410"),
639 .callback
= dmi_check_cb_s6410
},
641 .ident
= "Fujitsu Siemens S6420",
643 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU SIEMENS"),
644 DMI_MATCH(DMI_PRODUCT_NAME
, "LIFEBOOK S6420"),
646 .callback
= dmi_check_cb_s6420
},
648 .ident
= "Fujitsu LifeBook P8010",
650 DMI_MATCH(DMI_SYS_VENDOR
, "FUJITSU"),
651 DMI_MATCH(DMI_PRODUCT_NAME
, "LifeBook P8010"),
653 .callback
= dmi_check_cb_p8010
},
657 /* ACPI device for LCD brightness control */
659 static int acpi_fujitsu_add(struct acpi_device
*device
)
664 struct input_dev
*input
;
670 fujitsu
->acpi_handle
= device
->handle
;
671 sprintf(acpi_device_name(device
), "%s", ACPI_FUJITSU_DEVICE_NAME
);
672 sprintf(acpi_device_class(device
), "%s", ACPI_FUJITSU_CLASS
);
673 device
->driver_data
= fujitsu
;
675 fujitsu
->input
= input
= input_allocate_device();
681 snprintf(fujitsu
->phys
, sizeof(fujitsu
->phys
),
682 "%s/video/input0", acpi_device_hid(device
));
684 input
->name
= acpi_device_name(device
);
685 input
->phys
= fujitsu
->phys
;
686 input
->id
.bustype
= BUS_HOST
;
687 input
->id
.product
= 0x06;
688 input
->dev
.parent
= &device
->dev
;
689 input
->evbit
[0] = BIT(EV_KEY
);
690 set_bit(KEY_BRIGHTNESSUP
, input
->keybit
);
691 set_bit(KEY_BRIGHTNESSDOWN
, input
->keybit
);
692 set_bit(KEY_UNKNOWN
, input
->keybit
);
694 error
= input_register_device(input
);
696 goto err_free_input_dev
;
698 result
= acpi_bus_get_power(fujitsu
->acpi_handle
, &state
);
700 printk(KERN_ERR
"Error reading power state\n");
704 printk(KERN_INFO PREFIX
"%s [%s] (%s)\n",
705 acpi_device_name(device
), acpi_device_bid(device
),
706 !device
->power
.state
? "on" : "off");
708 fujitsu
->dev
= device
;
711 (acpi_get_handle(device
->handle
, METHOD_NAME__INI
, &handle
))) {
712 vdbg_printk(FUJLAPTOP_DBG_INFO
, "Invoking _INI\n");
714 (acpi_evaluate_object
715 (device
->handle
, METHOD_NAME__INI
, NULL
, NULL
)))
716 printk(KERN_ERR
"_INI Method failed\n");
719 /* do config (detect defaults) */
720 use_alt_lcd_levels
= use_alt_lcd_levels
== 1 ? 1 : 0;
721 disable_brightness_adjust
= disable_brightness_adjust
== 1 ? 1 : 0;
722 vdbg_printk(FUJLAPTOP_DBG_INFO
,
723 "config: [alt interface: %d], [adjust disable: %d]\n",
724 use_alt_lcd_levels
, disable_brightness_adjust
);
726 if (get_max_brightness() <= 0)
727 fujitsu
->max_brightness
= FUJITSU_LCD_N_LEVELS
;
734 input_free_device(input
);
740 static int acpi_fujitsu_remove(struct acpi_device
*device
, int type
)
742 struct fujitsu_t
*fujitsu
= NULL
;
744 if (!device
|| !acpi_driver_data(device
))
747 fujitsu
= acpi_driver_data(device
);
749 if (!device
|| !acpi_driver_data(device
))
752 fujitsu
->acpi_handle
= NULL
;
757 /* Brightness notify */
759 static void acpi_fujitsu_notify(struct acpi_device
*device
, u32 event
)
761 struct input_dev
*input
;
765 input
= fujitsu
->input
;
768 case ACPI_FUJITSU_NOTIFY_CODE1
:
770 oldb
= fujitsu
->brightness_level
;
772 newb
= fujitsu
->brightness_level
;
774 vdbg_printk(FUJLAPTOP_DBG_TRACE
,
775 "brightness button event [%i -> %i (%i)]\n",
776 oldb
, newb
, fujitsu
->brightness_changed
);
779 if (disable_brightness_adjust
!= 1) {
780 if (use_alt_lcd_levels
)
781 set_lcd_level_alt(newb
);
785 acpi_bus_generate_proc_event(fujitsu
->dev
,
786 ACPI_VIDEO_NOTIFY_INC_BRIGHTNESS
, 0);
787 keycode
= KEY_BRIGHTNESSUP
;
788 } else if (oldb
> newb
) {
789 if (disable_brightness_adjust
!= 1) {
790 if (use_alt_lcd_levels
)
791 set_lcd_level_alt(newb
);
795 acpi_bus_generate_proc_event(fujitsu
->dev
,
796 ACPI_VIDEO_NOTIFY_DEC_BRIGHTNESS
, 0);
797 keycode
= KEY_BRIGHTNESSDOWN
;
801 keycode
= KEY_UNKNOWN
;
802 vdbg_printk(FUJLAPTOP_DBG_WARN
,
803 "unsupported event [0x%x]\n", event
);
808 input_report_key(input
, keycode
, 1);
810 input_report_key(input
, keycode
, 0);
815 /* ACPI device for hotkey handling */
817 static int acpi_fujitsu_hotkey_add(struct acpi_device
*device
)
823 struct input_dev
*input
;
830 fujitsu_hotkey
->acpi_handle
= device
->handle
;
831 sprintf(acpi_device_name(device
), "%s",
832 ACPI_FUJITSU_HOTKEY_DEVICE_NAME
);
833 sprintf(acpi_device_class(device
), "%s", ACPI_FUJITSU_CLASS
);
834 device
->driver_data
= fujitsu_hotkey
;
836 status
= acpi_install_notify_handler(device
->handle
,
838 acpi_fujitsu_hotkey_notify
,
841 if (ACPI_FAILURE(status
)) {
842 printk(KERN_ERR
"Error installing notify handler\n");
848 spin_lock_init(&fujitsu_hotkey
->fifo_lock
);
849 fujitsu_hotkey
->fifo
=
850 kfifo_alloc(RINGBUFFERSIZE
* sizeof(int), GFP_KERNEL
,
851 &fujitsu_hotkey
->fifo_lock
);
852 if (IS_ERR(fujitsu_hotkey
->fifo
)) {
853 printk(KERN_ERR
"kfifo_alloc failed\n");
854 error
= PTR_ERR(fujitsu_hotkey
->fifo
);
858 fujitsu_hotkey
->input
= input
= input_allocate_device();
861 goto err_uninstall_notify
;
864 snprintf(fujitsu_hotkey
->phys
, sizeof(fujitsu_hotkey
->phys
),
865 "%s/video/input0", acpi_device_hid(device
));
867 input
->name
= acpi_device_name(device
);
868 input
->phys
= fujitsu_hotkey
->phys
;
869 input
->id
.bustype
= BUS_HOST
;
870 input
->id
.product
= 0x06;
871 input
->dev
.parent
= &device
->dev
;
873 set_bit(EV_KEY
, input
->evbit
);
874 set_bit(fujitsu
->keycode1
, input
->keybit
);
875 set_bit(fujitsu
->keycode2
, input
->keybit
);
876 set_bit(fujitsu
->keycode3
, input
->keybit
);
877 set_bit(fujitsu
->keycode4
, input
->keybit
);
878 set_bit(KEY_UNKNOWN
, input
->keybit
);
880 error
= input_register_device(input
);
882 goto err_free_input_dev
;
884 result
= acpi_bus_get_power(fujitsu_hotkey
->acpi_handle
, &state
);
886 printk(KERN_ERR
"Error reading power state\n");
890 printk(KERN_INFO PREFIX
"%s [%s] (%s)\n",
891 acpi_device_name(device
), acpi_device_bid(device
),
892 !device
->power
.state
? "on" : "off");
894 fujitsu_hotkey
->dev
= device
;
897 (acpi_get_handle(device
->handle
, METHOD_NAME__INI
, &handle
))) {
898 vdbg_printk(FUJLAPTOP_DBG_INFO
, "Invoking _INI\n");
900 (acpi_evaluate_object
901 (device
->handle
, METHOD_NAME__INI
, NULL
, NULL
)))
902 printk(KERN_ERR
"_INI Method failed\n");
906 while (call_fext_func(FUNC_BUTTONS
, 0x1, 0x0, 0x0) != 0
907 && (i
++) < MAX_HOTKEY_RINGBUFFER_SIZE
)
908 ; /* No action, result is discarded */
909 vdbg_printk(FUJLAPTOP_DBG_INFO
, "Discarded %i ringbuffer entries\n", i
);
911 fujitsu_hotkey
->rfkill_supported
=
912 call_fext_func(FUNC_RFKILL
, 0x0, 0x0, 0x0);
914 /* Make sure our bitmask of supported functions is cleared if the
915 RFKILL function block is not implemented, like on the S7020. */
916 if (fujitsu_hotkey
->rfkill_supported
== UNSUPPORTED_CMD
)
917 fujitsu_hotkey
->rfkill_supported
= 0;
919 if (fujitsu_hotkey
->rfkill_supported
)
920 fujitsu_hotkey
->rfkill_state
=
921 call_fext_func(FUNC_RFKILL
, 0x4, 0x0, 0x0);
923 /* Suspect this is a keymap of the application panel, print it */
924 printk(KERN_INFO
"fujitsu-laptop: BTNI: [0x%x]\n",
925 call_fext_func(FUNC_BUTTONS
, 0x0, 0x0, 0x0));
927 #ifdef CONFIG_LEDS_CLASS
928 if (call_fext_func(FUNC_LEDS
, 0x0, 0x0, 0x0) & LOGOLAMP_POWERON
) {
929 result
= led_classdev_register(&fujitsu
->pf_device
->dev
,
932 fujitsu_hotkey
->logolamp_registered
= 1;
934 printk(KERN_ERR
"fujitsu-laptop: Could not register "
935 "LED handler for logo lamp, error %i\n", result
);
939 if ((call_fext_func(FUNC_LEDS
, 0x0, 0x0, 0x0) & KEYBOARD_LAMPS
) &&
940 (call_fext_func(FUNC_BUTTONS
, 0x0, 0x0, 0x0) == 0x0)) {
941 result
= led_classdev_register(&fujitsu
->pf_device
->dev
,
944 fujitsu_hotkey
->kblamps_registered
= 1;
946 printk(KERN_ERR
"fujitsu-laptop: Could not register "
947 "LED handler for keyboard lamps, error %i\n", result
);
956 input_free_device(input
);
957 err_uninstall_notify
:
958 acpi_remove_notify_handler(device
->handle
, ACPI_DEVICE_NOTIFY
,
959 acpi_fujitsu_hotkey_notify
);
960 kfifo_free(fujitsu_hotkey
->fifo
);
966 static int acpi_fujitsu_hotkey_remove(struct acpi_device
*device
, int type
)
969 struct fujitsu_hotkey_t
*fujitsu_hotkey
= NULL
;
971 if (!device
|| !acpi_driver_data(device
))
974 fujitsu_hotkey
= acpi_driver_data(device
);
976 status
= acpi_remove_notify_handler(fujitsu_hotkey
->acpi_handle
,
978 acpi_fujitsu_hotkey_notify
);
980 fujitsu_hotkey
->acpi_handle
= NULL
;
982 kfifo_free(fujitsu_hotkey
->fifo
);
987 static void acpi_fujitsu_hotkey_notify(acpi_handle handle
, u32 event
,
990 struct input_dev
*input
;
991 int keycode
, keycode_r
;
992 unsigned int irb
= 1;
995 input
= fujitsu_hotkey
->input
;
997 if (fujitsu_hotkey
->rfkill_supported
)
998 fujitsu_hotkey
->rfkill_state
=
999 call_fext_func(FUNC_RFKILL
, 0x4, 0x0, 0x0);
1002 case ACPI_FUJITSU_NOTIFY_CODE1
:
1005 call_fext_func(FUNC_BUTTONS
, 0x1, 0x0, 0x0)) != 0
1006 && (i
++) < MAX_HOTKEY_RINGBUFFER_SIZE
) {
1007 switch (irb
& 0x4ff) {
1009 keycode
= fujitsu
->keycode1
;
1012 keycode
= fujitsu
->keycode2
;
1015 keycode
= fujitsu
->keycode3
;
1018 keycode
= fujitsu
->keycode4
;
1024 vdbg_printk(FUJLAPTOP_DBG_WARN
,
1025 "Unknown GIRB result [%x]\n", irb
);
1030 vdbg_printk(FUJLAPTOP_DBG_TRACE
,
1031 "Push keycode into ringbuffer [%d]\n",
1033 status
= kfifo_put(fujitsu_hotkey
->fifo
,
1034 (unsigned char *)&keycode
,
1036 if (status
!= sizeof(keycode
)) {
1037 vdbg_printk(FUJLAPTOP_DBG_WARN
,
1038 "Could not push keycode [0x%x]\n",
1041 input_report_key(input
, keycode
, 1);
1044 } else if (keycode
== 0) {
1047 (fujitsu_hotkey
->fifo
, (unsigned char *)
1050 (keycode_r
))) == sizeof(keycode_r
)) {
1051 input_report_key(input
, keycode_r
, 0);
1053 vdbg_printk(FUJLAPTOP_DBG_TRACE
,
1054 "Pop keycode from ringbuffer [%d]\n",
1062 keycode
= KEY_UNKNOWN
;
1063 vdbg_printk(FUJLAPTOP_DBG_WARN
,
1064 "Unsupported event [0x%x]\n", event
);
1065 input_report_key(input
, keycode
, 1);
1067 input_report_key(input
, keycode
, 0);
1075 /* Initialization */
1077 static const struct acpi_device_id fujitsu_device_ids
[] = {
1078 {ACPI_FUJITSU_HID
, 0},
1082 static struct acpi_driver acpi_fujitsu_driver
= {
1083 .name
= ACPI_FUJITSU_DRIVER_NAME
,
1084 .class = ACPI_FUJITSU_CLASS
,
1085 .ids
= fujitsu_device_ids
,
1087 .add
= acpi_fujitsu_add
,
1088 .remove
= acpi_fujitsu_remove
,
1089 .notify
= acpi_fujitsu_notify
,
1093 static const struct acpi_device_id fujitsu_hotkey_device_ids
[] = {
1094 {ACPI_FUJITSU_HOTKEY_HID
, 0},
1098 static struct acpi_driver acpi_fujitsu_hotkey_driver
= {
1099 .name
= ACPI_FUJITSU_HOTKEY_DRIVER_NAME
,
1100 .class = ACPI_FUJITSU_CLASS
,
1101 .ids
= fujitsu_hotkey_device_ids
,
1103 .add
= acpi_fujitsu_hotkey_add
,
1104 .remove
= acpi_fujitsu_hotkey_remove
,
1108 static int __init
fujitsu_init(void)
1110 int ret
, result
, max_brightness
;
1115 fujitsu
= kmalloc(sizeof(struct fujitsu_t
), GFP_KERNEL
);
1118 memset(fujitsu
, 0, sizeof(struct fujitsu_t
));
1119 fujitsu
->keycode1
= KEY_PROG1
;
1120 fujitsu
->keycode2
= KEY_PROG2
;
1121 fujitsu
->keycode3
= KEY_PROG3
;
1122 fujitsu
->keycode4
= KEY_PROG4
;
1123 dmi_check_system(fujitsu_dmi_table
);
1125 result
= acpi_bus_register_driver(&acpi_fujitsu_driver
);
1131 /* Register platform stuff */
1133 fujitsu
->pf_device
= platform_device_alloc("fujitsu-laptop", -1);
1134 if (!fujitsu
->pf_device
) {
1136 goto fail_platform_driver
;
1139 ret
= platform_device_add(fujitsu
->pf_device
);
1141 goto fail_platform_device1
;
1144 sysfs_create_group(&fujitsu
->pf_device
->dev
.kobj
,
1145 &fujitsupf_attribute_group
);
1147 goto fail_platform_device2
;
1149 /* Register backlight stuff */
1151 if (!acpi_video_backlight_support()) {
1152 fujitsu
->bl_device
=
1153 backlight_device_register("fujitsu-laptop", NULL
, NULL
,
1155 if (IS_ERR(fujitsu
->bl_device
))
1156 return PTR_ERR(fujitsu
->bl_device
);
1157 max_brightness
= fujitsu
->max_brightness
;
1158 fujitsu
->bl_device
->props
.max_brightness
= max_brightness
- 1;
1159 fujitsu
->bl_device
->props
.brightness
= fujitsu
->brightness_level
;
1162 ret
= platform_driver_register(&fujitsupf_driver
);
1164 goto fail_backlight
;
1166 /* Register hotkey driver */
1168 fujitsu_hotkey
= kmalloc(sizeof(struct fujitsu_hotkey_t
), GFP_KERNEL
);
1169 if (!fujitsu_hotkey
) {
1173 memset(fujitsu_hotkey
, 0, sizeof(struct fujitsu_hotkey_t
));
1175 result
= acpi_bus_register_driver(&acpi_fujitsu_hotkey_driver
);
1181 /* Sync backlight power status (needs FUJ02E3 device, hence deferred) */
1183 if (!acpi_video_backlight_support()) {
1184 if (call_fext_func(FUNC_BACKLIGHT
, 0x2, 0x4, 0x0) == 3)
1185 fujitsu
->bl_device
->props
.power
= 4;
1187 fujitsu
->bl_device
->props
.power
= 0;
1190 printk(KERN_INFO
"fujitsu-laptop: driver " FUJITSU_DRIVER_VERSION
1191 " successfully loaded.\n");
1197 kfree(fujitsu_hotkey
);
1201 platform_driver_unregister(&fujitsupf_driver
);
1205 if (fujitsu
->bl_device
)
1206 backlight_device_unregister(fujitsu
->bl_device
);
1208 fail_platform_device2
:
1210 platform_device_del(fujitsu
->pf_device
);
1212 fail_platform_device1
:
1214 platform_device_put(fujitsu
->pf_device
);
1216 fail_platform_driver
:
1218 acpi_bus_unregister_driver(&acpi_fujitsu_driver
);
1227 static void __exit
fujitsu_cleanup(void)
1229 #ifdef CONFIG_LEDS_CLASS
1230 if (fujitsu_hotkey
->logolamp_registered
!= 0)
1231 led_classdev_unregister(&logolamp_led
);
1233 if (fujitsu_hotkey
->kblamps_registered
!= 0)
1234 led_classdev_unregister(&kblamps_led
);
1237 sysfs_remove_group(&fujitsu
->pf_device
->dev
.kobj
,
1238 &fujitsupf_attribute_group
);
1239 platform_device_unregister(fujitsu
->pf_device
);
1240 platform_driver_unregister(&fujitsupf_driver
);
1241 if (fujitsu
->bl_device
)
1242 backlight_device_unregister(fujitsu
->bl_device
);
1244 acpi_bus_unregister_driver(&acpi_fujitsu_driver
);
1248 acpi_bus_unregister_driver(&acpi_fujitsu_hotkey_driver
);
1250 kfree(fujitsu_hotkey
);
1252 printk(KERN_INFO
"fujitsu-laptop: driver unloaded.\n");
1255 module_init(fujitsu_init
);
1256 module_exit(fujitsu_cleanup
);
1258 module_param(use_alt_lcd_levels
, uint
, 0644);
1259 MODULE_PARM_DESC(use_alt_lcd_levels
,
1260 "Use alternative interface for lcd_levels (needed for Lifebook s6410).");
1261 module_param(disable_brightness_adjust
, uint
, 0644);
1262 MODULE_PARM_DESC(disable_brightness_adjust
, "Disable brightness adjustment .");
1263 #ifdef CONFIG_FUJITSU_LAPTOP_DEBUG
1264 module_param_named(debug
, dbg_level
, uint
, 0644);
1265 MODULE_PARM_DESC(debug
, "Sets debug level bit-mask");
1268 MODULE_AUTHOR("Jonathan Woithe, Peter Gruber, Tony Vroon");
1269 MODULE_DESCRIPTION("Fujitsu laptop extras support");
1270 MODULE_VERSION(FUJITSU_DRIVER_VERSION
);
1271 MODULE_LICENSE("GPL");
1273 MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1D3:*:cvrS6410:*");
1274 MODULE_ALIAS("dmi:*:svnFUJITSUSIEMENS:*:pvr:rvnFUJITSU:rnFJNB1E6:*:cvrS6420:*");
1275 MODULE_ALIAS("dmi:*:svnFUJITSU:*:pvr:rvnFUJITSU:rnFJNB19C:*:cvrS7020:*");
1277 static struct pnp_device_id pnp_ids
[] = {
1284 MODULE_DEVICE_TABLE(pnp
, pnp_ids
);