blob: b3b9e0458ae1bda3367488a23f828d2ca612b00b [file] [log] [blame]
Harald Welte709ee532008-09-23 17:46:57 +02001/*
2 * Panasonic HotKey and LCD brightness control driver
3 * (C) 2004 Hiroshi Miura <miura@da-cha.org>
4 * (C) 2004 NTT DATA Intellilink Co. http://www.intellilink.co.jp/
5 * (C) YOKOTA Hiroshi <yokota (at) netlab. is. tsukuba. ac. jp>
6 * (C) 2004 David Bronaugh <dbronaugh>
7 * (C) 2006-2008 Harald Welte <laforge@gnumonks.org>
8 *
9 * derived from toshiba_acpi.c, Copyright (C) 2002-2004 John Belmonte
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * publicshed by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 *---------------------------------------------------------------------------
25 *
26 * ChangeLog:
27 * Sep.23, 2008 Harald Welte <laforge@gnumonks.org>
28 * -v0.95 rename driver from drivers/acpi/pcc_acpi.c to
29 * drivers/misc/panasonic-laptop.c
30 *
31 * Jul.04, 2008 Harald Welte <laforge@gnumonks.org>
32 * -v0.94 replace /proc interface with device attributes
33 * support {set,get}keycode on th input device
34 *
35 * Jun.27, 2008 Harald Welte <laforge@gnumonks.org>
36 * -v0.92 merge with 2.6.26-rc6 input API changes
37 * remove broken <= 2.6.15 kernel support
38 * resolve all compiler warnings
39 * various coding style fixes (checkpatch.pl)
40 * add support for backlight api
41 * major code restructuring
42 *
43 * Dac.28, 2007 Harald Welte <laforge@gnumonks.org>
44 * -v0.91 merge with 2.6.24-rc6 ACPI changes
45 *
46 * Nov.04, 2006 Hiroshi Miura <miura@da-cha.org>
47 * -v0.9 remove warning about section reference.
48 * remove acpi_os_free
49 * add /proc/acpi/pcc/brightness interface for HAL access
50 * merge dbronaugh's enhancement
51 * Aug.17, 2004 David Bronaugh (dbronaugh)
52 * - Added screen brightness setting interface
53 * Thanks to FreeBSD crew (acpi_panasonic.c)
54 * for the ideas I needed to accomplish it
55 *
56 * May.29, 2006 Hiroshi Miura <miura@da-cha.org>
57 * -v0.8.4 follow to change keyinput structure
58 * thanks Fabian Yamaguchi <fabs@cs.tu-berlin.de>,
59 * Jacob Bower <jacob.bower@ic.ac.uk> and
60 * Hiroshi Yokota for providing solutions.
61 *
62 * Oct.02, 2004 Hiroshi Miura <miura@da-cha.org>
63 * -v0.8.2 merge code of YOKOTA Hiroshi
64 * <yokota@netlab.is.tsukuba.ac.jp>.
65 * Add sticky key mode interface.
66 * Refactoring acpi_pcc_generate_keyinput().
67 *
68 * Sep.15, 2004 Hiroshi Miura <miura@da-cha.org>
69 * -v0.8 Generate key input event on input subsystem.
70 * This is based on yet another driver written by
71 * Ryuta Nakanishi.
72 *
73 * Sep.10, 2004 Hiroshi Miura <miura@da-cha.org>
74 * -v0.7 Change proc interface functions using seq_file
75 * facility as same as other ACPI drivers.
76 *
77 * Aug.28, 2004 Hiroshi Miura <miura@da-cha.org>
78 * -v0.6.4 Fix a silly error with status checking
79 *
80 * Aug.25, 2004 Hiroshi Miura <miura@da-cha.org>
81 * -v0.6.3 replace read_acpi_int by standard function
82 * acpi_evaluate_integer
83 * some clean up and make smart copyright notice.
84 * fix return value of pcc_acpi_get_key()
85 * fix checking return value of acpi_bus_register_driver()
86 *
87 * Aug.22, 2004 David Bronaugh <dbronaugh@linuxboxen.org>
88 * -v0.6.2 Add check on ACPI data (num_sifr)
89 * Coding style cleanups, better error messages/handling
90 * Fixed an off-by-one error in memory allocation
91 *
92 * Aug.21, 2004 David Bronaugh <dbronaugh@linuxboxen.org>
93 * -v0.6.1 Fix a silly error with status checking
94 *
95 * Aug.20, 2004 David Bronaugh <dbronaugh@linuxboxen.org>
96 * - v0.6 Correct brightness controls to reflect reality
97 * based on information gleaned by Hiroshi Miura
98 * and discussions with Hiroshi Miura
99 *
100 * Aug.10, 2004 Hiroshi Miura <miura@da-cha.org>
101 * - v0.5 support LCD brightness control
102 * based on the disclosed information by MEI.
103 *
104 * Jul.25, 2004 Hiroshi Miura <miura@da-cha.org>
105 * - v0.4 first post version
106 * add function to retrive SIFR
107 *
108 * Jul.24, 2004 Hiroshi Miura <miura@da-cha.org>
109 * - v0.3 get proper status of hotkey
110 *
111 * Jul.22, 2004 Hiroshi Miura <miura@da-cha.org>
112 * - v0.2 add HotKey handler
113 *
114 * Jul.17, 2004 Hiroshi Miura <miura@da-cha.org>
115 * - v0.1 start from toshiba_acpi driver written by John Belmonte
116 *
117 */
118
Harald Welte709ee532008-09-23 17:46:57 +0200119#include <linux/kernel.h>
120#include <linux/module.h>
121#include <linux/init.h>
122#include <linux/types.h>
123#include <linux/backlight.h>
124#include <linux/ctype.h>
125#include <linux/seq_file.h>
126#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +0900127#include <linux/slab.h>
Harald Welte709ee532008-09-23 17:46:57 +0200128#include <acpi/acpi_bus.h>
129#include <acpi/acpi_drivers.h>
130#include <linux/input.h>
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700131#include <linux/input/sparse-keymap.h>
Harald Welte709ee532008-09-23 17:46:57 +0200132
133
134#ifndef ACPI_HOTKEY_COMPONENT
135#define ACPI_HOTKEY_COMPONENT 0x10000000
136#endif
137
138#define _COMPONENT ACPI_HOTKEY_COMPONENT
139
140MODULE_AUTHOR("Hiroshi Miura, David Bronaugh and Harald Welte");
141MODULE_DESCRIPTION("ACPI HotKey driver for Panasonic Let's Note laptops");
142MODULE_LICENSE("GPL");
143
144#define LOGPREFIX "pcc_acpi: "
145
146/* Define ACPI PATHs */
147/* Lets note hotkeys */
148#define METHOD_HKEY_QUERY "HINF"
149#define METHOD_HKEY_SQTY "SQTY"
150#define METHOD_HKEY_SINF "SINF"
151#define METHOD_HKEY_SSET "SSET"
152#define HKEY_NOTIFY 0x80
153
154#define ACPI_PCC_DRIVER_NAME "Panasonic Laptop Support"
155#define ACPI_PCC_DEVICE_NAME "Hotkey"
156#define ACPI_PCC_CLASS "pcc"
157
158#define ACPI_PCC_INPUT_PHYS "panasonic/hkey0"
159
160/* LCD_TYPEs: 0 = Normal, 1 = Semi-transparent
161 ENV_STATEs: Normal temp=0x01, High temp=0x81, N/A=0x00
162*/
163enum SINF_BITS { SINF_NUM_BATTERIES = 0,
164 SINF_LCD_TYPE,
165 SINF_AC_MAX_BRIGHT,
166 SINF_AC_MIN_BRIGHT,
167 SINF_AC_CUR_BRIGHT,
168 SINF_DC_MAX_BRIGHT,
169 SINF_DC_MIN_BRIGHT,
170 SINF_DC_CUR_BRIGHT,
171 SINF_MUTE,
172 SINF_RESERVED,
173 SINF_ENV_STATE,
174 SINF_STICKY_KEY = 0x80,
175 };
176/* R1 handles SINF_AC_CUR_BRIGHT as SINF_CUR_BRIGHT, doesn't know AC state */
177
178static int acpi_pcc_hotkey_add(struct acpi_device *device);
179static int acpi_pcc_hotkey_remove(struct acpi_device *device, int type);
180static int acpi_pcc_hotkey_resume(struct acpi_device *device);
Bjorn Helgaascddd1f72009-04-07 15:37:27 +0000181static void acpi_pcc_hotkey_notify(struct acpi_device *device, u32 event);
Harald Welte709ee532008-09-23 17:46:57 +0200182
183static const struct acpi_device_id pcc_device_ids[] = {
184 { "MAT0012", 0},
185 { "MAT0013", 0},
186 { "MAT0018", 0},
187 { "MAT0019", 0},
188 { "", 0},
189};
Harald Weltec542aad2009-01-14 13:59:50 +0800190MODULE_DEVICE_TABLE(acpi, pcc_device_ids);
Harald Welte709ee532008-09-23 17:46:57 +0200191
192static struct acpi_driver acpi_pcc_driver = {
193 .name = ACPI_PCC_DRIVER_NAME,
194 .class = ACPI_PCC_CLASS,
195 .ids = pcc_device_ids,
196 .ops = {
197 .add = acpi_pcc_hotkey_add,
198 .remove = acpi_pcc_hotkey_remove,
199 .resume = acpi_pcc_hotkey_resume,
Bjorn Helgaascddd1f72009-04-07 15:37:27 +0000200 .notify = acpi_pcc_hotkey_notify,
Harald Welte709ee532008-09-23 17:46:57 +0200201 },
202};
203
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700204static const struct key_entry panasonic_keymap[] = {
205 { KE_KEY, 0, { KEY_RESERVED } },
206 { KE_KEY, 1, { KEY_BRIGHTNESSDOWN } },
207 { KE_KEY, 2, { KEY_BRIGHTNESSUP } },
208 { KE_KEY, 3, { KEY_DISPLAYTOGGLE } },
209 { KE_KEY, 4, { KEY_MUTE } },
210 { KE_KEY, 5, { KEY_VOLUMEDOWN } },
211 { KE_KEY, 6, { KEY_VOLUMEUP } },
212 { KE_KEY, 7, { KEY_SLEEP } },
213 { KE_KEY, 8, { KEY_PROG1 } }, /* Change CPU boost */
214 { KE_KEY, 9, { KEY_BATTERY } },
215 { KE_KEY, 10, { KEY_SUSPEND } },
216 { KE_END, 0 }
Harald Welte709ee532008-09-23 17:46:57 +0200217};
218
219struct pcc_acpi {
220 acpi_handle handle;
221 unsigned long num_sifr;
222 int sticky_mode;
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700223 u32 *sinf;
Harald Welte709ee532008-09-23 17:46:57 +0200224 struct acpi_device *device;
225 struct input_dev *input_dev;
226 struct backlight_device *backlight;
Harald Welte709ee532008-09-23 17:46:57 +0200227};
228
229struct pcc_keyinput {
230 struct acpi_hotkey *hotkey;
231};
232
233/* method access functions */
234static int acpi_pcc_write_sset(struct pcc_acpi *pcc, int func, int val)
235{
236 union acpi_object in_objs[] = {
237 { .integer.type = ACPI_TYPE_INTEGER,
238 .integer.value = func, },
239 { .integer.type = ACPI_TYPE_INTEGER,
240 .integer.value = val, },
241 };
242 struct acpi_object_list params = {
243 .count = ARRAY_SIZE(in_objs),
244 .pointer = in_objs,
245 };
246 acpi_status status = AE_OK;
247
Harald Welte709ee532008-09-23 17:46:57 +0200248 status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SSET,
249 &params, NULL);
250
Axel Lin9fab10c2010-07-07 08:21:48 +0800251 return (status == AE_OK) ? 0 : -EIO;
Harald Welte709ee532008-09-23 17:46:57 +0200252}
253
254static inline int acpi_pcc_get_sqty(struct acpi_device *device)
255{
Len Brown3e2dab92008-10-11 02:30:14 -0400256 unsigned long long s;
Harald Welte709ee532008-09-23 17:46:57 +0200257 acpi_status status;
258
Harald Welte709ee532008-09-23 17:46:57 +0200259 status = acpi_evaluate_integer(device->handle, METHOD_HKEY_SQTY,
260 NULL, &s);
261 if (ACPI_SUCCESS(status))
262 return s;
263 else {
264 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
265 "evaluation error HKEY.SQTY\n"));
266 return -EINVAL;
267 }
268}
269
270static int acpi_pcc_retrieve_biosdata(struct pcc_acpi *pcc, u32 *sinf)
271{
272 acpi_status status;
273 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
274 union acpi_object *hkey = NULL;
275 int i;
276
Hannes Edera3c27052009-03-05 20:15:44 +0100277 status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SINF, NULL,
Harald Welte709ee532008-09-23 17:46:57 +0200278 &buffer);
279 if (ACPI_FAILURE(status)) {
280 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
281 "evaluation error HKEY.SINF\n"));
282 return 0;
283 }
284
285 hkey = buffer.pointer;
286 if (!hkey || (hkey->type != ACPI_TYPE_PACKAGE)) {
287 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Invalid HKEY.SINF\n"));
288 goto end;
289 }
290
291 if (pcc->num_sifr < hkey->package.count) {
292 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
293 "SQTY reports bad SINF length\n"));
294 status = AE_ERROR;
295 goto end;
296 }
297
298 for (i = 0; i < hkey->package.count; i++) {
299 union acpi_object *element = &(hkey->package.elements[i]);
300 if (likely(element->type == ACPI_TYPE_INTEGER)) {
301 sinf[i] = element->integer.value;
302 } else
303 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
304 "Invalid HKEY.SINF data\n"));
305 }
306 sinf[hkey->package.count] = -1;
307
308end:
309 kfree(buffer.pointer);
310 return status == AE_OK;
311}
312
313/* backlight API interface functions */
314
315/* This driver currently treats AC and DC brightness identical,
316 * since we don't need to invent an interface to the core ACPI
317 * logic to receive events in case a power supply is plugged in
318 * or removed */
319
320static int bl_get(struct backlight_device *bd)
321{
322 struct pcc_acpi *pcc = bl_get_data(bd);
323
324 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf))
325 return -EIO;
326
327 return pcc->sinf[SINF_AC_CUR_BRIGHT];
328}
329
330static int bl_set_status(struct backlight_device *bd)
331{
332 struct pcc_acpi *pcc = bl_get_data(bd);
333 int bright = bd->props.brightness;
334 int rc;
335
336 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf))
337 return -EIO;
338
339 if (bright < pcc->sinf[SINF_AC_MIN_BRIGHT])
340 bright = pcc->sinf[SINF_AC_MIN_BRIGHT];
341
342 if (bright < pcc->sinf[SINF_DC_MIN_BRIGHT])
343 bright = pcc->sinf[SINF_DC_MIN_BRIGHT];
344
345 if (bright < pcc->sinf[SINF_AC_MIN_BRIGHT] ||
346 bright > pcc->sinf[SINF_AC_MAX_BRIGHT])
347 return -EINVAL;
348
349 rc = acpi_pcc_write_sset(pcc, SINF_AC_CUR_BRIGHT, bright);
350 if (rc < 0)
351 return rc;
352
353 return acpi_pcc_write_sset(pcc, SINF_DC_CUR_BRIGHT, bright);
354}
355
Bruno Prémontec57af92010-02-26 13:20:10 +0100356static const struct backlight_ops pcc_backlight_ops = {
Harald Welte709ee532008-09-23 17:46:57 +0200357 .get_brightness = bl_get,
358 .update_status = bl_set_status,
359};
360
361
362/* sysfs user interface functions */
363
364static ssize_t show_numbatt(struct device *dev, struct device_attribute *attr,
365 char *buf)
366{
367 struct acpi_device *acpi = to_acpi_device(dev);
368 struct pcc_acpi *pcc = acpi_driver_data(acpi);
369
370 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf))
371 return -EIO;
372
Harald Welteba256b42009-01-14 14:01:17 +0800373 return snprintf(buf, PAGE_SIZE, "%u\n", pcc->sinf[SINF_NUM_BATTERIES]);
Harald Welte709ee532008-09-23 17:46:57 +0200374}
375
376static ssize_t show_lcdtype(struct device *dev, struct device_attribute *attr,
377 char *buf)
378{
379 struct acpi_device *acpi = to_acpi_device(dev);
380 struct pcc_acpi *pcc = acpi_driver_data(acpi);
381
382 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf))
383 return -EIO;
384
Harald Welteba256b42009-01-14 14:01:17 +0800385 return snprintf(buf, PAGE_SIZE, "%u\n", pcc->sinf[SINF_LCD_TYPE]);
Harald Welte709ee532008-09-23 17:46:57 +0200386}
387
388static ssize_t show_mute(struct device *dev, struct device_attribute *attr,
389 char *buf)
390{
391 struct acpi_device *acpi = to_acpi_device(dev);
392 struct pcc_acpi *pcc = acpi_driver_data(acpi);
393
394 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf))
395 return -EIO;
396
Harald Welteba256b42009-01-14 14:01:17 +0800397 return snprintf(buf, PAGE_SIZE, "%u\n", pcc->sinf[SINF_MUTE]);
Harald Welte709ee532008-09-23 17:46:57 +0200398}
399
400static ssize_t show_sticky(struct device *dev, struct device_attribute *attr,
401 char *buf)
402{
403 struct acpi_device *acpi = to_acpi_device(dev);
404 struct pcc_acpi *pcc = acpi_driver_data(acpi);
405
406 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf))
407 return -EIO;
408
Harald Welteba256b42009-01-14 14:01:17 +0800409 return snprintf(buf, PAGE_SIZE, "%u\n", pcc->sinf[SINF_STICKY_KEY]);
Harald Welte709ee532008-09-23 17:46:57 +0200410}
411
412static ssize_t set_sticky(struct device *dev, struct device_attribute *attr,
413 const char *buf, size_t count)
414{
415 struct acpi_device *acpi = to_acpi_device(dev);
416 struct pcc_acpi *pcc = acpi_driver_data(acpi);
417 int val;
418
419 if (count && sscanf(buf, "%i", &val) == 1 &&
420 (val == 0 || val == 1)) {
421 acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, val);
422 pcc->sticky_mode = val;
423 }
424
425 return count;
426}
427
428static DEVICE_ATTR(numbatt, S_IRUGO, show_numbatt, NULL);
429static DEVICE_ATTR(lcdtype, S_IRUGO, show_lcdtype, NULL);
430static DEVICE_ATTR(mute, S_IRUGO, show_mute, NULL);
431static DEVICE_ATTR(sticky_key, S_IRUGO | S_IWUSR, show_sticky, set_sticky);
432
433static struct attribute *pcc_sysfs_entries[] = {
434 &dev_attr_numbatt.attr,
435 &dev_attr_lcdtype.attr,
436 &dev_attr_mute.attr,
437 &dev_attr_sticky_key.attr,
438 NULL,
439};
440
441static struct attribute_group pcc_attr_group = {
442 .name = NULL, /* put in device directory */
443 .attrs = pcc_sysfs_entries,
444};
445
446
447/* hotkey input device driver */
448
Harald Welte709ee532008-09-23 17:46:57 +0200449static void acpi_pcc_generate_keyinput(struct pcc_acpi *pcc)
450{
451 struct input_dev *hotk_input_dev = pcc->input_dev;
452 int rc;
Len Brown3e2dab92008-10-11 02:30:14 -0400453 unsigned long long result;
Harald Welte709ee532008-09-23 17:46:57 +0200454
Harald Welte709ee532008-09-23 17:46:57 +0200455 rc = acpi_evaluate_integer(pcc->handle, METHOD_HKEY_QUERY,
456 NULL, &result);
457 if (!ACPI_SUCCESS(rc)) {
458 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
459 "error getting hotkey status\n"));
460 return;
461 }
462
463 acpi_bus_generate_proc_event(pcc->device, HKEY_NOTIFY, result);
464
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700465 if (!sparse_keymap_report_event(hotk_input_dev,
466 result & 0xf, result & 0x80, false))
Harald Welte709ee532008-09-23 17:46:57 +0200467 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700468 "Unknown hotkey event: %d\n", result));
Harald Welte709ee532008-09-23 17:46:57 +0200469}
470
Bjorn Helgaascddd1f72009-04-07 15:37:27 +0000471static void acpi_pcc_hotkey_notify(struct acpi_device *device, u32 event)
Harald Welte709ee532008-09-23 17:46:57 +0200472{
Bjorn Helgaascddd1f72009-04-07 15:37:27 +0000473 struct pcc_acpi *pcc = acpi_driver_data(device);
Harald Welte709ee532008-09-23 17:46:57 +0200474
Harald Welte709ee532008-09-23 17:46:57 +0200475 switch (event) {
476 case HKEY_NOTIFY:
477 acpi_pcc_generate_keyinput(pcc);
478 break;
479 default:
480 /* nothing to do */
481 break;
482 }
483}
484
485static int acpi_pcc_init_input(struct pcc_acpi *pcc)
486{
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700487 struct input_dev *input_dev;
488 int error;
Harald Welte709ee532008-09-23 17:46:57 +0200489
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700490 input_dev = input_allocate_device();
491 if (!input_dev) {
Harald Welte709ee532008-09-23 17:46:57 +0200492 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
493 "Couldn't allocate input device for hotkey"));
494 return -ENOMEM;
495 }
496
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700497 input_dev->name = ACPI_PCC_DRIVER_NAME;
498 input_dev->phys = ACPI_PCC_INPUT_PHYS;
499 input_dev->id.bustype = BUS_HOST;
500 input_dev->id.vendor = 0x0001;
501 input_dev->id.product = 0x0001;
502 input_dev->id.version = 0x0100;
Harald Welte709ee532008-09-23 17:46:57 +0200503
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700504 error = sparse_keymap_setup(input_dev, panasonic_keymap, NULL);
505 if (error) {
506 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
507 "Unable to setup input device keymap\n"));
508 goto err_free_dev;
509 }
Harald Welte709ee532008-09-23 17:46:57 +0200510
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700511 error = input_register_device(input_dev);
512 if (error) {
513 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
514 "Unable to register input device\n"));
515 goto err_free_keymap;
516 }
Harald Welte709ee532008-09-23 17:46:57 +0200517
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700518 pcc->input_dev = input_dev;
519 return 0;
Harald Welte709ee532008-09-23 17:46:57 +0200520
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700521 err_free_keymap:
522 sparse_keymap_free(input_dev);
523 err_free_dev:
524 input_free_device(input_dev);
525 return error;
526}
Harald Welte709ee532008-09-23 17:46:57 +0200527
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700528static void acpi_pcc_destroy_input(struct pcc_acpi *pcc)
529{
530 sparse_keymap_free(pcc->input_dev);
531 input_unregister_device(pcc->input_dev);
532 /*
533 * No need to input_free_device() since core input API refcounts
534 * and free()s the device.
535 */
Harald Welte709ee532008-09-23 17:46:57 +0200536}
537
538/* kernel module interface */
539
540static int acpi_pcc_hotkey_resume(struct acpi_device *device)
541{
542 struct pcc_acpi *pcc = acpi_driver_data(device);
Harald Welte709ee532008-09-23 17:46:57 +0200543
Harald Welte709ee532008-09-23 17:46:57 +0200544 if (device == NULL || pcc == NULL)
545 return -EINVAL;
546
547 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Sticky mode restore: %d\n",
548 pcc->sticky_mode));
549
Axel Lin9fab10c2010-07-07 08:21:48 +0800550 return acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, pcc->sticky_mode);
Harald Welte709ee532008-09-23 17:46:57 +0200551}
552
553static int acpi_pcc_hotkey_add(struct acpi_device *device)
554{
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500555 struct backlight_properties props;
Harald Welte709ee532008-09-23 17:46:57 +0200556 struct pcc_acpi *pcc;
557 int num_sifr, result;
558
Harald Welte709ee532008-09-23 17:46:57 +0200559 if (!device)
560 return -EINVAL;
561
562 num_sifr = acpi_pcc_get_sqty(device);
563
564 if (num_sifr > 255) {
565 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "num_sifr too large"));
566 return -ENODEV;
567 }
568
569 pcc = kzalloc(sizeof(struct pcc_acpi), GFP_KERNEL);
570 if (!pcc) {
571 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
572 "Couldn't allocate mem for pcc"));
573 return -ENOMEM;
574 }
575
576 pcc->sinf = kzalloc(sizeof(u32) * (num_sifr + 1), GFP_KERNEL);
577 if (!pcc->sinf) {
578 result = -ENOMEM;
579 goto out_hotkey;
580 }
581
582 pcc->device = device;
583 pcc->handle = device->handle;
584 pcc->num_sifr = num_sifr;
Len Brown3e2dab92008-10-11 02:30:14 -0400585 device->driver_data = pcc;
Harald Welte709ee532008-09-23 17:46:57 +0200586 strcpy(acpi_device_name(device), ACPI_PCC_DEVICE_NAME);
587 strcpy(acpi_device_class(device), ACPI_PCC_CLASS);
588
589 result = acpi_pcc_init_input(pcc);
590 if (result) {
591 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
592 "Error installing keyinput handler\n"));
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700593 goto out_sinf;
Harald Welte709ee532008-09-23 17:46:57 +0200594 }
595
Harald Welte709ee532008-09-23 17:46:57 +0200596 if (!acpi_pcc_retrieve_biosdata(pcc, pcc->sinf)) {
597 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
598 "Couldn't retrieve BIOS data\n"));
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500599 goto out_input;
Harald Welte709ee532008-09-23 17:46:57 +0200600 }
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500601 /* initialize backlight */
602 memset(&props, 0, sizeof(struct backlight_properties));
603 props.max_brightness = pcc->sinf[SINF_AC_MAX_BRIGHT];
604 pcc->backlight = backlight_device_register("panasonic", NULL, pcc,
605 &pcc_backlight_ops, &props);
Bruno Prémontec57af92010-02-26 13:20:10 +0100606 if (IS_ERR(pcc->backlight)) {
607 result = PTR_ERR(pcc->backlight);
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700608 goto out_input;
Bruno Prémontec57af92010-02-26 13:20:10 +0100609 }
Harald Welte709ee532008-09-23 17:46:57 +0200610
611 /* read the initial brightness setting from the hardware */
Harald Welte709ee532008-09-23 17:46:57 +0200612 pcc->backlight->props.brightness = pcc->sinf[SINF_AC_CUR_BRIGHT];
613
614 /* read the initial sticky key mode from the hardware */
615 pcc->sticky_mode = pcc->sinf[SINF_STICKY_KEY];
616
617 /* add sysfs attributes */
618 result = sysfs_create_group(&device->dev.kobj, &pcc_attr_group);
619 if (result)
620 goto out_backlight;
621
622 return 0;
623
624out_backlight:
625 backlight_device_unregister(pcc->backlight);
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700626out_input:
627 acpi_pcc_destroy_input(pcc);
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500628out_sinf:
629 kfree(pcc->sinf);
Harald Welte709ee532008-09-23 17:46:57 +0200630out_hotkey:
631 kfree(pcc);
632
633 return result;
634}
635
636static int __init acpi_pcc_init(void)
637{
638 int result = 0;
639
Harald Welte709ee532008-09-23 17:46:57 +0200640 if (acpi_disabled)
641 return -ENODEV;
642
643 result = acpi_bus_register_driver(&acpi_pcc_driver);
644 if (result < 0) {
645 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
646 "Error registering hotkey driver\n"));
647 return -ENODEV;
648 }
649
650 return 0;
651}
652
653static int acpi_pcc_hotkey_remove(struct acpi_device *device, int type)
654{
655 struct pcc_acpi *pcc = acpi_driver_data(device);
656
Harald Welte709ee532008-09-23 17:46:57 +0200657 if (!device || !pcc)
658 return -EINVAL;
659
660 sysfs_remove_group(&device->dev.kobj, &pcc_attr_group);
661
662 backlight_device_unregister(pcc->backlight);
663
Dmitry Torokhov1a765ca2010-08-04 22:30:02 -0700664 acpi_pcc_destroy_input(pcc);
Harald Welte709ee532008-09-23 17:46:57 +0200665
666 kfree(pcc->sinf);
667 kfree(pcc);
668
669 return 0;
670}
671
672static void __exit acpi_pcc_exit(void)
673{
Harald Welte709ee532008-09-23 17:46:57 +0200674 acpi_bus_unregister_driver(&acpi_pcc_driver);
675}
676
677module_init(acpi_pcc_init);
678module_exit(acpi_pcc_exit);