blob: e6dba298b1e9f2a37b31b4511cf9c8902c9ff227 [file] [log] [blame]
Hung-ying Tyanf3424c52013-05-15 18:27:30 +08001/*
2 * Chromium OS cros_ec driver - SPI interface
3 *
4 * Copyright (c) 2012 The Chromium OS Authors.
Hung-ying Tyanf3424c52013-05-15 18:27:30 +08005 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Hung-ying Tyanf3424c52013-05-15 18:27:30 +08007 */
8
9/*
10 * The Matrix Keyboard Protocol driver handles talking to the keyboard
11 * controller chip. Mostly this is for keyboard functions, but some other
12 * things have slipped in, so we provide generic services to talk to the
13 * KBC.
14 */
15
16#include <common.h>
17#include <cros_ec.h>
Simon Glassea0ebc82014-10-13 23:42:16 -060018#include <dm.h>
19#include <errno.h>
Hung-ying Tyanf3424c52013-05-15 18:27:30 +080020#include <spi.h>
21
Simon Glassea0ebc82014-10-13 23:42:16 -060022DECLARE_GLOBAL_DATA_PTR;
23
24#ifdef CONFIG_DM_CROS_EC
25int cros_ec_spi_packet(struct udevice *udev, int out_bytes, int in_bytes)
26{
27 struct cros_ec_dev *dev = udev->uclass_priv;
28#else
Randall Spanglera6070282014-02-27 13:26:10 -070029int cros_ec_spi_packet(struct cros_ec_dev *dev, int out_bytes, int in_bytes)
30{
Simon Glassea0ebc82014-10-13 23:42:16 -060031#endif
32 struct spi_slave *slave = dev_get_parentdata(dev->dev);
Randall Spanglera6070282014-02-27 13:26:10 -070033 int rv;
34
35 /* Do the transfer */
Simon Glassea0ebc82014-10-13 23:42:16 -060036 if (spi_claim_bus(slave)) {
Randall Spanglera6070282014-02-27 13:26:10 -070037 debug("%s: Cannot claim SPI bus\n", __func__);
38 return -1;
39 }
40
Simon Glassea0ebc82014-10-13 23:42:16 -060041 rv = spi_xfer(slave, max(out_bytes, in_bytes) * 8,
Randall Spanglera6070282014-02-27 13:26:10 -070042 dev->dout, dev->din,
43 SPI_XFER_BEGIN | SPI_XFER_END);
44
Simon Glassea0ebc82014-10-13 23:42:16 -060045 spi_release_bus(slave);
Randall Spanglera6070282014-02-27 13:26:10 -070046
47 if (rv) {
48 debug("%s: Cannot complete SPI transfer\n", __func__);
49 return -1;
50 }
51
52 return in_bytes;
53}
54
Hung-ying Tyanf3424c52013-05-15 18:27:30 +080055/**
56 * Send a command to a LPC CROS_EC device and return the reply.
57 *
58 * The device's internal input/output buffers are used.
59 *
60 * @param dev CROS_EC device
61 * @param cmd Command to send (EC_CMD_...)
62 * @param cmd_version Version of command to send (EC_VER_...)
63 * @param dout Output data (may be NULL If dout_len=0)
64 * @param dout_len Size of output data in bytes
65 * @param dinp Returns pointer to response data. This will be
66 * untouched unless we return a value > 0.
67 * @param din_len Maximum size of response in bytes
68 * @return number of bytes in response, or -1 on error
69 */
Simon Glassea0ebc82014-10-13 23:42:16 -060070#ifdef CONFIG_DM_CROS_EC
71int cros_ec_spi_command(struct udevice *udev, uint8_t cmd, int cmd_version,
72 const uint8_t *dout, int dout_len,
73 uint8_t **dinp, int din_len)
74{
75 struct cros_ec_dev *dev = udev->uclass_priv;
76#else
Hung-ying Tyanf3424c52013-05-15 18:27:30 +080077int cros_ec_spi_command(struct cros_ec_dev *dev, uint8_t cmd, int cmd_version,
78 const uint8_t *dout, int dout_len,
79 uint8_t **dinp, int din_len)
80{
Simon Glassea0ebc82014-10-13 23:42:16 -060081#endif
82 struct spi_slave *slave = dev_get_parentdata(dev->dev);
Hung-ying Tyanf3424c52013-05-15 18:27:30 +080083 int in_bytes = din_len + 4; /* status, length, checksum, trailer */
84 uint8_t *out;
85 uint8_t *p;
86 int csum, len;
87 int rv;
88
Randall Spanglere8c12662014-02-27 13:26:08 -070089 if (dev->protocol_version != 2) {
90 debug("%s: Unsupported EC protcol version %d\n",
91 __func__, dev->protocol_version);
92 return -1;
93 }
94
Hung-ying Tyanf3424c52013-05-15 18:27:30 +080095 /*
96 * Sanity-check input size to make sure it plus transaction overhead
97 * fits in the internal device buffer.
98 */
99 if (in_bytes > sizeof(dev->din)) {
100 debug("%s: Cannot receive %d bytes\n", __func__, din_len);
101 return -1;
102 }
103
104 /* We represent message length as a byte */
105 if (dout_len > 0xff) {
106 debug("%s: Cannot send %d bytes\n", __func__, dout_len);
107 return -1;
108 }
109
110 /*
111 * Clear input buffer so we don't get false hits for MSG_HEADER
112 */
113 memset(dev->din, '\0', in_bytes);
114
Simon Glassea0ebc82014-10-13 23:42:16 -0600115 if (spi_claim_bus(slave)) {
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800116 debug("%s: Cannot claim SPI bus\n", __func__);
117 return -1;
118 }
119
120 out = dev->dout;
Simon Glass2001b9a2014-07-07 10:16:37 -0600121 out[0] = EC_CMD_VERSION0 + cmd_version;
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800122 out[1] = cmd;
123 out[2] = (uint8_t)dout_len;
124 memcpy(out + 3, dout, dout_len);
125 csum = cros_ec_calc_checksum(out, 3)
126 + cros_ec_calc_checksum(dout, dout_len);
127 out[3 + dout_len] = (uint8_t)csum;
128
129 /*
130 * Send output data and receive input data starting such that the
131 * message body will be dword aligned.
132 */
133 p = dev->din + sizeof(int64_t) - 2;
134 len = dout_len + 4;
135 cros_ec_dump_data("out", cmd, out, len);
Simon Glassea0ebc82014-10-13 23:42:16 -0600136 rv = spi_xfer(slave, max(len, in_bytes) * 8, out, p,
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800137 SPI_XFER_BEGIN | SPI_XFER_END);
138
Simon Glassea0ebc82014-10-13 23:42:16 -0600139 spi_release_bus(slave);
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800140
141 if (rv) {
142 debug("%s: Cannot complete SPI transfer\n", __func__);
143 return -1;
144 }
145
Masahiro Yamadab4141192014-11-07 03:03:31 +0900146 len = min((int)p[1], din_len);
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800147 cros_ec_dump_data("in", -1, p, len + 3);
148
149 /* Response code is first byte of message */
150 if (p[0] != EC_RES_SUCCESS) {
151 printf("%s: Returned status %d\n", __func__, p[0]);
152 return -(int)(p[0]);
153 }
154
155 /* Check checksum */
156 csum = cros_ec_calc_checksum(p, len + 2);
157 if (csum != p[len + 2]) {
158 debug("%s: Invalid checksum rx %#02x, calced %#02x\n", __func__,
159 p[2 + len], csum);
160 return -1;
161 }
162
163 /* Anything else is the response data */
164 *dinp = p + 2;
165
166 return len;
167}
168
Simon Glassea0ebc82014-10-13 23:42:16 -0600169#ifndef CONFIG_DM_CROS_EC
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800170int cros_ec_spi_decode_fdt(struct cros_ec_dev *dev, const void *blob)
171{
172 /* Decode interface-specific FDT params */
173 dev->max_frequency = fdtdec_get_int(blob, dev->node,
174 "spi-max-frequency", 500000);
175 dev->cs = fdtdec_get_int(blob, dev->node, "reg", 0);
176
177 return 0;
178}
179
180/**
181 * Initialize SPI protocol.
182 *
183 * @param dev CROS_EC device
184 * @param blob Device tree blob
185 * @return 0 if ok, -1 on error
186 */
187int cros_ec_spi_init(struct cros_ec_dev *dev, const void *blob)
188{
Simon Glassea0ebc82014-10-13 23:42:16 -0600189 int ret;
190
191 ret = spi_setup_slave_fdt(blob, dev->node, dev->parent_node,
192 &slave);
193 if (ret) {
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800194 debug("%s: Could not setup SPI slave\n", __func__);
Simon Glassea0ebc82014-10-13 23:42:16 -0600195 return ret;
Hung-ying Tyanf3424c52013-05-15 18:27:30 +0800196 }
197
198 return 0;
199}
Simon Glassea0ebc82014-10-13 23:42:16 -0600200#endif
201
202#ifdef CONFIG_DM_CROS_EC
203int cros_ec_probe(struct udevice *dev)
204{
205 struct spi_slave *slave = dev_get_parentdata(dev);
206 int ret;
207
208 /*
209 * TODO(sjg@chromium.org)
210 *
211 * This is really horrible at present. It is an artifact of removing
212 * the child_pre_probe() method for SPI. Everything here could go in
213 * an automatic function, except that spi_get_bus_and_cs() wants to
214 * set it up manually and call device_probe_child().
215 *
216 * The solution may be to re-enable the child_pre_probe() method for
217 * SPI and have it do nothing if the child is already passed in via
218 * device_probe_child().
219 */
220 slave->dev = dev;
221 ret = spi_ofdata_to_platdata(gd->fdt_blob, dev->of_offset, slave);
222 if (ret)
223 return ret;
224 return cros_ec_register(dev);
225}
226
227struct dm_cros_ec_ops cros_ec_ops = {
228 .packet = cros_ec_spi_packet,
229 .command = cros_ec_spi_command,
230};
231
232static const struct udevice_id cros_ec_ids[] = {
233 { .compatible = "google,cros-ec" },
234 { }
235};
236
237U_BOOT_DRIVER(cros_ec_spi) = {
238 .name = "cros_ec",
239 .id = UCLASS_CROS_EC,
240 .of_match = cros_ec_ids,
241 .probe = cros_ec_probe,
242 .ops = &cros_ec_ops,
243};
244#endif