2 * ChromeOS EC multi-function device (SPI)
4 * Copyright (C) 2012 Google, Inc
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.
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.
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>
21 #include <linux/platform_device.h>
22 #include <linux/slab.h>
23 #include <linux/spi/spi.h>
26 /* The header byte, which follows the preamble */
27 #define EC_MSG_HEADER 0xec
30 * Number of EC preamble bytes we read at a time. Since it takes
31 * about 400-500us for the EC to respond there is not a lot of
32 * point in tuning this. If the EC could respond faster then
33 * we could increase this so that might expect the preamble and
34 * message to occur in a single transaction. However, the maximum
35 * SPI transfer size is 256 bytes, so at 5MHz we need a response
36 * time of perhaps <320us (200 bytes / 1600 bits).
38 #define EC_MSG_PREAMBLE_COUNT 32
41 * We must get a response from the EC in 5ms. This is a very long
42 * time, but the flash write command can take 2-3ms. The EC command
43 * processing is currently not very fast (about 500us). We could
44 * look at speeding this up and making the flash write command a
45 * 'slow' command, requiring a GET_STATUS wait loop, like flash
48 #define EC_MSG_DEADLINE_MS 5
51 * Time between raising the SPI chip select (for the end of a
52 * transaction) and dropping it again (for the next transaction).
53 * If we go too fast, the EC will miss the transaction. It seems
54 * that 50us is enough with the 16MHz STM32 EC.
56 #define EC_SPI_RECOVERY_TIME_NS (50 * 1000)
59 * struct cros_ec_spi - information about a SPI-connected EC
61 * @spi: SPI device we are connected to
62 * @last_transfer_ns: time that we last finished a transfer, or 0 if there
66 struct spi_device
*spi
;
70 static void debug_packet(struct device
*dev
, const char *name
, u8
*ptr
,
76 dev_dbg(dev
, "%s: ", name
);
77 for (i
= 0; i
< len
; i
++)
78 dev_cont(dev
, " %02x", ptr
[i
]);
83 * cros_ec_spi_receive_response - Receive a response from the EC.
85 * This function has two phases: reading the preamble bytes (since if we read
86 * data from the EC before it is ready to send, we just get preamble) and
87 * reading the actual message.
89 * The received data is placed into ec_dev->din.
91 * @ec_dev: ChromeOS EC device
92 * @need_len: Number of message bytes we need to read
94 static int cros_ec_spi_receive_response(struct cros_ec_device
*ec_dev
,
97 struct cros_ec_spi
*ec_spi
= ec_dev
->priv
;
98 struct spi_transfer trans
;
99 struct spi_message msg
;
102 unsigned long deadline
;
105 /* Receive data until we see the header byte */
106 deadline
= jiffies
+ msecs_to_jiffies(EC_MSG_DEADLINE_MS
);
108 memset(&trans
, '\0', sizeof(trans
));
110 trans
.rx_buf
= ptr
= ec_dev
->din
;
111 trans
.len
= EC_MSG_PREAMBLE_COUNT
;
113 spi_message_init(&msg
);
114 spi_message_add_tail(&trans
, &msg
);
115 ret
= spi_sync(ec_spi
->spi
, &msg
);
117 dev_err(ec_dev
->dev
, "spi transfer failed: %d\n", ret
);
121 for (end
= ptr
+ EC_MSG_PREAMBLE_COUNT
; ptr
!= end
; ptr
++) {
122 if (*ptr
== EC_MSG_HEADER
) {
123 dev_dbg(ec_dev
->dev
, "msg found at %zd\n",
129 if (time_after(jiffies
, deadline
)) {
130 dev_warn(ec_dev
->dev
, "EC failed to respond in time\n");
133 } while (ptr
== end
);
136 * ptr now points to the header byte. Copy any valid data to the
137 * start of our buffer
140 BUG_ON(todo
< 0 || todo
> ec_dev
->din_size
);
141 todo
= min(todo
, need_len
);
142 memmove(ec_dev
->din
, ptr
, todo
);
143 ptr
= ec_dev
->din
+ todo
;
144 dev_dbg(ec_dev
->dev
, "need %d, got %d bytes from preamble\n",
148 /* Receive data until we have it all */
149 while (need_len
> 0) {
151 * We can't support transfers larger than the SPI FIFO size
152 * unless we have DMA. We don't have DMA on the ISP SPI ports
153 * for Exynos. We need a way of asking SPI driver for
154 * maximum-supported transfer size.
156 todo
= min(need_len
, 256);
157 dev_dbg(ec_dev
->dev
, "loop, todo=%d, need_len=%d, ptr=%zd\n",
158 todo
, need_len
, ptr
- ec_dev
->din
);
160 memset(&trans
, '\0', sizeof(trans
));
164 spi_message_init(&msg
);
165 spi_message_add_tail(&trans
, &msg
);
167 /* send command to EC and read answer */
168 BUG_ON((u8
*)trans
.rx_buf
- ec_dev
->din
+ todo
>
170 ret
= spi_sync(ec_spi
->spi
, &msg
);
172 dev_err(ec_dev
->dev
, "spi transfer failed: %d\n", ret
);
176 debug_packet(ec_dev
->dev
, "interim", ptr
, todo
);
181 dev_dbg(ec_dev
->dev
, "loop done, ptr=%zd\n", ptr
- ec_dev
->din
);
187 * cros_ec_command_spi_xfer - Transfer a message over SPI and receive the reply
189 * @ec_dev: ChromeOS EC device
190 * @ec_msg: Message to transfer
192 static int cros_ec_command_spi_xfer(struct cros_ec_device
*ec_dev
,
193 struct cros_ec_msg
*ec_msg
)
195 struct cros_ec_spi
*ec_spi
= ec_dev
->priv
;
196 struct spi_transfer trans
;
197 struct spi_message msg
;
201 int ret
= 0, final_ret
;
204 len
= cros_ec_prepare_tx(ec_dev
, ec_msg
);
205 dev_dbg(ec_dev
->dev
, "prepared, len=%d\n", len
);
207 /* If it's too soon to do another transaction, wait */
208 if (ec_spi
->last_transfer_ns
) {
210 unsigned long delay
; /* The delay completed so far */
213 delay
= timespec_to_ns(&ts
) - ec_spi
->last_transfer_ns
;
214 if (delay
< EC_SPI_RECOVERY_TIME_NS
)
218 /* Transmit phase - send our message */
219 debug_packet(ec_dev
->dev
, "out", ec_dev
->dout
, len
);
220 memset(&trans
, '\0', sizeof(trans
));
221 trans
.tx_buf
= ec_dev
->dout
;
224 spi_message_init(&msg
);
225 spi_message_add_tail(&trans
, &msg
);
226 ret
= spi_sync(ec_spi
->spi
, &msg
);
228 /* Get the response */
230 ret
= cros_ec_spi_receive_response(ec_dev
,
231 ec_msg
->in_len
+ EC_MSG_TX_PROTO_BYTES
);
233 dev_err(ec_dev
->dev
, "spi transfer failed: %d\n", ret
);
237 spi_message_init(&msg
);
238 final_ret
= spi_sync(ec_spi
->spi
, &msg
);
240 ec_spi
->last_transfer_ns
= timespec_to_ns(&ts
);
244 dev_err(ec_dev
->dev
, "spi transfer failed: %d\n", ret
);
248 /* check response error code */
251 dev_warn(ec_dev
->dev
, "command 0x%02x returned an error %d\n",
252 ec_msg
->cmd
, ptr
[0]);
253 debug_packet(ec_dev
->dev
, "in_err", ptr
, len
);
257 sum
= ptr
[0] + ptr
[1];
258 if (len
> ec_msg
->in_len
) {
259 dev_err(ec_dev
->dev
, "packet too long (%d bytes, expected %d)",
260 len
, ec_msg
->in_len
);
264 /* copy response packet payload and compute checksum */
265 for (i
= 0; i
< len
; i
++) {
268 ec_msg
->in_buf
[i
] = ptr
[i
+ 2];
272 debug_packet(ec_dev
->dev
, "in", ptr
, len
+ 3);
274 if (sum
!= ptr
[len
+ 2]) {
276 "bad packet checksum, expected %02x, got %02x\n",
284 static int cros_ec_probe_spi(struct spi_device
*spi
)
286 struct device
*dev
= &spi
->dev
;
287 struct cros_ec_device
*ec_dev
;
288 struct cros_ec_spi
*ec_spi
;
291 spi
->bits_per_word
= 8;
292 spi
->mode
= SPI_MODE_0
;
293 err
= spi_setup(spi
);
297 ec_spi
= devm_kzalloc(dev
, sizeof(*ec_spi
), GFP_KERNEL
);
301 ec_dev
= devm_kzalloc(dev
, sizeof(*ec_dev
), GFP_KERNEL
);
305 spi_set_drvdata(spi
, ec_dev
);
306 ec_dev
->name
= "SPI";
308 ec_dev
->priv
= ec_spi
;
309 ec_dev
->irq
= spi
->irq
;
310 ec_dev
->command_xfer
= cros_ec_command_spi_xfer
;
311 ec_dev
->ec_name
= ec_spi
->spi
->modalias
;
312 ec_dev
->phys_name
= dev_name(&ec_spi
->spi
->dev
);
313 ec_dev
->parent
= &ec_spi
->spi
->dev
;
314 ec_dev
->din_size
= EC_MSG_BYTES
+ EC_MSG_PREAMBLE_COUNT
;
315 ec_dev
->dout_size
= EC_MSG_BYTES
;
317 err
= cros_ec_register(ec_dev
);
319 dev_err(dev
, "cannot register EC\n");
326 static int cros_ec_remove_spi(struct spi_device
*spi
)
328 struct cros_ec_device
*ec_dev
;
330 ec_dev
= spi_get_drvdata(spi
);
331 cros_ec_remove(ec_dev
);
336 #ifdef CONFIG_PM_SLEEP
337 static int cros_ec_spi_suspend(struct device
*dev
)
339 struct cros_ec_device
*ec_dev
= dev_get_drvdata(dev
);
341 return cros_ec_suspend(ec_dev
);
344 static int cros_ec_spi_resume(struct device
*dev
)
346 struct cros_ec_device
*ec_dev
= dev_get_drvdata(dev
);
348 return cros_ec_resume(ec_dev
);
352 static SIMPLE_DEV_PM_OPS(cros_ec_spi_pm_ops
, cros_ec_spi_suspend
,
355 static const struct spi_device_id cros_ec_spi_id
[] = {
356 { "cros-ec-spi", 0 },
359 MODULE_DEVICE_TABLE(spi
, cros_ec_spi_id
);
361 static struct spi_driver cros_ec_driver_spi
= {
363 .name
= "cros-ec-spi",
364 .owner
= THIS_MODULE
,
365 .pm
= &cros_ec_spi_pm_ops
,
367 .probe
= cros_ec_probe_spi
,
368 .remove
= cros_ec_remove_spi
,
369 .id_table
= cros_ec_spi_id
,
372 module_spi_driver(cros_ec_driver_spi
);
374 MODULE_LICENSE("GPL");
375 MODULE_DESCRIPTION("ChromeOS EC multi function device (SPI)");