2 * Chromium OS cros_ec driver - SPI interface
4 * Copyright (c) 2012 The Chromium OS Authors.
6 * SPDX-License-Identifier: GPL-2.0+
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
22 DECLARE_GLOBAL_DATA_PTR;
24 #ifdef CONFIG_DM_CROS_EC
25 int cros_ec_spi_packet(struct udevice *udev, int out_bytes, int in_bytes)
27 struct cros_ec_dev *dev = udev->uclass_priv;
29 int cros_ec_spi_packet(struct cros_ec_dev *dev, int out_bytes, int in_bytes)
32 struct spi_slave *slave = dev_get_parentdata(dev->dev);
36 if (spi_claim_bus(slave)) {
37 debug("%s: Cannot claim SPI bus\n", __func__);
41 rv = spi_xfer(slave, max(out_bytes, in_bytes) * 8,
43 SPI_XFER_BEGIN | SPI_XFER_END);
45 spi_release_bus(slave);
48 debug("%s: Cannot complete SPI transfer\n", __func__);
56 * Send a command to a LPC CROS_EC device and return the reply.
58 * The device's internal input/output buffers are used.
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
70 #ifdef CONFIG_DM_CROS_EC
71 int 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)
75 struct cros_ec_dev *dev = udev->uclass_priv;
77 int 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)
82 struct spi_slave *slave = dev_get_parentdata(dev->dev);
83 int in_bytes = din_len + 4; /* status, length, checksum, trailer */
89 if (dev->protocol_version != 2) {
90 debug("%s: Unsupported EC protcol version %d\n",
91 __func__, dev->protocol_version);
96 * Sanity-check input size to make sure it plus transaction overhead
97 * fits in the internal device buffer.
99 if (in_bytes > sizeof(dev->din)) {
100 debug("%s: Cannot receive %d bytes\n", __func__, din_len);
104 /* We represent message length as a byte */
105 if (dout_len > 0xff) {
106 debug("%s: Cannot send %d bytes\n", __func__, dout_len);
111 * Clear input buffer so we don't get false hits for MSG_HEADER
113 memset(dev->din, '\0', in_bytes);
115 if (spi_claim_bus(slave)) {
116 debug("%s: Cannot claim SPI bus\n", __func__);
121 out[0] = EC_CMD_VERSION0 + cmd_version;
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;
130 * Send output data and receive input data starting such that the
131 * message body will be dword aligned.
133 p = dev->din + sizeof(int64_t) - 2;
135 cros_ec_dump_data("out", cmd, out, len);
136 rv = spi_xfer(slave, max(len, in_bytes) * 8, out, p,
137 SPI_XFER_BEGIN | SPI_XFER_END);
139 spi_release_bus(slave);
142 debug("%s: Cannot complete SPI transfer\n", __func__);
146 len = min((int)p[1], din_len);
147 cros_ec_dump_data("in", -1, p, len + 3);
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]);
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__,
163 /* Anything else is the response data */
169 #ifndef CONFIG_DM_CROS_EC
170 int cros_ec_spi_decode_fdt(struct cros_ec_dev *dev, const void *blob)
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);
181 * Initialize SPI protocol.
183 * @param dev CROS_EC device
184 * @param blob Device tree blob
185 * @return 0 if ok, -1 on error
187 int cros_ec_spi_init(struct cros_ec_dev *dev, const void *blob)
191 ret = spi_setup_slave_fdt(blob, dev->node, dev->parent_node,
194 debug("%s: Could not setup SPI slave\n", __func__);
202 #ifdef CONFIG_DM_CROS_EC
203 int cros_ec_probe(struct udevice *dev)
205 struct spi_slave *slave = dev_get_parentdata(dev);
209 * TODO(sjg@chromium.org)
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().
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().
221 ret = spi_ofdata_to_platdata(gd->fdt_blob, dev->of_offset, slave);
224 return cros_ec_register(dev);
227 struct dm_cros_ec_ops cros_ec_ops = {
228 .packet = cros_ec_spi_packet,
229 .command = cros_ec_spi_command,
232 static const struct udevice_id cros_ec_ids[] = {
233 { .compatible = "google,cros-ec" },
237 U_BOOT_DRIVER(cros_ec_spi) = {
239 .id = UCLASS_CROS_EC,
240 .of_match = cros_ec_ids,
241 .probe = cros_ec_probe,