blob: 8edfb92f7ede258ef665aa7dabfc1aeea73b87ab [file] [log] [blame]
Luming Yu79cda7d2005-08-03 18:07:59 -04001/*
2 * hotkey.c - ACPI Hotkey Driver ($Revision: 0.2 $)
Luming Yufb9802f2005-03-18 18:03:45 -05003 *
4 * Copyright (C) 2004 Luming Yu <luming.yu@intel.com>
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
21 *
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23 */
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/init.h>
27#include <linux/types.h>
28#include <linux/proc_fs.h>
29#include <linux/sched.h>
30#include <linux/kmod.h>
31#include <linux/seq_file.h>
32#include <acpi/acpi_drivers.h>
33#include <acpi/acpi_bus.h>
34#include <asm/uaccess.h>
35
36#define HOTKEY_ACPI_VERSION "0.1"
37
38#define HOTKEY_PROC "hotkey"
39#define HOTKEY_EV_CONFIG "event_config"
40#define HOTKEY_PL_CONFIG "poll_config"
41#define HOTKEY_ACTION "action"
42#define HOTKEY_INFO "info"
43
44#define ACPI_HOTK_NAME "Generic Hotkey Driver"
45#define ACPI_HOTK_CLASS "Hotkey"
46#define ACPI_HOTK_DEVICE_NAME "Hotkey"
47#define ACPI_HOTK_HID "Unknown?"
48#define ACPI_HOTKEY_COMPONENT 0x20000000
49
50#define ACPI_HOTKEY_EVENT 0x1
51#define ACPI_HOTKEY_POLLING 0x2
52#define ACPI_UNDEFINED_EVENT 0xf
53
Luming Yu79cda7d2005-08-03 18:07:59 -040054#define RESULT_STR_LEN 80
Luming Yufb9802f2005-03-18 18:03:45 -050055
Luming Yu79cda7d2005-08-03 18:07:59 -040056#define ACTION_METHOD 0
57#define POLL_METHOD 1
Luming Yufb9802f2005-03-18 18:03:45 -050058
Luming Yu79cda7d2005-08-03 18:07:59 -040059#define IS_EVENT(e) ((e) <= 10000 && (e) >0)
60#define IS_POLL(e) ((e) > 10000)
61#define IS_OTHERS(e) ((e)<=0 || (e)>=20000)
Luming Yufb9802f2005-03-18 18:03:45 -050062#define _COMPONENT ACPI_HOTKEY_COMPONENT
63ACPI_MODULE_NAME("acpi_hotkey")
64
Len Brown4be44fc2005-08-05 00:44:28 -040065 MODULE_AUTHOR("luming.yu@intel.com");
Luming Yufb9802f2005-03-18 18:03:45 -050066MODULE_DESCRIPTION(ACPI_HOTK_NAME);
67MODULE_LICENSE("GPL");
68
69/* standardized internal hotkey number/event */
70enum {
71 /* Video Extension event */
72 HK_EVENT_CYCLE_OUTPUT_DEVICE = 0x80,
73 HK_EVENT_OUTPUT_DEVICE_STATUS_CHANGE,
74 HK_EVENT_CYCLE_DISPLAY_OUTPUT,
75 HK_EVENT_NEXT_DISPLAY_OUTPUT,
76 HK_EVENT_PREVIOUS_DISPLAY_OUTPUT,
77 HK_EVENT_CYCLE_BRIGHTNESS,
78 HK_EVENT_INCREASE_BRIGHTNESS,
79 HK_EVENT_DECREASE_BRIGHTNESS,
80 HK_EVENT_ZERO_BRIGHTNESS,
81 HK_EVENT_DISPLAY_DEVICE_OFF,
82
83 /* Snd Card event */
84 HK_EVENT_VOLUME_MUTE,
85 HK_EVENT_VOLUME_INCLREASE,
86 HK_EVENT_VOLUME_DECREASE,
87
88 /* running state control */
89 HK_EVENT_ENTERRING_S3,
90 HK_EVENT_ENTERRING_S4,
91 HK_EVENT_ENTERRING_S5,
92};
93
Handle X5672bde2006-08-14 22:37:27 -070094enum conf_entry_enum {
95 bus_handle = 0,
96 bus_method = 1,
97 action_handle = 2,
98 method = 3,
99 LAST_CONF_ENTRY
100};
101
Luming Yufb9802f2005-03-18 18:03:45 -0500102/* procdir we use */
103static struct proc_dir_entry *hotkey_proc_dir;
104static struct proc_dir_entry *hotkey_config;
105static struct proc_dir_entry *hotkey_poll_config;
106static struct proc_dir_entry *hotkey_action;
107static struct proc_dir_entry *hotkey_info;
108
109/* linkage for all type of hotkey */
110struct acpi_hotkey_link {
111 struct list_head entries;
112 int hotkey_type; /* event or polling based hotkey */
113 int hotkey_standard_num; /* standardized hotkey(event) number */
114};
115
116/* event based hotkey */
117struct acpi_event_hotkey {
118 struct acpi_hotkey_link hotkey_link;
119 int flag;
120 acpi_handle bus_handle; /* bus to install notify handler */
121 int external_hotkey_num; /* external hotkey/event number */
122 acpi_handle action_handle; /* acpi handle attached aml action method */
123 char *action_method; /* action method */
124};
125
Luming Yu79cda7d2005-08-03 18:07:59 -0400126/*
Luming Yufb9802f2005-03-18 18:03:45 -0500127 * There are two ways to poll status
128 * 1. directy call read_xxx method, without any arguments passed in
129 * 2. call write_xxx method, with arguments passed in, you need
130 * the result is saved in acpi_polling_hotkey.poll_result.
131 * anthoer read command through polling interface.
132 *
133 */
134
135/* polling based hotkey */
136struct acpi_polling_hotkey {
137 struct acpi_hotkey_link hotkey_link;
138 int flag;
139 acpi_handle poll_handle; /* acpi handle attached polling method */
140 char *poll_method; /* poll method */
141 acpi_handle action_handle; /* acpi handle attached action method */
142 char *action_method; /* action method */
Luming Yu79cda7d2005-08-03 18:07:59 -0400143 union acpi_object *poll_result; /* polling_result */
Luming Yufb9802f2005-03-18 18:03:45 -0500144 struct proc_dir_entry *proc;
145};
146
147/* hotkey object union */
148union acpi_hotkey {
149 struct list_head entries;
150 struct acpi_hotkey_link link;
151 struct acpi_event_hotkey event_hotkey;
152 struct acpi_polling_hotkey poll_hotkey;
153};
154
155/* hotkey object list */
156struct acpi_hotkey_list {
157 struct list_head *entries;
158 int count;
159};
160
161static int auto_hotkey_add(struct acpi_device *device);
162static int auto_hotkey_remove(struct acpi_device *device, int type);
163
164static struct acpi_driver hotkey_driver = {
165 .name = ACPI_HOTK_NAME,
166 .class = ACPI_HOTK_CLASS,
167 .ids = ACPI_HOTK_HID,
168 .ops = {
169 .add = auto_hotkey_add,
170 .remove = auto_hotkey_remove,
171 },
172};
173
Luming Yu79cda7d2005-08-03 18:07:59 -0400174static void free_hotkey_device(union acpi_hotkey *key);
175static void free_hotkey_buffer(union acpi_hotkey *key);
176static void free_poll_hotkey_buffer(union acpi_hotkey *key);
Luming Yufb9802f2005-03-18 18:03:45 -0500177static int hotkey_open_config(struct inode *inode, struct file *file);
Luming Yu79cda7d2005-08-03 18:07:59 -0400178static int hotkey_poll_open_config(struct inode *inode, struct file *file);
Luming Yufb9802f2005-03-18 18:03:45 -0500179static ssize_t hotkey_write_config(struct file *file,
180 const char __user * buffer,
181 size_t count, loff_t * data);
Luming Yufb9802f2005-03-18 18:03:45 -0500182static int hotkey_info_open_fs(struct inode *inode, struct file *file);
183static int hotkey_action_open_fs(struct inode *inode, struct file *file);
184static ssize_t hotkey_execute_aml_method(struct file *file,
185 const char __user * buffer,
186 size_t count, loff_t * data);
187static int hotkey_config_seq_show(struct seq_file *seq, void *offset);
Luming Yu79cda7d2005-08-03 18:07:59 -0400188static int hotkey_poll_config_seq_show(struct seq_file *seq, void *offset);
Luming Yufb9802f2005-03-18 18:03:45 -0500189static int hotkey_polling_open_fs(struct inode *inode, struct file *file);
Luming Yu79cda7d2005-08-03 18:07:59 -0400190static union acpi_hotkey *get_hotkey_by_event(struct
Len Brown4be44fc2005-08-05 00:44:28 -0400191 acpi_hotkey_list
192 *hotkey_list, int event);
Luming Yufb9802f2005-03-18 18:03:45 -0500193
194/* event based config */
Arjan van de Vend7508032006-07-04 13:06:00 -0400195static const struct file_operations hotkey_config_fops = {
Luming Yufb9802f2005-03-18 18:03:45 -0500196 .open = hotkey_open_config,
197 .read = seq_read,
198 .write = hotkey_write_config,
199 .llseek = seq_lseek,
200 .release = single_release,
201};
202
203/* polling based config */
Arjan van de Vend7508032006-07-04 13:06:00 -0400204static const struct file_operations hotkey_poll_config_fops = {
Luming Yu79cda7d2005-08-03 18:07:59 -0400205 .open = hotkey_poll_open_config,
Luming Yufb9802f2005-03-18 18:03:45 -0500206 .read = seq_read,
Luming Yu79cda7d2005-08-03 18:07:59 -0400207 .write = hotkey_write_config,
Luming Yufb9802f2005-03-18 18:03:45 -0500208 .llseek = seq_lseek,
209 .release = single_release,
210};
211
212/* hotkey driver info */
Arjan van de Vend7508032006-07-04 13:06:00 -0400213static const struct file_operations hotkey_info_fops = {
Luming Yufb9802f2005-03-18 18:03:45 -0500214 .open = hotkey_info_open_fs,
215 .read = seq_read,
216 .llseek = seq_lseek,
217 .release = single_release,
218};
219
220/* action */
Arjan van de Vend7508032006-07-04 13:06:00 -0400221static const struct file_operations hotkey_action_fops = {
Luming Yufb9802f2005-03-18 18:03:45 -0500222 .open = hotkey_action_open_fs,
223 .read = seq_read,
224 .write = hotkey_execute_aml_method,
225 .llseek = seq_lseek,
226 .release = single_release,
227};
228
229/* polling results */
Arjan van de Vend7508032006-07-04 13:06:00 -0400230static const struct file_operations hotkey_polling_fops = {
Luming Yufb9802f2005-03-18 18:03:45 -0500231 .open = hotkey_polling_open_fs,
232 .read = seq_read,
233 .llseek = seq_lseek,
234 .release = single_release,
235};
236
237struct acpi_hotkey_list global_hotkey_list; /* link all ev or pl hotkey */
238struct list_head hotkey_entries; /* head of the list of hotkey_list */
239
240static int hotkey_info_seq_show(struct seq_file *seq, void *offset)
241{
Luming Yufb9802f2005-03-18 18:03:45 -0500242
Luming Yu79cda7d2005-08-03 18:07:59 -0400243 seq_printf(seq, "Hotkey generic driver ver: %s\n", HOTKEY_ACPI_VERSION);
Luming Yufb9802f2005-03-18 18:03:45 -0500244
Patrick Mocheld550d982006-06-27 00:41:40 -0400245 return 0;
Luming Yufb9802f2005-03-18 18:03:45 -0500246}
247
248static int hotkey_info_open_fs(struct inode *inode, struct file *file)
249{
250 return single_open(file, hotkey_info_seq_show, PDE(inode)->data);
251}
252
253static char *format_result(union acpi_object *object)
254{
Handle X5672bde2006-08-14 22:37:27 -0700255 char *buf;
Len Brown4be44fc2005-08-05 00:44:28 -0400256
Handle X5672bde2006-08-14 22:37:27 -0700257 buf = kzalloc(RESULT_STR_LEN, GFP_KERNEL);
258 if (!buf)
259 return NULL;
Luming Yufb9802f2005-03-18 18:03:45 -0500260 /* Now, just support integer type */
261 if (object->type == ACPI_TYPE_INTEGER)
Luming Yu79cda7d2005-08-03 18:07:59 -0400262 sprintf(buf, "%d\n", (u32) object->integer.value);
Handle X5672bde2006-08-14 22:37:27 -0700263 return buf;
Luming Yufb9802f2005-03-18 18:03:45 -0500264}
265
266static int hotkey_polling_seq_show(struct seq_file *seq, void *offset)
267{
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200268 struct acpi_polling_hotkey *poll_hotkey = seq->private;
Luming Yu79cda7d2005-08-03 18:07:59 -0400269 char *buf;
Luming Yufb9802f2005-03-18 18:03:45 -0500270
Luming Yufb9802f2005-03-18 18:03:45 -0500271
Len Brown4be44fc2005-08-05 00:44:28 -0400272 if (poll_hotkey->poll_result) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400273 buf = format_result(poll_hotkey->poll_result);
Len Brown4be44fc2005-08-05 00:44:28 -0400274 if (buf)
Luming Yu79cda7d2005-08-03 18:07:59 -0400275 seq_printf(seq, "%s", buf);
276 kfree(buf);
277 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400278 return 0;
Luming Yufb9802f2005-03-18 18:03:45 -0500279}
280
281static int hotkey_polling_open_fs(struct inode *inode, struct file *file)
282{
283 return single_open(file, hotkey_polling_seq_show, PDE(inode)->data);
284}
285
286static int hotkey_action_open_fs(struct inode *inode, struct file *file)
287{
288 return single_open(file, hotkey_info_seq_show, PDE(inode)->data);
289}
290
291/* Mapping external hotkey number to standardized hotkey event num */
292static int hotkey_get_internal_event(int event, struct acpi_hotkey_list *list)
293{
Luming Yu79cda7d2005-08-03 18:07:59 -0400294 struct list_head *entries;
295 int val = -1;
Luming Yufb9802f2005-03-18 18:03:45 -0500296
Luming Yufb9802f2005-03-18 18:03:45 -0500297
Luming Yu79cda7d2005-08-03 18:07:59 -0400298 list_for_each(entries, list->entries) {
Luming Yufb9802f2005-03-18 18:03:45 -0500299 union acpi_hotkey *key =
300 container_of(entries, union acpi_hotkey, entries);
301 if (key->link.hotkey_type == ACPI_HOTKEY_EVENT
Len Brown4be44fc2005-08-05 00:44:28 -0400302 && key->event_hotkey.external_hotkey_num == event) {
Luming Yufb9802f2005-03-18 18:03:45 -0500303 val = key->link.hotkey_standard_num;
Luming Yu79cda7d2005-08-03 18:07:59 -0400304 break;
305 }
Luming Yufb9802f2005-03-18 18:03:45 -0500306 }
307
Patrick Mocheld550d982006-06-27 00:41:40 -0400308 return val;
Luming Yufb9802f2005-03-18 18:03:45 -0500309}
310
311static void
312acpi_hotkey_notify_handler(acpi_handle handle, u32 event, void *data)
313{
314 struct acpi_device *device = NULL;
315 u32 internal_event;
316
Luming Yufb9802f2005-03-18 18:03:45 -0500317
318 if (acpi_bus_get_device(handle, &device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400319 return;
Luming Yufb9802f2005-03-18 18:03:45 -0500320
321 internal_event = hotkey_get_internal_event(event, &global_hotkey_list);
Luming Yu79cda7d2005-08-03 18:07:59 -0400322 acpi_bus_generate_event(device, internal_event, 0);
Luming Yufb9802f2005-03-18 18:03:45 -0500323
Patrick Mocheld550d982006-06-27 00:41:40 -0400324 return;
Luming Yufb9802f2005-03-18 18:03:45 -0500325}
326
327/* Need to invent automatically hotkey add method */
328static int auto_hotkey_add(struct acpi_device *device)
329{
330 /* Implement me */
331 return 0;
332}
333
334/* Need to invent automatically hotkey remove method */
335static int auto_hotkey_remove(struct acpi_device *device, int type)
336{
337 /* Implement me */
338 return 0;
339}
340
341/* Create a proc file for each polling method */
342static int create_polling_proc(union acpi_hotkey *device)
343{
344 struct proc_dir_entry *proc;
Len Brown4be44fc2005-08-05 00:44:28 -0400345 char proc_name[80];
Andrew Morton8de7a632005-03-30 22:53:30 -0500346 mode_t mode;
Luming Yufb9802f2005-03-18 18:03:45 -0500347
Andrew Morton8de7a632005-03-30 22:53:30 -0500348 mode = S_IFREG | S_IRUGO | S_IWUGO;
Luming Yufb9802f2005-03-18 18:03:45 -0500349
Luming Yu79cda7d2005-08-03 18:07:59 -0400350 sprintf(proc_name, "%d", device->link.hotkey_standard_num);
351 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400352 strcat(proc_name, device->poll_hotkey.poll_method);
353 */
Luming Yu79cda7d2005-08-03 18:07:59 -0400354 proc = create_proc_entry(proc_name, mode, hotkey_proc_dir);
Luming Yufb9802f2005-03-18 18:03:45 -0500355
356 if (!proc) {
Patrick Mocheld550d982006-06-27 00:41:40 -0400357 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500358 } else {
359 proc->proc_fops = &hotkey_polling_fops;
360 proc->owner = THIS_MODULE;
361 proc->data = device;
362 proc->uid = 0;
363 proc->gid = 0;
364 device->poll_hotkey.proc = proc;
365 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400366 return 0;
Luming Yufb9802f2005-03-18 18:03:45 -0500367}
368
Luming Yufb9802f2005-03-18 18:03:45 -0500369static int hotkey_add(union acpi_hotkey *device)
370{
371 int status = 0;
372 struct acpi_device *dev = NULL;
373
Luming Yufb9802f2005-03-18 18:03:45 -0500374
375 if (device->link.hotkey_type == ACPI_HOTKEY_EVENT) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400376 acpi_bus_get_device(device->event_hotkey.bus_handle, &dev);
Luming Yufb9802f2005-03-18 18:03:45 -0500377 status = acpi_install_notify_handler(dev->handle,
Luming Yu79cda7d2005-08-03 18:07:59 -0400378 ACPI_DEVICE_NOTIFY,
Luming Yufb9802f2005-03-18 18:03:45 -0500379 acpi_hotkey_notify_handler,
Luming Yu79cda7d2005-08-03 18:07:59 -0400380 dev);
Luming Yufb9802f2005-03-18 18:03:45 -0500381 } else /* Add polling hotkey */
382 create_polling_proc(device);
383
384 global_hotkey_list.count++;
385
386 list_add_tail(&device->link.entries, global_hotkey_list.entries);
387
Patrick Mocheld550d982006-06-27 00:41:40 -0400388 return status;
Luming Yufb9802f2005-03-18 18:03:45 -0500389}
390
391static int hotkey_remove(union acpi_hotkey *device)
392{
393 struct list_head *entries, *next;
394
Luming Yufb9802f2005-03-18 18:03:45 -0500395
396 list_for_each_safe(entries, next, global_hotkey_list.entries) {
397 union acpi_hotkey *key =
398 container_of(entries, union acpi_hotkey, entries);
399 if (key->link.hotkey_standard_num ==
400 device->link.hotkey_standard_num) {
401 list_del(&key->link.entries);
Luming Yu79cda7d2005-08-03 18:07:59 -0400402 free_hotkey_device(key);
Luming Yufb9802f2005-03-18 18:03:45 -0500403 global_hotkey_list.count--;
404 break;
405 }
406 }
Luming Yu79cda7d2005-08-03 18:07:59 -0400407 kfree(device);
Patrick Mocheld550d982006-06-27 00:41:40 -0400408 return 0;
Luming Yufb9802f2005-03-18 18:03:45 -0500409}
410
Len Brown4be44fc2005-08-05 00:44:28 -0400411static int hotkey_update(union acpi_hotkey *key)
Luming Yufb9802f2005-03-18 18:03:45 -0500412{
Luming Yu79cda7d2005-08-03 18:07:59 -0400413 struct list_head *entries;
Luming Yufb9802f2005-03-18 18:03:45 -0500414
Luming Yufb9802f2005-03-18 18:03:45 -0500415
Luming Yu79cda7d2005-08-03 18:07:59 -0400416 list_for_each(entries, global_hotkey_list.entries) {
Len Brown4be44fc2005-08-05 00:44:28 -0400417 union acpi_hotkey *tmp =
Luming Yufb9802f2005-03-18 18:03:45 -0500418 container_of(entries, union acpi_hotkey, entries);
Luming Yu79cda7d2005-08-03 18:07:59 -0400419 if (tmp->link.hotkey_standard_num ==
Luming Yufb9802f2005-03-18 18:03:45 -0500420 key->link.hotkey_standard_num) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400421 if (key->link.hotkey_type == ACPI_HOTKEY_EVENT) {
422 free_hotkey_buffer(tmp);
423 tmp->event_hotkey.bus_handle =
Len Brown4be44fc2005-08-05 00:44:28 -0400424 key->event_hotkey.bus_handle;
Luming Yu79cda7d2005-08-03 18:07:59 -0400425 tmp->event_hotkey.external_hotkey_num =
Len Brown4be44fc2005-08-05 00:44:28 -0400426 key->event_hotkey.external_hotkey_num;
Luming Yu79cda7d2005-08-03 18:07:59 -0400427 tmp->event_hotkey.action_handle =
Len Brown4be44fc2005-08-05 00:44:28 -0400428 key->event_hotkey.action_handle;
Luming Yu79cda7d2005-08-03 18:07:59 -0400429 tmp->event_hotkey.action_method =
Len Brown4be44fc2005-08-05 00:44:28 -0400430 key->event_hotkey.action_method;
Luming Yu79cda7d2005-08-03 18:07:59 -0400431 kfree(key);
432 } else {
433 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400434 char proc_name[80];
Luming Yu79cda7d2005-08-03 18:07:59 -0400435
Len Brown4be44fc2005-08-05 00:44:28 -0400436 sprintf(proc_name, "%d", tmp->link.hotkey_standard_num);
437 strcat(proc_name, tmp->poll_hotkey.poll_method);
438 remove_proc_entry(proc_name,hotkey_proc_dir);
439 */
Luming Yu79cda7d2005-08-03 18:07:59 -0400440 free_poll_hotkey_buffer(tmp);
441 tmp->poll_hotkey.poll_handle =
Len Brown4be44fc2005-08-05 00:44:28 -0400442 key->poll_hotkey.poll_handle;
Luming Yu79cda7d2005-08-03 18:07:59 -0400443 tmp->poll_hotkey.poll_method =
Len Brown4be44fc2005-08-05 00:44:28 -0400444 key->poll_hotkey.poll_method;
Luming Yu79cda7d2005-08-03 18:07:59 -0400445 tmp->poll_hotkey.action_handle =
Len Brown4be44fc2005-08-05 00:44:28 -0400446 key->poll_hotkey.action_handle;
Luming Yu79cda7d2005-08-03 18:07:59 -0400447 tmp->poll_hotkey.action_method =
Len Brown4be44fc2005-08-05 00:44:28 -0400448 key->poll_hotkey.action_method;
Luming Yu79cda7d2005-08-03 18:07:59 -0400449 tmp->poll_hotkey.poll_result =
Len Brown4be44fc2005-08-05 00:44:28 -0400450 key->poll_hotkey.poll_result;
Luming Yu79cda7d2005-08-03 18:07:59 -0400451 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400452 create_polling_proc(tmp);
453 */
Luming Yu79cda7d2005-08-03 18:07:59 -0400454 kfree(key);
455 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400456 return 0;
Luming Yufb9802f2005-03-18 18:03:45 -0500457 break;
458 }
459 }
460
Patrick Mocheld550d982006-06-27 00:41:40 -0400461 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500462}
463
464static void free_hotkey_device(union acpi_hotkey *key)
465{
466 struct acpi_device *dev;
Luming Yufb9802f2005-03-18 18:03:45 -0500467
Luming Yufb9802f2005-03-18 18:03:45 -0500468
469 if (key->link.hotkey_type == ACPI_HOTKEY_EVENT) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400470 acpi_bus_get_device(key->event_hotkey.bus_handle, &dev);
Luming Yufb9802f2005-03-18 18:03:45 -0500471 if (dev->handle)
472 acpi_remove_notify_handler(dev->handle,
Luming Yu79cda7d2005-08-03 18:07:59 -0400473 ACPI_DEVICE_NOTIFY,
Luming Yufb9802f2005-03-18 18:03:45 -0500474 acpi_hotkey_notify_handler);
Luming Yu79cda7d2005-08-03 18:07:59 -0400475 free_hotkey_buffer(key);
476 } else {
Len Brown4be44fc2005-08-05 00:44:28 -0400477 char proc_name[80];
Luming Yu79cda7d2005-08-03 18:07:59 -0400478
479 sprintf(proc_name, "%d", key->link.hotkey_standard_num);
480 /*
Len Brown4be44fc2005-08-05 00:44:28 -0400481 strcat(proc_name, key->poll_hotkey.poll_method);
482 */
483 remove_proc_entry(proc_name, hotkey_proc_dir);
Luming Yu79cda7d2005-08-03 18:07:59 -0400484 free_poll_hotkey_buffer(key);
485 }
Luming Yufb9802f2005-03-18 18:03:45 -0500486 kfree(key);
Patrick Mocheld550d982006-06-27 00:41:40 -0400487 return;
Luming Yufb9802f2005-03-18 18:03:45 -0500488}
489
Len Brown4be44fc2005-08-05 00:44:28 -0400490static void free_hotkey_buffer(union acpi_hotkey *key)
Luming Yu79cda7d2005-08-03 18:07:59 -0400491{
Handle X5672bde2006-08-14 22:37:27 -0700492 /* key would never be null, action method could be */
Luming Yu79cda7d2005-08-03 18:07:59 -0400493 kfree(key->event_hotkey.action_method);
494}
495
Len Brown4be44fc2005-08-05 00:44:28 -0400496static void free_poll_hotkey_buffer(union acpi_hotkey *key)
Luming Yu79cda7d2005-08-03 18:07:59 -0400497{
Handle X5672bde2006-08-14 22:37:27 -0700498 /* key would never be null, others could be*/
Luming Yu79cda7d2005-08-03 18:07:59 -0400499 kfree(key->poll_hotkey.action_method);
500 kfree(key->poll_hotkey.poll_method);
501 kfree(key->poll_hotkey.poll_result);
502}
Luming Yufb9802f2005-03-18 18:03:45 -0500503static int
Handle X5672bde2006-08-14 22:37:27 -0700504init_hotkey_device(union acpi_hotkey *key, char **config_entry,
505 int std_num, int external_num)
Luming Yufb9802f2005-03-18 18:03:45 -0500506{
Len Brown4be44fc2005-08-05 00:44:28 -0400507 acpi_handle tmp_handle;
Luming Yu79cda7d2005-08-03 18:07:59 -0400508 acpi_status status = AE_OK;
509
Len Brown4be44fc2005-08-05 00:44:28 -0400510 if (std_num < 0 || IS_POLL(std_num) || !key)
Luming Yu79cda7d2005-08-03 18:07:59 -0400511 goto do_fail;
512
Handle X5672bde2006-08-14 22:37:27 -0700513 if (!config_entry[bus_handle] || !config_entry[action_handle]
514 || !config_entry[method])
Luming Yu79cda7d2005-08-03 18:07:59 -0400515 goto do_fail;
516
Luming Yufb9802f2005-03-18 18:03:45 -0500517 key->link.hotkey_type = ACPI_HOTKEY_EVENT;
518 key->link.hotkey_standard_num = std_num;
519 key->event_hotkey.flag = 0;
Handle X5672bde2006-08-14 22:37:27 -0700520 key->event_hotkey.action_method = config_entry[method];
Luming Yufb9802f2005-03-18 18:03:45 -0500521
Handle X5672bde2006-08-14 22:37:27 -0700522 status = acpi_get_handle(NULL, config_entry[bus_handle],
523 &(key->event_hotkey.bus_handle));
Len Brown4be44fc2005-08-05 00:44:28 -0400524 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700525 goto do_fail_zero;
Luming Yu79cda7d2005-08-03 18:07:59 -0400526 key->event_hotkey.external_hotkey_num = external_num;
Handle X5672bde2006-08-14 22:37:27 -0700527 status = acpi_get_handle(NULL, config_entry[action_handle],
Len Brown4be44fc2005-08-05 00:44:28 -0400528 &(key->event_hotkey.action_handle));
529 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700530 goto do_fail_zero;
Luming Yu79cda7d2005-08-03 18:07:59 -0400531 status = acpi_get_handle(key->event_hotkey.action_handle,
Handle X5672bde2006-08-14 22:37:27 -0700532 config_entry[method], &tmp_handle);
Luming Yu79cda7d2005-08-03 18:07:59 -0400533 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700534 goto do_fail_zero;
Patrick Mocheld550d982006-06-27 00:41:40 -0400535 return AE_OK;
Handle X5672bde2006-08-14 22:37:27 -0700536do_fail_zero:
537 key->event_hotkey.action_method = NULL;
538do_fail:
Patrick Mocheld550d982006-06-27 00:41:40 -0400539 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500540}
541
542static int
Handle X5672bde2006-08-14 22:37:27 -0700543init_poll_hotkey_device(union acpi_hotkey *key, char **config_entry,
544 int std_num)
Luming Yufb9802f2005-03-18 18:03:45 -0500545{
Luming Yu79cda7d2005-08-03 18:07:59 -0400546 acpi_status status = AE_OK;
Len Brown4be44fc2005-08-05 00:44:28 -0400547 acpi_handle tmp_handle;
Luming Yu79cda7d2005-08-03 18:07:59 -0400548
Len Brown4be44fc2005-08-05 00:44:28 -0400549 if (std_num < 0 || IS_EVENT(std_num) || !key)
Luming Yu79cda7d2005-08-03 18:07:59 -0400550 goto do_fail;
Handle X5672bde2006-08-14 22:37:27 -0700551 if (!config_entry[bus_handle] ||!config_entry[bus_method] ||
552 !config_entry[action_handle] || !config_entry[method])
Luming Yu79cda7d2005-08-03 18:07:59 -0400553 goto do_fail;
554
Luming Yufb9802f2005-03-18 18:03:45 -0500555 key->link.hotkey_type = ACPI_HOTKEY_POLLING;
556 key->link.hotkey_standard_num = std_num;
557 key->poll_hotkey.flag = 0;
Handle X5672bde2006-08-14 22:37:27 -0700558 key->poll_hotkey.poll_method = config_entry[bus_method];
559 key->poll_hotkey.action_method = config_entry[method];
Luming Yu79cda7d2005-08-03 18:07:59 -0400560
Handle X5672bde2006-08-14 22:37:27 -0700561 status = acpi_get_handle(NULL, config_entry[bus_handle],
562 &(key->poll_hotkey.poll_handle));
Len Brown4be44fc2005-08-05 00:44:28 -0400563 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700564 goto do_fail_zero;
Luming Yu79cda7d2005-08-03 18:07:59 -0400565 status = acpi_get_handle(key->poll_hotkey.poll_handle,
Handle X5672bde2006-08-14 22:37:27 -0700566 config_entry[bus_method], &tmp_handle);
Len Brown4be44fc2005-08-05 00:44:28 -0400567 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700568 goto do_fail_zero;
Len Brown4be44fc2005-08-05 00:44:28 -0400569 status =
Handle X5672bde2006-08-14 22:37:27 -0700570 acpi_get_handle(NULL, config_entry[action_handle],
Len Brown4be44fc2005-08-05 00:44:28 -0400571 &(key->poll_hotkey.action_handle));
Luming Yu79cda7d2005-08-03 18:07:59 -0400572 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700573 goto do_fail_zero;
Luming Yu79cda7d2005-08-03 18:07:59 -0400574 status = acpi_get_handle(key->poll_hotkey.action_handle,
Handle X5672bde2006-08-14 22:37:27 -0700575 config_entry[method], &tmp_handle);
Luming Yu79cda7d2005-08-03 18:07:59 -0400576 if (ACPI_FAILURE(status))
Handle X5672bde2006-08-14 22:37:27 -0700577 goto do_fail_zero;
Luming Yufb9802f2005-03-18 18:03:45 -0500578 key->poll_hotkey.poll_result =
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200579 kmalloc(sizeof(union acpi_object), GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400580 if (!key->poll_hotkey.poll_result)
Handle X5672bde2006-08-14 22:37:27 -0700581 goto do_fail_zero;
Patrick Mocheld550d982006-06-27 00:41:40 -0400582 return AE_OK;
Handle X5672bde2006-08-14 22:37:27 -0700583
584do_fail_zero:
585 key->poll_hotkey.poll_method = NULL;
586 key->poll_hotkey.action_method = NULL;
587do_fail:
Patrick Mocheld550d982006-06-27 00:41:40 -0400588 return -ENODEV;
Luming Yufb9802f2005-03-18 18:03:45 -0500589}
590
Luming Yufb9802f2005-03-18 18:03:45 -0500591static int hotkey_open_config(struct inode *inode, struct file *file)
592{
Patrick Mocheld550d982006-06-27 00:41:40 -0400593 return (single_open
Luming Yufb9802f2005-03-18 18:03:45 -0500594 (file, hotkey_config_seq_show, PDE(inode)->data));
595}
596
Luming Yu79cda7d2005-08-03 18:07:59 -0400597static int hotkey_poll_open_config(struct inode *inode, struct file *file)
598{
Patrick Mocheld550d982006-06-27 00:41:40 -0400599 return (single_open
Luming Yu79cda7d2005-08-03 18:07:59 -0400600 (file, hotkey_poll_config_seq_show, PDE(inode)->data));
601}
602
Luming Yufb9802f2005-03-18 18:03:45 -0500603static int hotkey_config_seq_show(struct seq_file *seq, void *offset)
604{
605 struct acpi_hotkey_list *hotkey_list = &global_hotkey_list;
Luming Yu79cda7d2005-08-03 18:07:59 -0400606 struct list_head *entries;
Luming Yufb9802f2005-03-18 18:03:45 -0500607 char bus_name[ACPI_PATHNAME_MAX] = { 0 };
608 char action_name[ACPI_PATHNAME_MAX] = { 0 };
609 struct acpi_buffer bus = { ACPI_PATHNAME_MAX, bus_name };
610 struct acpi_buffer act = { ACPI_PATHNAME_MAX, action_name };
611
Luming Yufb9802f2005-03-18 18:03:45 -0500612
Luming Yu79cda7d2005-08-03 18:07:59 -0400613 list_for_each(entries, hotkey_list->entries) {
Luming Yufb9802f2005-03-18 18:03:45 -0500614 union acpi_hotkey *key =
615 container_of(entries, union acpi_hotkey, entries);
616 if (key->link.hotkey_type == ACPI_HOTKEY_EVENT) {
617 acpi_get_name(key->event_hotkey.bus_handle,
618 ACPI_NAME_TYPE_MAX, &bus);
619 acpi_get_name(key->event_hotkey.action_handle,
620 ACPI_NAME_TYPE_MAX, &act);
Luming Yu79cda7d2005-08-03 18:07:59 -0400621 seq_printf(seq, "%s:%s:%s:%d:%d\n", bus_name,
Luming Yufb9802f2005-03-18 18:03:45 -0500622 action_name,
623 key->event_hotkey.action_method,
624 key->link.hotkey_standard_num,
625 key->event_hotkey.external_hotkey_num);
Luming Yu79cda7d2005-08-03 18:07:59 -0400626 }
627 }
628 seq_puts(seq, "\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400629 return 0;
Luming Yu79cda7d2005-08-03 18:07:59 -0400630}
631
632static int hotkey_poll_config_seq_show(struct seq_file *seq, void *offset)
633{
634 struct acpi_hotkey_list *hotkey_list = &global_hotkey_list;
635 struct list_head *entries;
636 char bus_name[ACPI_PATHNAME_MAX] = { 0 };
637 char action_name[ACPI_PATHNAME_MAX] = { 0 };
638 struct acpi_buffer bus = { ACPI_PATHNAME_MAX, bus_name };
639 struct acpi_buffer act = { ACPI_PATHNAME_MAX, action_name };
640
Luming Yu79cda7d2005-08-03 18:07:59 -0400641
642 list_for_each(entries, hotkey_list->entries) {
643 union acpi_hotkey *key =
644 container_of(entries, union acpi_hotkey, entries);
645 if (key->link.hotkey_type == ACPI_HOTKEY_POLLING) {
Luming Yufb9802f2005-03-18 18:03:45 -0500646 acpi_get_name(key->poll_hotkey.poll_handle,
647 ACPI_NAME_TYPE_MAX, &bus);
648 acpi_get_name(key->poll_hotkey.action_handle,
649 ACPI_NAME_TYPE_MAX, &act);
Luming Yu79cda7d2005-08-03 18:07:59 -0400650 seq_printf(seq, "%s:%s:%s:%s:%d\n", bus_name,
Luming Yufb9802f2005-03-18 18:03:45 -0500651 key->poll_hotkey.poll_method,
652 action_name,
653 key->poll_hotkey.action_method,
654 key->link.hotkey_standard_num);
655 }
656 }
657 seq_puts(seq, "\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400658 return 0;
Luming Yufb9802f2005-03-18 18:03:45 -0500659}
660
661static int
Handle X5672bde2006-08-14 22:37:27 -0700662get_parms(char *config_record, int *cmd, char **config_entry,
663 int *internal_event_num, int *external_event_num)
Luming Yufb9802f2005-03-18 18:03:45 -0500664{
Handle X5672bde2006-08-14 22:37:27 -0700665/* the format of *config_record =
666 * "1:\d+:*" : "cmd:internal_event_num"
667 * "\d+:\w+:\w+:\w+:\w+:\d+:\d+" :
668 * "cmd:bus_handle:bus_method:action_handle:method:internal_event_num:external_event_num"
669 */
Luming Yu79cda7d2005-08-03 18:07:59 -0400670 char *tmp, *tmp1, count;
Handle X5672bde2006-08-14 22:37:27 -0700671 int i;
Luming Yufb9802f2005-03-18 18:03:45 -0500672
673 sscanf(config_record, "%d", cmd);
Len Brown4be44fc2005-08-05 00:44:28 -0400674 if (*cmd == 1) {
675 if (sscanf(config_record, "%d:%d", cmd, internal_event_num) !=
676 2)
Luming Yu79cda7d2005-08-03 18:07:59 -0400677 goto do_fail;
678 else
679 return (6);
680 }
Luming Yufb9802f2005-03-18 18:03:45 -0500681 tmp = strchr(config_record, ':');
Luming Yu79cda7d2005-08-03 18:07:59 -0400682 if (!tmp)
683 goto do_fail;
Luming Yufb9802f2005-03-18 18:03:45 -0500684 tmp++;
Handle X5672bde2006-08-14 22:37:27 -0700685 for (i = 0; i < LAST_CONF_ENTRY; i++) {
686 tmp1 = strchr(tmp, ':');
687 if (!tmp1) {
688 goto do_fail;
689 }
690 count = tmp1 - tmp;
691 config_entry[i] = kzalloc(count + 1, GFP_KERNEL);
692 if (!config_entry[i])
693 goto handle_failure;
694 strncpy(config_entry[i], tmp, count);
695 tmp = tmp1 + 1;
696 }
697 if (sscanf(tmp, "%d:%d", internal_event_num, external_event_num) <= 0)
698 goto handle_failure;
699 if (!IS_OTHERS(*internal_event_num)) {
700 return 6;
701 }
702handle_failure:
703 while (i-- > 0)
704 kfree(config_entry[i]);
705do_fail:
Patrick Mocheld550d982006-06-27 00:41:40 -0400706 return -1;
Luming Yufb9802f2005-03-18 18:03:45 -0500707}
708
709/* count is length for one input record */
710static ssize_t hotkey_write_config(struct file *file,
711 const char __user * buffer,
712 size_t count, loff_t * data)
713{
Luming Yu79cda7d2005-08-03 18:07:59 -0400714 char *config_record = NULL;
Handle X5672bde2006-08-14 22:37:27 -0700715 char *config_entry[LAST_CONF_ENTRY];
Luming Yufb9802f2005-03-18 18:03:45 -0500716 int cmd, internal_event_num, external_event_num;
717 int ret = 0;
Handle X5672bde2006-08-14 22:37:27 -0700718 union acpi_hotkey *key = kzalloc(sizeof(union acpi_hotkey), GFP_KERNEL);
Luming Yufb9802f2005-03-18 18:03:45 -0500719
Handle X5672bde2006-08-14 22:37:27 -0700720 if (!key)
Patrick Mocheld550d982006-06-27 00:41:40 -0400721 return -ENOMEM;
Luming Yufb9802f2005-03-18 18:03:45 -0500722
Handle X5672bde2006-08-14 22:37:27 -0700723 config_record = kzalloc(count + 1, GFP_KERNEL);
724 if (!config_record) {
725 kfree(key);
726 return -ENOMEM;
727 }
728
Luming Yufb9802f2005-03-18 18:03:45 -0500729 if (copy_from_user(config_record, buffer, count)) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400730 kfree(config_record);
Handle X5672bde2006-08-14 22:37:27 -0700731 kfree(key);
Len Brown64684632006-06-26 23:41:38 -0400732 printk(KERN_ERR PREFIX "Invalid data\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400733 return -EINVAL;
Luming Yufb9802f2005-03-18 18:03:45 -0500734 }
Handle X5672bde2006-08-14 22:37:27 -0700735 ret = get_parms(config_record, &cmd, config_entry,
736 &internal_event_num, &external_event_num);
Luming Yu79cda7d2005-08-03 18:07:59 -0400737 kfree(config_record);
Luming Yufb9802f2005-03-18 18:03:45 -0500738 if (ret != 6) {
Len Brown64684632006-06-26 23:41:38 -0400739 printk(KERN_ERR PREFIX "Invalid data format ret=%d\n", ret);
Patrick Mocheld550d982006-06-27 00:41:40 -0400740 return -EINVAL;
Luming Yufb9802f2005-03-18 18:03:45 -0500741 }
742
Len Brown4be44fc2005-08-05 00:44:28 -0400743 if (cmd == 1) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400744 union acpi_hotkey *tmp = NULL;
745 tmp = get_hotkey_by_event(&global_hotkey_list,
Len Brown4be44fc2005-08-05 00:44:28 -0400746 internal_event_num);
747 if (!tmp)
Len Brown64684632006-06-26 23:41:38 -0400748 printk(KERN_ERR PREFIX "Invalid key\n");
Luming Yu79cda7d2005-08-03 18:07:59 -0400749 else
750 memcpy(key, tmp, sizeof(union acpi_hotkey));
751 goto cont_cmd;
752 }
753 if (IS_EVENT(internal_event_num)) {
Handle X5672bde2006-08-14 22:37:27 -0700754 if (init_hotkey_device(key, config_entry,
755 internal_event_num, external_event_num))
756 goto init_hotkey_fail;
757 } else {
758 if (init_poll_hotkey_device(key, config_entry,
759 internal_event_num))
760 goto init_poll_hotkey_fail;
Luming Yufb9802f2005-03-18 18:03:45 -0500761 }
Handle X5672bde2006-08-14 22:37:27 -0700762cont_cmd:
Luming Yufb9802f2005-03-18 18:03:45 -0500763 switch (cmd) {
764 case 0:
Handle X5672bde2006-08-14 22:37:27 -0700765 if (get_hotkey_by_event(&global_hotkey_list,
766 key->link.hotkey_standard_num))
Luming Yu79cda7d2005-08-03 18:07:59 -0400767 goto fail_out;
768 else
769 hotkey_add(key);
Luming Yufb9802f2005-03-18 18:03:45 -0500770 break;
771 case 1:
772 hotkey_remove(key);
773 break;
774 case 2:
Handle X5672bde2006-08-14 22:37:27 -0700775 /* key is kfree()ed if matched*/
Len Brown4be44fc2005-08-05 00:44:28 -0400776 if (hotkey_update(key))
Luming Yu79cda7d2005-08-03 18:07:59 -0400777 goto fail_out;
Luming Yufb9802f2005-03-18 18:03:45 -0500778 break;
779 default:
Luming Yu79cda7d2005-08-03 18:07:59 -0400780 goto fail_out;
Luming Yufb9802f2005-03-18 18:03:45 -0500781 break;
782 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400783 return count;
Handle X5672bde2006-08-14 22:37:27 -0700784
785init_poll_hotkey_fail: /* failed init_poll_hotkey_device */
786 kfree(config_entry[bus_method]);
787 config_entry[bus_method] = NULL;
788init_hotkey_fail: /* failed init_hotkey_device */
789 kfree(config_entry[method]);
790fail_out:
791 kfree(config_entry[bus_handle]);
792 kfree(config_entry[action_handle]);
793 /* No double free since elements =NULL for error cases */
794 if (IS_EVENT(internal_event_num)) {
795 if (config_entry[bus_method])
796 kfree(config_entry[bus_method]);
797 free_hotkey_buffer(key); /* frees [method] */
798 } else
799 free_poll_hotkey_buffer(key); /* frees [bus_method]+[method] */
Luming Yu79cda7d2005-08-03 18:07:59 -0400800 kfree(key);
Len Brown64684632006-06-26 23:41:38 -0400801 printk(KERN_ERR PREFIX "invalid key\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400802 return -EINVAL;
Luming Yufb9802f2005-03-18 18:03:45 -0500803}
804
Luming Yu79cda7d2005-08-03 18:07:59 -0400805/*
Luming Yufb9802f2005-03-18 18:03:45 -0500806 * This function evaluates an ACPI method, given an int as parameter, the
807 * method is searched within the scope of the handle, can be NULL. The output
808 * of the method is written is output, which can also be NULL
809 *
810 * returns 1 if write is successful, 0 else.
811 */
812static int write_acpi_int(acpi_handle handle, const char *method, int val,
813 struct acpi_buffer *output)
814{
815 struct acpi_object_list params; /* list of input parameters (an int here) */
816 union acpi_object in_obj; /* the only param we use */
817 acpi_status status;
818
Luming Yufb9802f2005-03-18 18:03:45 -0500819 params.count = 1;
820 params.pointer = &in_obj;
821 in_obj.type = ACPI_TYPE_INTEGER;
822 in_obj.integer.value = val;
823
824 status = acpi_evaluate_object(handle, (char *)method, &params, output);
825
Patrick Mocheld550d982006-06-27 00:41:40 -0400826 return (status == AE_OK);
Luming Yufb9802f2005-03-18 18:03:45 -0500827}
828
Len Brown4be44fc2005-08-05 00:44:28 -0400829static int read_acpi_int(acpi_handle handle, const char *method,
830 union acpi_object *val)
Luming Yufb9802f2005-03-18 18:03:45 -0500831{
832 struct acpi_buffer output;
833 union acpi_object out_obj;
834 acpi_status status;
835
Luming Yufb9802f2005-03-18 18:03:45 -0500836 output.length = sizeof(out_obj);
837 output.pointer = &out_obj;
838
839 status = acpi_evaluate_object(handle, (char *)method, NULL, &output);
Len Brown4be44fc2005-08-05 00:44:28 -0400840 if (val) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400841 val->integer.value = out_obj.integer.value;
842 val->type = out_obj.type;
843 } else
Len Brown64684632006-06-26 23:41:38 -0400844 printk(KERN_ERR PREFIX "null val pointer\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400845 return ((status == AE_OK)
Luming Yufb9802f2005-03-18 18:03:45 -0500846 && (out_obj.type == ACPI_TYPE_INTEGER));
847}
848
Luming Yu79cda7d2005-08-03 18:07:59 -0400849static union acpi_hotkey *get_hotkey_by_event(struct
Len Brown4be44fc2005-08-05 00:44:28 -0400850 acpi_hotkey_list
851 *hotkey_list, int event)
Luming Yufb9802f2005-03-18 18:03:45 -0500852{
Luming Yu79cda7d2005-08-03 18:07:59 -0400853 struct list_head *entries;
Luming Yufb9802f2005-03-18 18:03:45 -0500854
Luming Yu79cda7d2005-08-03 18:07:59 -0400855 list_for_each(entries, hotkey_list->entries) {
Luming Yufb9802f2005-03-18 18:03:45 -0500856 union acpi_hotkey *key =
857 container_of(entries, union acpi_hotkey, entries);
Luming Yu79cda7d2005-08-03 18:07:59 -0400858 if (key->link.hotkey_standard_num == event) {
Len Brown4be44fc2005-08-05 00:44:28 -0400859 return (key);
Luming Yufb9802f2005-03-18 18:03:45 -0500860 }
861 }
Len Brown4be44fc2005-08-05 00:44:28 -0400862 return (NULL);
Luming Yufb9802f2005-03-18 18:03:45 -0500863}
864
Luming Yu79cda7d2005-08-03 18:07:59 -0400865/*
Luming Yufb9802f2005-03-18 18:03:45 -0500866 * user call AML method interface:
867 * Call convention:
868 * echo "event_num: arg type : value"
869 * example: echo "1:1:30" > /proc/acpi/action
870 * Just support 1 integer arg passing to AML method
871 */
872
873static ssize_t hotkey_execute_aml_method(struct file *file,
874 const char __user * buffer,
875 size_t count, loff_t * data)
876{
877 struct acpi_hotkey_list *hotkey_list = &global_hotkey_list;
Luming Yu79cda7d2005-08-03 18:07:59 -0400878 char *arg;
Len Brown4be44fc2005-08-05 00:44:28 -0400879 int event, method_type, type, value;
Luming Yu79cda7d2005-08-03 18:07:59 -0400880 union acpi_hotkey *key;
Luming Yufb9802f2005-03-18 18:03:45 -0500881
Luming Yufb9802f2005-03-18 18:03:45 -0500882
Handle X5672bde2006-08-14 22:37:27 -0700883 arg = kzalloc(count + 1, GFP_KERNEL);
Len Brown4be44fc2005-08-05 00:44:28 -0400884 if (!arg)
Patrick Mocheld550d982006-06-27 00:41:40 -0400885 return -ENOMEM;
Luming Yufb9802f2005-03-18 18:03:45 -0500886
887 if (copy_from_user(arg, buffer, count)) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400888 kfree(arg);
Len Brown64684632006-06-26 23:41:38 -0400889 printk(KERN_ERR PREFIX "Invalid argument 2\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400890 return -EINVAL;
Luming Yufb9802f2005-03-18 18:03:45 -0500891 }
892
Len Brown4be44fc2005-08-05 00:44:28 -0400893 if (sscanf(arg, "%d:%d:%d:%d", &event, &method_type, &type, &value) !=
894 4) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400895 kfree(arg);
Len Brown64684632006-06-26 23:41:38 -0400896 printk(KERN_ERR PREFIX "Invalid argument 3\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400897 return -EINVAL;
Luming Yufb9802f2005-03-18 18:03:45 -0500898 }
Luming Yu79cda7d2005-08-03 18:07:59 -0400899 kfree(arg);
Luming Yufb9802f2005-03-18 18:03:45 -0500900 if (type == ACPI_TYPE_INTEGER) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400901 key = get_hotkey_by_event(hotkey_list, event);
Len Brown4be44fc2005-08-05 00:44:28 -0400902 if (!key)
Luming Yu79cda7d2005-08-03 18:07:59 -0400903 goto do_fail;
Luming Yufb9802f2005-03-18 18:03:45 -0500904 if (IS_EVENT(event))
Luming Yu79cda7d2005-08-03 18:07:59 -0400905 write_acpi_int(key->event_hotkey.action_handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400906 key->event_hotkey.action_method, value,
907 NULL);
Luming Yufb9802f2005-03-18 18:03:45 -0500908 else if (IS_POLL(event)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400909 if (method_type == POLL_METHOD)
Luming Yu79cda7d2005-08-03 18:07:59 -0400910 read_acpi_int(key->poll_hotkey.poll_handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400911 key->poll_hotkey.poll_method,
912 key->poll_hotkey.poll_result);
913 else if (method_type == ACTION_METHOD)
Luming Yu79cda7d2005-08-03 18:07:59 -0400914 write_acpi_int(key->poll_hotkey.action_handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400915 key->poll_hotkey.action_method,
916 value, NULL);
Luming Yu79cda7d2005-08-03 18:07:59 -0400917 else
918 goto do_fail;
919
Luming Yufb9802f2005-03-18 18:03:45 -0500920 }
921 } else {
Len Browncece9292006-06-26 23:04:31 -0400922 printk(KERN_WARNING "Not supported\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400923 return -EINVAL;
Luming Yufb9802f2005-03-18 18:03:45 -0500924 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400925 return count;
Len Brown4be44fc2005-08-05 00:44:28 -0400926 do_fail:
Patrick Mocheld550d982006-06-27 00:41:40 -0400927 return -EINVAL;
Luming Yu79cda7d2005-08-03 18:07:59 -0400928
Luming Yufb9802f2005-03-18 18:03:45 -0500929}
930
931static int __init hotkey_init(void)
932{
933 int result;
934 mode_t mode = S_IFREG | S_IRUGO | S_IWUGO;
935
Luming Yufb9802f2005-03-18 18:03:45 -0500936
937 if (acpi_disabled)
938 return -ENODEV;
939
940 if (acpi_specific_hotkey_enabled) {
941 printk("Using specific hotkey driver\n");
942 return -ENODEV;
943 }
944
945 hotkey_proc_dir = proc_mkdir(HOTKEY_PROC, acpi_root_dir);
946 if (!hotkey_proc_dir) {
Luming Yufb9802f2005-03-18 18:03:45 -0500947 return (-ENODEV);
948 }
949 hotkey_proc_dir->owner = THIS_MODULE;
950
951 hotkey_config =
952 create_proc_entry(HOTKEY_EV_CONFIG, mode, hotkey_proc_dir);
953 if (!hotkey_config) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400954 goto do_fail1;
Luming Yufb9802f2005-03-18 18:03:45 -0500955 } else {
956 hotkey_config->proc_fops = &hotkey_config_fops;
957 hotkey_config->data = &global_hotkey_list;
958 hotkey_config->owner = THIS_MODULE;
959 hotkey_config->uid = 0;
960 hotkey_config->gid = 0;
961 }
962
963 hotkey_poll_config =
964 create_proc_entry(HOTKEY_PL_CONFIG, mode, hotkey_proc_dir);
965 if (!hotkey_poll_config) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400966 goto do_fail2;
Luming Yufb9802f2005-03-18 18:03:45 -0500967 } else {
968 hotkey_poll_config->proc_fops = &hotkey_poll_config_fops;
969 hotkey_poll_config->data = &global_hotkey_list;
970 hotkey_poll_config->owner = THIS_MODULE;
971 hotkey_poll_config->uid = 0;
972 hotkey_poll_config->gid = 0;
973 }
974
975 hotkey_action = create_proc_entry(HOTKEY_ACTION, mode, hotkey_proc_dir);
976 if (!hotkey_action) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400977 goto do_fail3;
Luming Yufb9802f2005-03-18 18:03:45 -0500978 } else {
979 hotkey_action->proc_fops = &hotkey_action_fops;
980 hotkey_action->owner = THIS_MODULE;
981 hotkey_action->uid = 0;
982 hotkey_action->gid = 0;
983 }
984
985 hotkey_info = create_proc_entry(HOTKEY_INFO, mode, hotkey_proc_dir);
986 if (!hotkey_info) {
Luming Yu79cda7d2005-08-03 18:07:59 -0400987 goto do_fail4;
Luming Yufb9802f2005-03-18 18:03:45 -0500988 } else {
989 hotkey_info->proc_fops = &hotkey_info_fops;
990 hotkey_info->owner = THIS_MODULE;
991 hotkey_info->uid = 0;
992 hotkey_info->gid = 0;
993 }
994
995 result = acpi_bus_register_driver(&hotkey_driver);
Luming Yu79cda7d2005-08-03 18:07:59 -0400996 if (result < 0)
997 goto do_fail5;
Luming Yufb9802f2005-03-18 18:03:45 -0500998 global_hotkey_list.count = 0;
999 global_hotkey_list.entries = &hotkey_entries;
1000
1001 INIT_LIST_HEAD(&hotkey_entries);
1002
1003 return (0);
Luming Yu79cda7d2005-08-03 18:07:59 -04001004
Len Brown4be44fc2005-08-05 00:44:28 -04001005 do_fail5:
Luming Yu79cda7d2005-08-03 18:07:59 -04001006 remove_proc_entry(HOTKEY_INFO, hotkey_proc_dir);
Len Brown4be44fc2005-08-05 00:44:28 -04001007 do_fail4:
Luming Yu79cda7d2005-08-03 18:07:59 -04001008 remove_proc_entry(HOTKEY_ACTION, hotkey_proc_dir);
Len Brown4be44fc2005-08-05 00:44:28 -04001009 do_fail3:
Luming Yu79cda7d2005-08-03 18:07:59 -04001010 remove_proc_entry(HOTKEY_PL_CONFIG, hotkey_proc_dir);
Len Brown4be44fc2005-08-05 00:44:28 -04001011 do_fail2:
Luming Yu79cda7d2005-08-03 18:07:59 -04001012 remove_proc_entry(HOTKEY_EV_CONFIG, hotkey_proc_dir);
Len Brown4be44fc2005-08-05 00:44:28 -04001013 do_fail1:
Luming Yu79cda7d2005-08-03 18:07:59 -04001014 remove_proc_entry(HOTKEY_PROC, acpi_root_dir);
1015 return (-ENODEV);
Luming Yufb9802f2005-03-18 18:03:45 -05001016}
1017
1018static void __exit hotkey_exit(void)
1019{
1020 struct list_head *entries, *next;
1021
Luming Yufb9802f2005-03-18 18:03:45 -05001022
1023 list_for_each_safe(entries, next, global_hotkey_list.entries) {
1024 union acpi_hotkey *key =
1025 container_of(entries, union acpi_hotkey, entries);
1026
1027 acpi_os_wait_events_complete(NULL);
1028 list_del(&key->link.entries);
1029 global_hotkey_list.count--;
1030 free_hotkey_device(key);
1031 }
1032 acpi_bus_unregister_driver(&hotkey_driver);
1033 remove_proc_entry(HOTKEY_EV_CONFIG, hotkey_proc_dir);
1034 remove_proc_entry(HOTKEY_PL_CONFIG, hotkey_proc_dir);
1035 remove_proc_entry(HOTKEY_ACTION, hotkey_proc_dir);
1036 remove_proc_entry(HOTKEY_INFO, hotkey_proc_dir);
1037 remove_proc_entry(HOTKEY_PROC, acpi_root_dir);
1038 return;
1039}
1040
1041module_init(hotkey_init);
1042module_exit(hotkey_exit);