2 * Boot a Marvell SoC, with Xmodem over UART0.
3 * supports Kirkwood, Dove, Armada 370, Armada XP
5 * (c) 2012 Daniel Stodden <daniel.stodden@gmail.com>
7 * References: marvell.com, "88F6180, 88F6190, 88F6192, and 88F6281
8 * Integrated Controller: Functional Specifications" December 2,
9 * 2008. Chapter 24.2 "BootROM Firmware".
31 * Marvell BootROM UART Sensing
34 static unsigned char kwboot_msg_boot[] = {
35 0xBB, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77
38 static unsigned char kwboot_msg_debug[] = {
39 0xDD, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77
42 /* Defines known to work on Kirkwood */
43 #define KWBOOT_MSG_REQ_DELAY 10 /* ms */
44 #define KWBOOT_MSG_RSP_TIMEO 50 /* ms */
46 /* Defines known to work on Armada XP */
47 #define KWBOOT_MSG_REQ_DELAY_AXP 1000 /* ms */
48 #define KWBOOT_MSG_RSP_TIMEO_AXP 1000 /* ms */
54 #define SOH 1 /* sender start of block header */
55 #define EOT 4 /* sender end of block transfer */
56 #define ACK 6 /* target block ack */
57 #define NAK 21 /* target block negative ack */
58 #define CAN 24 /* target/sender transfer cancellation */
68 #define KWBOOT_BLK_RSP_TIMEO 1000 /* ms */
70 static int kwboot_verbose;
72 static int msg_req_delay = KWBOOT_MSG_REQ_DELAY;
73 static int msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO;
74 static int blk_rsp_timeo = KWBOOT_BLK_RSP_TIMEO;
77 kwboot_write(int fd, const char *buf, size_t len)
82 ssize_t wr = write(fd, buf + tot, len - tot);
94 kwboot_printv(const char *fmt, ...)
109 const char seq[] = { '-', '\\', '|', '/' };
111 static int state, bs;
113 if (state % div == 0) {
115 fputc(seq[state / div % sizeof(seq)], stdout);
131 __progress(int pct, char c)
133 const int width = 70;
134 static const char *nl = "";
137 if (pos % width == 0)
138 printf("%s%3d %% [", nl, pct);
146 while (pos++ < width)
156 kwboot_progress(int _pct, char c)
168 kwboot_tty_recv(int fd, void *buf, size_t len, int timeo)
181 tv.tv_usec = timeo * 1000;
182 if (tv.tv_usec > 1000000) {
183 tv.tv_sec += tv.tv_usec / 1000000;
184 tv.tv_usec %= 1000000;
188 nfds = select(fd + 1, &rfds, NULL, NULL, &tv);
196 n = read(fd, buf, len);
200 buf = (char *)buf + n;
210 kwboot_tty_send(int fd, const void *buf, size_t len)
215 if (kwboot_write(fd, buf, len) < 0)
222 kwboot_tty_send_char(int fd, unsigned char c)
224 return kwboot_tty_send(fd, &c, 1);
228 kwboot_tty_speed(int baudrate)
247 kwboot_open_tty(const char *path, speed_t speed)
254 fd = open(path, O_RDWR|O_NOCTTY|O_NDELAY);
258 memset(&tio, 0, sizeof(tio));
261 tio.c_cflag = CREAD|CLOCAL|CS8;
264 tio.c_cc[VTIME] = 10;
266 cfsetospeed(&tio, speed);
267 cfsetispeed(&tio, speed);
269 rc = tcsetattr(fd, TCSANOW, &tio);
284 kwboot_bootmsg(int tty, void *msg)
291 kwboot_printv("Please reboot the target into UART boot mode...");
293 kwboot_printv("Sending boot message. Please reboot the target...");
296 rc = tcflush(tty, TCIOFLUSH);
300 for (count = 0; count < 128; count++) {
301 rc = kwboot_tty_send(tty, msg, 8);
303 usleep(msg_req_delay * 1000);
308 rc = kwboot_tty_recv(tty, &c, 1, msg_rsp_timeo);
312 } while (rc || c != NAK);
320 kwboot_debugmsg(int tty, void *msg)
324 kwboot_printv("Sending debug message. Please reboot the target...");
329 rc = tcflush(tty, TCIOFLUSH);
333 rc = kwboot_tty_send(tty, msg, 8);
335 usleep(msg_req_delay * 1000);
339 rc = kwboot_tty_recv(tty, buf, 16, msg_rsp_timeo);
351 kwboot_xm_makeblock(struct kwboot_block *block, const void *data,
352 size_t size, int pnum)
354 const size_t blksz = sizeof(block->data);
360 block->_pnum = ~block->pnum;
362 n = size < blksz ? size : blksz;
363 memcpy(&block->data[0], data, n);
364 memset(&block->data[n], 0, blksz - n);
367 for (i = 0; i < n; i++)
368 block->csum += block->data[i];
374 kwboot_xm_sendblock(int fd, struct kwboot_block *block)
381 rc = kwboot_tty_send(fd, block, sizeof(*block));
386 rc = kwboot_tty_recv(fd, &c, 1, blk_rsp_timeo);
390 if (c != ACK && c != NAK && c != CAN)
393 } while (c != ACK && c != NAK && c != CAN);
396 kwboot_progress(-1, '+');
398 } while (c == NAK && retries-- > 0);
421 kwboot_xmodem(int tty, const void *_data, size_t size)
423 const uint8_t *data = _data;
424 int rc, pnum, N, err;
429 kwboot_printv("Sending boot image...\n");
431 sleep(2); /* flush isn't effective without it */
432 tcflush(tty, TCIOFLUSH);
435 struct kwboot_block block;
438 n = kwboot_xm_makeblock(&block,
447 rc = kwboot_xm_sendblock(tty, &block);
452 kwboot_progress(N * 100 / size, '.');
455 rc = kwboot_tty_send_char(tty, EOT);
462 kwboot_tty_send_char(tty, CAN);
468 kwboot_term_pipe(int in, int out, const char *quit, int *s)
471 char _buf[128], *buf = _buf;
473 nin = read(in, buf, sizeof(_buf));
480 for (i = 0; i < nin; i++) {
481 if (*buf == quit[*s]) {
488 if (kwboot_write(out, quit, *s) < 0)
495 if (kwboot_write(out, buf, nin) < 0)
502 kwboot_terminal(int tty)
505 const char *quit = "\34c";
506 struct termios otio, tio;
512 rc = tcgetattr(in, &otio);
516 rc = tcsetattr(in, TCSANOW, &tio);
523 kwboot_printv("[Type Ctrl-%c + %c to quit]\r\n",
524 quit[0]|0100, quit[1]);
536 nfds = nfds < tty ? tty : nfds;
540 nfds = nfds < in ? in : nfds;
543 nfds = select(nfds + 1, &rfds, NULL, NULL, NULL);
547 if (FD_ISSET(tty, &rfds)) {
548 rc = kwboot_term_pipe(tty, STDOUT_FILENO, NULL, NULL);
553 if (in >= 0 && FD_ISSET(in, &rfds)) {
554 rc = kwboot_term_pipe(in, tty, quit, &s);
558 } while (quit[s] != 0);
561 tcsetattr(in, TCSANOW, &otio);
568 kwboot_mmap_image(const char *path, size_t *size, int prot)
577 fd = open(path, O_RDONLY);
585 flags = (prot & PROT_WRITE) ? MAP_PRIVATE : MAP_SHARED;
587 img = mmap(NULL, st.st_size, prot, flags, fd, 0);
588 if (img == MAP_FAILED) {
597 munmap(img, st.st_size);
607 kwboot_img_csum8(void *_data, size_t size)
609 uint8_t *data = _data, csum;
611 for (csum = 0; size-- > 0; data++)
618 kwboot_img_patch_hdr(void *img, size_t size)
621 struct main_hdr_v1 *hdr;
623 size_t hdrsz = sizeof(*hdr);
634 image_ver = image_version(img);
635 if (image_ver != 0 && image_ver != 1) {
636 fprintf(stderr, "Invalid image header version\n");
642 hdrsz = sizeof(*hdr);
644 hdrsz = KWBHEADER_V1_SIZE(hdr);
651 csum = kwboot_img_csum8(hdr, hdrsz) - hdr->checksum;
652 if (csum != hdr->checksum) {
657 if (hdr->blockid == IBR_HDR_UART_ID) {
662 hdr->blockid = IBR_HDR_UART_ID;
664 if (image_ver == 0) {
665 struct main_hdr_v0 *hdr_v0 = img;
667 hdr_v0->nandeccmode = IBR_HDR_ECC_DISABLED;
668 hdr_v0->nandpagesize = 0;
670 hdr_v0->srcaddr = hdr_v0->ext
671 ? sizeof(struct kwb_header)
675 hdr->checksum = kwboot_img_csum8(hdr, hdrsz) - csum;
683 kwboot_usage(FILE *stream, char *progname)
685 fprintf(stream, "kwboot version %s\n", PLAIN_VERSION);
687 "Usage: %s [OPTIONS] [-b <image> | -D <image> ] [-B <baud> ] <TTY>\n",
689 fprintf(stream, "\n");
691 " -b <image>: boot <image> with preamble (Kirkwood, Armada 370/XP)\n");
692 fprintf(stream, " -p: patch <image> to type 0x69 (uart boot)\n");
694 " -D <image>: boot <image> without preamble (Dove)\n");
695 fprintf(stream, " -d: enter debug mode\n");
696 fprintf(stream, " -a: use timings for Armada XP\n");
697 fprintf(stream, " -q <req-delay>: use specific request-delay\n");
698 fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
700 " -o <block-timeo>: use specific xmodem block timeout\n");
701 fprintf(stream, "\n");
702 fprintf(stream, " -t: mini terminal\n");
703 fprintf(stream, "\n");
704 fprintf(stream, " -B <baud>: set baud rate\n");
705 fprintf(stream, "\n");
709 main(int argc, char **argv)
711 const char *ttypath, *imgpath;
712 int rv, rc, tty, term, prot, patch;
730 kwboot_verbose = isatty(STDOUT_FILENO);
733 int c = getopt(argc, argv, "hb:ptaB:dD:q:s:o:");
739 bootmsg = kwboot_msg_boot;
749 debugmsg = kwboot_msg_debug;
761 msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
762 msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
766 msg_req_delay = atoi(optarg);
770 msg_rsp_timeo = atoi(optarg);
774 blk_rsp_timeo = atoi(optarg);
778 speed = kwboot_tty_speed(atoi(optarg));
790 if (!bootmsg && !term && !debugmsg)
793 if (patch && !imgpath)
796 if (argc - optind < 1)
799 ttypath = argv[optind++];
801 tty = kwboot_open_tty(ttypath, speed);
808 prot = PROT_READ | (patch ? PROT_WRITE : 0);
810 img = kwboot_mmap_image(imgpath, &size, prot);
818 rc = kwboot_img_patch_hdr(img, size);
820 fprintf(stderr, "%s: Invalid image.\n", imgpath);
826 rc = kwboot_debugmsg(tty, debugmsg);
831 } else if (bootmsg) {
832 rc = kwboot_bootmsg(tty, bootmsg);
840 rc = kwboot_xmodem(tty, img, size);
848 rc = kwboot_terminal(tty);
849 if (rc && !(errno == EINTR)) {
866 kwboot_usage(rv ? stderr : stdout, basename(argv[0]));