blob: a92806c46c9f6ea1791fc1db3425a27f02b779e3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hung-ying Tyan88364382013-05-15 18:27:28 +08002/*
3 * Chromium OS cros_ec driver
4 *
5 * Copyright (c) 2012 The Chromium OS Authors.
Hung-ying Tyan88364382013-05-15 18:27:28 +08006 */
7
8/*
Simon Glass836bb6e2014-02-27 13:26:07 -07009 * This is the interface to the Chrome OS EC. It provides keyboard functions,
10 * power control and battery management. Quite a few other functions are
11 * provided to enable the EC software to be updated, talk to the EC's I2C bus
12 * and store a small amount of data in a memory which persists while the EC
13 * is not reset.
Hung-ying Tyan88364382013-05-15 18:27:28 +080014 */
15
16#include <common.h>
17#include <command.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060018#include <dm.h>
Hung-ying Tyan88364382013-05-15 18:27:28 +080019#include <i2c.h>
20#include <cros_ec.h>
21#include <fdtdec.h>
22#include <malloc.h>
23#include <spi.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090024#include <linux/errno.h>
Hung-ying Tyan88364382013-05-15 18:27:28 +080025#include <asm/io.h>
26#include <asm-generic/gpio.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060027#include <dm/device-internal.h>
Simon Glass2ec9d172017-05-18 20:09:23 -060028#include <dm/of_extra.h>
Simon Glass84d6cbd2014-10-13 23:42:14 -060029#include <dm/uclass-internal.h>
Hung-ying Tyan88364382013-05-15 18:27:28 +080030
31#ifdef DEBUG_TRACE
32#define debug_trace(fmt, b...) debug(fmt, #b)
33#else
34#define debug_trace(fmt, b...)
35#endif
36
37enum {
38 /* Timeout waiting for a flash erase command to complete */
39 CROS_EC_CMD_TIMEOUT_MS = 5000,
40 /* Timeout waiting for a synchronous hash to be recomputed */
41 CROS_EC_CMD_HASH_TIMEOUT_MS = 2000,
42};
43
Hung-ying Tyan88364382013-05-15 18:27:28 +080044void cros_ec_dump_data(const char *name, int cmd, const uint8_t *data, int len)
45{
46#ifdef DEBUG
47 int i;
48
49 printf("%s: ", name);
50 if (cmd != -1)
51 printf("cmd=%#x: ", cmd);
52 for (i = 0; i < len; i++)
53 printf("%02x ", data[i]);
54 printf("\n");
55#endif
56}
57
58/*
59 * Calculate a simple 8-bit checksum of a data block
60 *
61 * @param data Data block to checksum
62 * @param size Size of data block in bytes
63 * @return checksum value (0 to 255)
64 */
65int cros_ec_calc_checksum(const uint8_t *data, int size)
66{
67 int csum, i;
68
69 for (i = csum = 0; i < size; i++)
70 csum += data[i];
71 return csum & 0xff;
72}
73
Simon Glass2d8ede52014-02-27 13:26:09 -070074/**
75 * Create a request packet for protocol version 3.
76 *
77 * The packet is stored in the device's internal output buffer.
78 *
79 * @param dev CROS-EC device
80 * @param cmd Command to send (EC_CMD_...)
81 * @param cmd_version Version of command to send (EC_VER_...)
82 * @param dout Output data (may be NULL If dout_len=0)
83 * @param dout_len Size of output data in bytes
84 * @return packet size in bytes, or <0 if error.
85 */
Simon Glass6322a7b2018-10-01 12:22:22 -060086static int create_proto3_request(struct cros_ec_dev *cdev,
Simon Glass2d8ede52014-02-27 13:26:09 -070087 int cmd, int cmd_version,
88 const void *dout, int dout_len)
89{
Simon Glass6322a7b2018-10-01 12:22:22 -060090 struct ec_host_request *rq = (struct ec_host_request *)cdev->dout;
Simon Glass2d8ede52014-02-27 13:26:09 -070091 int out_bytes = dout_len + sizeof(*rq);
92
93 /* Fail if output size is too big */
Simon Glass6322a7b2018-10-01 12:22:22 -060094 if (out_bytes > (int)sizeof(cdev->dout)) {
Simon Glass2d8ede52014-02-27 13:26:09 -070095 debug("%s: Cannot send %d bytes\n", __func__, dout_len);
96 return -EC_RES_REQUEST_TRUNCATED;
97 }
98
99 /* Fill in request packet */
100 rq->struct_version = EC_HOST_REQUEST_VERSION;
101 rq->checksum = 0;
102 rq->command = cmd;
103 rq->command_version = cmd_version;
104 rq->reserved = 0;
105 rq->data_len = dout_len;
106
107 /* Copy data after header */
108 memcpy(rq + 1, dout, dout_len);
109
110 /* Write checksum field so the entire packet sums to 0 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600111 rq->checksum = (uint8_t)(-cros_ec_calc_checksum(cdev->dout, out_bytes));
Simon Glass2d8ede52014-02-27 13:26:09 -0700112
Simon Glass6322a7b2018-10-01 12:22:22 -0600113 cros_ec_dump_data("out", cmd, cdev->dout, out_bytes);
Simon Glass2d8ede52014-02-27 13:26:09 -0700114
115 /* Return size of request packet */
116 return out_bytes;
117}
118
119/**
120 * Prepare the device to receive a protocol version 3 response.
121 *
122 * @param dev CROS-EC device
123 * @param din_len Maximum size of response in bytes
124 * @return maximum expected number of bytes in response, or <0 if error.
125 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600126static int prepare_proto3_response_buffer(struct cros_ec_dev *cdev, int din_len)
Simon Glass2d8ede52014-02-27 13:26:09 -0700127{
128 int in_bytes = din_len + sizeof(struct ec_host_response);
129
130 /* Fail if input size is too big */
Simon Glass6322a7b2018-10-01 12:22:22 -0600131 if (in_bytes > (int)sizeof(cdev->din)) {
Simon Glass2d8ede52014-02-27 13:26:09 -0700132 debug("%s: Cannot receive %d bytes\n", __func__, din_len);
133 return -EC_RES_RESPONSE_TOO_BIG;
134 }
135
136 /* Return expected size of response packet */
137 return in_bytes;
138}
139
140/**
141 * Handle a protocol version 3 response packet.
142 *
143 * The packet must already be stored in the device's internal input buffer.
144 *
145 * @param dev CROS-EC device
146 * @param dinp Returns pointer to response data
147 * @param din_len Maximum size of response in bytes
Simon Glass8bbb38b2015-01-25 08:27:17 -0700148 * @return number of bytes of response data, or <0 if error. Note that error
149 * codes can be from errno.h or -ve EC_RES_INVALID_CHECKSUM values (and they
150 * overlap!)
Simon Glass2d8ede52014-02-27 13:26:09 -0700151 */
152static int handle_proto3_response(struct cros_ec_dev *dev,
153 uint8_t **dinp, int din_len)
154{
155 struct ec_host_response *rs = (struct ec_host_response *)dev->din;
156 int in_bytes;
157 int csum;
158
159 cros_ec_dump_data("in-header", -1, dev->din, sizeof(*rs));
160
161 /* Check input data */
162 if (rs->struct_version != EC_HOST_RESPONSE_VERSION) {
163 debug("%s: EC response version mismatch\n", __func__);
164 return -EC_RES_INVALID_RESPONSE;
165 }
166
167 if (rs->reserved) {
168 debug("%s: EC response reserved != 0\n", __func__);
169 return -EC_RES_INVALID_RESPONSE;
170 }
171
172 if (rs->data_len > din_len) {
173 debug("%s: EC returned too much data\n", __func__);
174 return -EC_RES_RESPONSE_TOO_BIG;
175 }
176
177 cros_ec_dump_data("in-data", -1, dev->din + sizeof(*rs), rs->data_len);
178
179 /* Update in_bytes to actual data size */
180 in_bytes = sizeof(*rs) + rs->data_len;
181
182 /* Verify checksum */
183 csum = cros_ec_calc_checksum(dev->din, in_bytes);
184 if (csum) {
185 debug("%s: EC response checksum invalid: 0x%02x\n", __func__,
186 csum);
187 return -EC_RES_INVALID_CHECKSUM;
188 }
189
190 /* Return error result, if any */
191 if (rs->result)
192 return -(int)rs->result;
193
194 /* If we're still here, set response data pointer and return length */
195 *dinp = (uint8_t *)(rs + 1);
196
197 return rs->data_len;
198}
199
Simon Glass6322a7b2018-10-01 12:22:22 -0600200static int send_command_proto3(struct cros_ec_dev *cdev,
Simon Glass2d8ede52014-02-27 13:26:09 -0700201 int cmd, int cmd_version,
202 const void *dout, int dout_len,
203 uint8_t **dinp, int din_len)
204{
Simon Glass84d6cbd2014-10-13 23:42:14 -0600205 struct dm_cros_ec_ops *ops;
Simon Glass2d8ede52014-02-27 13:26:09 -0700206 int out_bytes, in_bytes;
207 int rv;
208
209 /* Create request packet */
Simon Glass6322a7b2018-10-01 12:22:22 -0600210 out_bytes = create_proto3_request(cdev, cmd, cmd_version,
Simon Glass2d8ede52014-02-27 13:26:09 -0700211 dout, dout_len);
212 if (out_bytes < 0)
213 return out_bytes;
214
215 /* Prepare response buffer */
Simon Glass6322a7b2018-10-01 12:22:22 -0600216 in_bytes = prepare_proto3_response_buffer(cdev, din_len);
Simon Glass2d8ede52014-02-27 13:26:09 -0700217 if (in_bytes < 0)
218 return in_bytes;
219
Simon Glass6322a7b2018-10-01 12:22:22 -0600220 ops = dm_cros_ec_get_ops(cdev->dev);
221 rv = ops->packet ? ops->packet(cdev->dev, out_bytes, in_bytes) :
222 -ENOSYS;
Simon Glass2d8ede52014-02-27 13:26:09 -0700223 if (rv < 0)
224 return rv;
225
226 /* Process the response */
Simon Glass6322a7b2018-10-01 12:22:22 -0600227 return handle_proto3_response(cdev, dinp, din_len);
Simon Glass2d8ede52014-02-27 13:26:09 -0700228}
229
Hung-ying Tyan88364382013-05-15 18:27:28 +0800230static int send_command(struct cros_ec_dev *dev, uint8_t cmd, int cmd_version,
231 const void *dout, int dout_len,
232 uint8_t **dinp, int din_len)
233{
Simon Glass84d6cbd2014-10-13 23:42:14 -0600234 struct dm_cros_ec_ops *ops;
Simon Glass2d8ede52014-02-27 13:26:09 -0700235 int ret = -1;
236
237 /* Handle protocol version 3 support */
238 if (dev->protocol_version == 3) {
239 return send_command_proto3(dev, cmd, cmd_version,
240 dout, dout_len, dinp, din_len);
241 }
Hung-ying Tyan88364382013-05-15 18:27:28 +0800242
Simon Glass84d6cbd2014-10-13 23:42:14 -0600243 ops = dm_cros_ec_get_ops(dev->dev);
244 ret = ops->command(dev->dev, cmd, cmd_version,
245 (const uint8_t *)dout, dout_len, dinp, din_len);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800246
247 return ret;
248}
249
250/**
251 * Send a command to the CROS-EC device and return the reply.
252 *
253 * The device's internal input/output buffers are used.
254 *
255 * @param dev CROS-EC device
256 * @param cmd Command to send (EC_CMD_...)
257 * @param cmd_version Version of command to send (EC_VER_...)
258 * @param dout Output data (may be NULL If dout_len=0)
259 * @param dout_len Size of output data in bytes
260 * @param dinp Response data (may be NULL If din_len=0).
261 * If not NULL, it will be updated to point to the data
262 * and will always be double word aligned (64-bits)
263 * @param din_len Maximum size of response in bytes
Simon Glass8bbb38b2015-01-25 08:27:17 -0700264 * @return number of bytes in response, or -ve on error
Hung-ying Tyan88364382013-05-15 18:27:28 +0800265 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600266static int ec_command_inptr(struct udevice *dev, uint8_t cmd,
Simon Glasse6c5c942018-10-01 12:22:08 -0600267 int cmd_version, const void *dout, int dout_len,
268 uint8_t **dinp, int din_len)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800269{
Simon Glass6322a7b2018-10-01 12:22:22 -0600270 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Simon Glass2ab83f02014-02-27 13:26:11 -0700271 uint8_t *din = NULL;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800272 int len;
273
Simon Glass6322a7b2018-10-01 12:22:22 -0600274 len = send_command(cdev, cmd, cmd_version, dout, dout_len, &din,
275 din_len);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800276
277 /* If the command doesn't complete, wait a while */
278 if (len == -EC_RES_IN_PROGRESS) {
Simon Glass2ab83f02014-02-27 13:26:11 -0700279 struct ec_response_get_comms_status *resp = NULL;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800280 ulong start;
281
282 /* Wait for command to complete */
283 start = get_timer(0);
284 do {
285 int ret;
286
287 mdelay(50); /* Insert some reasonable delay */
Simon Glass6322a7b2018-10-01 12:22:22 -0600288 ret = send_command(cdev, EC_CMD_GET_COMMS_STATUS, 0,
289 NULL, 0,
290 (uint8_t **)&resp, sizeof(*resp));
Hung-ying Tyan88364382013-05-15 18:27:28 +0800291 if (ret < 0)
292 return ret;
293
294 if (get_timer(start) > CROS_EC_CMD_TIMEOUT_MS) {
295 debug("%s: Command %#02x timeout\n",
296 __func__, cmd);
297 return -EC_RES_TIMEOUT;
298 }
299 } while (resp->flags & EC_COMMS_STATUS_PROCESSING);
300
301 /* OK it completed, so read the status response */
302 /* not sure why it was 0 for the last argument */
Simon Glass6322a7b2018-10-01 12:22:22 -0600303 len = send_command(cdev, EC_CMD_RESEND_RESPONSE, 0, NULL, 0,
304 &din, din_len);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800305 }
306
Simon Glasse907bf22017-05-18 20:09:22 -0600307 debug("%s: len=%d, din=%p\n", __func__, len, din);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800308 if (dinp) {
309 /* If we have any data to return, it must be 64bit-aligned */
310 assert(len <= 0 || !((uintptr_t)din & 7));
311 *dinp = din;
312 }
313
314 return len;
315}
316
317/**
318 * Send a command to the CROS-EC device and return the reply.
319 *
320 * The device's internal input/output buffers are used.
321 *
322 * @param dev CROS-EC device
323 * @param cmd Command to send (EC_CMD_...)
324 * @param cmd_version Version of command to send (EC_VER_...)
325 * @param dout Output data (may be NULL If dout_len=0)
326 * @param dout_len Size of output data in bytes
327 * @param din Response data (may be NULL If din_len=0).
328 * It not NULL, it is a place for ec_command() to copy the
329 * data to.
330 * @param din_len Maximum size of response in bytes
Simon Glass8bbb38b2015-01-25 08:27:17 -0700331 * @return number of bytes in response, or -ve on error
Hung-ying Tyan88364382013-05-15 18:27:28 +0800332 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600333static int ec_command(struct udevice *dev, uint8_t cmd, int cmd_version,
Hung-ying Tyan88364382013-05-15 18:27:28 +0800334 const void *dout, int dout_len,
335 void *din, int din_len)
336{
337 uint8_t *in_buffer;
338 int len;
339
340 assert((din_len == 0) || din);
341 len = ec_command_inptr(dev, cmd, cmd_version, dout, dout_len,
Simon Glass6322a7b2018-10-01 12:22:22 -0600342 &in_buffer, din_len);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800343 if (len > 0) {
344 /*
345 * If we were asked to put it somewhere, do so, otherwise just
346 * disregard the result.
347 */
348 if (din && in_buffer) {
349 assert(len <= din_len);
350 memmove(din, in_buffer, len);
351 }
352 }
353 return len;
354}
355
Simon Glass745009c2015-10-18 21:17:14 -0600356int cros_ec_scan_keyboard(struct udevice *dev, struct mbkp_keyscan *scan)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800357{
Simon Glass6322a7b2018-10-01 12:22:22 -0600358 if (ec_command(dev, EC_CMD_MKBP_STATE, 0, NULL, 0, scan,
Simon Glass2ab83f02014-02-27 13:26:11 -0700359 sizeof(scan->data)) != sizeof(scan->data))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800360 return -1;
361
362 return 0;
363}
364
Simon Glass6322a7b2018-10-01 12:22:22 -0600365int cros_ec_read_id(struct udevice *dev, char *id, int maxlen)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800366{
367 struct ec_response_get_version *r;
368
369 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
Simon Glass2ab83f02014-02-27 13:26:11 -0700370 (uint8_t **)&r, sizeof(*r)) != sizeof(*r))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800371 return -1;
372
Simon Glass2ab83f02014-02-27 13:26:11 -0700373 if (maxlen > (int)sizeof(r->version_string_ro))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800374 maxlen = sizeof(r->version_string_ro);
375
376 switch (r->current_image) {
377 case EC_IMAGE_RO:
378 memcpy(id, r->version_string_ro, maxlen);
379 break;
380 case EC_IMAGE_RW:
381 memcpy(id, r->version_string_rw, maxlen);
382 break;
383 default:
384 return -1;
385 }
386
387 id[maxlen - 1] = '\0';
388 return 0;
389}
390
Simon Glass6322a7b2018-10-01 12:22:22 -0600391int cros_ec_read_version(struct udevice *dev,
392 struct ec_response_get_version **versionp)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800393{
394 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
395 (uint8_t **)versionp, sizeof(**versionp))
Simon Glass2ab83f02014-02-27 13:26:11 -0700396 != sizeof(**versionp))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800397 return -1;
398
399 return 0;
400}
401
Simon Glass6322a7b2018-10-01 12:22:22 -0600402int cros_ec_read_build_info(struct udevice *dev, char **strp)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800403{
404 if (ec_command_inptr(dev, EC_CMD_GET_BUILD_INFO, 0, NULL, 0,
Simon Glass836bb6e2014-02-27 13:26:07 -0700405 (uint8_t **)strp, EC_PROTO2_MAX_PARAM_SIZE) < 0)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800406 return -1;
407
408 return 0;
409}
410
Simon Glass6322a7b2018-10-01 12:22:22 -0600411int cros_ec_read_current_image(struct udevice *dev,
Simon Glasse6c5c942018-10-01 12:22:08 -0600412 enum ec_current_image *image)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800413{
414 struct ec_response_get_version *r;
415
416 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
Simon Glass2ab83f02014-02-27 13:26:11 -0700417 (uint8_t **)&r, sizeof(*r)) != sizeof(*r))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800418 return -1;
419
420 *image = r->current_image;
421 return 0;
422}
423
Simon Glass6322a7b2018-10-01 12:22:22 -0600424static int cros_ec_wait_on_hash_done(struct udevice *dev,
Simon Glasse6c5c942018-10-01 12:22:08 -0600425 struct ec_response_vboot_hash *hash)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800426{
427 struct ec_params_vboot_hash p;
428 ulong start;
429
430 start = get_timer(0);
431 while (hash->status == EC_VBOOT_HASH_STATUS_BUSY) {
432 mdelay(50); /* Insert some reasonable delay */
433
434 p.cmd = EC_VBOOT_HASH_GET;
435 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
436 hash, sizeof(*hash)) < 0)
437 return -1;
438
439 if (get_timer(start) > CROS_EC_CMD_HASH_TIMEOUT_MS) {
440 debug("%s: EC_VBOOT_HASH_GET timeout\n", __func__);
441 return -EC_RES_TIMEOUT;
442 }
443 }
444 return 0;
445}
446
447
Simon Glass6322a7b2018-10-01 12:22:22 -0600448int cros_ec_read_hash(struct udevice *dev, struct ec_response_vboot_hash *hash)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800449{
450 struct ec_params_vboot_hash p;
451 int rv;
452
453 p.cmd = EC_VBOOT_HASH_GET;
454 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
455 hash, sizeof(*hash)) < 0)
456 return -1;
457
458 /* If the EC is busy calculating the hash, fidget until it's done. */
459 rv = cros_ec_wait_on_hash_done(dev, hash);
460 if (rv)
461 return rv;
462
463 /* If the hash is valid, we're done. Otherwise, we have to kick it off
464 * again and wait for it to complete. Note that we explicitly assume
465 * that hashing zero bytes is always wrong, even though that would
466 * produce a valid hash value. */
467 if (hash->status == EC_VBOOT_HASH_STATUS_DONE && hash->size)
468 return 0;
469
470 debug("%s: No valid hash (status=%d size=%d). Compute one...\n",
471 __func__, hash->status, hash->size);
472
Simon Glass836bb6e2014-02-27 13:26:07 -0700473 p.cmd = EC_VBOOT_HASH_START;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800474 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
475 p.nonce_size = 0;
476 p.offset = EC_VBOOT_HASH_OFFSET_RW;
477
478 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
479 hash, sizeof(*hash)) < 0)
480 return -1;
481
482 rv = cros_ec_wait_on_hash_done(dev, hash);
483 if (rv)
484 return rv;
485
486 debug("%s: hash done\n", __func__);
487
488 return 0;
489}
490
Simon Glass6322a7b2018-10-01 12:22:22 -0600491static int cros_ec_invalidate_hash(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800492{
493 struct ec_params_vboot_hash p;
494 struct ec_response_vboot_hash *hash;
495
496 /* We don't have an explict command for the EC to discard its current
497 * hash value, so we'll just tell it to calculate one that we know is
498 * wrong (we claim that hashing zero bytes is always invalid).
499 */
500 p.cmd = EC_VBOOT_HASH_RECALC;
501 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
502 p.nonce_size = 0;
503 p.offset = 0;
504 p.size = 0;
505
506 debug("%s:\n", __func__);
507
508 if (ec_command_inptr(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
509 (uint8_t **)&hash, sizeof(*hash)) < 0)
510 return -1;
511
512 /* No need to wait for it to finish */
513 return 0;
514}
515
Simon Glass6322a7b2018-10-01 12:22:22 -0600516int cros_ec_reboot(struct udevice *dev, enum ec_reboot_cmd cmd, uint8_t flags)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800517{
518 struct ec_params_reboot_ec p;
519
520 p.cmd = cmd;
521 p.flags = flags;
522
523 if (ec_command_inptr(dev, EC_CMD_REBOOT_EC, 0, &p, sizeof(p), NULL, 0)
524 < 0)
525 return -1;
526
527 if (!(flags & EC_REBOOT_FLAG_ON_AP_SHUTDOWN)) {
528 /*
529 * EC reboot will take place immediately so delay to allow it
530 * to complete. Note that some reboot types (EC_REBOOT_COLD)
531 * will reboot the AP as well, in which case we won't actually
532 * get to this point.
533 */
534 /*
535 * TODO(rspangler@chromium.org): Would be nice if we had a
536 * better way to determine when the reboot is complete. Could
537 * we poll a memory-mapped LPC value?
538 */
539 udelay(50000);
540 }
541
542 return 0;
543}
544
Simon Glass745009c2015-10-18 21:17:14 -0600545int cros_ec_interrupt_pending(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800546{
Simon Glass745009c2015-10-18 21:17:14 -0600547 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
548
Hung-ying Tyan88364382013-05-15 18:27:28 +0800549 /* no interrupt support : always poll */
Simon Glass745009c2015-10-18 21:17:14 -0600550 if (!dm_gpio_is_valid(&cdev->ec_int))
Simon Glass2ab83f02014-02-27 13:26:11 -0700551 return -ENOENT;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800552
Simon Glass745009c2015-10-18 21:17:14 -0600553 return dm_gpio_get_value(&cdev->ec_int);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800554}
555
Simon Glass6322a7b2018-10-01 12:22:22 -0600556int cros_ec_info(struct udevice *dev, struct ec_response_mkbp_info *info)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800557{
Simon Glass836bb6e2014-02-27 13:26:07 -0700558 if (ec_command(dev, EC_CMD_MKBP_INFO, 0, NULL, 0, info,
Simon Glass2ab83f02014-02-27 13:26:11 -0700559 sizeof(*info)) != sizeof(*info))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800560 return -1;
561
562 return 0;
563}
564
Simon Glass6322a7b2018-10-01 12:22:22 -0600565int cros_ec_get_host_events(struct udevice *dev, uint32_t *events_ptr)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800566{
567 struct ec_response_host_event_mask *resp;
568
569 /*
570 * Use the B copy of the event flags, because the main copy is already
571 * used by ACPI/SMI.
572 */
573 if (ec_command_inptr(dev, EC_CMD_HOST_EVENT_GET_B, 0, NULL, 0,
Simon Glass2ab83f02014-02-27 13:26:11 -0700574 (uint8_t **)&resp, sizeof(*resp)) < (int)sizeof(*resp))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800575 return -1;
576
577 if (resp->mask & EC_HOST_EVENT_MASK(EC_HOST_EVENT_INVALID))
578 return -1;
579
580 *events_ptr = resp->mask;
581 return 0;
582}
583
Simon Glass6322a7b2018-10-01 12:22:22 -0600584int cros_ec_clear_host_events(struct udevice *dev, uint32_t events)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800585{
586 struct ec_params_host_event_mask params;
587
588 params.mask = events;
589
590 /*
591 * Use the B copy of the event flags, so it affects the data returned
592 * by cros_ec_get_host_events().
593 */
594 if (ec_command_inptr(dev, EC_CMD_HOST_EVENT_CLEAR_B, 0,
595 &params, sizeof(params), NULL, 0) < 0)
596 return -1;
597
598 return 0;
599}
600
Simon Glass6322a7b2018-10-01 12:22:22 -0600601int cros_ec_flash_protect(struct udevice *dev, uint32_t set_mask,
602 uint32_t set_flags,
Simon Glasse6c5c942018-10-01 12:22:08 -0600603 struct ec_response_flash_protect *resp)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800604{
605 struct ec_params_flash_protect params;
606
607 params.mask = set_mask;
608 params.flags = set_flags;
609
610 if (ec_command(dev, EC_CMD_FLASH_PROTECT, EC_VER_FLASH_PROTECT,
611 &params, sizeof(params),
Simon Glass2ab83f02014-02-27 13:26:11 -0700612 resp, sizeof(*resp)) != sizeof(*resp))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800613 return -1;
614
615 return 0;
616}
617
Simon Glass6322a7b2018-10-01 12:22:22 -0600618static int cros_ec_check_version(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800619{
Simon Glass6322a7b2018-10-01 12:22:22 -0600620 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800621 struct ec_params_hello req;
622 struct ec_response_hello *resp;
623
Simon Glass72a38e02015-03-26 09:29:30 -0600624 struct dm_cros_ec_ops *ops;
625 int ret;
626
Simon Glass6322a7b2018-10-01 12:22:22 -0600627 ops = dm_cros_ec_get_ops(dev);
Simon Glass72a38e02015-03-26 09:29:30 -0600628 if (ops->check_version) {
Simon Glass6322a7b2018-10-01 12:22:22 -0600629 ret = ops->check_version(dev);
Simon Glass72a38e02015-03-26 09:29:30 -0600630 if (ret)
631 return ret;
632 }
Hung-ying Tyan88364382013-05-15 18:27:28 +0800633
634 /*
635 * TODO(sjg@chromium.org).
636 * There is a strange oddity here with the EC. We could just ignore
637 * the response, i.e. pass the last two parameters as NULL and 0.
638 * In this case we won't read back very many bytes from the EC.
639 * On the I2C bus the EC gets upset about this and will try to send
640 * the bytes anyway. This means that we will have to wait for that
641 * to complete before continuing with a new EC command.
642 *
643 * This problem is probably unique to the I2C bus.
644 *
645 * So for now, just read all the data anyway.
646 */
Randall Spanglere8c12662014-02-27 13:26:08 -0700647
Randall Spanglera6070282014-02-27 13:26:10 -0700648 /* Try sending a version 3 packet */
Simon Glass6322a7b2018-10-01 12:22:22 -0600649 cdev->protocol_version = 3;
Simon Glassd11e8fd2014-11-11 18:06:30 -0700650 req.in_data = 0;
Randall Spanglera6070282014-02-27 13:26:10 -0700651 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req, sizeof(req),
652 (uint8_t **)&resp, sizeof(*resp)) > 0) {
653 return 0;
654 }
655
Randall Spanglere8c12662014-02-27 13:26:08 -0700656 /* Try sending a version 2 packet */
Simon Glass6322a7b2018-10-01 12:22:22 -0600657 cdev->protocol_version = 2;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800658 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req, sizeof(req),
Simon Glass6322a7b2018-10-01 12:22:22 -0600659 (uint8_t **)&resp, sizeof(*resp)) > 0) {
Randall Spanglere8c12662014-02-27 13:26:08 -0700660 return 0;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800661 }
662
Randall Spanglere8c12662014-02-27 13:26:08 -0700663 /*
664 * Fail if we're still here, since the EC doesn't understand any
665 * protcol version we speak. Version 1 interface without command
666 * version is no longer supported, and we don't know about any new
667 * protocol versions.
668 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600669 cdev->protocol_version = 0;
Randall Spanglere8c12662014-02-27 13:26:08 -0700670 printf("%s: ERROR: old EC interface not supported\n", __func__);
671 return -1;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800672}
673
Simon Glass6322a7b2018-10-01 12:22:22 -0600674int cros_ec_test(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800675{
676 struct ec_params_hello req;
677 struct ec_response_hello *resp;
678
679 req.in_data = 0x12345678;
680 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req, sizeof(req),
681 (uint8_t **)&resp, sizeof(*resp)) < sizeof(*resp)) {
682 printf("ec_command_inptr() returned error\n");
683 return -1;
684 }
685 if (resp->out_data != req.in_data + 0x01020304) {
686 printf("Received invalid handshake %x\n", resp->out_data);
687 return -1;
688 }
689
690 return 0;
691}
692
Simon Glass6322a7b2018-10-01 12:22:22 -0600693int cros_ec_flash_offset(struct udevice *dev, enum ec_flash_region region,
Hung-ying Tyan88364382013-05-15 18:27:28 +0800694 uint32_t *offset, uint32_t *size)
695{
696 struct ec_params_flash_region_info p;
697 struct ec_response_flash_region_info *r;
698 int ret;
699
700 p.region = region;
701 ret = ec_command_inptr(dev, EC_CMD_FLASH_REGION_INFO,
702 EC_VER_FLASH_REGION_INFO,
703 &p, sizeof(p), (uint8_t **)&r, sizeof(*r));
704 if (ret != sizeof(*r))
705 return -1;
706
707 if (offset)
708 *offset = r->offset;
709 if (size)
710 *size = r->size;
711
712 return 0;
713}
714
Simon Glass6322a7b2018-10-01 12:22:22 -0600715int cros_ec_flash_erase(struct udevice *dev, uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800716{
717 struct ec_params_flash_erase p;
718
719 p.offset = offset;
720 p.size = size;
721 return ec_command_inptr(dev, EC_CMD_FLASH_ERASE, 0, &p, sizeof(p),
722 NULL, 0);
723}
724
725/**
726 * Write a single block to the flash
727 *
728 * Write a block of data to the EC flash. The size must not exceed the flash
729 * write block size which you can obtain from cros_ec_flash_write_burst_size().
730 *
731 * The offset starts at 0. You can obtain the region information from
732 * cros_ec_flash_offset() to find out where to write for a particular region.
733 *
734 * Attempting to write to the region where the EC is currently running from
735 * will result in an error.
736 *
737 * @param dev CROS-EC device
738 * @param data Pointer to data buffer to write
739 * @param offset Offset within flash to write to.
740 * @param size Number of bytes to write
741 * @return 0 if ok, -1 on error
742 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600743static int cros_ec_flash_write_block(struct udevice *dev, const uint8_t *data,
744 uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800745{
Moritz Fischerbae5b972016-09-12 12:57:52 -0700746 struct ec_params_flash_write *p;
747 int ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800748
Moritz Fischerbae5b972016-09-12 12:57:52 -0700749 p = malloc(sizeof(*p) + size);
750 if (!p)
751 return -ENOMEM;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800752
Moritz Fischerbae5b972016-09-12 12:57:52 -0700753 p->offset = offset;
754 p->size = size;
755 assert(data && p->size <= EC_FLASH_WRITE_VER0_SIZE);
756 memcpy(p + 1, data, p->size);
757
758 ret = ec_command_inptr(dev, EC_CMD_FLASH_WRITE, 0,
759 p, sizeof(*p) + size, NULL, 0) >= 0 ? 0 : -1;
760
761 free(p);
762
763 return ret;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800764}
765
766/**
767 * Return optimal flash write burst size
768 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600769static int cros_ec_flash_write_burst_size(struct udevice *dev)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800770{
Simon Glass836bb6e2014-02-27 13:26:07 -0700771 return EC_FLASH_WRITE_VER0_SIZE;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800772}
773
774/**
775 * Check if a block of data is erased (all 0xff)
776 *
777 * This function is useful when dealing with flash, for checking whether a
778 * data block is erased and thus does not need to be programmed.
779 *
780 * @param data Pointer to data to check (must be word-aligned)
781 * @param size Number of bytes to check (must be word-aligned)
782 * @return 0 if erased, non-zero if any word is not erased
783 */
784static int cros_ec_data_is_erased(const uint32_t *data, int size)
785{
786 assert(!(size & 3));
787 size /= sizeof(uint32_t);
788 for (; size > 0; size -= 4, data++)
789 if (*data != -1U)
790 return 0;
791
792 return 1;
793}
794
Moritz Fischer281ca882016-09-13 14:44:48 -0700795/**
796 * Read back flash parameters
797 *
798 * This function reads back parameters of the flash as reported by the EC
799 *
800 * @param dev Pointer to device
801 * @param info Pointer to output flash info struct
802 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600803int cros_ec_read_flashinfo(struct udevice *dev,
Simon Glasse6c5c942018-10-01 12:22:08 -0600804 struct ec_response_flash_info *info)
Moritz Fischer281ca882016-09-13 14:44:48 -0700805{
806 int ret;
807
808 ret = ec_command(dev, EC_CMD_FLASH_INFO, 0,
809 NULL, 0, info, sizeof(*info));
810 if (ret < 0)
811 return ret;
812
813 return ret < sizeof(*info) ? -1 : 0;
814}
815
Simon Glass6322a7b2018-10-01 12:22:22 -0600816int cros_ec_flash_write(struct udevice *dev, const uint8_t *data,
Simon Glasse6c5c942018-10-01 12:22:08 -0600817 uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800818{
Simon Glass6322a7b2018-10-01 12:22:22 -0600819 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Hung-ying Tyan88364382013-05-15 18:27:28 +0800820 uint32_t burst = cros_ec_flash_write_burst_size(dev);
821 uint32_t end, off;
822 int ret;
823
824 /*
825 * TODO: round up to the nearest multiple of write size. Can get away
826 * without that on link right now because its write size is 4 bytes.
827 */
828 end = offset + size;
829 for (off = offset; off < end; off += burst, data += burst) {
830 uint32_t todo;
831
832 /* If the data is empty, there is no point in programming it */
833 todo = min(end - off, burst);
Simon Glass6322a7b2018-10-01 12:22:22 -0600834 if (cdev->optimise_flash_write &&
Simon Glasse6c5c942018-10-01 12:22:08 -0600835 cros_ec_data_is_erased((uint32_t *)data, todo))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800836 continue;
837
838 ret = cros_ec_flash_write_block(dev, data, off, todo);
839 if (ret)
840 return ret;
841 }
842
843 return 0;
844}
845
846/**
847 * Read a single block from the flash
848 *
849 * Read a block of data from the EC flash. The size must not exceed the flash
850 * write block size which you can obtain from cros_ec_flash_write_burst_size().
851 *
852 * The offset starts at 0. You can obtain the region information from
853 * cros_ec_flash_offset() to find out where to read for a particular region.
854 *
855 * @param dev CROS-EC device
856 * @param data Pointer to data buffer to read into
857 * @param offset Offset within flash to read from
858 * @param size Number of bytes to read
859 * @return 0 if ok, -1 on error
860 */
Simon Glass6322a7b2018-10-01 12:22:22 -0600861static int cros_ec_flash_read_block(struct udevice *dev, uint8_t *data,
Simon Glasse6c5c942018-10-01 12:22:08 -0600862 uint32_t offset, uint32_t size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800863{
864 struct ec_params_flash_read p;
865
866 p.offset = offset;
867 p.size = size;
868
869 return ec_command(dev, EC_CMD_FLASH_READ, 0,
870 &p, sizeof(p), data, size) >= 0 ? 0 : -1;
871}
872
Simon Glass6322a7b2018-10-01 12:22:22 -0600873int cros_ec_flash_read(struct udevice *dev, uint8_t *data, uint32_t offset,
Simon Glasse6c5c942018-10-01 12:22:08 -0600874 uint32_t size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800875{
876 uint32_t burst = cros_ec_flash_write_burst_size(dev);
877 uint32_t end, off;
878 int ret;
879
880 end = offset + size;
881 for (off = offset; off < end; off += burst, data += burst) {
882 ret = cros_ec_flash_read_block(dev, data, off,
883 min(end - off, burst));
884 if (ret)
885 return ret;
886 }
887
888 return 0;
889}
890
Simon Glass6322a7b2018-10-01 12:22:22 -0600891int cros_ec_flash_update_rw(struct udevice *dev, const uint8_t *image,
Simon Glasse6c5c942018-10-01 12:22:08 -0600892 int image_size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800893{
894 uint32_t rw_offset, rw_size;
895 int ret;
896
897 if (cros_ec_flash_offset(dev, EC_FLASH_REGION_RW, &rw_offset, &rw_size))
898 return -1;
Simon Glass2ab83f02014-02-27 13:26:11 -0700899 if (image_size > (int)rw_size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800900 return -1;
901
902 /* Invalidate the existing hash, just in case the AP reboots
903 * unexpectedly during the update. If that happened, the EC RW firmware
904 * would be invalid, but the EC would still have the original hash.
905 */
906 ret = cros_ec_invalidate_hash(dev);
907 if (ret)
908 return ret;
909
910 /*
911 * Erase the entire RW section, so that the EC doesn't see any garbage
912 * past the new image if it's smaller than the current image.
913 *
914 * TODO: could optimize this to erase just the current image, since
915 * presumably everything past that is 0xff's. But would still need to
916 * round up to the nearest multiple of erase size.
917 */
918 ret = cros_ec_flash_erase(dev, rw_offset, rw_size);
919 if (ret)
920 return ret;
921
922 /* Write the image */
923 ret = cros_ec_flash_write(dev, image, rw_offset, image_size);
924 if (ret)
925 return ret;
926
927 return 0;
928}
929
Simon Glass6322a7b2018-10-01 12:22:22 -0600930int cros_ec_read_nvdata(struct udevice *dev, uint8_t *block, int size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800931{
932 struct ec_params_vbnvcontext p;
933 int len;
934
Simon Glass6322a7b2018-10-01 12:22:22 -0600935 if (size != EC_VBNV_BLOCK_SIZE)
936 return -EINVAL;
937
Hung-ying Tyan88364382013-05-15 18:27:28 +0800938 p.op = EC_VBNV_CONTEXT_OP_READ;
939
940 len = ec_command(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
941 &p, sizeof(p), block, EC_VBNV_BLOCK_SIZE);
942 if (len < EC_VBNV_BLOCK_SIZE)
Simon Glass6322a7b2018-10-01 12:22:22 -0600943 return -EIO;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800944
945 return 0;
946}
947
Simon Glass6322a7b2018-10-01 12:22:22 -0600948int cros_ec_write_nvdata(struct udevice *dev, const uint8_t *block, int size)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800949{
950 struct ec_params_vbnvcontext p;
951 int len;
952
Simon Glass6322a7b2018-10-01 12:22:22 -0600953 if (size != EC_VBNV_BLOCK_SIZE)
954 return -EINVAL;
Hung-ying Tyan88364382013-05-15 18:27:28 +0800955 p.op = EC_VBNV_CONTEXT_OP_WRITE;
956 memcpy(p.block, block, sizeof(p.block));
957
958 len = ec_command_inptr(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
959 &p, sizeof(p), NULL, 0);
960 if (len < 0)
961 return -1;
962
963 return 0;
964}
965
Simon Glassf48eaf02015-08-03 08:19:24 -0600966int cros_ec_set_ldo(struct udevice *dev, uint8_t index, uint8_t state)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800967{
968 struct ec_params_ldo_set params;
969
970 params.index = index;
971 params.state = state;
972
Simon Glass6322a7b2018-10-01 12:22:22 -0600973 if (ec_command_inptr(dev, EC_CMD_LDO_SET, 0, &params, sizeof(params),
Simon Glassf48eaf02015-08-03 08:19:24 -0600974 NULL, 0))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800975 return -1;
976
977 return 0;
978}
979
Simon Glassf48eaf02015-08-03 08:19:24 -0600980int cros_ec_get_ldo(struct udevice *dev, uint8_t index, uint8_t *state)
Hung-ying Tyan88364382013-05-15 18:27:28 +0800981{
982 struct ec_params_ldo_get params;
983 struct ec_response_ldo_get *resp;
984
985 params.index = index;
986
Simon Glass6322a7b2018-10-01 12:22:22 -0600987 if (ec_command_inptr(dev, EC_CMD_LDO_GET, 0, &params, sizeof(params),
Simon Glassf48eaf02015-08-03 08:19:24 -0600988 (uint8_t **)&resp, sizeof(*resp)) !=
989 sizeof(*resp))
Hung-ying Tyan88364382013-05-15 18:27:28 +0800990 return -1;
991
992 *state = resp->state;
993
994 return 0;
995}
996
Simon Glass84d6cbd2014-10-13 23:42:14 -0600997int cros_ec_register(struct udevice *dev)
998{
Simon Glasse564f052015-03-05 12:25:20 -0700999 struct cros_ec_dev *cdev = dev_get_uclass_priv(dev);
Simon Glass84d6cbd2014-10-13 23:42:14 -06001000 char id[MSG_BYTES];
1001
1002 cdev->dev = dev;
Simon Glass32f8a192015-01-05 20:05:32 -07001003 gpio_request_by_name(dev, "ec-interrupt", 0, &cdev->ec_int,
1004 GPIOD_IS_IN);
Simon Glass2ec9d172017-05-18 20:09:23 -06001005 cdev->optimise_flash_write = dev_read_bool(dev, "optimise-flash-write");
Simon Glass84d6cbd2014-10-13 23:42:14 -06001006
Simon Glass6322a7b2018-10-01 12:22:22 -06001007 if (cros_ec_check_version(dev)) {
Simon Glass84d6cbd2014-10-13 23:42:14 -06001008 debug("%s: Could not detect CROS-EC version\n", __func__);
1009 return -CROS_EC_ERR_CHECK_VERSION;
1010 }
1011
Simon Glass6322a7b2018-10-01 12:22:22 -06001012 if (cros_ec_read_id(dev, id, sizeof(id))) {
Simon Glass84d6cbd2014-10-13 23:42:14 -06001013 debug("%s: Could not read KBC ID\n", __func__);
1014 return -CROS_EC_ERR_READ_ID;
1015 }
1016
1017 /* Remember this device for use by the cros_ec command */
Simon Glassc4b206d2015-02-17 15:29:36 -07001018 debug("Google Chrome EC v%d CROS-EC driver ready, id '%s'\n",
1019 cdev->protocol_version, id);
Simon Glass84d6cbd2014-10-13 23:42:14 -06001020
1021 return 0;
1022}
Hung-ying Tyan88364382013-05-15 18:27:28 +08001023
Simon Glass2ec9d172017-05-18 20:09:23 -06001024int cros_ec_decode_ec_flash(struct udevice *dev, struct fdt_cros_ec *config)
Simon Glassd7f25f32014-02-27 13:26:03 -07001025{
Simon Glass2ec9d172017-05-18 20:09:23 -06001026 ofnode flash_node, node;
Simon Glassd7f25f32014-02-27 13:26:03 -07001027
Simon Glass2ec9d172017-05-18 20:09:23 -06001028 flash_node = dev_read_subnode(dev, "flash");
1029 if (!ofnode_valid(flash_node)) {
Simon Glassd7f25f32014-02-27 13:26:03 -07001030 debug("Failed to find flash node\n");
1031 return -1;
1032 }
1033
Simon Glass5e0a7342018-06-11 13:07:17 -06001034 if (ofnode_read_fmap_entry(flash_node, &config->flash)) {
Simon Glass2ec9d172017-05-18 20:09:23 -06001035 debug("Failed to decode flash node in chrome-ec\n");
Simon Glassd7f25f32014-02-27 13:26:03 -07001036 return -1;
1037 }
1038
Simon Glass2ec9d172017-05-18 20:09:23 -06001039 config->flash_erase_value = ofnode_read_s32_default(flash_node,
1040 "erase-value", -1);
Simon Glass3991f422017-08-05 15:45:54 -06001041 ofnode_for_each_subnode(node, flash_node) {
Simon Glass2ec9d172017-05-18 20:09:23 -06001042 const char *name = ofnode_get_name(node);
Simon Glassd7f25f32014-02-27 13:26:03 -07001043 enum ec_flash_region region;
1044
1045 if (0 == strcmp(name, "ro")) {
1046 region = EC_FLASH_REGION_RO;
1047 } else if (0 == strcmp(name, "rw")) {
1048 region = EC_FLASH_REGION_RW;
1049 } else if (0 == strcmp(name, "wp-ro")) {
1050 region = EC_FLASH_REGION_WP_RO;
1051 } else {
1052 debug("Unknown EC flash region name '%s'\n", name);
1053 return -1;
1054 }
1055
Simon Glass5e0a7342018-06-11 13:07:17 -06001056 if (ofnode_read_fmap_entry(node, &config->region[region])) {
Simon Glassd7f25f32014-02-27 13:26:03 -07001057 debug("Failed to decode flash region in chrome-ec'\n");
1058 return -1;
1059 }
1060 }
1061
1062 return 0;
1063}
1064
Moritz Fischer6d1a7182016-09-27 15:42:07 -07001065int cros_ec_i2c_tunnel(struct udevice *dev, int port, struct i2c_msg *in,
1066 int nmsgs)
Simon Glasscc456bd2015-08-03 08:19:23 -06001067{
Simon Glasscc456bd2015-08-03 08:19:23 -06001068 union {
1069 struct ec_params_i2c_passthru p;
1070 uint8_t outbuf[EC_PROTO2_MAX_PARAM_SIZE];
1071 } params;
1072 union {
1073 struct ec_response_i2c_passthru r;
1074 uint8_t inbuf[EC_PROTO2_MAX_PARAM_SIZE];
1075 } response;
1076 struct ec_params_i2c_passthru *p = &params.p;
1077 struct ec_response_i2c_passthru *r = &response.r;
1078 struct ec_params_i2c_passthru_msg *msg;
1079 uint8_t *pdata, *read_ptr = NULL;
1080 int read_len;
1081 int size;
1082 int rv;
1083 int i;
1084
Moritz Fischer6d1a7182016-09-27 15:42:07 -07001085 p->port = port;
Simon Glasscc456bd2015-08-03 08:19:23 -06001086
1087 p->num_msgs = nmsgs;
1088 size = sizeof(*p) + p->num_msgs * sizeof(*msg);
1089
1090 /* Create a message to write the register address and optional data */
1091 pdata = (uint8_t *)p + size;
1092
1093 read_len = 0;
1094 for (i = 0, msg = p->msg; i < nmsgs; i++, msg++, in++) {
1095 bool is_read = in->flags & I2C_M_RD;
1096
1097 msg->addr_flags = in->addr;
1098 msg->len = in->len;
1099 if (is_read) {
1100 msg->addr_flags |= EC_I2C_FLAG_READ;
1101 read_len += in->len;
1102 read_ptr = in->buf;
1103 if (sizeof(*r) + read_len > sizeof(response)) {
1104 puts("Read length too big for buffer\n");
1105 return -1;
1106 }
1107 } else {
1108 if (pdata - (uint8_t *)p + in->len > sizeof(params)) {
1109 puts("Params too large for buffer\n");
1110 return -1;
1111 }
1112 memcpy(pdata, in->buf, in->len);
1113 pdata += in->len;
1114 }
1115 }
1116
Simon Glass6322a7b2018-10-01 12:22:22 -06001117 rv = ec_command(dev, EC_CMD_I2C_PASSTHRU, 0, p, pdata - (uint8_t *)p,
Simon Glasscc456bd2015-08-03 08:19:23 -06001118 r, sizeof(*r) + read_len);
1119 if (rv < 0)
1120 return rv;
1121
1122 /* Parse response */
1123 if (r->i2c_status & EC_I2C_STATUS_ERROR) {
1124 printf("Transfer failed with status=0x%x\n", r->i2c_status);
1125 return -1;
1126 }
1127
1128 if (rv < sizeof(*r) + read_len) {
1129 puts("Truncated read response\n");
1130 return -1;
1131 }
1132
1133 /* We only support a single read message for each transfer */
1134 if (read_len)
1135 memcpy(read_ptr, r->data, read_len);
1136
1137 return 0;
1138}
1139
Simon Glass84d6cbd2014-10-13 23:42:14 -06001140UCLASS_DRIVER(cros_ec) = {
1141 .id = UCLASS_CROS_EC,
1142 .name = "cros_ec",
1143 .per_device_auto_alloc_size = sizeof(struct cros_ec_dev),
Simon Glass91195482016-07-05 17:10:10 -06001144 .post_bind = dm_scan_fdt_dev,
Simon Glass84d6cbd2014-10-13 23:42:14 -06001145};