blob: db35594d4df7a072a76e0c2fb879c324efdcedb8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bjorn Helgaas50a4da82009-04-08 15:39:38 +00002 * button.c - ACPI Button Driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/init.h>
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -040029#include <linux/types.h>
30#include <linux/proc_fs.h>
31#include <linux/seq_file.h>
Dmitry Torokhovc0968f02006-11-09 00:40:13 -050032#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Lv Zheng8b484632013-12-03 08:49:16 +080034#include <linux/acpi.h>
Andy Shevchenko6270da62013-03-11 09:17:04 +000035#include <acpi/button.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Len Browna192a952009-07-28 16:45:54 -040037#define PREFIX "ACPI: "
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define ACPI_BUTTON_CLASS "button"
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -040040#define ACPI_BUTTON_FILE_INFO "info"
41#define ACPI_BUTTON_FILE_STATE "state"
42#define ACPI_BUTTON_TYPE_UNKNOWN 0x00
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define ACPI_BUTTON_NOTIFY_STATUS 0x80
44
45#define ACPI_BUTTON_SUBCLASS_POWER "power"
Len Brown4be44fc2005-08-05 00:44:28 -040046#define ACPI_BUTTON_HID_POWER "PNP0C0C"
Bjorn Helgaasd68b5972009-04-08 15:40:04 +000047#define ACPI_BUTTON_DEVICE_NAME_POWER "Power Button"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define ACPI_BUTTON_TYPE_POWER 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50#define ACPI_BUTTON_SUBCLASS_SLEEP "sleep"
51#define ACPI_BUTTON_HID_SLEEP "PNP0C0E"
Bjorn Helgaasd68b5972009-04-08 15:40:04 +000052#define ACPI_BUTTON_DEVICE_NAME_SLEEP "Sleep Button"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define ACPI_BUTTON_TYPE_SLEEP 0x03
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define ACPI_BUTTON_SUBCLASS_LID "lid"
56#define ACPI_BUTTON_HID_LID "PNP0C0D"
57#define ACPI_BUTTON_DEVICE_NAME_LID "Lid Switch"
58#define ACPI_BUTTON_TYPE_LID 0x05
59
60#define _COMPONENT ACPI_BUTTON_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050061ACPI_MODULE_NAME("button");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Dmitry Torokhovc0968f02006-11-09 00:40:13 -050063MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050064MODULE_DESCRIPTION("ACPI Button Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070065MODULE_LICENSE("GPL");
66
Thomas Renninger1ba90e32007-07-23 14:44:41 +020067static const struct acpi_device_id button_device_ids[] = {
68 {ACPI_BUTTON_HID_LID, 0},
69 {ACPI_BUTTON_HID_SLEEP, 0},
70 {ACPI_BUTTON_HID_SLEEPF, 0},
71 {ACPI_BUTTON_HID_POWER, 0},
72 {ACPI_BUTTON_HID_POWERF, 0},
73 {"", 0},
74};
75MODULE_DEVICE_TABLE(acpi, button_device_ids);
76
Len Brown4be44fc2005-08-05 00:44:28 -040077static int acpi_button_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010078static int acpi_button_remove(struct acpi_device *device);
Bjorn Helgaas373cfc32009-03-30 17:48:18 +000079static void acpi_button_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Rafael J. Wysocki90692402012-08-09 23:00:02 +020081#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +020082static int acpi_button_resume(struct device *dev);
Shuah Khan2de9fd12014-02-12 20:19:07 -070083#else
84#define acpi_button_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +020085#endif
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +020086static SIMPLE_DEV_PM_OPS(acpi_button_pm, NULL, acpi_button_resume);
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static struct acpi_driver acpi_button_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050089 .name = "button",
Len Brown4be44fc2005-08-05 00:44:28 -040090 .class = ACPI_BUTTON_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020091 .ids = button_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040092 .ops = {
93 .add = acpi_button_add,
94 .remove = acpi_button_remove,
Bjorn Helgaas373cfc32009-03-30 17:48:18 +000095 .notify = acpi_button_notify,
Dmitry Torokhovc0968f02006-11-09 00:40:13 -050096 },
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +020097 .drv.pm = &acpi_button_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
100struct acpi_button {
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500101 unsigned int type;
102 struct input_dev *input;
103 char phys[32]; /* for input device */
Len Brown4be44fc2005-08-05 00:44:28 -0400104 unsigned long pushed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Jesse Barnes7e127152009-09-10 15:28:02 -0700107static BLOCKING_NOTIFIER_HEAD(acpi_lid_notifier);
108static struct acpi_device *lid_device;
109
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400110/* --------------------------------------------------------------------------
111 FS Interface (/proc)
112 -------------------------------------------------------------------------- */
113
Len Brown4be44fc2005-08-05 00:44:28 -0400114static struct proc_dir_entry *acpi_button_dir;
Zhang Rui912b7422011-03-23 10:21:40 +0800115static struct proc_dir_entry *acpi_lid_dir;
Len Brown4be44fc2005-08-05 00:44:28 -0400116
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400117static int acpi_button_state_seq_show(struct seq_file *seq, void *offset)
118{
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000119 struct acpi_device *device = seq->private;
Len Brown4be44fc2005-08-05 00:44:28 -0400120 acpi_status status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400121 unsigned long long state;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400122
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000123 status = acpi_evaluate_integer(device->handle, "_LID", NULL, &state);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500124 seq_printf(seq, "state: %s\n",
125 ACPI_FAILURE(status) ? "unsupported" :
126 (state ? "open" : "closed"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400127 return 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400128}
129
130static int acpi_button_state_open_fs(struct inode *inode, struct file *file)
131{
Al Virod9dda782013-03-31 18:16:14 -0400132 return single_open(file, acpi_button_state_seq_show, PDE_DATA(inode));
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400133}
134
Zhang Rui912b7422011-03-23 10:21:40 +0800135static const struct file_operations acpi_button_state_fops = {
136 .owner = THIS_MODULE,
137 .open = acpi_button_state_open_fs,
138 .read = seq_read,
139 .llseek = seq_lseek,
140 .release = single_release,
141};
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400142
Len Brown4be44fc2005-08-05 00:44:28 -0400143static int acpi_button_add_fs(struct acpi_device *device)
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400144{
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000145 struct acpi_button *button = acpi_driver_data(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400146 struct proc_dir_entry *entry = NULL;
Zhang Rui912b7422011-03-23 10:21:40 +0800147 int ret = 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400148
Zhang Rui912b7422011-03-23 10:21:40 +0800149 /* procfs I/F for ACPI lid device only */
150 if (button->type != ACPI_BUTTON_TYPE_LID)
151 return 0;
152
153 if (acpi_button_dir || acpi_lid_dir) {
154 printk(KERN_ERR PREFIX "More than one Lid device found!\n");
155 return -EEXIST;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400156 }
157
Zhang Rui912b7422011-03-23 10:21:40 +0800158 /* create /proc/acpi/button */
159 acpi_button_dir = proc_mkdir(ACPI_BUTTON_CLASS, acpi_root_dir);
160 if (!acpi_button_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400161 return -ENODEV;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400162
Zhang Rui912b7422011-03-23 10:21:40 +0800163 /* create /proc/acpi/button/lid */
164 acpi_lid_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
165 if (!acpi_lid_dir) {
166 ret = -ENODEV;
167 goto remove_button_dir;
168 }
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400169
Zhang Rui912b7422011-03-23 10:21:40 +0800170 /* create /proc/acpi/button/lid/LID/ */
171 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), acpi_lid_dir);
172 if (!acpi_device_dir(device)) {
173 ret = -ENODEV;
174 goto remove_lid_dir;
175 }
176
177 /* create /proc/acpi/button/lid/LID/state */
178 entry = proc_create_data(ACPI_BUTTON_FILE_STATE,
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700179 S_IRUGO, acpi_device_dir(device),
Zhang Rui912b7422011-03-23 10:21:40 +0800180 &acpi_button_state_fops, device);
181 if (!entry) {
182 ret = -ENODEV;
183 goto remove_dev_dir;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400184 }
185
Zhang Rui912b7422011-03-23 10:21:40 +0800186done:
187 return ret;
188
189remove_dev_dir:
190 remove_proc_entry(acpi_device_bid(device),
191 acpi_lid_dir);
192 acpi_device_dir(device) = NULL;
193remove_lid_dir:
194 remove_proc_entry(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
195remove_button_dir:
196 remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir);
197 goto done;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400198}
199
Len Brown4be44fc2005-08-05 00:44:28 -0400200static int acpi_button_remove_fs(struct acpi_device *device)
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400201{
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500202 struct acpi_button *button = acpi_driver_data(device);
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400203
Zhang Rui912b7422011-03-23 10:21:40 +0800204 if (button->type != ACPI_BUTTON_TYPE_LID)
205 return 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400206
Zhang Rui912b7422011-03-23 10:21:40 +0800207 remove_proc_entry(ACPI_BUTTON_FILE_STATE,
208 acpi_device_dir(device));
209 remove_proc_entry(acpi_device_bid(device),
210 acpi_lid_dir);
211 acpi_device_dir(device) = NULL;
212 remove_proc_entry(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
213 remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir);
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400214
Patrick Mocheld550d982006-06-27 00:41:40 -0400215 return 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400216}
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/* --------------------------------------------------------------------------
219 Driver Interface
220 -------------------------------------------------------------------------- */
Jesse Barnes7e127152009-09-10 15:28:02 -0700221int acpi_lid_notifier_register(struct notifier_block *nb)
222{
223 return blocking_notifier_chain_register(&acpi_lid_notifier, nb);
224}
225EXPORT_SYMBOL(acpi_lid_notifier_register);
226
227int acpi_lid_notifier_unregister(struct notifier_block *nb)
228{
229 return blocking_notifier_chain_unregister(&acpi_lid_notifier, nb);
230}
231EXPORT_SYMBOL(acpi_lid_notifier_unregister);
232
233int acpi_lid_open(void)
234{
235 acpi_status status;
236 unsigned long long state;
237
Jesse Barnes2c907b72009-10-07 14:39:46 -0700238 if (!lid_device)
239 return -ENODEV;
240
Jesse Barnes7e127152009-09-10 15:28:02 -0700241 status = acpi_evaluate_integer(lid_device->handle, "_LID", NULL,
242 &state);
243 if (ACPI_FAILURE(status))
244 return -ENODEV;
245
246 return !!state;
247}
248EXPORT_SYMBOL(acpi_lid_open);
249
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000250static int acpi_lid_send_state(struct acpi_device *device)
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400251{
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000252 struct acpi_button *button = acpi_driver_data(device);
Matthew Wilcox27663c52008-10-10 02:22:59 -0400253 unsigned long long state;
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400254 acpi_status status;
Jesse Barnes7e127152009-09-10 15:28:02 -0700255 int ret;
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400256
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000257 status = acpi_evaluate_integer(device->handle, "_LID", NULL, &state);
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400258 if (ACPI_FAILURE(status))
259 return -ENODEV;
Bjorn Helgaas50a4da82009-04-08 15:39:38 +0000260
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400261 /* input layer checks if event is redundant */
262 input_report_switch(button->input, SW_LID, !state);
Guillem Joverdf316e92008-10-24 00:28:33 +0300263 input_sync(button->input);
Jesse Barnes7e127152009-09-10 15:28:02 -0700264
Rafael J. Wysocki1f835112011-01-06 23:36:01 +0100265 if (state)
266 pm_wakeup_event(&device->dev, 0);
267
Jesse Barnes7e127152009-09-10 15:28:02 -0700268 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state, device);
269 if (ret == NOTIFY_DONE)
270 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state,
271 device);
Zhao Yakui13c199c2009-12-15 22:01:57 +0800272 if (ret == NOTIFY_DONE || ret == NOTIFY_OK) {
273 /*
274 * It is also regarded as success if the notifier_chain
275 * returns NOTIFY_OK or NOTIFY_DONE.
276 */
277 ret = 0;
278 }
Jesse Barnes7e127152009-09-10 15:28:02 -0700279 return ret;
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400280}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000282static void acpi_button_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000284 struct acpi_button *button = acpi_driver_data(device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500285 struct input_dev *input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 switch (event) {
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000288 case ACPI_FIXED_HARDWARE_EVENT:
289 event = ACPI_BUTTON_NOTIFY_STATUS;
290 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 case ACPI_BUTTON_NOTIFY_STATUS:
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500292 input = button->input;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500293 if (button->type == ACPI_BUTTON_TYPE_LID) {
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000294 acpi_lid_send_state(device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500295 } else {
296 int keycode = test_bit(KEY_SLEEP, input->keybit) ?
297 KEY_SLEEP : KEY_POWER;
298
299 input_report_key(input, keycode, 1);
300 input_sync(input);
301 input_report_key(input, keycode, 0);
Guillem Joverdf316e92008-10-24 00:28:33 +0300302 input_sync(input);
Rafael J. Wysocki1f835112011-01-06 23:36:01 +0100303
304 pm_wakeup_event(&device->dev, 0);
Lan Tianyu0bf63682014-03-15 13:37:13 -0400305 acpi_bus_generate_netlink_event(
306 device->pnp.device_class,
307 dev_name(&device->dev),
308 event, ++button->pushed);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311 default:
312 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400313 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200318#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200319static int acpi_button_resume(struct device *dev)
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400320{
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200321 struct acpi_device *device = to_acpi_device(dev);
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000322 struct acpi_button *button = acpi_driver_data(device);
Bjorn Helgaas50a4da82009-04-08 15:39:38 +0000323
Bjorn Helgaase2fb9752009-04-08 15:39:43 +0000324 if (button->type == ACPI_BUTTON_TYPE_LID)
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000325 return acpi_lid_send_state(device);
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400326 return 0;
327}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200328#endif
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400329
Len Brown4be44fc2005-08-05 00:44:28 -0400330static int acpi_button_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500332 struct acpi_button *button;
333 struct input_dev *input;
Thomas Renninger620e1122010-10-01 10:54:00 +0200334 const char *hid = acpi_device_hid(device);
335 char *name, *class;
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000336 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500338 button = kzalloc(sizeof(struct acpi_button), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!button)
Patrick Mocheld550d982006-06-27 00:41:40 -0400340 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700342 device->driver_data = button;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500344 button->input = input = input_allocate_device();
345 if (!input) {
346 error = -ENOMEM;
347 goto err_free_button;
348 }
349
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000350 name = acpi_device_name(device);
351 class = acpi_device_class(device);
352
Bjorn Helgaasd68b5972009-04-08 15:40:04 +0000353 if (!strcmp(hid, ACPI_BUTTON_HID_POWER) ||
354 !strcmp(hid, ACPI_BUTTON_HID_POWERF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 button->type = ACPI_BUTTON_TYPE_POWER;
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000356 strcpy(name, ACPI_BUTTON_DEVICE_NAME_POWER);
357 sprintf(class, "%s/%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_POWER);
Bjorn Helgaasd68b5972009-04-08 15:40:04 +0000359 } else if (!strcmp(hid, ACPI_BUTTON_HID_SLEEP) ||
360 !strcmp(hid, ACPI_BUTTON_HID_SLEEPF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 button->type = ACPI_BUTTON_TYPE_SLEEP;
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000362 strcpy(name, ACPI_BUTTON_DEVICE_NAME_SLEEP);
363 sprintf(class, "%s/%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_SLEEP);
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000365 } else if (!strcmp(hid, ACPI_BUTTON_HID_LID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 button->type = ACPI_BUTTON_TYPE_LID;
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000367 strcpy(name, ACPI_BUTTON_DEVICE_NAME_LID);
368 sprintf(class, "%s/%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID);
Len Brown4be44fc2005-08-05 00:44:28 -0400370 } else {
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000371 printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", hid);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500372 error = -ENODEV;
373 goto err_free_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500376 error = acpi_button_add_fs(device);
377 if (error)
378 goto err_free_input;
379
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000380 snprintf(button->phys, sizeof(button->phys), "%s/button/input0", hid);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500381
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000382 input->name = name;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500383 input->phys = button->phys;
384 input->id.bustype = BUS_HOST;
385 input->id.product = button->type;
Andrey Borzenkov3b34e522008-03-04 15:06:35 -0800386 input->dev.parent = &device->dev;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 switch (button->type) {
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500389 case ACPI_BUTTON_TYPE_POWER:
Lan Tianyu763f5272013-09-12 03:32:03 -0400390 input_set_capability(input, EV_KEY, KEY_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 break;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500392
393 case ACPI_BUTTON_TYPE_SLEEP:
Lan Tianyu763f5272013-09-12 03:32:03 -0400394 input_set_capability(input, EV_KEY, KEY_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 break;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500396
397 case ACPI_BUTTON_TYPE_LID:
Lan Tianyu763f5272013-09-12 03:32:03 -0400398 input_set_capability(input, EV_SW, SW_LID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 break;
400 }
401
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500402 error = input_register_device(input);
403 if (error)
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000404 goto err_remove_fs;
Jesse Barnes7e127152009-09-10 15:28:02 -0700405 if (button->type == ACPI_BUTTON_TYPE_LID) {
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000406 acpi_lid_send_state(device);
Jesse Barnes7e127152009-09-10 15:28:02 -0700407 /*
408 * This assumes there's only one lid device, or if there are
409 * more we only care about the last one...
410 */
411 lid_device = device;
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000414 printk(KERN_INFO PREFIX "%s [%s]\n", name, acpi_device_bid(device));
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500417 err_remove_fs:
418 acpi_button_remove_fs(device);
419 err_free_input:
420 input_free_device(input);
421 err_free_button:
422 kfree(button);
423 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100426static int acpi_button_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000428 struct acpi_button *button = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Len Brown4be44fc2005-08-05 00:44:28 -0400430 acpi_button_remove_fs(device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500431 input_unregister_device(button->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 kfree(button);
Patrick Mocheld550d982006-06-27 00:41:40 -0400433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Mika Westerberg466e78f2012-09-07 10:31:39 +0300436module_acpi_driver(acpi_button_driver);