blob: 1998653754bdb0e075396a3985851e40e755a943 [file] [log] [blame]
Hung-ying Tyan88364382013-05-15 18:27:28 +08001/*
2 * Chromium OS cros_ec driver
3 *
4 * Copyright (c) 2012 The Chromium OS Authors.
Hung-ying Tyan88364382013-05-15 18:27:28 +08005 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Hung-ying Tyan88364382013-05-15 18:27:28 +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 <command.h>
18#include <i2c.h>
19#include <cros_ec.h>
20#include <fdtdec.h>
21#include <malloc.h>
22#include <spi.h>
23#include <asm/io.h>
24#include <asm-generic/gpio.h>
25
26#ifdef DEBUG_TRACE
27#define debug_trace(fmt, b...) debug(fmt, #b)
28#else
29#define debug_trace(fmt, b...)
30#endif
31
32enum {
33 /* Timeout waiting for a flash erase command to complete */
34 CROS_EC_CMD_TIMEOUT_MS = 5000,
35 /* Timeout waiting for a synchronous hash to be recomputed */
36 CROS_EC_CMD_HASH_TIMEOUT_MS = 2000,
37};
38
39static struct cros_ec_dev static_dev, *last_dev;
40
41DECLARE_GLOBAL_DATA_PTR;
42
43/* Note: depends on enum ec_current_image */
44static const char * const ec_current_image_name[] = {"unknown", "RO", "RW"};
45
46void cros_ec_dump_data(const char *name, int cmd, const uint8_t *data, int len)
47{
48#ifdef DEBUG
49 int i;
50
51 printf("%s: ", name);
52 if (cmd != -1)
53 printf("cmd=%#x: ", cmd);
54 for (i = 0; i < len; i++)
55 printf("%02x ", data[i]);
56 printf("\n");
57#endif
58}
59
60/*
61 * Calculate a simple 8-bit checksum of a data block
62 *
63 * @param data Data block to checksum
64 * @param size Size of data block in bytes
65 * @return checksum value (0 to 255)
66 */
67int cros_ec_calc_checksum(const uint8_t *data, int size)
68{
69 int csum, i;
70
71 for (i = csum = 0; i < size; i++)
72 csum += data[i];
73 return csum & 0xff;
74}
75
76static int send_command(struct cros_ec_dev *dev, uint8_t cmd, int cmd_version,
77 const void *dout, int dout_len,
78 uint8_t **dinp, int din_len)
79{
80 int ret;
81
82 switch (dev->interface) {
83#ifdef CONFIG_CROS_EC_SPI
84 case CROS_EC_IF_SPI:
85 ret = cros_ec_spi_command(dev, cmd, cmd_version,
86 (const uint8_t *)dout, dout_len,
87 dinp, din_len);
88 break;
89#endif
90#ifdef CONFIG_CROS_EC_I2C
91 case CROS_EC_IF_I2C:
92 ret = cros_ec_i2c_command(dev, cmd, cmd_version,
93 (const uint8_t *)dout, dout_len,
94 dinp, din_len);
95 break;
96#endif
97#ifdef CONFIG_CROS_EC_LPC
98 case CROS_EC_IF_LPC:
99 ret = cros_ec_lpc_command(dev, cmd, cmd_version,
100 (const uint8_t *)dout, dout_len,
101 dinp, din_len);
102 break;
103#endif
104 case CROS_EC_IF_NONE:
105 default:
106 ret = -1;
107 }
108
109 return ret;
110}
111
112/**
113 * Send a command to the CROS-EC device and return the reply.
114 *
115 * The device's internal input/output buffers are used.
116 *
117 * @param dev CROS-EC device
118 * @param cmd Command to send (EC_CMD_...)
119 * @param cmd_version Version of command to send (EC_VER_...)
120 * @param dout Output data (may be NULL If dout_len=0)
121 * @param dout_len Size of output data in bytes
122 * @param dinp Response data (may be NULL If din_len=0).
123 * If not NULL, it will be updated to point to the data
124 * and will always be double word aligned (64-bits)
125 * @param din_len Maximum size of response in bytes
126 * @return number of bytes in response, or -1 on error
127 */
128static int ec_command_inptr(struct cros_ec_dev *dev, uint8_t cmd,
129 int cmd_version, const void *dout, int dout_len, uint8_t **dinp,
130 int din_len)
131{
132 uint8_t *din;
133 int len;
134
135 if (cmd_version != 0 && !dev->cmd_version_is_supported) {
136 debug("%s: Command version >0 unsupported\n", __func__);
137 return -1;
138 }
139 len = send_command(dev, cmd, cmd_version, dout, dout_len,
140 &din, din_len);
141
142 /* If the command doesn't complete, wait a while */
143 if (len == -EC_RES_IN_PROGRESS) {
144 struct ec_response_get_comms_status *resp;
145 ulong start;
146
147 /* Wait for command to complete */
148 start = get_timer(0);
149 do {
150 int ret;
151
152 mdelay(50); /* Insert some reasonable delay */
153 ret = send_command(dev, EC_CMD_GET_COMMS_STATUS, 0,
154 NULL, 0,
155 (uint8_t **)&resp, sizeof(*resp));
156 if (ret < 0)
157 return ret;
158
159 if (get_timer(start) > CROS_EC_CMD_TIMEOUT_MS) {
160 debug("%s: Command %#02x timeout\n",
161 __func__, cmd);
162 return -EC_RES_TIMEOUT;
163 }
164 } while (resp->flags & EC_COMMS_STATUS_PROCESSING);
165
166 /* OK it completed, so read the status response */
167 /* not sure why it was 0 for the last argument */
168 len = send_command(dev, EC_CMD_RESEND_RESPONSE, 0,
169 NULL, 0, &din, din_len);
170 }
171
172 debug("%s: len=%d, dinp=%p, *dinp=%p\n", __func__, len, dinp, *dinp);
173 if (dinp) {
174 /* If we have any data to return, it must be 64bit-aligned */
175 assert(len <= 0 || !((uintptr_t)din & 7));
176 *dinp = din;
177 }
178
179 return len;
180}
181
182/**
183 * Send a command to the CROS-EC device and return the reply.
184 *
185 * The device's internal input/output buffers are used.
186 *
187 * @param dev CROS-EC device
188 * @param cmd Command to send (EC_CMD_...)
189 * @param cmd_version Version of command to send (EC_VER_...)
190 * @param dout Output data (may be NULL If dout_len=0)
191 * @param dout_len Size of output data in bytes
192 * @param din Response data (may be NULL If din_len=0).
193 * It not NULL, it is a place for ec_command() to copy the
194 * data to.
195 * @param din_len Maximum size of response in bytes
196 * @return number of bytes in response, or -1 on error
197 */
198static int ec_command(struct cros_ec_dev *dev, uint8_t cmd, int cmd_version,
199 const void *dout, int dout_len,
200 void *din, int din_len)
201{
202 uint8_t *in_buffer;
203 int len;
204
205 assert((din_len == 0) || din);
206 len = ec_command_inptr(dev, cmd, cmd_version, dout, dout_len,
207 &in_buffer, din_len);
208 if (len > 0) {
209 /*
210 * If we were asked to put it somewhere, do so, otherwise just
211 * disregard the result.
212 */
213 if (din && in_buffer) {
214 assert(len <= din_len);
215 memmove(din, in_buffer, len);
216 }
217 }
218 return len;
219}
220
221int cros_ec_scan_keyboard(struct cros_ec_dev *dev, struct mbkp_keyscan *scan)
222{
223 if (ec_command(dev, EC_CMD_CROS_EC_STATE, 0, NULL, 0, scan,
224 sizeof(scan->data)) < sizeof(scan->data))
225 return -1;
226
227 return 0;
228}
229
230int cros_ec_read_id(struct cros_ec_dev *dev, char *id, int maxlen)
231{
232 struct ec_response_get_version *r;
233
234 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
235 (uint8_t **)&r, sizeof(*r)) < sizeof(*r))
236 return -1;
237
238 if (maxlen > sizeof(r->version_string_ro))
239 maxlen = sizeof(r->version_string_ro);
240
241 switch (r->current_image) {
242 case EC_IMAGE_RO:
243 memcpy(id, r->version_string_ro, maxlen);
244 break;
245 case EC_IMAGE_RW:
246 memcpy(id, r->version_string_rw, maxlen);
247 break;
248 default:
249 return -1;
250 }
251
252 id[maxlen - 1] = '\0';
253 return 0;
254}
255
256int cros_ec_read_version(struct cros_ec_dev *dev,
257 struct ec_response_get_version **versionp)
258{
259 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
260 (uint8_t **)versionp, sizeof(**versionp))
261 < sizeof(**versionp))
262 return -1;
263
264 return 0;
265}
266
267int cros_ec_read_build_info(struct cros_ec_dev *dev, char **strp)
268{
269 if (ec_command_inptr(dev, EC_CMD_GET_BUILD_INFO, 0, NULL, 0,
270 (uint8_t **)strp, EC_HOST_PARAM_SIZE) < 0)
271 return -1;
272
273 return 0;
274}
275
276int cros_ec_read_current_image(struct cros_ec_dev *dev,
277 enum ec_current_image *image)
278{
279 struct ec_response_get_version *r;
280
281 if (ec_command_inptr(dev, EC_CMD_GET_VERSION, 0, NULL, 0,
282 (uint8_t **)&r, sizeof(*r)) < sizeof(*r))
283 return -1;
284
285 *image = r->current_image;
286 return 0;
287}
288
289static int cros_ec_wait_on_hash_done(struct cros_ec_dev *dev,
290 struct ec_response_vboot_hash *hash)
291{
292 struct ec_params_vboot_hash p;
293 ulong start;
294
295 start = get_timer(0);
296 while (hash->status == EC_VBOOT_HASH_STATUS_BUSY) {
297 mdelay(50); /* Insert some reasonable delay */
298
299 p.cmd = EC_VBOOT_HASH_GET;
300 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
301 hash, sizeof(*hash)) < 0)
302 return -1;
303
304 if (get_timer(start) > CROS_EC_CMD_HASH_TIMEOUT_MS) {
305 debug("%s: EC_VBOOT_HASH_GET timeout\n", __func__);
306 return -EC_RES_TIMEOUT;
307 }
308 }
309 return 0;
310}
311
312
313int cros_ec_read_hash(struct cros_ec_dev *dev,
314 struct ec_response_vboot_hash *hash)
315{
316 struct ec_params_vboot_hash p;
317 int rv;
318
319 p.cmd = EC_VBOOT_HASH_GET;
320 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
321 hash, sizeof(*hash)) < 0)
322 return -1;
323
324 /* If the EC is busy calculating the hash, fidget until it's done. */
325 rv = cros_ec_wait_on_hash_done(dev, hash);
326 if (rv)
327 return rv;
328
329 /* If the hash is valid, we're done. Otherwise, we have to kick it off
330 * again and wait for it to complete. Note that we explicitly assume
331 * that hashing zero bytes is always wrong, even though that would
332 * produce a valid hash value. */
333 if (hash->status == EC_VBOOT_HASH_STATUS_DONE && hash->size)
334 return 0;
335
336 debug("%s: No valid hash (status=%d size=%d). Compute one...\n",
337 __func__, hash->status, hash->size);
338
339 p.cmd = EC_VBOOT_HASH_RECALC;
340 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
341 p.nonce_size = 0;
342 p.offset = EC_VBOOT_HASH_OFFSET_RW;
343
344 if (ec_command(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
345 hash, sizeof(*hash)) < 0)
346 return -1;
347
348 rv = cros_ec_wait_on_hash_done(dev, hash);
349 if (rv)
350 return rv;
351
352 debug("%s: hash done\n", __func__);
353
354 return 0;
355}
356
357static int cros_ec_invalidate_hash(struct cros_ec_dev *dev)
358{
359 struct ec_params_vboot_hash p;
360 struct ec_response_vboot_hash *hash;
361
362 /* We don't have an explict command for the EC to discard its current
363 * hash value, so we'll just tell it to calculate one that we know is
364 * wrong (we claim that hashing zero bytes is always invalid).
365 */
366 p.cmd = EC_VBOOT_HASH_RECALC;
367 p.hash_type = EC_VBOOT_HASH_TYPE_SHA256;
368 p.nonce_size = 0;
369 p.offset = 0;
370 p.size = 0;
371
372 debug("%s:\n", __func__);
373
374 if (ec_command_inptr(dev, EC_CMD_VBOOT_HASH, 0, &p, sizeof(p),
375 (uint8_t **)&hash, sizeof(*hash)) < 0)
376 return -1;
377
378 /* No need to wait for it to finish */
379 return 0;
380}
381
382int cros_ec_reboot(struct cros_ec_dev *dev, enum ec_reboot_cmd cmd,
383 uint8_t flags)
384{
385 struct ec_params_reboot_ec p;
386
387 p.cmd = cmd;
388 p.flags = flags;
389
390 if (ec_command_inptr(dev, EC_CMD_REBOOT_EC, 0, &p, sizeof(p), NULL, 0)
391 < 0)
392 return -1;
393
394 if (!(flags & EC_REBOOT_FLAG_ON_AP_SHUTDOWN)) {
395 /*
396 * EC reboot will take place immediately so delay to allow it
397 * to complete. Note that some reboot types (EC_REBOOT_COLD)
398 * will reboot the AP as well, in which case we won't actually
399 * get to this point.
400 */
401 /*
402 * TODO(rspangler@chromium.org): Would be nice if we had a
403 * better way to determine when the reboot is complete. Could
404 * we poll a memory-mapped LPC value?
405 */
406 udelay(50000);
407 }
408
409 return 0;
410}
411
412int cros_ec_interrupt_pending(struct cros_ec_dev *dev)
413{
414 /* no interrupt support : always poll */
415 if (!fdt_gpio_isvalid(&dev->ec_int))
416 return 1;
417
418 return !gpio_get_value(dev->ec_int.gpio);
419}
420
421int cros_ec_info(struct cros_ec_dev *dev, struct ec_response_cros_ec_info *info)
422{
423 if (ec_command(dev, EC_CMD_CROS_EC_INFO, 0, NULL, 0, info,
424 sizeof(*info)) < sizeof(*info))
425 return -1;
426
427 return 0;
428}
429
430int cros_ec_get_host_events(struct cros_ec_dev *dev, uint32_t *events_ptr)
431{
432 struct ec_response_host_event_mask *resp;
433
434 /*
435 * Use the B copy of the event flags, because the main copy is already
436 * used by ACPI/SMI.
437 */
438 if (ec_command_inptr(dev, EC_CMD_HOST_EVENT_GET_B, 0, NULL, 0,
439 (uint8_t **)&resp, sizeof(*resp)) < sizeof(*resp))
440 return -1;
441
442 if (resp->mask & EC_HOST_EVENT_MASK(EC_HOST_EVENT_INVALID))
443 return -1;
444
445 *events_ptr = resp->mask;
446 return 0;
447}
448
449int cros_ec_clear_host_events(struct cros_ec_dev *dev, uint32_t events)
450{
451 struct ec_params_host_event_mask params;
452
453 params.mask = events;
454
455 /*
456 * Use the B copy of the event flags, so it affects the data returned
457 * by cros_ec_get_host_events().
458 */
459 if (ec_command_inptr(dev, EC_CMD_HOST_EVENT_CLEAR_B, 0,
460 &params, sizeof(params), NULL, 0) < 0)
461 return -1;
462
463 return 0;
464}
465
466int cros_ec_flash_protect(struct cros_ec_dev *dev,
467 uint32_t set_mask, uint32_t set_flags,
468 struct ec_response_flash_protect *resp)
469{
470 struct ec_params_flash_protect params;
471
472 params.mask = set_mask;
473 params.flags = set_flags;
474
475 if (ec_command(dev, EC_CMD_FLASH_PROTECT, EC_VER_FLASH_PROTECT,
476 &params, sizeof(params),
477 resp, sizeof(*resp)) < sizeof(*resp))
478 return -1;
479
480 return 0;
481}
482
483static int cros_ec_check_version(struct cros_ec_dev *dev)
484{
485 struct ec_params_hello req;
486 struct ec_response_hello *resp;
487
488#ifdef CONFIG_CROS_EC_LPC
489 /* LPC has its own way of doing this */
490 if (dev->interface == CROS_EC_IF_LPC)
491 return cros_ec_lpc_check_version(dev);
492#endif
493
494 /*
495 * TODO(sjg@chromium.org).
496 * There is a strange oddity here with the EC. We could just ignore
497 * the response, i.e. pass the last two parameters as NULL and 0.
498 * In this case we won't read back very many bytes from the EC.
499 * On the I2C bus the EC gets upset about this and will try to send
500 * the bytes anyway. This means that we will have to wait for that
501 * to complete before continuing with a new EC command.
502 *
503 * This problem is probably unique to the I2C bus.
504 *
505 * So for now, just read all the data anyway.
506 */
507 dev->cmd_version_is_supported = 1;
508 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req, sizeof(req),
509 (uint8_t **)&resp, sizeof(*resp)) > 0) {
510 /* It appears to understand new version commands */
511 dev->cmd_version_is_supported = 1;
512 } else {
513 dev->cmd_version_is_supported = 0;
514 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req,
515 sizeof(req), (uint8_t **)&resp,
516 sizeof(*resp)) < 0) {
517 debug("%s: Failed both old and new command style\n",
518 __func__);
519 return -1;
520 }
521 }
522
523 return 0;
524}
525
526int cros_ec_test(struct cros_ec_dev *dev)
527{
528 struct ec_params_hello req;
529 struct ec_response_hello *resp;
530
531 req.in_data = 0x12345678;
532 if (ec_command_inptr(dev, EC_CMD_HELLO, 0, &req, sizeof(req),
533 (uint8_t **)&resp, sizeof(*resp)) < sizeof(*resp)) {
534 printf("ec_command_inptr() returned error\n");
535 return -1;
536 }
537 if (resp->out_data != req.in_data + 0x01020304) {
538 printf("Received invalid handshake %x\n", resp->out_data);
539 return -1;
540 }
541
542 return 0;
543}
544
545int cros_ec_flash_offset(struct cros_ec_dev *dev, enum ec_flash_region region,
546 uint32_t *offset, uint32_t *size)
547{
548 struct ec_params_flash_region_info p;
549 struct ec_response_flash_region_info *r;
550 int ret;
551
552 p.region = region;
553 ret = ec_command_inptr(dev, EC_CMD_FLASH_REGION_INFO,
554 EC_VER_FLASH_REGION_INFO,
555 &p, sizeof(p), (uint8_t **)&r, sizeof(*r));
556 if (ret != sizeof(*r))
557 return -1;
558
559 if (offset)
560 *offset = r->offset;
561 if (size)
562 *size = r->size;
563
564 return 0;
565}
566
567int cros_ec_flash_erase(struct cros_ec_dev *dev, uint32_t offset, uint32_t size)
568{
569 struct ec_params_flash_erase p;
570
571 p.offset = offset;
572 p.size = size;
573 return ec_command_inptr(dev, EC_CMD_FLASH_ERASE, 0, &p, sizeof(p),
574 NULL, 0);
575}
576
577/**
578 * Write a single block to the flash
579 *
580 * Write a block of data to the EC flash. The size must not exceed the flash
581 * write block size which you can obtain from cros_ec_flash_write_burst_size().
582 *
583 * The offset starts at 0. You can obtain the region information from
584 * cros_ec_flash_offset() to find out where to write for a particular region.
585 *
586 * Attempting to write to the region where the EC is currently running from
587 * will result in an error.
588 *
589 * @param dev CROS-EC device
590 * @param data Pointer to data buffer to write
591 * @param offset Offset within flash to write to.
592 * @param size Number of bytes to write
593 * @return 0 if ok, -1 on error
594 */
595static int cros_ec_flash_write_block(struct cros_ec_dev *dev,
596 const uint8_t *data, uint32_t offset, uint32_t size)
597{
598 struct ec_params_flash_write p;
599
600 p.offset = offset;
601 p.size = size;
602 assert(data && p.size <= sizeof(p.data));
603 memcpy(p.data, data, p.size);
604
605 return ec_command_inptr(dev, EC_CMD_FLASH_WRITE, 0,
606 &p, sizeof(p), NULL, 0) >= 0 ? 0 : -1;
607}
608
609/**
610 * Return optimal flash write burst size
611 */
612static int cros_ec_flash_write_burst_size(struct cros_ec_dev *dev)
613{
614 struct ec_params_flash_write p;
615 return sizeof(p.data);
616}
617
618/**
619 * Check if a block of data is erased (all 0xff)
620 *
621 * This function is useful when dealing with flash, for checking whether a
622 * data block is erased and thus does not need to be programmed.
623 *
624 * @param data Pointer to data to check (must be word-aligned)
625 * @param size Number of bytes to check (must be word-aligned)
626 * @return 0 if erased, non-zero if any word is not erased
627 */
628static int cros_ec_data_is_erased(const uint32_t *data, int size)
629{
630 assert(!(size & 3));
631 size /= sizeof(uint32_t);
632 for (; size > 0; size -= 4, data++)
633 if (*data != -1U)
634 return 0;
635
636 return 1;
637}
638
639int cros_ec_flash_write(struct cros_ec_dev *dev, const uint8_t *data,
640 uint32_t offset, uint32_t size)
641{
642 uint32_t burst = cros_ec_flash_write_burst_size(dev);
643 uint32_t end, off;
644 int ret;
645
646 /*
647 * TODO: round up to the nearest multiple of write size. Can get away
648 * without that on link right now because its write size is 4 bytes.
649 */
650 end = offset + size;
651 for (off = offset; off < end; off += burst, data += burst) {
652 uint32_t todo;
653
654 /* If the data is empty, there is no point in programming it */
655 todo = min(end - off, burst);
656 if (dev->optimise_flash_write &&
657 cros_ec_data_is_erased((uint32_t *)data, todo))
658 continue;
659
660 ret = cros_ec_flash_write_block(dev, data, off, todo);
661 if (ret)
662 return ret;
663 }
664
665 return 0;
666}
667
668/**
669 * Read a single block from the flash
670 *
671 * Read a block of data from the EC flash. The size must not exceed the flash
672 * write block size which you can obtain from cros_ec_flash_write_burst_size().
673 *
674 * The offset starts at 0. You can obtain the region information from
675 * cros_ec_flash_offset() to find out where to read for a particular region.
676 *
677 * @param dev CROS-EC device
678 * @param data Pointer to data buffer to read into
679 * @param offset Offset within flash to read from
680 * @param size Number of bytes to read
681 * @return 0 if ok, -1 on error
682 */
683static int cros_ec_flash_read_block(struct cros_ec_dev *dev, uint8_t *data,
684 uint32_t offset, uint32_t size)
685{
686 struct ec_params_flash_read p;
687
688 p.offset = offset;
689 p.size = size;
690
691 return ec_command(dev, EC_CMD_FLASH_READ, 0,
692 &p, sizeof(p), data, size) >= 0 ? 0 : -1;
693}
694
695int cros_ec_flash_read(struct cros_ec_dev *dev, uint8_t *data, uint32_t offset,
696 uint32_t size)
697{
698 uint32_t burst = cros_ec_flash_write_burst_size(dev);
699 uint32_t end, off;
700 int ret;
701
702 end = offset + size;
703 for (off = offset; off < end; off += burst, data += burst) {
704 ret = cros_ec_flash_read_block(dev, data, off,
705 min(end - off, burst));
706 if (ret)
707 return ret;
708 }
709
710 return 0;
711}
712
713int cros_ec_flash_update_rw(struct cros_ec_dev *dev,
714 const uint8_t *image, int image_size)
715{
716 uint32_t rw_offset, rw_size;
717 int ret;
718
719 if (cros_ec_flash_offset(dev, EC_FLASH_REGION_RW, &rw_offset, &rw_size))
720 return -1;
721 if (image_size > rw_size)
722 return -1;
723
724 /* Invalidate the existing hash, just in case the AP reboots
725 * unexpectedly during the update. If that happened, the EC RW firmware
726 * would be invalid, but the EC would still have the original hash.
727 */
728 ret = cros_ec_invalidate_hash(dev);
729 if (ret)
730 return ret;
731
732 /*
733 * Erase the entire RW section, so that the EC doesn't see any garbage
734 * past the new image if it's smaller than the current image.
735 *
736 * TODO: could optimize this to erase just the current image, since
737 * presumably everything past that is 0xff's. But would still need to
738 * round up to the nearest multiple of erase size.
739 */
740 ret = cros_ec_flash_erase(dev, rw_offset, rw_size);
741 if (ret)
742 return ret;
743
744 /* Write the image */
745 ret = cros_ec_flash_write(dev, image, rw_offset, image_size);
746 if (ret)
747 return ret;
748
749 return 0;
750}
751
752int cros_ec_read_vbnvcontext(struct cros_ec_dev *dev, uint8_t *block)
753{
754 struct ec_params_vbnvcontext p;
755 int len;
756
757 p.op = EC_VBNV_CONTEXT_OP_READ;
758
759 len = ec_command(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
760 &p, sizeof(p), block, EC_VBNV_BLOCK_SIZE);
761 if (len < EC_VBNV_BLOCK_SIZE)
762 return -1;
763
764 return 0;
765}
766
767int cros_ec_write_vbnvcontext(struct cros_ec_dev *dev, const uint8_t *block)
768{
769 struct ec_params_vbnvcontext p;
770 int len;
771
772 p.op = EC_VBNV_CONTEXT_OP_WRITE;
773 memcpy(p.block, block, sizeof(p.block));
774
775 len = ec_command_inptr(dev, EC_CMD_VBNV_CONTEXT, EC_VER_VBNV_CONTEXT,
776 &p, sizeof(p), NULL, 0);
777 if (len < 0)
778 return -1;
779
780 return 0;
781}
782
783int cros_ec_set_ldo(struct cros_ec_dev *dev, uint8_t index, uint8_t state)
784{
785 struct ec_params_ldo_set params;
786
787 params.index = index;
788 params.state = state;
789
790 if (ec_command_inptr(dev, EC_CMD_LDO_SET, 0,
791 &params, sizeof(params),
792 NULL, 0))
793 return -1;
794
795 return 0;
796}
797
798int cros_ec_get_ldo(struct cros_ec_dev *dev, uint8_t index, uint8_t *state)
799{
800 struct ec_params_ldo_get params;
801 struct ec_response_ldo_get *resp;
802
803 params.index = index;
804
805 if (ec_command_inptr(dev, EC_CMD_LDO_GET, 0,
806 &params, sizeof(params),
807 (uint8_t **)&resp, sizeof(*resp)) < sizeof(*resp))
808 return -1;
809
810 *state = resp->state;
811
812 return 0;
813}
814
815/**
816 * Decode MBKP details from the device tree and allocate a suitable device.
817 *
818 * @param blob Device tree blob
819 * @param node Node to decode from
820 * @param devp Returns a pointer to the new allocated device
821 * @return 0 if ok, -1 on error
822 */
823static int cros_ec_decode_fdt(const void *blob, int node,
824 struct cros_ec_dev **devp)
825{
826 enum fdt_compat_id compat;
827 struct cros_ec_dev *dev;
828 int parent;
829
830 /* See what type of parent we are inside (this is expensive) */
831 parent = fdt_parent_offset(blob, node);
832 if (parent < 0) {
833 debug("%s: Cannot find node parent\n", __func__);
834 return -1;
835 }
836
837 dev = &static_dev;
838 dev->node = node;
839 dev->parent_node = parent;
840
841 compat = fdtdec_lookup(blob, parent);
842 switch (compat) {
843#ifdef CONFIG_CROS_EC_SPI
844 case COMPAT_SAMSUNG_EXYNOS_SPI:
845 dev->interface = CROS_EC_IF_SPI;
846 if (cros_ec_spi_decode_fdt(dev, blob))
847 return -1;
848 break;
849#endif
850#ifdef CONFIG_CROS_EC_I2C
851 case COMPAT_SAMSUNG_S3C2440_I2C:
852 dev->interface = CROS_EC_IF_I2C;
853 if (cros_ec_i2c_decode_fdt(dev, blob))
854 return -1;
855 break;
856#endif
857#ifdef CONFIG_CROS_EC_LPC
858 case COMPAT_INTEL_LPC:
859 dev->interface = CROS_EC_IF_LPC;
860 break;
861#endif
862 default:
863 debug("%s: Unknown compat id %d\n", __func__, compat);
864 return -1;
865 }
866
867 fdtdec_decode_gpio(blob, node, "ec-interrupt", &dev->ec_int);
868 dev->optimise_flash_write = fdtdec_get_bool(blob, node,
869 "optimise-flash-write");
870 *devp = dev;
871
872 return 0;
873}
874
875int cros_ec_init(const void *blob, struct cros_ec_dev **cros_ecp)
876{
877 char id[MSG_BYTES];
878 struct cros_ec_dev *dev;
879 int node = 0;
880
881 *cros_ecp = NULL;
882 do {
883 node = fdtdec_next_compatible(blob, node,
884 COMPAT_GOOGLE_CROS_EC);
885 if (node < 0) {
886 debug("%s: Node not found\n", __func__);
887 return 0;
888 }
889 } while (!fdtdec_get_is_enabled(blob, node));
890
891 if (cros_ec_decode_fdt(blob, node, &dev)) {
892 debug("%s: Failed to decode device.\n", __func__);
893 return -CROS_EC_ERR_FDT_DECODE;
894 }
895
896 switch (dev->interface) {
897#ifdef CONFIG_CROS_EC_SPI
898 case CROS_EC_IF_SPI:
899 if (cros_ec_spi_init(dev, blob)) {
900 debug("%s: Could not setup SPI interface\n", __func__);
901 return -CROS_EC_ERR_DEV_INIT;
902 }
903 break;
904#endif
905#ifdef CONFIG_CROS_EC_I2C
906 case CROS_EC_IF_I2C:
907 if (cros_ec_i2c_init(dev, blob))
908 return -CROS_EC_ERR_DEV_INIT;
909 break;
910#endif
911#ifdef CONFIG_CROS_EC_LPC
912 case CROS_EC_IF_LPC:
913 if (cros_ec_lpc_init(dev, blob))
914 return -CROS_EC_ERR_DEV_INIT;
915 break;
916#endif
917 case CROS_EC_IF_NONE:
918 default:
919 return 0;
920 }
921
922 /* we will poll the EC interrupt line */
923 fdtdec_setup_gpio(&dev->ec_int);
924 if (fdt_gpio_isvalid(&dev->ec_int))
925 gpio_direction_input(dev->ec_int.gpio);
926
927 if (cros_ec_check_version(dev)) {
928 debug("%s: Could not detect CROS-EC version\n", __func__);
929 return -CROS_EC_ERR_CHECK_VERSION;
930 }
931
932 if (cros_ec_read_id(dev, id, sizeof(id))) {
933 debug("%s: Could not read KBC ID\n", __func__);
934 return -CROS_EC_ERR_READ_ID;
935 }
936
937 /* Remember this device for use by the cros_ec command */
938 last_dev = *cros_ecp = dev;
939 debug("Google Chrome EC CROS-EC driver ready, id '%s'\n", id);
940
941 return 0;
942}
943
944#ifdef CONFIG_CMD_CROS_EC
945int cros_ec_decode_region(int argc, char * const argv[])
946{
947 if (argc > 0) {
948 if (0 == strcmp(*argv, "rw"))
949 return EC_FLASH_REGION_RW;
950 else if (0 == strcmp(*argv, "ro"))
951 return EC_FLASH_REGION_RO;
952
953 debug("%s: Invalid region '%s'\n", __func__, *argv);
954 } else {
955 debug("%s: Missing region parameter\n", __func__);
956 }
957
958 return -1;
959}
960
Simon Glassd7f25f32014-02-27 13:26:03 -0700961int cros_ec_decode_ec_flash(const void *blob, struct fdt_cros_ec *config)
962{
963 int flash_node, node;
964
965 node = fdtdec_next_compatible(blob, 0, COMPAT_GOOGLE_CROS_EC);
966 if (node < 0) {
967 debug("Failed to find chrome-ec node'\n");
968 return -1;
969 }
970
971 flash_node = fdt_subnode_offset(blob, node, "flash");
972 if (flash_node < 0) {
973 debug("Failed to find flash node\n");
974 return -1;
975 }
976
977 if (fdtdec_read_fmap_entry(blob, flash_node, "flash",
978 &config->flash)) {
979 debug("Failed to decode flash node in chrome-ec'\n");
980 return -1;
981 }
982
983 config->flash_erase_value = fdtdec_get_int(blob, flash_node,
984 "erase-value", -1);
985 for (node = fdt_first_subnode(blob, flash_node); node >= 0;
986 node = fdt_next_subnode(blob, node)) {
987 const char *name = fdt_get_name(blob, node, NULL);
988 enum ec_flash_region region;
989
990 if (0 == strcmp(name, "ro")) {
991 region = EC_FLASH_REGION_RO;
992 } else if (0 == strcmp(name, "rw")) {
993 region = EC_FLASH_REGION_RW;
994 } else if (0 == strcmp(name, "wp-ro")) {
995 region = EC_FLASH_REGION_WP_RO;
996 } else {
997 debug("Unknown EC flash region name '%s'\n", name);
998 return -1;
999 }
1000
1001 if (fdtdec_read_fmap_entry(blob, node, "reg",
1002 &config->region[region])) {
1003 debug("Failed to decode flash region in chrome-ec'\n");
1004 return -1;
1005 }
1006 }
1007
1008 return 0;
1009}
1010
Hung-ying Tyan88364382013-05-15 18:27:28 +08001011/**
1012 * Perform a flash read or write command
1013 *
1014 * @param dev CROS-EC device to read/write
1015 * @param is_write 1 do to a write, 0 to do a read
1016 * @param argc Number of arguments
1017 * @param argv Arguments (2 is region, 3 is address)
1018 * @return 0 for ok, 1 for a usage error or -ve for ec command error
1019 * (negative EC_RES_...)
1020 */
1021static int do_read_write(struct cros_ec_dev *dev, int is_write, int argc,
1022 char * const argv[])
1023{
1024 uint32_t offset, size = -1U, region_size;
1025 unsigned long addr;
1026 char *endp;
1027 int region;
1028 int ret;
1029
1030 region = cros_ec_decode_region(argc - 2, argv + 2);
1031 if (region == -1)
1032 return 1;
1033 if (argc < 4)
1034 return 1;
1035 addr = simple_strtoul(argv[3], &endp, 16);
1036 if (*argv[3] == 0 || *endp != 0)
1037 return 1;
1038 if (argc > 4) {
1039 size = simple_strtoul(argv[4], &endp, 16);
1040 if (*argv[4] == 0 || *endp != 0)
1041 return 1;
1042 }
1043
1044 ret = cros_ec_flash_offset(dev, region, &offset, &region_size);
1045 if (ret) {
1046 debug("%s: Could not read region info\n", __func__);
1047 return ret;
1048 }
1049 if (size == -1U)
1050 size = region_size;
1051
1052 ret = is_write ?
1053 cros_ec_flash_write(dev, (uint8_t *)addr, offset, size) :
1054 cros_ec_flash_read(dev, (uint8_t *)addr, offset, size);
1055 if (ret) {
1056 debug("%s: Could not %s region\n", __func__,
1057 is_write ? "write" : "read");
1058 return ret;
1059 }
1060
1061 return 0;
1062}
1063
1064static int do_cros_ec(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1065{
1066 struct cros_ec_dev *dev = last_dev;
1067 const char *cmd;
1068 int ret = 0;
1069
1070 if (argc < 2)
1071 return CMD_RET_USAGE;
1072
1073 cmd = argv[1];
1074 if (0 == strcmp("init", cmd)) {
1075 ret = cros_ec_init(gd->fdt_blob, &dev);
1076 if (ret) {
1077 printf("Could not init cros_ec device (err %d)\n", ret);
1078 return 1;
1079 }
1080 return 0;
1081 }
1082
1083 /* Just use the last allocated device; there should be only one */
1084 if (!last_dev) {
1085 printf("No CROS-EC device available\n");
1086 return 1;
1087 }
1088 if (0 == strcmp("id", cmd)) {
1089 char id[MSG_BYTES];
1090
1091 if (cros_ec_read_id(dev, id, sizeof(id))) {
1092 debug("%s: Could not read KBC ID\n", __func__);
1093 return 1;
1094 }
1095 printf("%s\n", id);
1096 } else if (0 == strcmp("info", cmd)) {
1097 struct ec_response_cros_ec_info info;
1098
1099 if (cros_ec_info(dev, &info)) {
1100 debug("%s: Could not read KBC info\n", __func__);
1101 return 1;
1102 }
1103 printf("rows = %u\n", info.rows);
1104 printf("cols = %u\n", info.cols);
1105 printf("switches = %#x\n", info.switches);
1106 } else if (0 == strcmp("curimage", cmd)) {
1107 enum ec_current_image image;
1108
1109 if (cros_ec_read_current_image(dev, &image)) {
1110 debug("%s: Could not read KBC image\n", __func__);
1111 return 1;
1112 }
1113 printf("%d\n", image);
1114 } else if (0 == strcmp("hash", cmd)) {
1115 struct ec_response_vboot_hash hash;
1116 int i;
1117
1118 if (cros_ec_read_hash(dev, &hash)) {
1119 debug("%s: Could not read KBC hash\n", __func__);
1120 return 1;
1121 }
1122
1123 if (hash.hash_type == EC_VBOOT_HASH_TYPE_SHA256)
1124 printf("type: SHA-256\n");
1125 else
1126 printf("type: %d\n", hash.hash_type);
1127
1128 printf("offset: 0x%08x\n", hash.offset);
1129 printf("size: 0x%08x\n", hash.size);
1130
1131 printf("digest: ");
1132 for (i = 0; i < hash.digest_size; i++)
1133 printf("%02x", hash.hash_digest[i]);
1134 printf("\n");
1135 } else if (0 == strcmp("reboot", cmd)) {
1136 int region;
1137 enum ec_reboot_cmd cmd;
1138
1139 if (argc >= 3 && !strcmp(argv[2], "cold"))
1140 cmd = EC_REBOOT_COLD;
1141 else {
1142 region = cros_ec_decode_region(argc - 2, argv + 2);
1143 if (region == EC_FLASH_REGION_RO)
1144 cmd = EC_REBOOT_JUMP_RO;
1145 else if (region == EC_FLASH_REGION_RW)
1146 cmd = EC_REBOOT_JUMP_RW;
1147 else
1148 return CMD_RET_USAGE;
1149 }
1150
1151 if (cros_ec_reboot(dev, cmd, 0)) {
1152 debug("%s: Could not reboot KBC\n", __func__);
1153 return 1;
1154 }
1155 } else if (0 == strcmp("events", cmd)) {
1156 uint32_t events;
1157
1158 if (cros_ec_get_host_events(dev, &events)) {
1159 debug("%s: Could not read host events\n", __func__);
1160 return 1;
1161 }
1162 printf("0x%08x\n", events);
1163 } else if (0 == strcmp("clrevents", cmd)) {
1164 uint32_t events = 0x7fffffff;
1165
1166 if (argc >= 3)
1167 events = simple_strtol(argv[2], NULL, 0);
1168
1169 if (cros_ec_clear_host_events(dev, events)) {
1170 debug("%s: Could not clear host events\n", __func__);
1171 return 1;
1172 }
1173 } else if (0 == strcmp("read", cmd)) {
1174 ret = do_read_write(dev, 0, argc, argv);
1175 if (ret > 0)
1176 return CMD_RET_USAGE;
1177 } else if (0 == strcmp("write", cmd)) {
1178 ret = do_read_write(dev, 1, argc, argv);
1179 if (ret > 0)
1180 return CMD_RET_USAGE;
1181 } else if (0 == strcmp("erase", cmd)) {
1182 int region = cros_ec_decode_region(argc - 2, argv + 2);
1183 uint32_t offset, size;
1184
1185 if (region == -1)
1186 return CMD_RET_USAGE;
1187 if (cros_ec_flash_offset(dev, region, &offset, &size)) {
1188 debug("%s: Could not read region info\n", __func__);
1189 ret = -1;
1190 } else {
1191 ret = cros_ec_flash_erase(dev, offset, size);
1192 if (ret) {
1193 debug("%s: Could not erase region\n",
1194 __func__);
1195 }
1196 }
1197 } else if (0 == strcmp("regioninfo", cmd)) {
1198 int region = cros_ec_decode_region(argc - 2, argv + 2);
1199 uint32_t offset, size;
1200
1201 if (region == -1)
1202 return CMD_RET_USAGE;
1203 ret = cros_ec_flash_offset(dev, region, &offset, &size);
1204 if (ret) {
1205 debug("%s: Could not read region info\n", __func__);
1206 } else {
1207 printf("Region: %s\n", region == EC_FLASH_REGION_RO ?
1208 "RO" : "RW");
1209 printf("Offset: %x\n", offset);
1210 printf("Size: %x\n", size);
1211 }
1212 } else if (0 == strcmp("vbnvcontext", cmd)) {
1213 uint8_t block[EC_VBNV_BLOCK_SIZE];
1214 char buf[3];
1215 int i, len;
1216 unsigned long result;
1217
1218 if (argc <= 2) {
1219 ret = cros_ec_read_vbnvcontext(dev, block);
1220 if (!ret) {
1221 printf("vbnv_block: ");
1222 for (i = 0; i < EC_VBNV_BLOCK_SIZE; i++)
1223 printf("%02x", block[i]);
1224 putc('\n');
1225 }
1226 } else {
1227 /*
1228 * TODO(clchiou): Move this to a utility function as
1229 * cmd_spi might want to call it.
1230 */
1231 memset(block, 0, EC_VBNV_BLOCK_SIZE);
1232 len = strlen(argv[2]);
1233 buf[2] = '\0';
1234 for (i = 0; i < EC_VBNV_BLOCK_SIZE; i++) {
1235 if (i * 2 >= len)
1236 break;
1237 buf[0] = argv[2][i * 2];
1238 if (i * 2 + 1 >= len)
1239 buf[1] = '0';
1240 else
1241 buf[1] = argv[2][i * 2 + 1];
1242 strict_strtoul(buf, 16, &result);
1243 block[i] = result;
1244 }
1245 ret = cros_ec_write_vbnvcontext(dev, block);
1246 }
1247 if (ret) {
1248 debug("%s: Could not %s VbNvContext\n", __func__,
1249 argc <= 2 ? "read" : "write");
1250 }
1251 } else if (0 == strcmp("test", cmd)) {
1252 int result = cros_ec_test(dev);
1253
1254 if (result)
1255 printf("Test failed with error %d\n", result);
1256 else
1257 puts("Test passed\n");
1258 } else if (0 == strcmp("version", cmd)) {
1259 struct ec_response_get_version *p;
1260 char *build_string;
1261
1262 ret = cros_ec_read_version(dev, &p);
1263 if (!ret) {
1264 /* Print versions */
1265 printf("RO version: %1.*s\n",
1266 sizeof(p->version_string_ro),
1267 p->version_string_ro);
1268 printf("RW version: %1.*s\n",
1269 sizeof(p->version_string_rw),
1270 p->version_string_rw);
1271 printf("Firmware copy: %s\n",
1272 (p->current_image <
1273 ARRAY_SIZE(ec_current_image_name) ?
1274 ec_current_image_name[p->current_image] :
1275 "?"));
1276 ret = cros_ec_read_build_info(dev, &build_string);
1277 if (!ret)
1278 printf("Build info: %s\n", build_string);
1279 }
1280 } else if (0 == strcmp("ldo", cmd)) {
1281 uint8_t index, state;
1282 char *endp;
1283
1284 if (argc < 3)
1285 return CMD_RET_USAGE;
1286 index = simple_strtoul(argv[2], &endp, 10);
1287 if (*argv[2] == 0 || *endp != 0)
1288 return CMD_RET_USAGE;
1289 if (argc > 3) {
1290 state = simple_strtoul(argv[3], &endp, 10);
1291 if (*argv[3] == 0 || *endp != 0)
1292 return CMD_RET_USAGE;
1293 ret = cros_ec_set_ldo(dev, index, state);
1294 } else {
1295 ret = cros_ec_get_ldo(dev, index, &state);
1296 if (!ret) {
1297 printf("LDO%d: %s\n", index,
1298 state == EC_LDO_STATE_ON ?
1299 "on" : "off");
1300 }
1301 }
1302
1303 if (ret) {
1304 debug("%s: Could not access LDO%d\n", __func__, index);
1305 return ret;
1306 }
1307 } else {
1308 return CMD_RET_USAGE;
1309 }
1310
1311 if (ret < 0) {
1312 printf("Error: CROS-EC command failed (error %d)\n", ret);
1313 ret = 1;
1314 }
1315
1316 return ret;
1317}
1318
1319U_BOOT_CMD(
1320 crosec, 5, 1, do_cros_ec,
1321 "CROS-EC utility command",
1322 "init Re-init CROS-EC (done on startup automatically)\n"
1323 "crosec id Read CROS-EC ID\n"
1324 "crosec info Read CROS-EC info\n"
1325 "crosec curimage Read CROS-EC current image\n"
1326 "crosec hash Read CROS-EC hash\n"
1327 "crosec reboot [rw | ro | cold] Reboot CROS-EC\n"
1328 "crosec events Read CROS-EC host events\n"
1329 "crosec clrevents [mask] Clear CROS-EC host events\n"
1330 "crosec regioninfo <ro|rw> Read image info\n"
1331 "crosec erase <ro|rw> Erase EC image\n"
1332 "crosec read <ro|rw> <addr> [<size>] Read EC image\n"
1333 "crosec write <ro|rw> <addr> [<size>] Write EC image\n"
1334 "crosec vbnvcontext [hexstring] Read [write] VbNvContext from EC\n"
1335 "crosec ldo <idx> [<state>] Switch/Read LDO state\n"
1336 "crosec test run tests on cros_ec\n"
1337 "crosec version Read CROS-EC version"
1338);
1339#endif