blob: fbf7819f5de55e8a8fb5d1b5dc5bf933e35a4683 [file] [log] [blame]
Simon Glass89969002013-02-25 14:08:38 -08001/*
2 * ChromeOS EC multi-function device (I2C)
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
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/i2c.h>
19#include <linux/interrupt.h>
20#include <linux/mfd/cros_ec.h>
21#include <linux/mfd/cros_ec_commands.h>
22#include <linux/platform_device.h>
23#include <linux/slab.h>
24
25static inline struct cros_ec_device *to_ec_dev(struct device *dev)
26{
27 struct i2c_client *client = to_i2c_client(dev);
28
29 return i2c_get_clientdata(client);
30}
31
Bill Richardson7e6cb5b2014-06-18 11:14:00 -070032static int cros_ec_cmd_xfer_i2c(struct cros_ec_device *ec_dev,
Bill Richardson5d4773e2014-06-18 11:14:02 -070033 struct cros_ec_command *msg)
Simon Glass89969002013-02-25 14:08:38 -080034{
35 struct i2c_client *client = ec_dev->priv;
36 int ret = -ENOMEM;
37 int i;
Doug Andersond6c15ed2014-06-27 12:56:12 -070038 int len;
Simon Glass89969002013-02-25 14:08:38 -080039 int packet_len;
40 u8 *out_buf = NULL;
41 u8 *in_buf = NULL;
42 u8 sum;
43 struct i2c_msg i2c_msg[2];
44
45 i2c_msg[0].addr = client->addr;
46 i2c_msg[0].flags = 0;
47 i2c_msg[1].addr = client->addr;
48 i2c_msg[1].flags = I2C_M_RD;
49
50 /*
51 * allocate larger packet (one byte for checksum, one byte for
52 * length, and one for result code)
53 */
Bill Richardson5d4773e2014-06-18 11:14:02 -070054 packet_len = msg->insize + 3;
Simon Glass89969002013-02-25 14:08:38 -080055 in_buf = kzalloc(packet_len, GFP_KERNEL);
56 if (!in_buf)
57 goto done;
58 i2c_msg[1].len = packet_len;
59 i2c_msg[1].buf = (char *)in_buf;
60
61 /*
62 * allocate larger packet (one byte for checksum, one for
63 * command code, one for length, and one for command version)
64 */
Bill Richardson5d4773e2014-06-18 11:14:02 -070065 packet_len = msg->outsize + 4;
Simon Glass89969002013-02-25 14:08:38 -080066 out_buf = kzalloc(packet_len, GFP_KERNEL);
67 if (!out_buf)
68 goto done;
69 i2c_msg[0].len = packet_len;
70 i2c_msg[0].buf = (char *)out_buf;
71
72 out_buf[0] = EC_CMD_VERSION0 + msg->version;
Bill Richardson5d4773e2014-06-18 11:14:02 -070073 out_buf[1] = msg->command;
74 out_buf[2] = msg->outsize;
Simon Glass89969002013-02-25 14:08:38 -080075
76 /* copy message payload and compute checksum */
77 sum = out_buf[0] + out_buf[1] + out_buf[2];
Bill Richardson5d4773e2014-06-18 11:14:02 -070078 for (i = 0; i < msg->outsize; i++) {
Javier Martinez Canillasa8411782015-06-09 13:04:42 +020079 out_buf[3 + i] = msg->data[i];
Simon Glass89969002013-02-25 14:08:38 -080080 sum += out_buf[3 + i];
81 }
Bill Richardson5d4773e2014-06-18 11:14:02 -070082 out_buf[3 + msg->outsize] = sum;
Simon Glass89969002013-02-25 14:08:38 -080083
84 /* send command to EC and read answer */
85 ret = i2c_transfer(client->adapter, i2c_msg, 2);
86 if (ret < 0) {
87 dev_err(ec_dev->dev, "i2c transfer failed: %d\n", ret);
88 goto done;
89 } else if (ret != 2) {
90 dev_err(ec_dev->dev, "failed to get response: %d\n", ret);
91 ret = -EIO;
92 goto done;
93 }
94
95 /* check response error code */
Bill Richardson6db07b62014-06-18 11:14:05 -070096 msg->result = i2c_msg[1].buf[0];
97 ret = cros_ec_check_result(ec_dev, msg);
98 if (ret)
Simon Glass89969002013-02-25 14:08:38 -080099 goto done;
Simon Glass89969002013-02-25 14:08:38 -0800100
Doug Andersond6c15ed2014-06-27 12:56:12 -0700101 len = in_buf[1];
102 if (len > msg->insize) {
103 dev_err(ec_dev->dev, "packet too long (%d bytes, expected %d)",
104 len, msg->insize);
105 ret = -ENOSPC;
106 goto done;
107 }
108
Simon Glass89969002013-02-25 14:08:38 -0800109 /* copy response packet payload and compute checksum */
110 sum = in_buf[0] + in_buf[1];
Doug Andersond6c15ed2014-06-27 12:56:12 -0700111 for (i = 0; i < len; i++) {
Javier Martinez Canillasa8411782015-06-09 13:04:42 +0200112 msg->data[i] = in_buf[2 + i];
Simon Glass89969002013-02-25 14:08:38 -0800113 sum += in_buf[2 + i];
114 }
115 dev_dbg(ec_dev->dev, "packet: %*ph, sum = %02x\n",
116 i2c_msg[1].len, in_buf, sum);
Doug Andersond6c15ed2014-06-27 12:56:12 -0700117 if (sum != in_buf[2 + len]) {
Simon Glass89969002013-02-25 14:08:38 -0800118 dev_err(ec_dev->dev, "bad packet checksum\n");
119 ret = -EBADMSG;
120 goto done;
121 }
122
Doug Andersond6c15ed2014-06-27 12:56:12 -0700123 ret = len;
Simon Glass89969002013-02-25 14:08:38 -0800124 done:
125 kfree(in_buf);
126 kfree(out_buf);
127 return ret;
128}
129
Thierry Reding192afe52013-11-25 13:22:31 +0100130static int cros_ec_i2c_probe(struct i2c_client *client,
Simon Glass89969002013-02-25 14:08:38 -0800131 const struct i2c_device_id *dev_id)
132{
133 struct device *dev = &client->dev;
134 struct cros_ec_device *ec_dev = NULL;
135 int err;
136
137 ec_dev = devm_kzalloc(dev, sizeof(*ec_dev), GFP_KERNEL);
138 if (!ec_dev)
139 return -ENOMEM;
140
141 i2c_set_clientdata(client, ec_dev);
Simon Glass89969002013-02-25 14:08:38 -0800142 ec_dev->dev = dev;
143 ec_dev->priv = client;
144 ec_dev->irq = client->irq;
Bill Richardson7e6cb5b2014-06-18 11:14:00 -0700145 ec_dev->cmd_xfer = cros_ec_cmd_xfer_i2c;
Simon Glass89969002013-02-25 14:08:38 -0800146 ec_dev->ec_name = client->name;
147 ec_dev->phys_name = client->adapter->name;
Simon Glass89969002013-02-25 14:08:38 -0800148
149 err = cros_ec_register(ec_dev);
150 if (err) {
151 dev_err(dev, "cannot register EC\n");
152 return err;
153 }
154
155 return 0;
156}
157
Thierry Reding192afe52013-11-25 13:22:31 +0100158static int cros_ec_i2c_remove(struct i2c_client *client)
Simon Glass89969002013-02-25 14:08:38 -0800159{
160 struct cros_ec_device *ec_dev = i2c_get_clientdata(client);
161
162 cros_ec_remove(ec_dev);
163
164 return 0;
165}
166
167#ifdef CONFIG_PM_SLEEP
168static int cros_ec_i2c_suspend(struct device *dev)
169{
170 struct cros_ec_device *ec_dev = to_ec_dev(dev);
171
172 return cros_ec_suspend(ec_dev);
173}
174
175static int cros_ec_i2c_resume(struct device *dev)
176{
177 struct cros_ec_device *ec_dev = to_ec_dev(dev);
178
179 return cros_ec_resume(ec_dev);
180}
181#endif
182
183static SIMPLE_DEV_PM_OPS(cros_ec_i2c_pm_ops, cros_ec_i2c_suspend,
184 cros_ec_i2c_resume);
185
186static const struct i2c_device_id cros_ec_i2c_id[] = {
187 { "cros-ec-i2c", 0 },
188 { }
189};
190MODULE_DEVICE_TABLE(i2c, cros_ec_i2c_id);
191
192static struct i2c_driver cros_ec_driver = {
193 .driver = {
194 .name = "cros-ec-i2c",
195 .owner = THIS_MODULE,
196 .pm = &cros_ec_i2c_pm_ops,
197 },
Thierry Reding192afe52013-11-25 13:22:31 +0100198 .probe = cros_ec_i2c_probe,
199 .remove = cros_ec_i2c_remove,
Simon Glass89969002013-02-25 14:08:38 -0800200 .id_table = cros_ec_i2c_id,
201};
202
203module_i2c_driver(cros_ec_driver);
204
205MODULE_LICENSE("GPL");
206MODULE_DESCRIPTION("ChromeOS EC multi function device");