blob: 08d82bfc5268f19c5783fe1ae3fc57dbf4f191f2 [file] [log] [blame]
Simon Glass4ab61742013-02-25 14:08:37 -08001/*
2 * ChromeOS EC multi-function device
3 *
4 * Copyright (C) 2012 Google, Inc
5 *
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * The ChromeOS EC multi function device is used to mux all the requests
16 * to the EC device for its multiple features: keyboard controller,
17 * battery charging and regulator control, firmware update.
18 */
19
Todd Brochbb03ffb2015-05-20 11:31:28 +020020#include <linux/of_platform.h>
Simon Glass4ab61742013-02-25 14:08:37 -080021#include <linux/interrupt.h>
22#include <linux/slab.h>
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +010023#include <linux/module.h>
Simon Glass4ab61742013-02-25 14:08:37 -080024#include <linux/mfd/core.h>
25#include <linux/mfd/cros_ec.h>
Andrew Brestickera6551a72014-09-18 17:18:56 +020026
Geert Uytterhoeven5ac98552013-11-18 14:33:06 +010027static const struct mfd_cell cros_devs[] = {
Simon Glass4ab61742013-02-25 14:08:37 -080028 {
Javier Martinez Canillas8a4be852015-02-02 12:26:26 +010029 .name = "cros-ec-ctl",
Todd Brochbb03ffb2015-05-20 11:31:28 +020030 .id = PLATFORM_DEVID_AUTO,
Javier Martinez Canillas8a4be852015-02-02 12:26:26 +010031 },
Simon Glass4ab61742013-02-25 14:08:37 -080032};
33
34int cros_ec_register(struct cros_ec_device *ec_dev)
35{
36 struct device *dev = ec_dev->dev;
37 int err = 0;
38
Stephen Barber2c7589a2015-06-09 13:04:45 +020039 ec_dev->max_request = sizeof(struct ec_params_hello);
40 ec_dev->max_response = sizeof(struct ec_response_get_protocol_info);
41 ec_dev->max_passthru = 0;
42
43 ec_dev->din = devm_kzalloc(dev, ec_dev->din_size, GFP_KERNEL);
44 if (!ec_dev->din)
45 return -ENOMEM;
46
47 ec_dev->dout = devm_kzalloc(dev, ec_dev->dout_size, GFP_KERNEL);
48 if (!ec_dev->dout)
49 return -ENOMEM;
Simon Glass4ab61742013-02-25 14:08:37 -080050
Andrew Bresticker63427532014-09-18 17:18:57 +020051 mutex_init(&ec_dev->lock);
52
Stephen Barber2c7589a2015-06-09 13:04:45 +020053 cros_ec_query_all(ec_dev);
54
Simon Glass4ab61742013-02-25 14:08:37 -080055 err = mfd_add_devices(dev, 0, cros_devs,
56 ARRAY_SIZE(cros_devs),
57 NULL, ec_dev->irq, NULL);
58 if (err) {
59 dev_err(dev, "failed to add mfd devices\n");
Andrew Brestickerd1fd3452014-06-18 11:14:07 -070060 return err;
Simon Glass4ab61742013-02-25 14:08:37 -080061 }
62
Todd Brochbb03ffb2015-05-20 11:31:28 +020063 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
64 err = of_platform_populate(dev->of_node, NULL, NULL, dev);
65 if (err) {
66 mfd_remove_devices(dev);
67 dev_err(dev, "Failed to register sub-devices\n");
68 return err;
69 }
70 }
71
Bill Richardson533cec82014-06-18 11:14:03 -070072 dev_info(dev, "Chrome EC device registered\n");
Simon Glass4ab61742013-02-25 14:08:37 -080073
74 return 0;
Simon Glass4ab61742013-02-25 14:08:37 -080075}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +010076EXPORT_SYMBOL(cros_ec_register);
Simon Glass4ab61742013-02-25 14:08:37 -080077
78int cros_ec_remove(struct cros_ec_device *ec_dev)
79{
80 mfd_remove_devices(ec_dev->dev);
Simon Glass4ab61742013-02-25 14:08:37 -080081
82 return 0;
83}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +010084EXPORT_SYMBOL(cros_ec_remove);
Simon Glass4ab61742013-02-25 14:08:37 -080085
86#ifdef CONFIG_PM_SLEEP
87int cros_ec_suspend(struct cros_ec_device *ec_dev)
88{
89 struct device *dev = ec_dev->dev;
90
91 if (device_may_wakeup(dev))
92 ec_dev->wake_enabled = !enable_irq_wake(ec_dev->irq);
93
94 disable_irq(ec_dev->irq);
95 ec_dev->was_wake_device = ec_dev->wake_enabled;
96
97 return 0;
98}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +010099EXPORT_SYMBOL(cros_ec_suspend);
Simon Glass4ab61742013-02-25 14:08:37 -0800100
101int cros_ec_resume(struct cros_ec_device *ec_dev)
102{
103 enable_irq(ec_dev->irq);
104
105 if (ec_dev->wake_enabled) {
106 disable_irq_wake(ec_dev->irq);
107 ec_dev->wake_enabled = 0;
108 }
109
110 return 0;
111}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +0100112EXPORT_SYMBOL(cros_ec_resume);
113
Simon Glass4ab61742013-02-25 14:08:37 -0800114#endif
Bill Richardsona865a582014-04-17 12:32:17 -0700115
116MODULE_LICENSE("GPL");
117MODULE_DESCRIPTION("ChromeOS EC core driver");