1 // SPDX-License-Identifier: GPL-2.0-only
3 * ChromeOS EC multi-function device
5 * Copyright (C) 2012 Google, Inc
7 * The ChromeOS EC multi function device is used to mux all the requests
8 * to the EC device for its multiple features: keyboard controller,
9 * battery charging and regulator control, firmware update.
12 #include <linux/interrupt.h>
13 #include <linux/module.h>
14 #include <linux/of_platform.h>
15 #include <linux/platform_device.h>
16 #include <linux/platform_data/cros_ec_commands.h>
17 #include <linux/platform_data/cros_ec_proto.h>
18 #include <linux/slab.h>
19 #include <linux/suspend.h>
23 static struct cros_ec_platform ec_p = {
24 .ec_name = CROS_EC_DEV_NAME,
25 .cmd_offset = EC_CMD_PASSTHRU_OFFSET(CROS_EC_DEV_EC_INDEX),
28 static struct cros_ec_platform pd_p = {
29 .ec_name = CROS_EC_DEV_PD_NAME,
30 .cmd_offset = EC_CMD_PASSTHRU_OFFSET(CROS_EC_DEV_PD_INDEX),
34 * cros_ec_irq_handler() - top half part of the interrupt handler
36 * @data: (ec_dev) Device with events to process.
38 * Return: Wakeup the bottom half
40 static irqreturn_t cros_ec_irq_handler(int irq, void *data)
42 struct cros_ec_device *ec_dev = data;
44 ec_dev->last_event_time = cros_ec_get_time_ns();
46 return IRQ_WAKE_THREAD;
50 * cros_ec_handle_event() - process and forward pending events on EC
51 * @ec_dev: Device with events to process.
53 * Call this function in a loop when the kernel is notified that the EC has
56 * Return: true if more events are still pending and this function should be
59 static bool cros_ec_handle_event(struct cros_ec_device *ec_dev)
62 bool ec_has_more_events;
65 ret = cros_ec_get_next_event(ec_dev, &wake_event, &ec_has_more_events);
68 * Signal only if wake host events or any interrupt if
69 * cros_ec_get_next_event() returned an error (default value for
72 if (wake_event && device_may_wakeup(ec_dev->dev))
73 pm_wakeup_event(ec_dev->dev, 0);
76 blocking_notifier_call_chain(&ec_dev->event_notifier,
79 return ec_has_more_events;
83 * cros_ec_irq_thread() - bottom half part of the interrupt handler
85 * @data: (ec_dev) Device with events to process.
87 * Return: Interrupt handled.
89 irqreturn_t cros_ec_irq_thread(int irq, void *data)
91 struct cros_ec_device *ec_dev = data;
92 bool ec_has_more_events;
95 ec_has_more_events = cros_ec_handle_event(ec_dev);
96 } while (ec_has_more_events);
100 EXPORT_SYMBOL(cros_ec_irq_thread);
102 static int cros_ec_sleep_event(struct cros_ec_device *ec_dev, u8 sleep_event)
106 struct cros_ec_command msg;
108 struct ec_params_host_sleep_event req0;
109 struct ec_params_host_sleep_event_v1 req1;
110 struct ec_response_host_sleep_event_v1 resp1;
114 memset(&buf, 0, sizeof(buf));
116 if (ec_dev->host_sleep_v1) {
117 buf.u.req1.sleep_event = sleep_event;
118 buf.u.req1.suspend_params.sleep_timeout_ms =
119 ec_dev->suspend_timeout_ms;
121 buf.msg.outsize = sizeof(buf.u.req1);
122 if ((sleep_event == HOST_SLEEP_EVENT_S3_RESUME) ||
123 (sleep_event == HOST_SLEEP_EVENT_S0IX_RESUME))
124 buf.msg.insize = sizeof(buf.u.resp1);
129 buf.u.req0.sleep_event = sleep_event;
130 buf.msg.outsize = sizeof(buf.u.req0);
133 buf.msg.command = EC_CMD_HOST_SLEEP_EVENT;
135 ret = cros_ec_cmd_xfer_status(ec_dev, &buf.msg);
136 /* Report failure to transition to system wide suspend with a warning. */
137 if (ret >= 0 && ec_dev->host_sleep_v1 &&
138 (sleep_event == HOST_SLEEP_EVENT_S0IX_RESUME ||
139 sleep_event == HOST_SLEEP_EVENT_S3_RESUME)) {
140 ec_dev->last_resume_result =
141 buf.u.resp1.resume_response.sleep_transitions;
143 WARN_ONCE(buf.u.resp1.resume_response.sleep_transitions &
144 EC_HOST_RESUME_SLEEP_TIMEOUT,
145 "EC detected sleep transition timeout. Total sleep transitions: %d",
146 buf.u.resp1.resume_response.sleep_transitions &
147 EC_HOST_RESUME_SLEEP_TRANSITIONS_MASK);
153 static int cros_ec_ready_event(struct notifier_block *nb,
154 unsigned long queued_during_suspend,
157 struct cros_ec_device *ec_dev = container_of(nb, struct cros_ec_device,
159 u32 host_event = cros_ec_get_host_event(ec_dev);
161 if (host_event & EC_HOST_EVENT_MASK(EC_HOST_EVENT_INTERFACE_READY)) {
162 mutex_lock(&ec_dev->lock);
163 cros_ec_query_all(ec_dev);
164 mutex_unlock(&ec_dev->lock);
172 * cros_ec_register() - Register a new ChromeOS EC, using the provided info.
173 * @ec_dev: Device to register.
175 * Before calling this, allocate a pointer to a new device and then fill
176 * in all the fields up to the --private-- marker.
178 * Return: 0 on success or negative error code.
180 int cros_ec_register(struct cros_ec_device *ec_dev)
182 struct device *dev = ec_dev->dev;
185 BLOCKING_INIT_NOTIFIER_HEAD(&ec_dev->event_notifier);
186 BLOCKING_INIT_NOTIFIER_HEAD(&ec_dev->panic_notifier);
188 ec_dev->max_request = sizeof(struct ec_params_hello);
189 ec_dev->max_response = sizeof(struct ec_response_get_protocol_info);
190 ec_dev->max_passthru = 0;
193 ec_dev->suspend_timeout_ms = EC_HOST_SLEEP_TIMEOUT_DEFAULT;
195 ec_dev->din = devm_kzalloc(dev, ec_dev->din_size, GFP_KERNEL);
199 ec_dev->dout = devm_kzalloc(dev, ec_dev->dout_size, GFP_KERNEL);
203 lockdep_register_key(&ec_dev->lockdep_key);
204 mutex_init(&ec_dev->lock);
205 lockdep_set_class(&ec_dev->lock, &ec_dev->lockdep_key);
207 err = cros_ec_query_all(ec_dev);
209 dev_err(dev, "Cannot identify the EC: error %d\n", err);
213 if (ec_dev->irq > 0) {
214 err = devm_request_threaded_irq(dev, ec_dev->irq,
217 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
218 "chromeos-ec", ec_dev);
220 dev_err(dev, "Failed to request IRQ %d: %d\n",
226 /* Register a platform device for the main EC instance */
227 ec_dev->ec = platform_device_register_data(ec_dev->dev, "cros-ec-dev",
228 PLATFORM_DEVID_AUTO, &ec_p,
229 sizeof(struct cros_ec_platform));
230 if (IS_ERR(ec_dev->ec)) {
232 "Failed to create CrOS EC platform device\n");
233 err = PTR_ERR(ec_dev->ec);
237 if (ec_dev->max_passthru) {
239 * Register a platform device for the PD behind the main EC.
240 * We make the following assumptions:
241 * - behind an EC, we have a pd
242 * - only one device added.
243 * - the EC is responsive at init time (it is not true for a
246 ec_dev->pd = platform_device_register_data(ec_dev->dev,
248 PLATFORM_DEVID_AUTO, &pd_p,
249 sizeof(struct cros_ec_platform));
250 if (IS_ERR(ec_dev->pd)) {
252 "Failed to create CrOS PD platform device\n");
253 err = PTR_ERR(ec_dev->pd);
258 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
259 err = devm_of_platform_populate(dev);
261 dev_err(dev, "Failed to register sub-devices\n");
267 * Clear sleep event - this will fail harmlessly on platforms that
268 * don't implement the sleep event host command.
270 err = cros_ec_sleep_event(ec_dev, 0);
272 dev_dbg(ec_dev->dev, "Error %d clearing sleep event to ec\n",
275 if (ec_dev->mkbp_event_supported) {
277 * Register the notifier for EC_HOST_EVENT_INTERFACE_READY
280 ec_dev->notifier_ready.notifier_call = cros_ec_ready_event;
281 err = blocking_notifier_chain_register(&ec_dev->event_notifier,
282 &ec_dev->notifier_ready);
287 dev_info(dev, "Chrome EC device registered\n");
290 * Unlock EC that may be waiting for AP to process MKBP events.
291 * If the AP takes to long to answer, the EC would stop sending events.
293 if (ec_dev->mkbp_event_supported)
294 cros_ec_irq_thread(0, ec_dev);
298 platform_device_unregister(ec_dev->ec);
299 platform_device_unregister(ec_dev->pd);
300 mutex_destroy(&ec_dev->lock);
301 lockdep_unregister_key(&ec_dev->lockdep_key);
304 EXPORT_SYMBOL(cros_ec_register);
307 * cros_ec_unregister() - Remove a ChromeOS EC.
308 * @ec_dev: Device to unregister.
310 * Call this to deregister a ChromeOS EC, then clean up any private data.
312 * Return: 0 on success or negative error code.
314 void cros_ec_unregister(struct cros_ec_device *ec_dev)
316 platform_device_unregister(ec_dev->pd);
317 platform_device_unregister(ec_dev->ec);
318 mutex_destroy(&ec_dev->lock);
319 lockdep_unregister_key(&ec_dev->lockdep_key);
321 EXPORT_SYMBOL(cros_ec_unregister);
323 #ifdef CONFIG_PM_SLEEP
325 * cros_ec_suspend() - Handle a suspend operation for the ChromeOS EC device.
326 * @ec_dev: Device to suspend.
328 * This can be called by drivers to handle a suspend event.
330 * Return: 0 on success or negative error code.
332 int cros_ec_suspend(struct cros_ec_device *ec_dev)
334 struct device *dev = ec_dev->dev;
338 sleep_event = (!IS_ENABLED(CONFIG_ACPI) || pm_suspend_via_firmware()) ?
339 HOST_SLEEP_EVENT_S3_SUSPEND :
340 HOST_SLEEP_EVENT_S0IX_SUSPEND;
342 ret = cros_ec_sleep_event(ec_dev, sleep_event);
344 dev_dbg(ec_dev->dev, "Error %d sending suspend event to ec\n",
347 if (device_may_wakeup(dev))
348 ec_dev->wake_enabled = !enable_irq_wake(ec_dev->irq);
350 ec_dev->wake_enabled = false;
352 disable_irq(ec_dev->irq);
353 ec_dev->suspended = true;
357 EXPORT_SYMBOL(cros_ec_suspend);
359 static void cros_ec_report_events_during_suspend(struct cros_ec_device *ec_dev)
363 while (ec_dev->mkbp_event_supported &&
364 cros_ec_get_next_event(ec_dev, &wake_event, NULL) > 0) {
365 blocking_notifier_call_chain(&ec_dev->event_notifier,
368 if (wake_event && device_may_wakeup(ec_dev->dev))
369 pm_wakeup_event(ec_dev->dev, 0);
374 * cros_ec_resume() - Handle a resume operation for the ChromeOS EC device.
375 * @ec_dev: Device to resume.
377 * This can be called by drivers to handle a resume event.
379 * Return: 0 on success or negative error code.
381 int cros_ec_resume(struct cros_ec_device *ec_dev)
386 ec_dev->suspended = false;
387 enable_irq(ec_dev->irq);
389 sleep_event = (!IS_ENABLED(CONFIG_ACPI) || pm_suspend_via_firmware()) ?
390 HOST_SLEEP_EVENT_S3_RESUME :
391 HOST_SLEEP_EVENT_S0IX_RESUME;
393 ret = cros_ec_sleep_event(ec_dev, sleep_event);
395 dev_dbg(ec_dev->dev, "Error %d sending resume event to ec\n",
398 if (ec_dev->wake_enabled)
399 disable_irq_wake(ec_dev->irq);
402 * Let the mfd devices know about events that occur during
403 * suspend. This way the clients know what to do with them.
405 cros_ec_report_events_during_suspend(ec_dev);
410 EXPORT_SYMBOL(cros_ec_resume);
414 MODULE_LICENSE("GPL");
415 MODULE_DESCRIPTION("ChromeOS EC core driver");