ACPI / button: Remove initial lid state notification
[deliverable/linux.git] / drivers / acpi / button.c
CommitLineData
1da177e4 1/*
50a4da89 2 * button.c - ACPI Button Driver
1da177e4
LT
3 *
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 *
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
1da177e4
LT
19 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 */
21
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/init.h>
b34a8030
AS
25#include <linux/types.h>
26#include <linux/proc_fs.h>
27#include <linux/seq_file.h>
c0968f0e 28#include <linux/input.h>
5a0e3ad6 29#include <linux/slab.h>
8b48463f 30#include <linux/acpi.h>
6270da6f 31#include <acpi/button.h>
1da177e4 32
a192a958
LB
33#define PREFIX "ACPI: "
34
1da177e4 35#define ACPI_BUTTON_CLASS "button"
b34a8030
AS
36#define ACPI_BUTTON_FILE_INFO "info"
37#define ACPI_BUTTON_FILE_STATE "state"
38#define ACPI_BUTTON_TYPE_UNKNOWN 0x00
1da177e4
LT
39#define ACPI_BUTTON_NOTIFY_STATUS 0x80
40
41#define ACPI_BUTTON_SUBCLASS_POWER "power"
4be44fcd 42#define ACPI_BUTTON_HID_POWER "PNP0C0C"
d68b597c 43#define ACPI_BUTTON_DEVICE_NAME_POWER "Power Button"
1da177e4 44#define ACPI_BUTTON_TYPE_POWER 0x01
1da177e4
LT
45
46#define ACPI_BUTTON_SUBCLASS_SLEEP "sleep"
47#define ACPI_BUTTON_HID_SLEEP "PNP0C0E"
d68b597c 48#define ACPI_BUTTON_DEVICE_NAME_SLEEP "Sleep Button"
1da177e4 49#define ACPI_BUTTON_TYPE_SLEEP 0x03
1da177e4
LT
50
51#define ACPI_BUTTON_SUBCLASS_LID "lid"
52#define ACPI_BUTTON_HID_LID "PNP0C0D"
53#define ACPI_BUTTON_DEVICE_NAME_LID "Lid Switch"
54#define ACPI_BUTTON_TYPE_LID 0x05
55
56#define _COMPONENT ACPI_BUTTON_COMPONENT
f52fd66d 57ACPI_MODULE_NAME("button");
1da177e4 58
c0968f0e 59MODULE_AUTHOR("Paul Diefenbaugh");
7cda93e0 60MODULE_DESCRIPTION("ACPI Button Driver");
1da177e4
LT
61MODULE_LICENSE("GPL");
62
1ba90e3a
TR
63static const struct acpi_device_id button_device_ids[] = {
64 {ACPI_BUTTON_HID_LID, 0},
65 {ACPI_BUTTON_HID_SLEEP, 0},
66 {ACPI_BUTTON_HID_SLEEPF, 0},
67 {ACPI_BUTTON_HID_POWER, 0},
68 {ACPI_BUTTON_HID_POWERF, 0},
69 {"", 0},
70};
71MODULE_DEVICE_TABLE(acpi, button_device_ids);
72
4be44fcd 73static int acpi_button_add(struct acpi_device *device);
51fac838 74static int acpi_button_remove(struct acpi_device *device);
373cfc36 75static void acpi_button_notify(struct acpi_device *device, u32 event);
1da177e4 76
90692404 77#ifdef CONFIG_PM_SLEEP
e71eeb2a 78static int acpi_button_suspend(struct device *dev);
1be532de 79static int acpi_button_resume(struct device *dev);
2de9fd17 80#else
e71eeb2a 81#define acpi_button_suspend NULL
2de9fd17 82#define acpi_button_resume NULL
90692404 83#endif
e71eeb2a 84static SIMPLE_DEV_PM_OPS(acpi_button_pm, acpi_button_suspend, acpi_button_resume);
1be532de 85
1da177e4 86static struct acpi_driver acpi_button_driver = {
c2b6705b 87 .name = "button",
4be44fcd 88 .class = ACPI_BUTTON_CLASS,
1ba90e3a 89 .ids = button_device_ids,
4be44fcd
LB
90 .ops = {
91 .add = acpi_button_add,
92 .remove = acpi_button_remove,
373cfc36 93 .notify = acpi_button_notify,
c0968f0e 94 },
1be532de 95 .drv.pm = &acpi_button_pm,
1da177e4
LT
96};
97
98struct acpi_button {
c0968f0e
DT
99 unsigned int type;
100 struct input_dev *input;
101 char phys[32]; /* for input device */
4be44fcd 102 unsigned long pushed;
e71eeb2a 103 bool suspended;
1da177e4
LT
104};
105
7e12715e
JB
106static BLOCKING_NOTIFIER_HEAD(acpi_lid_notifier);
107static struct acpi_device *lid_device;
108
b34a8030
AS
109/* --------------------------------------------------------------------------
110 FS Interface (/proc)
111 -------------------------------------------------------------------------- */
112
4be44fcd 113static struct proc_dir_entry *acpi_button_dir;
912b7427 114static struct proc_dir_entry *acpi_lid_dir;
4be44fcd 115
b34a8030
AS
116static int acpi_button_state_seq_show(struct seq_file *seq, void *offset)
117{
106c19e7 118 struct acpi_device *device = seq->private;
4be44fcd 119 acpi_status status;
27663c58 120 unsigned long long state;
b34a8030 121
106c19e7 122 status = acpi_evaluate_integer(device->handle, "_LID", NULL, &state);
c0968f0e
DT
123 seq_printf(seq, "state: %s\n",
124 ACPI_FAILURE(status) ? "unsupported" :
125 (state ? "open" : "closed"));
d550d98d 126 return 0;
b34a8030
AS
127}
128
129static int acpi_button_state_open_fs(struct inode *inode, struct file *file)
130{
d9dda78b 131 return single_open(file, acpi_button_state_seq_show, PDE_DATA(inode));
b34a8030
AS
132}
133
912b7427
ZR
134static const struct file_operations acpi_button_state_fops = {
135 .owner = THIS_MODULE,
136 .open = acpi_button_state_open_fs,
137 .read = seq_read,
138 .llseek = seq_lseek,
139 .release = single_release,
140};
b34a8030 141
4be44fcd 142static int acpi_button_add_fs(struct acpi_device *device)
b34a8030 143{
1bce8113 144 struct acpi_button *button = acpi_driver_data(device);
4be44fcd 145 struct proc_dir_entry *entry = NULL;
912b7427 146 int ret = 0;
b34a8030 147
912b7427
ZR
148 /* procfs I/F for ACPI lid device only */
149 if (button->type != ACPI_BUTTON_TYPE_LID)
150 return 0;
151
152 if (acpi_button_dir || acpi_lid_dir) {
153 printk(KERN_ERR PREFIX "More than one Lid device found!\n");
154 return -EEXIST;
b34a8030
AS
155 }
156
912b7427
ZR
157 /* create /proc/acpi/button */
158 acpi_button_dir = proc_mkdir(ACPI_BUTTON_CLASS, acpi_root_dir);
159 if (!acpi_button_dir)
d550d98d 160 return -ENODEV;
b34a8030 161
912b7427
ZR
162 /* create /proc/acpi/button/lid */
163 acpi_lid_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
164 if (!acpi_lid_dir) {
165 ret = -ENODEV;
166 goto remove_button_dir;
167 }
b34a8030 168
912b7427
ZR
169 /* create /proc/acpi/button/lid/LID/ */
170 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), acpi_lid_dir);
171 if (!acpi_device_dir(device)) {
172 ret = -ENODEV;
173 goto remove_lid_dir;
174 }
b34a8030 175
912b7427
ZR
176 /* create /proc/acpi/button/lid/LID/state */
177 entry = proc_create_data(ACPI_BUTTON_FILE_STATE,
178 S_IRUGO, acpi_device_dir(device),
179 &acpi_button_state_fops, device);
180 if (!entry) {
181 ret = -ENODEV;
182 goto remove_dev_dir;
b34a8030
AS
183 }
184
912b7427
ZR
185done:
186 return ret;
187
188remove_dev_dir:
189 remove_proc_entry(acpi_device_bid(device),
190 acpi_lid_dir);
191 acpi_device_dir(device) = NULL;
192remove_lid_dir:
193 remove_proc_entry(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
194remove_button_dir:
195 remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir);
196 goto done;
b34a8030
AS
197}
198
4be44fcd 199static int acpi_button_remove_fs(struct acpi_device *device)
b34a8030 200{
c0968f0e 201 struct acpi_button *button = acpi_driver_data(device);
b34a8030 202
912b7427
ZR
203 if (button->type != ACPI_BUTTON_TYPE_LID)
204 return 0;
b34a8030 205
912b7427
ZR
206 remove_proc_entry(ACPI_BUTTON_FILE_STATE,
207 acpi_device_dir(device));
208 remove_proc_entry(acpi_device_bid(device),
209 acpi_lid_dir);
210 acpi_device_dir(device) = NULL;
211 remove_proc_entry(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
212 remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir);
b34a8030 213
d550d98d 214 return 0;
b34a8030
AS
215}
216
1da177e4
LT
217/* --------------------------------------------------------------------------
218 Driver Interface
219 -------------------------------------------------------------------------- */
7e12715e
JB
220int acpi_lid_notifier_register(struct notifier_block *nb)
221{
222 return blocking_notifier_chain_register(&acpi_lid_notifier, nb);
223}
224EXPORT_SYMBOL(acpi_lid_notifier_register);
225
226int acpi_lid_notifier_unregister(struct notifier_block *nb)
227{
228 return blocking_notifier_chain_unregister(&acpi_lid_notifier, nb);
229}
230EXPORT_SYMBOL(acpi_lid_notifier_unregister);
231
232int acpi_lid_open(void)
233{
234 acpi_status status;
235 unsigned long long state;
236
2c907b72
JB
237 if (!lid_device)
238 return -ENODEV;
239
7e12715e
JB
240 status = acpi_evaluate_integer(lid_device->handle, "_LID", NULL,
241 &state);
242 if (ACPI_FAILURE(status))
243 return -ENODEV;
244
245 return !!state;
246}
247EXPORT_SYMBOL(acpi_lid_open);
248
106c19e7 249static int acpi_lid_send_state(struct acpi_device *device)
23de5d9e 250{
106c19e7 251 struct acpi_button *button = acpi_driver_data(device);
27663c58 252 unsigned long long state;
23de5d9e 253 acpi_status status;
7e12715e 254 int ret;
23de5d9e 255
106c19e7 256 status = acpi_evaluate_integer(device->handle, "_LID", NULL, &state);
23de5d9e
AS
257 if (ACPI_FAILURE(status))
258 return -ENODEV;
50a4da89 259
23de5d9e
AS
260 /* input layer checks if event is redundant */
261 input_report_switch(button->input, SW_LID, !state);
df316e93 262 input_sync(button->input);
7e12715e 263
1f83511b
RW
264 if (state)
265 pm_wakeup_event(&device->dev, 0);
266
7e12715e
JB
267 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state, device);
268 if (ret == NOTIFY_DONE)
269 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state,
270 device);
13c199c0
ZY
271 if (ret == NOTIFY_DONE || ret == NOTIFY_OK) {
272 /*
273 * It is also regarded as success if the notifier_chain
274 * returns NOTIFY_OK or NOTIFY_DONE.
275 */
276 ret = 0;
277 }
7e12715e 278 return ret;
23de5d9e 279}
1da177e4 280
373cfc36 281static void acpi_button_notify(struct acpi_device *device, u32 event)
1da177e4 282{
373cfc36 283 struct acpi_button *button = acpi_driver_data(device);
c0968f0e 284 struct input_dev *input;
1da177e4 285
1da177e4 286 switch (event) {
373cfc36
BH
287 case ACPI_FIXED_HARDWARE_EVENT:
288 event = ACPI_BUTTON_NOTIFY_STATUS;
289 /* fall through */
1da177e4 290 case ACPI_BUTTON_NOTIFY_STATUS:
c0968f0e 291 input = button->input;
c0968f0e 292 if (button->type == ACPI_BUTTON_TYPE_LID) {
106c19e7 293 acpi_lid_send_state(device);
c0968f0e 294 } else {
e71eeb2a
RW
295 int keycode;
296
297 pm_wakeup_event(&device->dev, 0);
298 if (button->suspended)
299 break;
c0968f0e 300
e71eeb2a
RW
301 keycode = test_bit(KEY_SLEEP, input->keybit) ?
302 KEY_SLEEP : KEY_POWER;
c0968f0e
DT
303 input_report_key(input, keycode, 1);
304 input_sync(input);
305 input_report_key(input, keycode, 0);
df316e93 306 input_sync(input);
1f83511b 307
0bf6368e
LT
308 acpi_bus_generate_netlink_event(
309 device->pnp.device_class,
310 dev_name(&device->dev),
311 event, ++button->pushed);
c0968f0e 312 }
1da177e4
LT
313 break;
314 default:
315 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
4be44fcd 316 "Unsupported event [0x%x]\n", event));
1da177e4
LT
317 break;
318 }
1da177e4
LT
319}
320
90692404 321#ifdef CONFIG_PM_SLEEP
e71eeb2a
RW
322static int acpi_button_suspend(struct device *dev)
323{
324 struct acpi_device *device = to_acpi_device(dev);
325 struct acpi_button *button = acpi_driver_data(device);
326
327 button->suspended = true;
328 return 0;
329}
330
1be532de 331static int acpi_button_resume(struct device *dev)
23de5d9e 332{
1be532de 333 struct acpi_device *device = to_acpi_device(dev);
1bce8113 334 struct acpi_button *button = acpi_driver_data(device);
50a4da89 335
e71eeb2a 336 button->suspended = false;
23de5d9e
AS
337 return 0;
338}
90692404 339#endif
23de5d9e 340
c0968f0e
DT
341static int acpi_button_add(struct acpi_device *device)
342{
c0968f0e
DT
343 struct acpi_button *button;
344 struct input_dev *input;
620e112c
TR
345 const char *hid = acpi_device_hid(device);
346 char *name, *class;
1bce8113 347 int error;
1da177e4 348
c0968f0e 349 button = kzalloc(sizeof(struct acpi_button), GFP_KERNEL);
1da177e4 350 if (!button)
d550d98d 351 return -ENOMEM;
1da177e4 352
db89b4f0 353 device->driver_data = button;
1da177e4 354
c0968f0e
DT
355 button->input = input = input_allocate_device();
356 if (!input) {
357 error = -ENOMEM;
358 goto err_free_button;
359 }
360
bf04a772
BH
361 name = acpi_device_name(device);
362 class = acpi_device_class(device);
363
d68b597c
BH
364 if (!strcmp(hid, ACPI_BUTTON_HID_POWER) ||
365 !strcmp(hid, ACPI_BUTTON_HID_POWERF)) {
1da177e4 366 button->type = ACPI_BUTTON_TYPE_POWER;
bf04a772
BH
367 strcpy(name, ACPI_BUTTON_DEVICE_NAME_POWER);
368 sprintf(class, "%s/%s",
1da177e4 369 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_POWER);
d68b597c
BH
370 } else if (!strcmp(hid, ACPI_BUTTON_HID_SLEEP) ||
371 !strcmp(hid, ACPI_BUTTON_HID_SLEEPF)) {
1da177e4 372 button->type = ACPI_BUTTON_TYPE_SLEEP;
bf04a772
BH
373 strcpy(name, ACPI_BUTTON_DEVICE_NAME_SLEEP);
374 sprintf(class, "%s/%s",
1da177e4 375 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_SLEEP);
bf04a772 376 } else if (!strcmp(hid, ACPI_BUTTON_HID_LID)) {
1da177e4 377 button->type = ACPI_BUTTON_TYPE_LID;
bf04a772
BH
378 strcpy(name, ACPI_BUTTON_DEVICE_NAME_LID);
379 sprintf(class, "%s/%s",
1da177e4 380 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID);
4be44fcd 381 } else {
bf04a772 382 printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", hid);
c0968f0e
DT
383 error = -ENODEV;
384 goto err_free_input;
1da177e4
LT
385 }
386
c0968f0e
DT
387 error = acpi_button_add_fs(device);
388 if (error)
389 goto err_free_input;
390
bf04a772 391 snprintf(button->phys, sizeof(button->phys), "%s/button/input0", hid);
c0968f0e 392
bf04a772 393 input->name = name;
c0968f0e
DT
394 input->phys = button->phys;
395 input->id.bustype = BUS_HOST;
396 input->id.product = button->type;
3b34e523 397 input->dev.parent = &device->dev;
b34a8030 398
1da177e4 399 switch (button->type) {
c0968f0e 400 case ACPI_BUTTON_TYPE_POWER:
763f527b 401 input_set_capability(input, EV_KEY, KEY_POWER);
1da177e4 402 break;
c0968f0e
DT
403
404 case ACPI_BUTTON_TYPE_SLEEP:
763f527b 405 input_set_capability(input, EV_KEY, KEY_SLEEP);
1da177e4 406 break;
c0968f0e
DT
407
408 case ACPI_BUTTON_TYPE_LID:
763f527b 409 input_set_capability(input, EV_SW, SW_LID);
1da177e4
LT
410 break;
411 }
412
c0968f0e
DT
413 error = input_register_device(input);
414 if (error)
373cfc36 415 goto err_remove_fs;
7e12715e 416 if (button->type == ACPI_BUTTON_TYPE_LID) {
7e12715e
JB
417 /*
418 * This assumes there's only one lid device, or if there are
419 * more we only care about the last one...
420 */
421 lid_device = device;
422 }
1da177e4 423
bf04a772 424 printk(KERN_INFO PREFIX "%s [%s]\n", name, acpi_device_bid(device));
c0968f0e 425 return 0;
1da177e4 426
c0968f0e
DT
427 err_remove_fs:
428 acpi_button_remove_fs(device);
429 err_free_input:
430 input_free_device(input);
431 err_free_button:
432 kfree(button);
433 return error;
1da177e4
LT
434}
435
51fac838 436static int acpi_button_remove(struct acpi_device *device)
1da177e4 437{
1bce8113 438 struct acpi_button *button = acpi_driver_data(device);
1da177e4 439
4be44fcd 440 acpi_button_remove_fs(device);
c0968f0e 441 input_unregister_device(button->input);
1da177e4 442 kfree(button);
d550d98d 443 return 0;
1da177e4
LT
444}
445
466e78f7 446module_acpi_driver(acpi_button_driver);
This page took 1.129714 seconds and 5 git commands to generate.