blob: b02bf770aead322d4227c49674704efefdbb856b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * wakeup.c - support wakeup devices
4 * Copyright (C) 2004 Li Shaohua <shaohua.li@intel.com>
5 */
6
7#include <linux/init.h>
8#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/types.h>
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060011
12#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "sleep.h"
14
Hans de Goededdfd9dc2020-04-03 17:48:33 +020015struct acpi_wakeup_handler {
16 struct list_head list_node;
17 bool (*wakeup)(void *context);
18 void *context;
19};
20
21static LIST_HEAD(acpi_wakeup_handler_head);
22static DEFINE_MUTEX(acpi_wakeup_handler_mutex);
23
Shaohua Li90905892009-04-07 10:24:29 +080024/*
25 * We didn't lock acpi_device_lock in the file, because it invokes oops in
26 * suspend/resume and isn't really required as this is called in S-state. At
27 * that time, there is no device hotplug
28 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/**
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040031 * acpi_enable_wakeup_devices - Enable wake-up device GPEs.
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010032 * @sleep_state: ACPI system sleep state.
33 *
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040034 * Enable wakeup device power of devices with the state.enable flag set and set
35 * the wakeup enable mask bits in the GPE registers that correspond to wakeup
36 * devices.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040038void acpi_enable_wakeup_devices(u8 sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
chenqiwu07761a42020-02-23 14:08:22 +080040 struct acpi_device *dev, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
chenqiwu07761a42020-02-23 14:08:22 +080042 list_for_each_entry_safe(dev, tmp, &acpi_wakeup_device_list,
43 wakeup_list) {
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +020044 if (!dev->wakeup.flags.valid
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +010045 || sleep_state > (u32) dev->wakeup.sleep_state
46 || !(device_may_wakeup(&dev->dev)
Maximilian Luzc6237b22020-11-05 03:06:00 +010047 || dev->wakeup.prepare_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 continue;
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010049
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +010050 if (device_may_wakeup(&dev->dev))
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040051 acpi_enable_wakeup_device_power(dev, sleep_state);
52
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010053 /* The wake-up power should have been enabled already. */
Lin Ming3a378982010-12-13 13:36:15 +080054 acpi_set_gpe_wake_mask(dev->wakeup.gpe_device, dev->wakeup.gpe_number,
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +020055 ACPI_GPE_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59/**
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040060 * acpi_disable_wakeup_devices - Disable devices' wakeup capability.
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +010061 * @sleep_state: ACPI system sleep state.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040063void acpi_disable_wakeup_devices(u8 sleep_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
chenqiwu07761a42020-02-23 14:08:22 +080065 struct acpi_device *dev, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
chenqiwu07761a42020-02-23 14:08:22 +080067 list_for_each_entry_safe(dev, tmp, &acpi_wakeup_device_list,
68 wakeup_list) {
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +020069 if (!dev->wakeup.flags.valid
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +010070 || sleep_state > (u32) dev->wakeup.sleep_state
71 || !(device_may_wakeup(&dev->dev)
Maximilian Luzc6237b22020-11-05 03:06:00 +010072 || dev->wakeup.prepare_count))
Alexey Starikovskiy9b039332007-09-26 19:47:30 +040073 continue;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +020074
Lin Ming3a378982010-12-13 13:36:15 +080075 acpi_set_gpe_wake_mask(dev->wakeup.gpe_device, dev->wakeup.gpe_number,
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +020076 ACPI_GPE_DISABLE);
77
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +010078 if (device_may_wakeup(&dev->dev))
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +020079 acpi_disable_wakeup_device_power(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
Bjorn Helgaas201b8c62009-03-24 16:50:19 -060083int __init acpi_wakeup_device_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
chenqiwu07761a42020-02-23 14:08:22 +080085 struct acpi_device *dev, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Shaohua Li90905892009-04-07 10:24:29 +080087 mutex_lock(&acpi_device_lock);
chenqiwu07761a42020-02-23 14:08:22 +080088 list_for_each_entry_safe(dev, tmp, &acpi_wakeup_device_list,
89 wakeup_list) {
Rafael J. Wysocki2a5d2422011-02-12 01:39:53 +010090 if (device_can_wakeup(&dev->dev)) {
91 /* Button GPEs are supposed to be always enabled. */
92 acpi_enable_gpe(dev->wakeup.gpe_device,
93 dev->wakeup.gpe_number);
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +010094 device_set_wakeup_enable(&dev->dev, true);
Rafael J. Wysocki2a5d2422011-02-12 01:39:53 +010095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Shaohua Li90905892009-04-07 10:24:29 +080097 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return 0;
99}
Hans de Goededdfd9dc2020-04-03 17:48:33 +0200100
101/**
102 * acpi_register_wakeup_handler - Register wakeup handler
103 * @wake_irq: The IRQ through which the device may receive wakeups
104 * @wakeup: Wakeup-handler to call when the SCI has triggered a wakeup
105 * @context: Context to pass to the handler when calling it
106 *
107 * Drivers which may share an IRQ with the SCI can use this to register
108 * a handler which returns true when the device they are managing wants
109 * to trigger a wakeup.
110 */
111int acpi_register_wakeup_handler(int wake_irq, bool (*wakeup)(void *context),
112 void *context)
113{
114 struct acpi_wakeup_handler *handler;
115
116 /*
117 * If the device is not sharing its IRQ with the SCI, there is no
118 * need to register the handler.
119 */
120 if (!acpi_sci_irq_valid() || wake_irq != acpi_sci_irq)
121 return 0;
122
123 handler = kmalloc(sizeof(*handler), GFP_KERNEL);
124 if (!handler)
125 return -ENOMEM;
126
127 handler->wakeup = wakeup;
128 handler->context = context;
129
130 mutex_lock(&acpi_wakeup_handler_mutex);
131 list_add(&handler->list_node, &acpi_wakeup_handler_head);
132 mutex_unlock(&acpi_wakeup_handler_mutex);
133
134 return 0;
135}
136EXPORT_SYMBOL_GPL(acpi_register_wakeup_handler);
137
138/**
139 * acpi_unregister_wakeup_handler - Unregister wakeup handler
140 * @wakeup: Wakeup-handler passed to acpi_register_wakeup_handler()
141 * @context: Context passed to acpi_register_wakeup_handler()
142 */
143void acpi_unregister_wakeup_handler(bool (*wakeup)(void *context),
144 void *context)
145{
146 struct acpi_wakeup_handler *handler;
147
148 mutex_lock(&acpi_wakeup_handler_mutex);
149 list_for_each_entry(handler, &acpi_wakeup_handler_head, list_node) {
150 if (handler->wakeup == wakeup && handler->context == context) {
151 list_del(&handler->list_node);
152 kfree(handler);
153 break;
154 }
155 }
156 mutex_unlock(&acpi_wakeup_handler_mutex);
157}
158EXPORT_SYMBOL_GPL(acpi_unregister_wakeup_handler);
159
160bool acpi_check_wakeup_handlers(void)
161{
162 struct acpi_wakeup_handler *handler;
163
164 /* No need to lock, nothing else is running when we're called. */
165 list_for_each_entry(handler, &acpi_wakeup_handler_head, list_node) {
166 if (handler->wakeup(handler->context))
167 return true;
168 }
169
170 return false;
171}