blob: 0eee635420383dbc2765490c21dd47aa18d72ac4 [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
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020027#define CROS_EC_DEV_EC_INDEX 0
28#define CROS_EC_DEV_PD_INDEX 1
29
Lee Jonescf649e02015-06-15 21:39:39 +080030static struct cros_ec_platform ec_p = {
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020031 .ec_name = CROS_EC_DEV_NAME,
32 .cmd_offset = EC_CMD_PASSTHRU_OFFSET(CROS_EC_DEV_EC_INDEX),
33};
34
Lee Jonescf649e02015-06-15 21:39:39 +080035static struct cros_ec_platform pd_p = {
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020036 .ec_name = CROS_EC_DEV_PD_NAME,
37 .cmd_offset = EC_CMD_PASSTHRU_OFFSET(CROS_EC_DEV_PD_INDEX),
38};
39
Lee Jonescf649e02015-06-15 21:39:39 +080040static const struct mfd_cell ec_cell = {
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020041 .name = "cros-ec-ctl",
42 .platform_data = &ec_p,
43 .pdata_size = sizeof(ec_p),
44};
45
Lee Jonescf649e02015-06-15 21:39:39 +080046static const struct mfd_cell ec_pd_cell = {
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020047 .name = "cros-ec-ctl",
48 .platform_data = &pd_p,
49 .pdata_size = sizeof(pd_p),
Simon Glass4ab61742013-02-25 14:08:37 -080050};
51
52int cros_ec_register(struct cros_ec_device *ec_dev)
53{
54 struct device *dev = ec_dev->dev;
55 int err = 0;
56
Stephen Barber2c7589a2015-06-09 13:04:45 +020057 ec_dev->max_request = sizeof(struct ec_params_hello);
58 ec_dev->max_response = sizeof(struct ec_response_get_protocol_info);
59 ec_dev->max_passthru = 0;
60
61 ec_dev->din = devm_kzalloc(dev, ec_dev->din_size, GFP_KERNEL);
62 if (!ec_dev->din)
63 return -ENOMEM;
64
65 ec_dev->dout = devm_kzalloc(dev, ec_dev->dout_size, GFP_KERNEL);
66 if (!ec_dev->dout)
67 return -ENOMEM;
Simon Glass4ab61742013-02-25 14:08:37 -080068
Andrew Bresticker63427532014-09-18 17:18:57 +020069 mutex_init(&ec_dev->lock);
70
Stephen Barber2c7589a2015-06-09 13:04:45 +020071 cros_ec_query_all(ec_dev);
72
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020073 err = mfd_add_devices(ec_dev->dev, PLATFORM_DEVID_AUTO, &ec_cell, 1,
Simon Glass4ab61742013-02-25 14:08:37 -080074 NULL, ec_dev->irq, NULL);
75 if (err) {
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020076 dev_err(dev,
77 "Failed to register Embedded Controller subdevice %d\n",
78 err);
Andrew Brestickerd1fd3452014-06-18 11:14:07 -070079 return err;
Simon Glass4ab61742013-02-25 14:08:37 -080080 }
81
Gwendal Grignou57b33ff2015-06-09 13:04:47 +020082 if (ec_dev->max_passthru) {
83 /*
84 * Register a PD device as well on top of this device.
85 * We make the following assumptions:
86 * - behind an EC, we have a pd
87 * - only one device added.
88 * - the EC is responsive at init time (it is not true for a
89 * sensor hub.
90 */
91 err = mfd_add_devices(ec_dev->dev, PLATFORM_DEVID_AUTO,
92 &ec_pd_cell, 1, NULL, ec_dev->irq, NULL);
93 if (err) {
94 dev_err(dev,
95 "Failed to register Power Delivery subdevice %d\n",
96 err);
97 return err;
98 }
99 }
100
Todd Brochbb03ffb2015-05-20 11:31:28 +0200101 if (IS_ENABLED(CONFIG_OF) && dev->of_node) {
102 err = of_platform_populate(dev->of_node, NULL, NULL, dev);
103 if (err) {
104 mfd_remove_devices(dev);
105 dev_err(dev, "Failed to register sub-devices\n");
106 return err;
107 }
108 }
109
Bill Richardson533cec82014-06-18 11:14:03 -0700110 dev_info(dev, "Chrome EC device registered\n");
Simon Glass4ab61742013-02-25 14:08:37 -0800111
112 return 0;
Simon Glass4ab61742013-02-25 14:08:37 -0800113}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +0100114EXPORT_SYMBOL(cros_ec_register);
Simon Glass4ab61742013-02-25 14:08:37 -0800115
116int cros_ec_remove(struct cros_ec_device *ec_dev)
117{
118 mfd_remove_devices(ec_dev->dev);
Simon Glass4ab61742013-02-25 14:08:37 -0800119
120 return 0;
121}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +0100122EXPORT_SYMBOL(cros_ec_remove);
Simon Glass4ab61742013-02-25 14:08:37 -0800123
124#ifdef CONFIG_PM_SLEEP
125int cros_ec_suspend(struct cros_ec_device *ec_dev)
126{
127 struct device *dev = ec_dev->dev;
128
129 if (device_may_wakeup(dev))
130 ec_dev->wake_enabled = !enable_irq_wake(ec_dev->irq);
131
132 disable_irq(ec_dev->irq);
133 ec_dev->was_wake_device = ec_dev->wake_enabled;
134
135 return 0;
136}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +0100137EXPORT_SYMBOL(cros_ec_suspend);
Simon Glass4ab61742013-02-25 14:08:37 -0800138
139int cros_ec_resume(struct cros_ec_device *ec_dev)
140{
141 enable_irq(ec_dev->irq);
142
143 if (ec_dev->wake_enabled) {
144 disable_irq_wake(ec_dev->irq);
145 ec_dev->wake_enabled = 0;
146 }
147
148 return 0;
149}
Samuel Ortiz5ebeaff2013-03-20 09:46:15 +0100150EXPORT_SYMBOL(cros_ec_resume);
151
Simon Glass4ab61742013-02-25 14:08:37 -0800152#endif
Bill Richardsona865a582014-04-17 12:32:17 -0700153
154MODULE_LICENSE("GPL");
155MODULE_DESCRIPTION("ChromeOS EC core driver");