blob: a2a605de79a7c8504fde63ab4a14d694101b6a09 [file] [log] [blame]
Simon Glassa17d94f2013-02-25 14:08:39 -08001/*
2 * ChromeOS EC multi-function device (SPI)
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/delay.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/mfd/cros_ec.h>
20#include <linux/mfd/cros_ec_commands.h>
Rhyland Klein01e73c82013-12-09 12:36:09 +010021#include <linux/of.h>
Simon Glassa17d94f2013-02-25 14:08:39 -080022#include <linux/platform_device.h>
23#include <linux/slab.h>
24#include <linux/spi/spi.h>
25
26
27/* The header byte, which follows the preamble */
28#define EC_MSG_HEADER 0xec
29
30/*
31 * Number of EC preamble bytes we read at a time. Since it takes
32 * about 400-500us for the EC to respond there is not a lot of
33 * point in tuning this. If the EC could respond faster then
34 * we could increase this so that might expect the preamble and
35 * message to occur in a single transaction. However, the maximum
36 * SPI transfer size is 256 bytes, so at 5MHz we need a response
37 * time of perhaps <320us (200 bytes / 1600 bits).
38 */
39#define EC_MSG_PREAMBLE_COUNT 32
40
41/*
42 * We must get a response from the EC in 5ms. This is a very long
43 * time, but the flash write command can take 2-3ms. The EC command
44 * processing is currently not very fast (about 500us). We could
45 * look at speeding this up and making the flash write command a
46 * 'slow' command, requiring a GET_STATUS wait loop, like flash
47 * erase.
48 */
49#define EC_MSG_DEADLINE_MS 5
50
51/*
52 * Time between raising the SPI chip select (for the end of a
53 * transaction) and dropping it again (for the next transaction).
Derek Basehore49f91ac2013-11-18 11:30:48 +010054 * If we go too fast, the EC will miss the transaction. We know that we
55 * need at least 70 us with the 16 MHz STM32 EC, so go with 200 us to be
56 * safe.
Simon Glassa17d94f2013-02-25 14:08:39 -080057 */
Derek Basehore49f91ac2013-11-18 11:30:48 +010058#define EC_SPI_RECOVERY_TIME_NS (200 * 1000)
Simon Glassa17d94f2013-02-25 14:08:39 -080059
60/**
61 * struct cros_ec_spi - information about a SPI-connected EC
62 *
63 * @spi: SPI device we are connected to
64 * @last_transfer_ns: time that we last finished a transfer, or 0 if there
65 * if no record
Rhyland Klein01e73c82013-12-09 12:36:09 +010066 * @end_of_msg_delay: used to set the delay_usecs on the spi_transfer that
67 * is sent when we want to turn off CS at the end of a transaction.
Doug Anderson362196e2014-04-30 10:44:05 -070068 * @lock: mutex to ensure only one user of cros_ec_command_spi_xfer at a time
Simon Glassa17d94f2013-02-25 14:08:39 -080069 */
70struct cros_ec_spi {
71 struct spi_device *spi;
72 s64 last_transfer_ns;
Rhyland Klein01e73c82013-12-09 12:36:09 +010073 unsigned int end_of_msg_delay;
Doug Anderson362196e2014-04-30 10:44:05 -070074 struct mutex lock;
Simon Glassa17d94f2013-02-25 14:08:39 -080075};
76
77static void debug_packet(struct device *dev, const char *name, u8 *ptr,
78 int len)
79{
80#ifdef DEBUG
81 int i;
82
83 dev_dbg(dev, "%s: ", name);
84 for (i = 0; i < len; i++)
Thierry Reding9e146f42013-11-18 11:30:49 +010085 pr_cont(" %02x", ptr[i]);
86
87 pr_cont("\n");
Simon Glassa17d94f2013-02-25 14:08:39 -080088#endif
89}
90
91/**
92 * cros_ec_spi_receive_response - Receive a response from the EC.
93 *
94 * This function has two phases: reading the preamble bytes (since if we read
95 * data from the EC before it is ready to send, we just get preamble) and
96 * reading the actual message.
97 *
98 * The received data is placed into ec_dev->din.
99 *
100 * @ec_dev: ChromeOS EC device
101 * @need_len: Number of message bytes we need to read
102 */
103static int cros_ec_spi_receive_response(struct cros_ec_device *ec_dev,
104 int need_len)
105{
106 struct cros_ec_spi *ec_spi = ec_dev->priv;
107 struct spi_transfer trans;
108 struct spi_message msg;
109 u8 *ptr, *end;
110 int ret;
111 unsigned long deadline;
112 int todo;
113
114 /* Receive data until we see the header byte */
115 deadline = jiffies + msecs_to_jiffies(EC_MSG_DEADLINE_MS);
116 do {
Thierry Redingdaf93d22013-12-09 12:36:10 +0100117 memset(&trans, 0, sizeof(trans));
Simon Glassa17d94f2013-02-25 14:08:39 -0800118 trans.cs_change = 1;
119 trans.rx_buf = ptr = ec_dev->din;
120 trans.len = EC_MSG_PREAMBLE_COUNT;
121
122 spi_message_init(&msg);
123 spi_message_add_tail(&trans, &msg);
124 ret = spi_sync(ec_spi->spi, &msg);
125 if (ret < 0) {
126 dev_err(ec_dev->dev, "spi transfer failed: %d\n", ret);
127 return ret;
128 }
129
130 for (end = ptr + EC_MSG_PREAMBLE_COUNT; ptr != end; ptr++) {
131 if (*ptr == EC_MSG_HEADER) {
Geert Uytterhoevenc34924b2013-05-08 23:37:45 +0200132 dev_dbg(ec_dev->dev, "msg found at %zd\n",
Simon Glassa17d94f2013-02-25 14:08:39 -0800133 ptr - ec_dev->din);
134 break;
135 }
136 }
137
138 if (time_after(jiffies, deadline)) {
139 dev_warn(ec_dev->dev, "EC failed to respond in time\n");
140 return -ETIMEDOUT;
141 }
142 } while (ptr == end);
143
144 /*
145 * ptr now points to the header byte. Copy any valid data to the
146 * start of our buffer
147 */
148 todo = end - ++ptr;
149 BUG_ON(todo < 0 || todo > ec_dev->din_size);
150 todo = min(todo, need_len);
151 memmove(ec_dev->din, ptr, todo);
152 ptr = ec_dev->din + todo;
153 dev_dbg(ec_dev->dev, "need %d, got %d bytes from preamble\n",
154 need_len, todo);
155 need_len -= todo;
156
157 /* Receive data until we have it all */
158 while (need_len > 0) {
159 /*
160 * We can't support transfers larger than the SPI FIFO size
161 * unless we have DMA. We don't have DMA on the ISP SPI ports
162 * for Exynos. We need a way of asking SPI driver for
163 * maximum-supported transfer size.
164 */
165 todo = min(need_len, 256);
Geert Uytterhoevenc34924b2013-05-08 23:37:45 +0200166 dev_dbg(ec_dev->dev, "loop, todo=%d, need_len=%d, ptr=%zd\n",
Simon Glassa17d94f2013-02-25 14:08:39 -0800167 todo, need_len, ptr - ec_dev->din);
168
Thierry Redingdaf93d22013-12-09 12:36:10 +0100169 memset(&trans, 0, sizeof(trans));
Simon Glassa17d94f2013-02-25 14:08:39 -0800170 trans.cs_change = 1;
171 trans.rx_buf = ptr;
172 trans.len = todo;
173 spi_message_init(&msg);
174 spi_message_add_tail(&trans, &msg);
175
176 /* send command to EC and read answer */
177 BUG_ON((u8 *)trans.rx_buf - ec_dev->din + todo >
178 ec_dev->din_size);
179 ret = spi_sync(ec_spi->spi, &msg);
180 if (ret < 0) {
181 dev_err(ec_dev->dev, "spi transfer failed: %d\n", ret);
182 return ret;
183 }
184
185 debug_packet(ec_dev->dev, "interim", ptr, todo);
186 ptr += todo;
187 need_len -= todo;
188 }
189
Geert Uytterhoevenc34924b2013-05-08 23:37:45 +0200190 dev_dbg(ec_dev->dev, "loop done, ptr=%zd\n", ptr - ec_dev->din);
Simon Glassa17d94f2013-02-25 14:08:39 -0800191
192 return 0;
193}
194
195/**
196 * cros_ec_command_spi_xfer - Transfer a message over SPI and receive the reply
197 *
198 * @ec_dev: ChromeOS EC device
199 * @ec_msg: Message to transfer
200 */
201static int cros_ec_command_spi_xfer(struct cros_ec_device *ec_dev,
202 struct cros_ec_msg *ec_msg)
203{
204 struct cros_ec_spi *ec_spi = ec_dev->priv;
205 struct spi_transfer trans;
206 struct spi_message msg;
207 int i, len;
208 u8 *ptr;
209 int sum;
210 int ret = 0, final_ret;
211 struct timespec ts;
212
Doug Anderson362196e2014-04-30 10:44:05 -0700213 /*
214 * We have the shared ec_dev buffer plus we do lots of separate spi_sync
215 * calls, so we need to make sure only one person is using this at a
216 * time.
217 */
218 mutex_lock(&ec_spi->lock);
219
Simon Glassa17d94f2013-02-25 14:08:39 -0800220 len = cros_ec_prepare_tx(ec_dev, ec_msg);
221 dev_dbg(ec_dev->dev, "prepared, len=%d\n", len);
222
223 /* If it's too soon to do another transaction, wait */
224 if (ec_spi->last_transfer_ns) {
225 struct timespec ts;
226 unsigned long delay; /* The delay completed so far */
227
228 ktime_get_ts(&ts);
229 delay = timespec_to_ns(&ts) - ec_spi->last_transfer_ns;
230 if (delay < EC_SPI_RECOVERY_TIME_NS)
David Hendricks1fe36862014-04-30 10:44:04 -0700231 ndelay(EC_SPI_RECOVERY_TIME_NS - delay);
Simon Glassa17d94f2013-02-25 14:08:39 -0800232 }
233
234 /* Transmit phase - send our message */
235 debug_packet(ec_dev->dev, "out", ec_dev->dout, len);
Thierry Redingdaf93d22013-12-09 12:36:10 +0100236 memset(&trans, 0, sizeof(trans));
Simon Glassa17d94f2013-02-25 14:08:39 -0800237 trans.tx_buf = ec_dev->dout;
238 trans.len = len;
239 trans.cs_change = 1;
240 spi_message_init(&msg);
241 spi_message_add_tail(&trans, &msg);
242 ret = spi_sync(ec_spi->spi, &msg);
243
244 /* Get the response */
245 if (!ret) {
246 ret = cros_ec_spi_receive_response(ec_dev,
247 ec_msg->in_len + EC_MSG_TX_PROTO_BYTES);
248 } else {
249 dev_err(ec_dev->dev, "spi transfer failed: %d\n", ret);
250 }
251
252 /* turn off CS */
253 spi_message_init(&msg);
Rhyland Klein01e73c82013-12-09 12:36:09 +0100254
255 if (ec_spi->end_of_msg_delay) {
256 /*
257 * Add delay for last transaction, to ensure the rising edge
258 * doesn't come too soon after the end of the data.
259 */
260 memset(&trans, 0, sizeof(trans));
261 trans.delay_usecs = ec_spi->end_of_msg_delay;
262 spi_message_add_tail(&trans, &msg);
263 }
264
Simon Glassa17d94f2013-02-25 14:08:39 -0800265 final_ret = spi_sync(ec_spi->spi, &msg);
266 ktime_get_ts(&ts);
267 ec_spi->last_transfer_ns = timespec_to_ns(&ts);
268 if (!ret)
269 ret = final_ret;
270 if (ret < 0) {
271 dev_err(ec_dev->dev, "spi transfer failed: %d\n", ret);
Doug Anderson362196e2014-04-30 10:44:05 -0700272 goto exit;
Simon Glassa17d94f2013-02-25 14:08:39 -0800273 }
274
275 /* check response error code */
276 ptr = ec_dev->din;
277 if (ptr[0]) {
278 dev_warn(ec_dev->dev, "command 0x%02x returned an error %d\n",
279 ec_msg->cmd, ptr[0]);
280 debug_packet(ec_dev->dev, "in_err", ptr, len);
Doug Anderson362196e2014-04-30 10:44:05 -0700281 ret = -EINVAL;
282 goto exit;
Simon Glassa17d94f2013-02-25 14:08:39 -0800283 }
284 len = ptr[1];
285 sum = ptr[0] + ptr[1];
286 if (len > ec_msg->in_len) {
287 dev_err(ec_dev->dev, "packet too long (%d bytes, expected %d)",
288 len, ec_msg->in_len);
Doug Anderson362196e2014-04-30 10:44:05 -0700289 ret = -ENOSPC;
290 goto exit;
Simon Glassa17d94f2013-02-25 14:08:39 -0800291 }
292
293 /* copy response packet payload and compute checksum */
294 for (i = 0; i < len; i++) {
295 sum += ptr[i + 2];
296 if (ec_msg->in_len)
297 ec_msg->in_buf[i] = ptr[i + 2];
298 }
299 sum &= 0xff;
300
301 debug_packet(ec_dev->dev, "in", ptr, len + 3);
302
303 if (sum != ptr[len + 2]) {
304 dev_err(ec_dev->dev,
305 "bad packet checksum, expected %02x, got %02x\n",
306 sum, ptr[len + 2]);
Doug Anderson362196e2014-04-30 10:44:05 -0700307 ret = -EBADMSG;
308 goto exit;
Simon Glassa17d94f2013-02-25 14:08:39 -0800309 }
310
Doug Anderson362196e2014-04-30 10:44:05 -0700311 ret = 0;
312exit:
313 mutex_unlock(&ec_spi->lock);
314 return ret;
Simon Glassa17d94f2013-02-25 14:08:39 -0800315}
316
Rhyland Klein01e73c82013-12-09 12:36:09 +0100317static void cros_ec_spi_dt_probe(struct cros_ec_spi *ec_spi, struct device *dev)
318{
319 struct device_node *np = dev->of_node;
320 u32 val;
321 int ret;
322
323 ret = of_property_read_u32(np, "google,cros-ec-spi-msg-delay", &val);
324 if (!ret)
325 ec_spi->end_of_msg_delay = val;
326}
327
Thierry Reding9922b412013-11-25 13:22:30 +0100328static int cros_ec_spi_probe(struct spi_device *spi)
Simon Glassa17d94f2013-02-25 14:08:39 -0800329{
330 struct device *dev = &spi->dev;
331 struct cros_ec_device *ec_dev;
332 struct cros_ec_spi *ec_spi;
333 int err;
334
335 spi->bits_per_word = 8;
336 spi->mode = SPI_MODE_0;
337 err = spi_setup(spi);
338 if (err < 0)
339 return err;
340
341 ec_spi = devm_kzalloc(dev, sizeof(*ec_spi), GFP_KERNEL);
342 if (ec_spi == NULL)
343 return -ENOMEM;
344 ec_spi->spi = spi;
Doug Anderson362196e2014-04-30 10:44:05 -0700345 mutex_init(&ec_spi->lock);
Simon Glassa17d94f2013-02-25 14:08:39 -0800346 ec_dev = devm_kzalloc(dev, sizeof(*ec_dev), GFP_KERNEL);
347 if (!ec_dev)
348 return -ENOMEM;
349
Rhyland Klein01e73c82013-12-09 12:36:09 +0100350 /* Check for any DT properties */
351 cros_ec_spi_dt_probe(ec_spi, dev);
352
Simon Glassa17d94f2013-02-25 14:08:39 -0800353 spi_set_drvdata(spi, ec_dev);
354 ec_dev->name = "SPI";
355 ec_dev->dev = dev;
356 ec_dev->priv = ec_spi;
357 ec_dev->irq = spi->irq;
358 ec_dev->command_xfer = cros_ec_command_spi_xfer;
359 ec_dev->ec_name = ec_spi->spi->modalias;
360 ec_dev->phys_name = dev_name(&ec_spi->spi->dev);
361 ec_dev->parent = &ec_spi->spi->dev;
362 ec_dev->din_size = EC_MSG_BYTES + EC_MSG_PREAMBLE_COUNT;
363 ec_dev->dout_size = EC_MSG_BYTES;
364
365 err = cros_ec_register(ec_dev);
366 if (err) {
367 dev_err(dev, "cannot register EC\n");
368 return err;
369 }
370
371 return 0;
372}
373
Thierry Reding9922b412013-11-25 13:22:30 +0100374static int cros_ec_spi_remove(struct spi_device *spi)
Simon Glassa17d94f2013-02-25 14:08:39 -0800375{
376 struct cros_ec_device *ec_dev;
377
378 ec_dev = spi_get_drvdata(spi);
379 cros_ec_remove(ec_dev);
380
381 return 0;
382}
383
384#ifdef CONFIG_PM_SLEEP
385static int cros_ec_spi_suspend(struct device *dev)
386{
387 struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
388
389 return cros_ec_suspend(ec_dev);
390}
391
392static int cros_ec_spi_resume(struct device *dev)
393{
394 struct cros_ec_device *ec_dev = dev_get_drvdata(dev);
395
396 return cros_ec_resume(ec_dev);
397}
398#endif
399
400static SIMPLE_DEV_PM_OPS(cros_ec_spi_pm_ops, cros_ec_spi_suspend,
401 cros_ec_spi_resume);
402
403static const struct spi_device_id cros_ec_spi_id[] = {
404 { "cros-ec-spi", 0 },
405 { }
406};
407MODULE_DEVICE_TABLE(spi, cros_ec_spi_id);
408
409static struct spi_driver cros_ec_driver_spi = {
410 .driver = {
411 .name = "cros-ec-spi",
412 .owner = THIS_MODULE,
413 .pm = &cros_ec_spi_pm_ops,
414 },
Thierry Reding9922b412013-11-25 13:22:30 +0100415 .probe = cros_ec_spi_probe,
416 .remove = cros_ec_spi_remove,
Simon Glassa17d94f2013-02-25 14:08:39 -0800417 .id_table = cros_ec_spi_id,
418};
419
420module_spi_driver(cros_ec_driver_spi);
421
Thierry Redingea0f8b02013-12-09 11:05:38 +0100422MODULE_LICENSE("GPL v2");
Simon Glassa17d94f2013-02-25 14:08:39 -0800423MODULE_DESCRIPTION("ChromeOS EC multi function device (SPI)");