blob: a19ff3977ac4ae46deac7685ef017bf482c21330 [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 */
21
Vincent Legollb6aeab42017-05-20 20:38:13 +020022#define pr_fmt(fmt) "ACPI: button: " fmt
Lv Zhengdfa46c52016-08-17 16:22:58 +080023
Randy Dunlap2c4c2a72018-07-07 08:25:01 -070024#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/init.h>
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -040028#include <linux/types.h>
29#include <linux/proc_fs.h>
30#include <linux/seq_file.h>
Dmitry Torokhovc0968f02006-11-09 00:40:13 -050031#include <linux/input.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Lv Zheng8b484632013-12-03 08:49:16 +080033#include <linux/acpi.h>
Hans de Goede9e811e12017-11-22 16:06:12 +010034#include <linux/dmi.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
Lv Zheng3540c322016-06-01 18:10:48 +080060#define ACPI_BUTTON_LID_INIT_IGNORE 0x00
61#define ACPI_BUTTON_LID_INIT_OPEN 0x01
Lv Zhengf369fdf2017-05-09 15:02:22 +080062#define ACPI_BUTTON_LID_INIT_METHOD 0x02
Lv Zheng3540c322016-06-01 18:10:48 +080063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define _COMPONENT ACPI_BUTTON_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050065ACPI_MODULE_NAME("button");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Dmitry Torokhovc0968f02006-11-09 00:40:13 -050067MODULE_AUTHOR("Paul Diefenbaugh");
Len Brown7cda93e2007-02-12 23:50:02 -050068MODULE_DESCRIPTION("ACPI Button Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070069MODULE_LICENSE("GPL");
70
Thomas Renninger1ba90e32007-07-23 14:44:41 +020071static const struct acpi_device_id button_device_ids[] = {
72 {ACPI_BUTTON_HID_LID, 0},
73 {ACPI_BUTTON_HID_SLEEP, 0},
74 {ACPI_BUTTON_HID_SLEEPF, 0},
75 {ACPI_BUTTON_HID_POWER, 0},
76 {ACPI_BUTTON_HID_POWERF, 0},
77 {"", 0},
78};
79MODULE_DEVICE_TABLE(acpi, button_device_ids);
80
Hans de Goede9e811e12017-11-22 16:06:12 +010081/*
82 * Some devices which don't even have a lid in anyway have a broken _LID
83 * method (e.g. pointing to a floating gpio pin) causing spurious LID events.
84 */
85static const struct dmi_system_id lid_blacklst[] = {
86 {
87 /* GP-electronic T701 */
88 .matches = {
89 DMI_MATCH(DMI_SYS_VENDOR, "Insyde"),
90 DMI_MATCH(DMI_PRODUCT_NAME, "T701"),
91 DMI_MATCH(DMI_BIOS_VERSION, "BYT70A.YNCHENG.WIN.007"),
92 },
93 },
94 {}
95};
96
Len Brown4be44fc2005-08-05 00:44:28 -040097static int acpi_button_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010098static int acpi_button_remove(struct acpi_device *device);
Bjorn Helgaas373cfc32009-03-30 17:48:18 +000099static void acpi_button_notify(struct acpi_device *device, u32 event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200101#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200102static int acpi_button_suspend(struct device *dev);
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200103static int acpi_button_resume(struct device *dev);
Shuah Khan2de9fd12014-02-12 20:19:07 -0700104#else
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200105#define acpi_button_suspend NULL
Shuah Khan2de9fd12014-02-12 20:19:07 -0700106#define acpi_button_resume NULL
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200107#endif
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200108static SIMPLE_DEV_PM_OPS(acpi_button_pm, acpi_button_suspend, acpi_button_resume);
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static struct acpi_driver acpi_button_driver = {
Len Brownc2b67052007-02-12 23:33:40 -0500111 .name = "button",
Len Brown4be44fc2005-08-05 00:44:28 -0400112 .class = ACPI_BUTTON_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +0200113 .ids = button_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -0400114 .ops = {
115 .add = acpi_button_add,
116 .remove = acpi_button_remove,
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000117 .notify = acpi_button_notify,
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500118 },
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200119 .drv.pm = &acpi_button_pm,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
122struct acpi_button {
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500123 unsigned int type;
124 struct input_dev *input;
125 char phys[32]; /* for input device */
Len Brown4be44fc2005-08-05 00:44:28 -0400126 unsigned long pushed;
Lv Zhengdfa46c52016-08-17 16:22:58 +0800127 int last_state;
128 ktime_t last_time;
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200129 bool suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Jesse Barnes7e127152009-09-10 15:28:02 -0700132static BLOCKING_NOTIFIER_HEAD(acpi_lid_notifier);
133static struct acpi_device *lid_device;
Benjamin Tissoires878d8db02017-05-10 18:12:40 +0200134static u8 lid_init_state = ACPI_BUTTON_LID_INIT_METHOD;
Jesse Barnes7e127152009-09-10 15:28:02 -0700135
Lv Zhengdfa46c52016-08-17 16:22:58 +0800136static unsigned long lid_report_interval __read_mostly = 500;
137module_param(lid_report_interval, ulong, 0644);
138MODULE_PARM_DESC(lid_report_interval, "Interval (ms) between lid key events");
139
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400140/* --------------------------------------------------------------------------
141 FS Interface (/proc)
142 -------------------------------------------------------------------------- */
143
Len Brown4be44fc2005-08-05 00:44:28 -0400144static struct proc_dir_entry *acpi_button_dir;
Zhang Rui912b7422011-03-23 10:21:40 +0800145static struct proc_dir_entry *acpi_lid_dir;
Len Brown4be44fc2005-08-05 00:44:28 -0400146
Lv Zhengee7e2262016-06-01 18:10:42 +0800147static int acpi_lid_evaluate_state(struct acpi_device *device)
148{
149 unsigned long long lid_state;
150 acpi_status status;
151
152 status = acpi_evaluate_integer(device->handle, "_LID", NULL, &lid_state);
153 if (ACPI_FAILURE(status))
154 return -ENODEV;
155
156 return lid_state ? 1 : 0;
157}
158
159static int acpi_lid_notify_state(struct acpi_device *device, int state)
160{
161 struct acpi_button *button = acpi_driver_data(device);
162 int ret;
Lv Zhengdfa46c52016-08-17 16:22:58 +0800163 ktime_t next_report;
164 bool do_update;
Lv Zhengee7e2262016-06-01 18:10:42 +0800165
Lv Zhengdfa46c52016-08-17 16:22:58 +0800166 /*
167 * In lid_init_state=ignore mode, if user opens/closes lid
168 * frequently with "open" missing, and "last_time" is also updated
169 * frequently, "close" cannot be delivered to the userspace.
170 * So "last_time" is only updated after a timeout or an actual
171 * switch.
172 */
173 if (lid_init_state != ACPI_BUTTON_LID_INIT_IGNORE ||
174 button->last_state != !!state)
175 do_update = true;
176 else
177 do_update = false;
178
179 next_report = ktime_add(button->last_time,
180 ms_to_ktime(lid_report_interval));
181 if (button->last_state == !!state &&
182 ktime_after(ktime_get(), next_report)) {
183 /* Complain the buggy firmware */
184 pr_warn_once("The lid device is not compliant to SW_LID.\n");
185
186 /*
187 * Send the unreliable complement switch event:
188 *
189 * On most platforms, the lid device is reliable. However
190 * there are exceptions:
191 * 1. Platforms returning initial lid state as "close" by
192 * default after booting/resuming:
193 * https://bugzilla.kernel.org/show_bug.cgi?id=89211
194 * https://bugzilla.kernel.org/show_bug.cgi?id=106151
195 * 2. Platforms never reporting "open" events:
196 * https://bugzilla.kernel.org/show_bug.cgi?id=106941
197 * On these buggy platforms, the usage model of the ACPI
198 * lid device actually is:
199 * 1. The initial returning value of _LID may not be
200 * reliable.
201 * 2. The open event may not be reliable.
202 * 3. The close event is reliable.
203 *
204 * But SW_LID is typed as input switch event, the input
205 * layer checks if the event is redundant. Hence if the
206 * state is not switched, the userspace cannot see this
207 * platform triggered reliable event. By inserting a
208 * complement switch event, it then is guaranteed that the
209 * platform triggered reliable one can always be seen by
210 * the userspace.
211 */
212 if (lid_init_state == ACPI_BUTTON_LID_INIT_IGNORE) {
213 do_update = true;
214 /*
215 * Do generate complement switch event for "close"
216 * as "close" is reliable and wrong "open" won't
217 * trigger unexpected behaviors.
218 * Do not generate complement switch event for
219 * "open" as "open" is not reliable and wrong
220 * "close" will trigger unexpected behaviors.
221 */
222 if (!state) {
223 input_report_switch(button->input,
224 SW_LID, state);
225 input_sync(button->input);
226 }
227 }
228 }
229 /* Send the platform triggered reliable event */
230 if (do_update) {
Hans de Goedeae35d652017-11-22 16:06:11 +0100231 acpi_handle_debug(device->handle, "ACPI LID %s\n",
232 state ? "open" : "closed");
Lv Zhengdfa46c52016-08-17 16:22:58 +0800233 input_report_switch(button->input, SW_LID, !state);
234 input_sync(button->input);
235 button->last_state = !!state;
236 button->last_time = ktime_get();
237 }
Lv Zhengee7e2262016-06-01 18:10:42 +0800238
Lv Zhengee7e2262016-06-01 18:10:42 +0800239 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state, device);
240 if (ret == NOTIFY_DONE)
241 ret = blocking_notifier_call_chain(&acpi_lid_notifier, state,
242 device);
243 if (ret == NOTIFY_DONE || ret == NOTIFY_OK) {
244 /*
245 * It is also regarded as success if the notifier_chain
246 * returns NOTIFY_OK or NOTIFY_DONE.
247 */
248 ret = 0;
249 }
250 return ret;
251}
252
Randy Dunlap2c4c2a72018-07-07 08:25:01 -0700253static int __maybe_unused acpi_button_state_seq_show(struct seq_file *seq,
254 void *offset)
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400255{
Bjorn Helgaas106c19e2009-04-08 15:39:59 +0000256 struct acpi_device *device = seq->private;
Lv Zhengee7e2262016-06-01 18:10:42 +0800257 int state;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400258
Lv Zhengee7e2262016-06-01 18:10:42 +0800259 state = acpi_lid_evaluate_state(device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500260 seq_printf(seq, "state: %s\n",
Lv Zhengee7e2262016-06-01 18:10:42 +0800261 state < 0 ? "unsupported" : (state ? "open" : "closed"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400262 return 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400263}
264
Len Brown4be44fc2005-08-05 00:44:28 -0400265static int acpi_button_add_fs(struct acpi_device *device)
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400266{
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000267 struct acpi_button *button = acpi_driver_data(device);
Len Brown4be44fc2005-08-05 00:44:28 -0400268 struct proc_dir_entry *entry = NULL;
Zhang Rui912b7422011-03-23 10:21:40 +0800269 int ret = 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400270
Zhang Rui912b7422011-03-23 10:21:40 +0800271 /* procfs I/F for ACPI lid device only */
272 if (button->type != ACPI_BUTTON_TYPE_LID)
273 return 0;
274
275 if (acpi_button_dir || acpi_lid_dir) {
276 printk(KERN_ERR PREFIX "More than one Lid device found!\n");
277 return -EEXIST;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400278 }
279
Zhang Rui912b7422011-03-23 10:21:40 +0800280 /* create /proc/acpi/button */
281 acpi_button_dir = proc_mkdir(ACPI_BUTTON_CLASS, acpi_root_dir);
282 if (!acpi_button_dir)
Patrick Mocheld550d982006-06-27 00:41:40 -0400283 return -ENODEV;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400284
Zhang Rui912b7422011-03-23 10:21:40 +0800285 /* create /proc/acpi/button/lid */
286 acpi_lid_dir = proc_mkdir(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
287 if (!acpi_lid_dir) {
288 ret = -ENODEV;
289 goto remove_button_dir;
290 }
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400291
Zhang Rui912b7422011-03-23 10:21:40 +0800292 /* create /proc/acpi/button/lid/LID/ */
293 acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), acpi_lid_dir);
294 if (!acpi_device_dir(device)) {
295 ret = -ENODEV;
296 goto remove_lid_dir;
297 }
298
299 /* create /proc/acpi/button/lid/LID/state */
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200300 entry = proc_create_single_data(ACPI_BUTTON_FILE_STATE, S_IRUGO,
301 acpi_device_dir(device), acpi_button_state_seq_show,
302 device);
Zhang Rui912b7422011-03-23 10:21:40 +0800303 if (!entry) {
304 ret = -ENODEV;
305 goto remove_dev_dir;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400306 }
307
Zhang Rui912b7422011-03-23 10:21:40 +0800308done:
309 return ret;
310
311remove_dev_dir:
312 remove_proc_entry(acpi_device_bid(device),
313 acpi_lid_dir);
314 acpi_device_dir(device) = NULL;
315remove_lid_dir:
316 remove_proc_entry(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
Benjamin Tissoirese370cc82016-07-29 17:08:41 +0200317 acpi_lid_dir = NULL;
Zhang Rui912b7422011-03-23 10:21:40 +0800318remove_button_dir:
319 remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir);
Benjamin Tissoirese370cc82016-07-29 17:08:41 +0200320 acpi_button_dir = NULL;
Zhang Rui912b7422011-03-23 10:21:40 +0800321 goto done;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400322}
323
Len Brown4be44fc2005-08-05 00:44:28 -0400324static int acpi_button_remove_fs(struct acpi_device *device)
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400325{
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500326 struct acpi_button *button = acpi_driver_data(device);
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400327
Zhang Rui912b7422011-03-23 10:21:40 +0800328 if (button->type != ACPI_BUTTON_TYPE_LID)
329 return 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400330
Zhang Rui912b7422011-03-23 10:21:40 +0800331 remove_proc_entry(ACPI_BUTTON_FILE_STATE,
332 acpi_device_dir(device));
333 remove_proc_entry(acpi_device_bid(device),
334 acpi_lid_dir);
335 acpi_device_dir(device) = NULL;
336 remove_proc_entry(ACPI_BUTTON_SUBCLASS_LID, acpi_button_dir);
Benjamin Tissoirese370cc82016-07-29 17:08:41 +0200337 acpi_lid_dir = NULL;
Zhang Rui912b7422011-03-23 10:21:40 +0800338 remove_proc_entry(ACPI_BUTTON_CLASS, acpi_root_dir);
Benjamin Tissoirese370cc82016-07-29 17:08:41 +0200339 acpi_button_dir = NULL;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400340
Patrick Mocheld550d982006-06-27 00:41:40 -0400341 return 0;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/* --------------------------------------------------------------------------
345 Driver Interface
346 -------------------------------------------------------------------------- */
Jesse Barnes7e127152009-09-10 15:28:02 -0700347int acpi_lid_notifier_register(struct notifier_block *nb)
348{
349 return blocking_notifier_chain_register(&acpi_lid_notifier, nb);
350}
351EXPORT_SYMBOL(acpi_lid_notifier_register);
352
353int acpi_lid_notifier_unregister(struct notifier_block *nb)
354{
355 return blocking_notifier_chain_unregister(&acpi_lid_notifier, nb);
356}
357EXPORT_SYMBOL(acpi_lid_notifier_unregister);
358
359int acpi_lid_open(void)
360{
Jesse Barnes2c907b72009-10-07 14:39:46 -0700361 if (!lid_device)
362 return -ENODEV;
363
Lv Zhengee7e2262016-06-01 18:10:42 +0800364 return acpi_lid_evaluate_state(lid_device);
Jesse Barnes7e127152009-09-10 15:28:02 -0700365}
366EXPORT_SYMBOL(acpi_lid_open);
367
Ravi Chandra Sadineni7c058c72018-06-27 10:55:02 -0700368static int acpi_lid_update_state(struct acpi_device *device,
369 bool signal_wakeup)
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400370{
Lv Zhengee7e2262016-06-01 18:10:42 +0800371 int state;
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400372
Lv Zhengee7e2262016-06-01 18:10:42 +0800373 state = acpi_lid_evaluate_state(device);
374 if (state < 0)
375 return state;
Bjorn Helgaas50a4da82009-04-08 15:39:38 +0000376
Ravi Chandra Sadineni7c058c72018-06-27 10:55:02 -0700377 if (state && signal_wakeup)
378 acpi_pm_wakeup_event(&device->dev);
379
Lv Zhengee7e2262016-06-01 18:10:42 +0800380 return acpi_lid_notify_state(device, state);
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400381}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Lv Zheng3540c322016-06-01 18:10:48 +0800383static void acpi_lid_initialize_state(struct acpi_device *device)
384{
385 switch (lid_init_state) {
386 case ACPI_BUTTON_LID_INIT_OPEN:
387 (void)acpi_lid_notify_state(device, 1);
388 break;
Lv Zhengf369fdf2017-05-09 15:02:22 +0800389 case ACPI_BUTTON_LID_INIT_METHOD:
Ravi Chandra Sadineni7c058c72018-06-27 10:55:02 -0700390 (void)acpi_lid_update_state(device, false);
Lv Zhengf369fdf2017-05-09 15:02:22 +0800391 break;
Lv Zheng3540c322016-06-01 18:10:48 +0800392 case ACPI_BUTTON_LID_INIT_IGNORE:
393 default:
394 break;
395 }
396}
397
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000398static void acpi_button_notify(struct acpi_device *device, u32 event)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000400 struct acpi_button *button = acpi_driver_data(device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500401 struct input_dev *input;
Hans de Goede84d3f6b2017-09-11 16:07:06 +0200402 int users;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 switch (event) {
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000405 case ACPI_FIXED_HARDWARE_EVENT:
406 event = ACPI_BUTTON_NOTIFY_STATUS;
407 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 case ACPI_BUTTON_NOTIFY_STATUS:
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500409 input = button->input;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500410 if (button->type == ACPI_BUTTON_TYPE_LID) {
Hans de Goede84d3f6b2017-09-11 16:07:06 +0200411 mutex_lock(&button->input->mutex);
412 users = button->input->users;
413 mutex_unlock(&button->input->mutex);
414 if (users)
Ravi Chandra Sadineni7c058c72018-06-27 10:55:02 -0700415 acpi_lid_update_state(device, true);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500416 } else {
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200417 int keycode;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500418
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +0200419 acpi_pm_wakeup_event(&device->dev);
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200420 if (button->suspended)
421 break;
422
423 keycode = test_bit(KEY_SLEEP, input->keybit) ?
424 KEY_SLEEP : KEY_POWER;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500425 input_report_key(input, keycode, 1);
426 input_sync(input);
427 input_report_key(input, keycode, 0);
Guillem Joverdf316e92008-10-24 00:28:33 +0300428 input_sync(input);
Rafael J. Wysocki1f835112011-01-06 23:36:01 +0100429
Lan Tianyu0bf63682014-03-15 13:37:13 -0400430 acpi_bus_generate_netlink_event(
431 device->pnp.device_class,
432 dev_name(&device->dev),
433 event, ++button->pushed);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 break;
436 default:
437 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400438 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200443#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200444static int acpi_button_suspend(struct device *dev)
445{
446 struct acpi_device *device = to_acpi_device(dev);
447 struct acpi_button *button = acpi_driver_data(device);
448
449 button->suspended = true;
450 return 0;
451}
452
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200453static int acpi_button_resume(struct device *dev)
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400454{
Rafael J. Wysocki1be532d2012-06-27 23:26:51 +0200455 struct acpi_device *device = to_acpi_device(dev);
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000456 struct acpi_button *button = acpi_driver_data(device);
Bjorn Helgaas50a4da82009-04-08 15:39:38 +0000457
Rafael J. Wysockie71eeb22014-07-23 00:59:04 +0200458 button->suspended = false;
Hans de Goede84d3f6b2017-09-11 16:07:06 +0200459 if (button->type == ACPI_BUTTON_TYPE_LID && button->input->users)
Lv Zheng3540c322016-06-01 18:10:48 +0800460 acpi_lid_initialize_state(device);
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400461 return 0;
462}
Rafael J. Wysocki90692402012-08-09 23:00:02 +0200463#endif
Alexey Starikovskiy23de5d92007-10-22 14:18:18 +0400464
Hans de Goede84d3f6b2017-09-11 16:07:06 +0200465static int acpi_lid_input_open(struct input_dev *input)
466{
467 struct acpi_device *device = input_get_drvdata(input);
468 struct acpi_button *button = acpi_driver_data(device);
469
470 button->last_state = !!acpi_lid_evaluate_state(device);
471 button->last_time = ktime_get();
472 acpi_lid_initialize_state(device);
473
474 return 0;
475}
476
Len Brown4be44fc2005-08-05 00:44:28 -0400477static int acpi_button_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500479 struct acpi_button *button;
480 struct input_dev *input;
Thomas Renninger620e1122010-10-01 10:54:00 +0200481 const char *hid = acpi_device_hid(device);
482 char *name, *class;
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000483 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Hans de Goede9e811e12017-11-22 16:06:12 +0100485 if (!strcmp(hid, ACPI_BUTTON_HID_LID) && dmi_check_system(lid_blacklst))
486 return -ENODEV;
487
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500488 button = kzalloc(sizeof(struct acpi_button), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (!button)
Patrick Mocheld550d982006-06-27 00:41:40 -0400490 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700492 device->driver_data = button;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500494 button->input = input = input_allocate_device();
495 if (!input) {
496 error = -ENOMEM;
497 goto err_free_button;
498 }
499
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000500 name = acpi_device_name(device);
501 class = acpi_device_class(device);
502
Bjorn Helgaasd68b5972009-04-08 15:40:04 +0000503 if (!strcmp(hid, ACPI_BUTTON_HID_POWER) ||
504 !strcmp(hid, ACPI_BUTTON_HID_POWERF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 button->type = ACPI_BUTTON_TYPE_POWER;
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000506 strcpy(name, ACPI_BUTTON_DEVICE_NAME_POWER);
507 sprintf(class, "%s/%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_POWER);
Bjorn Helgaasd68b5972009-04-08 15:40:04 +0000509 } else if (!strcmp(hid, ACPI_BUTTON_HID_SLEEP) ||
510 !strcmp(hid, ACPI_BUTTON_HID_SLEEPF)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 button->type = ACPI_BUTTON_TYPE_SLEEP;
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000512 strcpy(name, ACPI_BUTTON_DEVICE_NAME_SLEEP);
513 sprintf(class, "%s/%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_SLEEP);
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000515 } else if (!strcmp(hid, ACPI_BUTTON_HID_LID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 button->type = ACPI_BUTTON_TYPE_LID;
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000517 strcpy(name, ACPI_BUTTON_DEVICE_NAME_LID);
518 sprintf(class, "%s/%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID);
Hans de Goede84d3f6b2017-09-11 16:07:06 +0200520 input->open = acpi_lid_input_open;
Len Brown4be44fc2005-08-05 00:44:28 -0400521 } else {
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000522 printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", hid);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500523 error = -ENODEV;
524 goto err_free_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500527 error = acpi_button_add_fs(device);
528 if (error)
529 goto err_free_input;
530
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000531 snprintf(button->phys, sizeof(button->phys), "%s/button/input0", hid);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500532
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000533 input->name = name;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500534 input->phys = button->phys;
535 input->id.bustype = BUS_HOST;
536 input->id.product = button->type;
Andrey Borzenkov3b34e522008-03-04 15:06:35 -0800537 input->dev.parent = &device->dev;
Alexey Starikovskiyb34a8032005-08-03 17:55:21 -0400538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 switch (button->type) {
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500540 case ACPI_BUTTON_TYPE_POWER:
Lan Tianyu763f5272013-09-12 03:32:03 -0400541 input_set_capability(input, EV_KEY, KEY_POWER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500543
544 case ACPI_BUTTON_TYPE_SLEEP:
Lan Tianyu763f5272013-09-12 03:32:03 -0400545 input_set_capability(input, EV_KEY, KEY_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500547
548 case ACPI_BUTTON_TYPE_LID:
Lan Tianyu763f5272013-09-12 03:32:03 -0400549 input_set_capability(input, EV_SW, SW_LID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551 }
552
Hans de Goede84d3f6b2017-09-11 16:07:06 +0200553 input_set_drvdata(input, device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500554 error = input_register_device(input);
555 if (error)
Bjorn Helgaas373cfc32009-03-30 17:48:18 +0000556 goto err_remove_fs;
Jesse Barnes7e127152009-09-10 15:28:02 -0700557 if (button->type == ACPI_BUTTON_TYPE_LID) {
Jesse Barnes7e127152009-09-10 15:28:02 -0700558 /*
559 * This assumes there's only one lid device, or if there are
560 * more we only care about the last one...
561 */
562 lid_device = device;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Rafael J. Wysocki33e4f802017-06-12 22:56:34 +0200565 device_init_wakeup(&device->dev, true);
Bjorn Helgaasbf04a772009-04-08 15:39:54 +0000566 printk(KERN_INFO PREFIX "%s [%s]\n", name, acpi_device_bid(device));
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500567 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500569 err_remove_fs:
570 acpi_button_remove_fs(device);
571 err_free_input:
572 input_free_device(input);
573 err_free_button:
574 kfree(button);
575 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100578static int acpi_button_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Bjorn Helgaas1bce8112009-04-08 15:39:49 +0000580 struct acpi_button *button = acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Len Brown4be44fc2005-08-05 00:44:28 -0400582 acpi_button_remove_fs(device);
Dmitry Torokhovc0968f02006-11-09 00:40:13 -0500583 input_unregister_device(button->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 kfree(button);
Patrick Mocheld550d982006-06-27 00:41:40 -0400585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Kees Cooke4dca7b2017-10-17 19:04:42 -0700588static int param_set_lid_init_state(const char *val,
589 const struct kernel_param *kp)
Lv Zheng3540c322016-06-01 18:10:48 +0800590{
591 int result = 0;
592
593 if (!strncmp(val, "open", sizeof("open") - 1)) {
594 lid_init_state = ACPI_BUTTON_LID_INIT_OPEN;
595 pr_info("Notify initial lid state as open\n");
Lv Zhengf369fdf2017-05-09 15:02:22 +0800596 } else if (!strncmp(val, "method", sizeof("method") - 1)) {
597 lid_init_state = ACPI_BUTTON_LID_INIT_METHOD;
598 pr_info("Notify initial lid state with _LID return value\n");
Lv Zheng3540c322016-06-01 18:10:48 +0800599 } else if (!strncmp(val, "ignore", sizeof("ignore") - 1)) {
600 lid_init_state = ACPI_BUTTON_LID_INIT_IGNORE;
601 pr_info("Do not notify initial lid state\n");
602 } else
603 result = -EINVAL;
604 return result;
605}
606
Kees Cooke4dca7b2017-10-17 19:04:42 -0700607static int param_get_lid_init_state(char *buffer,
608 const struct kernel_param *kp)
Lv Zheng3540c322016-06-01 18:10:48 +0800609{
610 switch (lid_init_state) {
611 case ACPI_BUTTON_LID_INIT_OPEN:
612 return sprintf(buffer, "open");
Lv Zhengf369fdf2017-05-09 15:02:22 +0800613 case ACPI_BUTTON_LID_INIT_METHOD:
614 return sprintf(buffer, "method");
Lv Zheng3540c322016-06-01 18:10:48 +0800615 case ACPI_BUTTON_LID_INIT_IGNORE:
616 return sprintf(buffer, "ignore");
617 default:
618 return sprintf(buffer, "invalid");
619 }
620 return 0;
621}
622
623module_param_call(lid_init_state,
624 param_set_lid_init_state, param_get_lid_init_state,
625 NULL, 0644);
626MODULE_PARM_DESC(lid_init_state, "Behavior for reporting LID initial state");
627
Ard Biesheuvelac1e55b2018-04-23 11:16:56 +0200628static int acpi_button_register_driver(struct acpi_driver *driver)
629{
630 /*
631 * Modules such as nouveau.ko and i915.ko have a link time dependency
632 * on acpi_lid_open(), and would therefore not be loadable on ACPI
633 * capable kernels booted in non-ACPI mode if the return value of
634 * acpi_bus_register_driver() is returned from here with ACPI disabled
635 * when this driver is built as a module.
636 */
637 if (acpi_disabled)
638 return 0;
639
640 return acpi_bus_register_driver(driver);
641}
642
643static void acpi_button_unregister_driver(struct acpi_driver *driver)
644{
645 if (!acpi_disabled)
646 acpi_bus_unregister_driver(driver);
647}
648
649module_driver(acpi_button_driver, acpi_button_register_driver,
650 acpi_button_unregister_driver);