1 // SPDX-License-Identifier: GPL-2.0-only
3 * Panasonic HotKey and LCD brightness control driver
5 * (C) 2004 NTT DATA Intellilink Co. http://www.intellilink.co.jp/
6 * (C) YOKOTA Hiroshi <yokota (at) netlab. is. tsukuba. ac. jp>
7 * (C) 2004 David Bronaugh <dbronaugh>
10 * derived from toshiba_acpi.c, Copyright (C) 2002-2004 John Belmonte
12 *---------------------------------------------------------------------------
16 * -v0.98 add platform devices for firmware brightness registers
17 * add support for battery charging threshold (eco mode)
18 * resolve hotkey double trigger
19 * add write support to mute
20 * fix sticky_key init bug
21 * fix naming of platform files for consistency with other
23 * split MODULE_AUTHOR() by one author per macro call
24 * replace ACPI prints with pr_*() macros
25 * -v0.97 add support for cdpower hardware switch
26 * -v0.96 merge Lucina's enhancement
28 * - add support for optical driver power in
32 * -v0.95 rename driver from drivers/acpi/pcc_acpi.c to
33 * drivers/misc/panasonic-laptop.c
36 * -v0.94 replace /proc interface with device attributes
37 * support {set,get}keycode on th input device
40 * -v0.92 merge with 2.6.26-rc6 input API changes
41 * remove broken <= 2.6.15 kernel support
42 * resolve all compiler warnings
43 * various coding style fixes (checkpatch.pl)
44 * add support for backlight api
45 * major code restructuring
48 * -v0.91 merge with 2.6.24-rc6 ACPI changes
51 * -v0.9 remove warning about section reference.
53 * add /proc/acpi/pcc/brightness interface for HAL access
54 * merge dbronaugh's enhancement
55 * Aug.17, 2004 David Bronaugh (dbronaugh)
56 * - Added screen brightness setting interface
57 * Thanks to FreeBSD crew (acpi_panasonic.c)
58 * for the ideas I needed to accomplish it
61 * -v0.8.4 follow to change keyinput structure
64 * Hiroshi Yokota for providing solutions.
67 * -v0.8.2 merge code of YOKOTA Hiroshi
69 * Add sticky key mode interface.
70 * Refactoring acpi_pcc_generate_keyinput().
73 * -v0.8 Generate key input event on input subsystem.
74 * This is based on yet another driver written by
78 * -v0.7 Change proc interface functions using seq_file
79 * facility as same as other ACPI drivers.
82 * -v0.6.4 Fix a silly error with status checking
85 * -v0.6.3 replace read_acpi_int by standard function
86 * acpi_evaluate_integer
87 * some clean up and make smart copyright notice.
88 * fix return value of pcc_acpi_get_key()
89 * fix checking return value of acpi_bus_register_driver()
92 * -v0.6.2 Add check on ACPI data (num_sifr)
93 * Coding style cleanups, better error messages/handling
94 * Fixed an off-by-one error in memory allocation
97 * -v0.6.1 Fix a silly error with status checking
100 * - v0.6 Correct brightness controls to reflect reality
101 * based on information gleaned by Hiroshi Miura
102 * and discussions with Hiroshi Miura
105 * - v0.5 support LCD brightness control
106 * based on the disclosed information by MEI.
109 * - v0.4 first post version
110 * add function to retrive SIFR
113 * - v0.3 get proper status of hotkey
116 * - v0.2 add HotKey handler
119 * - v0.1 start from toshiba_acpi driver written by John Belmonte
122 #include <linux/acpi.h>
123 #include <linux/backlight.h>
124 #include <linux/ctype.h>
125 #include <linux/i8042.h>
126 #include <linux/init.h>
127 #include <linux/input.h>
128 #include <linux/input/sparse-keymap.h>
129 #include <linux/kernel.h>
130 #include <linux/module.h>
131 #include <linux/platform_device.h>
132 #include <linux/seq_file.h>
133 #include <linux/serio.h>
134 #include <linux/slab.h>
135 #include <linux/types.h>
136 #include <linux/uaccess.h>
137 #include <acpi/video.h>
144 MODULE_DESCRIPTION("ACPI HotKey driver for Panasonic Let's Note laptops");
145 MODULE_LICENSE("GPL");
147 #define LOGPREFIX "pcc_acpi: "
149 /* Define ACPI PATHs */
150 /* Lets note hotkeys */
151 #define METHOD_HKEY_QUERY "HINF"
152 #define METHOD_HKEY_SQTY "SQTY"
153 #define METHOD_HKEY_SINF "SINF"
154 #define METHOD_HKEY_SSET "SSET"
155 #define METHOD_ECWR "\\_SB.ECWR"
156 #define HKEY_NOTIFY 0x80
157 #define ECO_MODE_OFF 0x00
158 #define ECO_MODE_ON 0x80
160 #define ACPI_PCC_DRIVER_NAME "Panasonic Laptop Support"
161 #define ACPI_PCC_DEVICE_NAME "Hotkey"
162 #define ACPI_PCC_CLASS "pcc"
164 #define ACPI_PCC_INPUT_PHYS "panasonic/hkey0"
166 /* LCD_TYPEs: 0 = Normal, 1 = Semi-transparent
167 ECO_MODEs: 0x03 = off, 0x83 = on
169 enum SINF_BITS { SINF_NUM_BATTERIES = 0,
179 SINF_ECO_MODE = 0x0A,
180 SINF_CUR_BRIGHT = 0x0D,
181 SINF_STICKY_KEY = 0x80,
183 /* R1 handles SINF_AC_CUR_BRIGHT as SINF_CUR_BRIGHT, doesn't know AC state */
185 static int acpi_pcc_hotkey_add(struct acpi_device *device);
186 static int acpi_pcc_hotkey_remove(struct acpi_device *device);
187 static void acpi_pcc_hotkey_notify(struct acpi_device *device, u32 event);
189 static const struct acpi_device_id pcc_device_ids[] = {
196 MODULE_DEVICE_TABLE(acpi, pcc_device_ids);
198 #ifdef CONFIG_PM_SLEEP
199 static int acpi_pcc_hotkey_resume(struct device *dev);
201 static SIMPLE_DEV_PM_OPS(acpi_pcc_hotkey_pm, NULL, acpi_pcc_hotkey_resume);
203 static struct acpi_driver acpi_pcc_driver = {
204 .name = ACPI_PCC_DRIVER_NAME,
205 .class = ACPI_PCC_CLASS,
206 .ids = pcc_device_ids,
208 .add = acpi_pcc_hotkey_add,
209 .remove = acpi_pcc_hotkey_remove,
210 .notify = acpi_pcc_hotkey_notify,
212 .drv.pm = &acpi_pcc_hotkey_pm,
215 static const struct key_entry panasonic_keymap[] = {
216 { KE_KEY, 0, { KEY_RESERVED } },
217 { KE_KEY, 1, { KEY_BRIGHTNESSDOWN } },
218 { KE_KEY, 2, { KEY_BRIGHTNESSUP } },
219 { KE_KEY, 3, { KEY_DISPLAYTOGGLE } },
220 { KE_KEY, 4, { KEY_MUTE } },
221 { KE_KEY, 5, { KEY_VOLUMEDOWN } },
222 { KE_KEY, 6, { KEY_VOLUMEUP } },
223 { KE_KEY, 7, { KEY_SLEEP } },
224 { KE_KEY, 8, { KEY_PROG1 } }, /* Change CPU boost */
225 { KE_KEY, 9, { KEY_BATTERY } },
226 { KE_KEY, 10, { KEY_SUSPEND } },
232 unsigned long num_sifr;
238 int current_brightness;
240 struct acpi_device *device;
241 struct input_dev *input_dev;
242 struct backlight_device *backlight;
243 struct platform_device *platform;
247 * On some Panasonic models the volume up / down / mute keys send duplicate
248 * keypress events over the PS/2 kbd interface, filter these out.
250 static bool panasonic_i8042_filter(unsigned char data, unsigned char str,
253 static bool extended;
255 if (str & I8042_STR_AUXDATA)
261 } else if (extended) {
264 switch (data & 0x7f) {
265 case 0x20: /* e0 20 / e0 a0, Volume Mute press / release */
266 case 0x2e: /* e0 2e / e0 ae, Volume Down press / release */
267 case 0x30: /* e0 30 / e0 b0, Volume Up press / release */
271 * Report the previously filtered e0 before continuing
272 * with the next non-filtered byte.
274 serio_interrupt(port, 0xe0, 0);
282 /* method access functions */
283 static int acpi_pcc_write_sset(struct pcc_acpi *pcc, int func, int val)
285 union acpi_object in_objs[] = {
286 { .integer.type = ACPI_TYPE_INTEGER,
287 .integer.value = func, },
288 { .integer.type = ACPI_TYPE_INTEGER,
289 .integer.value = val, },
291 struct acpi_object_list params = {
292 .count = ARRAY_SIZE(in_objs),
295 acpi_status status = AE_OK;
297 status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SSET,
300 return (status == AE_OK) ? 0 : -EIO;
303 static inline int acpi_pcc_get_sqty(struct acpi_device *device)
305 unsigned long long s;
308 status = acpi_evaluate_integer(device->handle, METHOD_HKEY_SQTY,
310 if (ACPI_SUCCESS(status))
313 pr_err("evaluation error HKEY.SQTY\n");
318 static int acpi_pcc_retrieve_biosdata(struct pcc_acpi *pcc)
321 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
322 union acpi_object *hkey = NULL;
325 status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SINF, NULL,
327 if (ACPI_FAILURE(status)) {
328 pr_err("evaluation error HKEY.SINF\n");
332 hkey = buffer.pointer;
333 if (!hkey || (hkey->type != ACPI_TYPE_PACKAGE)) {
334 pr_err("Invalid HKEY.SINF\n");
339 if (pcc->num_sifr < hkey->package.count) {
340 pr_err("SQTY reports bad SINF length\n");
345 for (i = 0; i < hkey->package.count; i++) {
346 union acpi_object *element = &(hkey->package.elements[i]);
347 if (likely(element->type == ACPI_TYPE_INTEGER)) {
348 pcc->sinf[i] = element->integer.value;
350 pr_err("Invalid HKEY.SINF data\n");
352 pcc->sinf[hkey->package.count] = -1;
355 kfree(buffer.pointer);
356 return status == AE_OK;
359 /* backlight API interface functions */
361 /* This driver currently treats AC and DC brightness identical,
362 * since we don't need to invent an interface to the core ACPI
363 * logic to receive events in case a power supply is plugged in
366 static int bl_get(struct backlight_device *bd)
368 struct pcc_acpi *pcc = bl_get_data(bd);
370 if (!acpi_pcc_retrieve_biosdata(pcc))
373 return pcc->sinf[SINF_AC_CUR_BRIGHT];
376 static int bl_set_status(struct backlight_device *bd)
378 struct pcc_acpi *pcc = bl_get_data(bd);
379 int bright = bd->props.brightness;
382 if (!acpi_pcc_retrieve_biosdata(pcc))
385 if (bright < pcc->sinf[SINF_AC_MIN_BRIGHT])
386 bright = pcc->sinf[SINF_AC_MIN_BRIGHT];
388 if (bright < pcc->sinf[SINF_DC_MIN_BRIGHT])
389 bright = pcc->sinf[SINF_DC_MIN_BRIGHT];
391 if (bright < pcc->sinf[SINF_AC_MIN_BRIGHT] ||
392 bright > pcc->sinf[SINF_AC_MAX_BRIGHT])
395 rc = acpi_pcc_write_sset(pcc, SINF_AC_CUR_BRIGHT, bright);
399 return acpi_pcc_write_sset(pcc, SINF_DC_CUR_BRIGHT, bright);
402 static const struct backlight_ops pcc_backlight_ops = {
403 .get_brightness = bl_get,
404 .update_status = bl_set_status,
408 /* returns ACPI_SUCCESS if methods to control optical drive are present */
410 static acpi_status check_optd_present(void)
412 acpi_status status = AE_OK;
415 status = acpi_get_handle(NULL, "\\_SB.STAT", &handle);
416 if (ACPI_FAILURE(status))
418 status = acpi_get_handle(NULL, "\\_SB.FBAY", &handle);
419 if (ACPI_FAILURE(status))
421 status = acpi_get_handle(NULL, "\\_SB.CDDI", &handle);
422 if (ACPI_FAILURE(status))
429 /* get optical driver power state */
431 static int get_optd_power_state(void)
434 unsigned long long state;
437 status = acpi_evaluate_integer(NULL, "\\_SB.STAT", NULL, &state);
438 if (ACPI_FAILURE(status)) {
439 pr_err("evaluation error _SB.STAT\n");
444 case 0: /* power off */
447 case 0x0f: /* power on */
459 /* set optical drive power state */
461 static int set_optd_power_state(int new_state)
466 result = get_optd_power_state();
469 if (new_state == result)
473 case 0: /* power off */
474 /* Call CDDR instead, since they both call the same method
475 * while CDDI takes 1 arg and we are not quite sure what it is.
477 status = acpi_evaluate_object(NULL, "\\_SB.CDDR", NULL, NULL);
478 if (ACPI_FAILURE(status)) {
479 pr_err("evaluation error _SB.CDDR\n");
483 case 1: /* power on */
484 status = acpi_evaluate_object(NULL, "\\_SB.FBAY", NULL, NULL);
485 if (ACPI_FAILURE(status)) {
486 pr_err("evaluation error _SB.FBAY\n");
500 /* sysfs user interface functions */
502 static ssize_t numbatt_show(struct device *dev, struct device_attribute *attr,
505 struct acpi_device *acpi = to_acpi_device(dev);
506 struct pcc_acpi *pcc = acpi_driver_data(acpi);
508 if (!acpi_pcc_retrieve_biosdata(pcc))
511 return sysfs_emit(buf, "%u\n", pcc->sinf[SINF_NUM_BATTERIES]);
514 static ssize_t lcdtype_show(struct device *dev, struct device_attribute *attr,
517 struct acpi_device *acpi = to_acpi_device(dev);
518 struct pcc_acpi *pcc = acpi_driver_data(acpi);
520 if (!acpi_pcc_retrieve_biosdata(pcc))
523 return sysfs_emit(buf, "%u\n", pcc->sinf[SINF_LCD_TYPE]);
526 static ssize_t mute_show(struct device *dev, struct device_attribute *attr,
529 struct acpi_device *acpi = to_acpi_device(dev);
530 struct pcc_acpi *pcc = acpi_driver_data(acpi);
532 if (!acpi_pcc_retrieve_biosdata(pcc))
535 return sysfs_emit(buf, "%u\n", pcc->sinf[SINF_MUTE]);
538 static ssize_t mute_store(struct device *dev, struct device_attribute *attr,
539 const char *buf, size_t count)
541 struct acpi_device *acpi = to_acpi_device(dev);
542 struct pcc_acpi *pcc = acpi_driver_data(acpi);
545 err = kstrtoint(buf, 0, &val);
548 if (val == 0 || val == 1) {
549 acpi_pcc_write_sset(pcc, SINF_MUTE, val);
556 static ssize_t sticky_key_show(struct device *dev, struct device_attribute *attr,
559 struct acpi_device *acpi = to_acpi_device(dev);
560 struct pcc_acpi *pcc = acpi_driver_data(acpi);
562 if (!acpi_pcc_retrieve_biosdata(pcc))
565 return sysfs_emit(buf, "%u\n", pcc->sticky_key);
568 static ssize_t sticky_key_store(struct device *dev, struct device_attribute *attr,
569 const char *buf, size_t count)
571 struct acpi_device *acpi = to_acpi_device(dev);
572 struct pcc_acpi *pcc = acpi_driver_data(acpi);
575 err = kstrtoint(buf, 0, &val);
578 if (val == 0 || val == 1) {
579 acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, val);
580 pcc->sticky_key = val;
586 static ssize_t eco_mode_show(struct device *dev, struct device_attribute *attr,
589 struct acpi_device *acpi = to_acpi_device(dev);
590 struct pcc_acpi *pcc = acpi_driver_data(acpi);
593 if (!acpi_pcc_retrieve_biosdata(pcc))
596 switch (pcc->sinf[SINF_ECO_MODE]) {
597 case (ECO_MODE_OFF + 3):
600 case (ECO_MODE_ON + 3):
607 return sysfs_emit(buf, "%u\n", result);
610 static ssize_t eco_mode_store(struct device *dev, struct device_attribute *attr,
611 const char *buf, size_t count)
613 struct acpi_device *acpi = to_acpi_device(dev);
614 struct pcc_acpi *pcc = acpi_driver_data(acpi);
617 union acpi_object param[2];
618 struct acpi_object_list input;
621 param[0].type = ACPI_TYPE_INTEGER;
622 param[0].integer.value = 0x15;
623 param[1].type = ACPI_TYPE_INTEGER;
625 input.pointer = param;
627 err = kstrtoint(buf, 0, &state);
633 param[1].integer.value = ECO_MODE_OFF;
634 pcc->sinf[SINF_ECO_MODE] = 0;
638 param[1].integer.value = ECO_MODE_ON;
639 pcc->sinf[SINF_ECO_MODE] = 1;
647 status = acpi_evaluate_object(NULL, METHOD_ECWR,
649 if (ACPI_FAILURE(status)) {
650 pr_err("%s evaluation failed\n", METHOD_ECWR);
657 static ssize_t ac_brightness_show(struct device *dev, struct device_attribute *attr,
660 struct acpi_device *acpi = to_acpi_device(dev);
661 struct pcc_acpi *pcc = acpi_driver_data(acpi);
663 if (!acpi_pcc_retrieve_biosdata(pcc))
666 return sysfs_emit(buf, "%u\n", pcc->sinf[SINF_AC_CUR_BRIGHT]);
669 static ssize_t ac_brightness_store(struct device *dev, struct device_attribute *attr,
670 const char *buf, size_t count)
672 struct acpi_device *acpi = to_acpi_device(dev);
673 struct pcc_acpi *pcc = acpi_driver_data(acpi);
676 err = kstrtoint(buf, 0, &val);
679 if (val >= 0 && val <= 255) {
680 acpi_pcc_write_sset(pcc, SINF_AC_CUR_BRIGHT, val);
681 pcc->ac_brightness = val;
687 static ssize_t dc_brightness_show(struct device *dev, struct device_attribute *attr,
690 struct acpi_device *acpi = to_acpi_device(dev);
691 struct pcc_acpi *pcc = acpi_driver_data(acpi);
693 if (!acpi_pcc_retrieve_biosdata(pcc))
696 return sysfs_emit(buf, "%u\n", pcc->sinf[SINF_DC_CUR_BRIGHT]);
699 static ssize_t dc_brightness_store(struct device *dev, struct device_attribute *attr,
700 const char *buf, size_t count)
702 struct acpi_device *acpi = to_acpi_device(dev);
703 struct pcc_acpi *pcc = acpi_driver_data(acpi);
706 err = kstrtoint(buf, 0, &val);
709 if (val >= 0 && val <= 255) {
710 acpi_pcc_write_sset(pcc, SINF_DC_CUR_BRIGHT, val);
711 pcc->dc_brightness = val;
717 static ssize_t current_brightness_show(struct device *dev, struct device_attribute *attr,
720 struct acpi_device *acpi = to_acpi_device(dev);
721 struct pcc_acpi *pcc = acpi_driver_data(acpi);
723 if (!acpi_pcc_retrieve_biosdata(pcc))
726 return sysfs_emit(buf, "%u\n", pcc->sinf[SINF_CUR_BRIGHT]);
729 static ssize_t current_brightness_store(struct device *dev, struct device_attribute *attr,
730 const char *buf, size_t count)
732 struct acpi_device *acpi = to_acpi_device(dev);
733 struct pcc_acpi *pcc = acpi_driver_data(acpi);
736 err = kstrtoint(buf, 0, &val);
740 if (val >= 0 && val <= 255) {
741 err = acpi_pcc_write_sset(pcc, SINF_CUR_BRIGHT, val);
742 pcc->current_brightness = val;
748 static ssize_t cdpower_show(struct device *dev, struct device_attribute *attr,
751 return sysfs_emit(buf, "%d\n", get_optd_power_state());
754 static ssize_t cdpower_store(struct device *dev, struct device_attribute *attr,
755 const char *buf, size_t count)
759 err = kstrtoint(buf, 10, &val);
762 set_optd_power_state(val);
766 static DEVICE_ATTR_RO(numbatt);
767 static DEVICE_ATTR_RO(lcdtype);
768 static DEVICE_ATTR_RW(mute);
769 static DEVICE_ATTR_RW(sticky_key);
770 static DEVICE_ATTR_RW(eco_mode);
771 static DEVICE_ATTR_RW(ac_brightness);
772 static DEVICE_ATTR_RW(dc_brightness);
773 static DEVICE_ATTR_RW(current_brightness);
774 static DEVICE_ATTR_RW(cdpower);
776 static struct attribute *pcc_sysfs_entries[] = {
777 &dev_attr_numbatt.attr,
778 &dev_attr_lcdtype.attr,
780 &dev_attr_sticky_key.attr,
781 &dev_attr_eco_mode.attr,
782 &dev_attr_ac_brightness.attr,
783 &dev_attr_dc_brightness.attr,
784 &dev_attr_current_brightness.attr,
785 &dev_attr_cdpower.attr,
789 static const struct attribute_group pcc_attr_group = {
790 .name = NULL, /* put in device directory */
791 .attrs = pcc_sysfs_entries,
795 /* hotkey input device driver */
797 static int sleep_keydown_seen;
798 static void acpi_pcc_generate_keyinput(struct pcc_acpi *pcc)
800 struct input_dev *hotk_input_dev = pcc->input_dev;
802 unsigned long long result;
806 rc = acpi_evaluate_integer(pcc->handle, METHOD_HKEY_QUERY,
808 if (ACPI_FAILURE(rc)) {
809 pr_err("error getting hotkey status\n");
814 updown = result & 0x80; /* 0x80 == key down; 0x00 = key up */
816 /* hack: some firmware sends no key down for sleep / hibernate */
817 if (key == 7 || key == 10) {
819 sleep_keydown_seen = 1;
820 if (!sleep_keydown_seen)
821 sparse_keymap_report_event(hotk_input_dev,
826 * Don't report brightness key-presses if they are also reported
827 * by the ACPI video bus.
829 if ((key == 1 || key == 2) && acpi_video_handles_brightness_key_presses())
832 if (!sparse_keymap_report_event(hotk_input_dev, key, updown, false))
833 pr_err("Unknown hotkey event: 0x%04llx\n", result);
836 static void acpi_pcc_hotkey_notify(struct acpi_device *device, u32 event)
838 struct pcc_acpi *pcc = acpi_driver_data(device);
842 acpi_pcc_generate_keyinput(pcc);
850 static void pcc_optd_notify(acpi_handle handle, u32 event, void *data)
852 if (event != ACPI_NOTIFY_EJECT_REQUEST)
855 set_optd_power_state(0);
858 static int pcc_register_optd_notifier(struct pcc_acpi *pcc, char *node)
863 status = acpi_get_handle(NULL, node, &handle);
865 if (ACPI_SUCCESS(status)) {
866 status = acpi_install_notify_handler(handle,
868 pcc_optd_notify, pcc);
869 if (ACPI_FAILURE(status))
870 pr_err("Failed to register notify on %s\n", node);
877 static void pcc_unregister_optd_notifier(struct pcc_acpi *pcc, char *node)
879 acpi_status status = AE_OK;
882 status = acpi_get_handle(NULL, node, &handle);
884 if (ACPI_SUCCESS(status)) {
885 status = acpi_remove_notify_handler(handle,
888 if (ACPI_FAILURE(status))
889 pr_err("Error removing optd notify handler %s\n",
894 static int acpi_pcc_init_input(struct pcc_acpi *pcc)
896 struct input_dev *input_dev;
899 input_dev = input_allocate_device();
903 input_dev->name = ACPI_PCC_DRIVER_NAME;
904 input_dev->phys = ACPI_PCC_INPUT_PHYS;
905 input_dev->id.bustype = BUS_HOST;
906 input_dev->id.vendor = 0x0001;
907 input_dev->id.product = 0x0001;
908 input_dev->id.version = 0x0100;
910 error = sparse_keymap_setup(input_dev, panasonic_keymap, NULL);
912 pr_err("Unable to setup input device keymap\n");
916 error = input_register_device(input_dev);
918 pr_err("Unable to register input device\n");
922 pcc->input_dev = input_dev;
926 input_free_device(input_dev);
930 /* kernel module interface */
932 #ifdef CONFIG_PM_SLEEP
933 static int acpi_pcc_hotkey_resume(struct device *dev)
935 struct pcc_acpi *pcc;
940 pcc = acpi_driver_data(to_acpi_device(dev));
944 acpi_pcc_write_sset(pcc, SINF_MUTE, pcc->mute);
945 acpi_pcc_write_sset(pcc, SINF_ECO_MODE, pcc->eco_mode);
946 acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, pcc->sticky_key);
947 acpi_pcc_write_sset(pcc, SINF_AC_CUR_BRIGHT, pcc->ac_brightness);
948 acpi_pcc_write_sset(pcc, SINF_DC_CUR_BRIGHT, pcc->dc_brightness);
949 acpi_pcc_write_sset(pcc, SINF_CUR_BRIGHT, pcc->current_brightness);
955 static int acpi_pcc_hotkey_add(struct acpi_device *device)
957 struct backlight_properties props;
958 struct pcc_acpi *pcc;
959 int num_sifr, result;
964 num_sifr = acpi_pcc_get_sqty(device);
966 if (num_sifr < 0 || num_sifr > 255) {
967 pr_err("num_sifr out of range");
971 pcc = kzalloc(sizeof(struct pcc_acpi), GFP_KERNEL);
973 pr_err("Couldn't allocate mem for pcc");
977 pcc->sinf = kcalloc(num_sifr + 1, sizeof(u32), GFP_KERNEL);
983 pcc->device = device;
984 pcc->handle = device->handle;
985 pcc->num_sifr = num_sifr;
986 device->driver_data = pcc;
987 strcpy(acpi_device_name(device), ACPI_PCC_DEVICE_NAME);
988 strcpy(acpi_device_class(device), ACPI_PCC_CLASS);
990 result = acpi_pcc_init_input(pcc);
992 pr_err("Error installing keyinput handler\n");
996 if (!acpi_pcc_retrieve_biosdata(pcc)) {
998 pr_err("Couldn't retrieve BIOS data\n");
1002 if (acpi_video_get_backlight_type() == acpi_backlight_vendor) {
1003 /* initialize backlight */
1004 memset(&props, 0, sizeof(struct backlight_properties));
1005 props.type = BACKLIGHT_PLATFORM;
1006 props.max_brightness = pcc->sinf[SINF_AC_MAX_BRIGHT];
1008 pcc->backlight = backlight_device_register("panasonic", NULL, pcc,
1009 &pcc_backlight_ops, &props);
1010 if (IS_ERR(pcc->backlight)) {
1011 result = PTR_ERR(pcc->backlight);
1015 /* read the initial brightness setting from the hardware */
1016 pcc->backlight->props.brightness = pcc->sinf[SINF_AC_CUR_BRIGHT];
1019 /* Reset initial sticky key mode since the hardware register state is not consistent */
1020 acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, 0);
1021 pcc->sticky_key = 0;
1023 pcc->eco_mode = pcc->sinf[SINF_ECO_MODE];
1024 pcc->mute = pcc->sinf[SINF_MUTE];
1025 pcc->ac_brightness = pcc->sinf[SINF_AC_CUR_BRIGHT];
1026 pcc->dc_brightness = pcc->sinf[SINF_DC_CUR_BRIGHT];
1027 pcc->current_brightness = pcc->sinf[SINF_CUR_BRIGHT];
1029 /* add sysfs attributes */
1030 result = sysfs_create_group(&device->dev.kobj, &pcc_attr_group);
1034 /* optical drive initialization */
1035 if (ACPI_SUCCESS(check_optd_present())) {
1036 pcc->platform = platform_device_register_simple("panasonic",
1037 PLATFORM_DEVID_NONE, NULL, 0);
1038 if (IS_ERR(pcc->platform)) {
1039 result = PTR_ERR(pcc->platform);
1042 result = device_create_file(&pcc->platform->dev,
1044 pcc_register_optd_notifier(pcc, "\\_SB.PCI0.EHCI.ERHB.OPTD");
1048 pcc->platform = NULL;
1051 i8042_install_filter(panasonic_i8042_filter);
1055 platform_device_unregister(pcc->platform);
1057 backlight_device_unregister(pcc->backlight);
1059 input_unregister_device(pcc->input_dev);
1068 static int acpi_pcc_hotkey_remove(struct acpi_device *device)
1070 struct pcc_acpi *pcc = acpi_driver_data(device);
1072 if (!device || !pcc)
1075 i8042_remove_filter(panasonic_i8042_filter);
1077 if (pcc->platform) {
1078 device_remove_file(&pcc->platform->dev, &dev_attr_cdpower);
1079 platform_device_unregister(pcc->platform);
1081 pcc_unregister_optd_notifier(pcc, "\\_SB.PCI0.EHCI.ERHB.OPTD");
1083 sysfs_remove_group(&device->dev.kobj, &pcc_attr_group);
1085 backlight_device_unregister(pcc->backlight);
1087 input_unregister_device(pcc->input_dev);
1095 module_acpi_driver(acpi_pcc_driver);