2 * Boot a Marvell SoC, with Xmodem over UART0.
3 * supports Kirkwood, Dove, Armada 370, Armada XP, Armada 375, Armada 38x and
10 * References: marvell.com, "88F6180, 88F6190, 88F6192, and 88F6281
11 * Integrated Controller: Functional Specifications" December 2,
12 * 2008. Chapter 24.2 "BootROM Firmware".
33 #include "termios_linux.h"
39 * Marvell BootROM UART Sensing
42 static unsigned char kwboot_msg_boot[] = {
43 0xBB, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77
46 static unsigned char kwboot_msg_debug[] = {
47 0xDD, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77
50 /* Defines known to work on Kirkwood */
51 #define KWBOOT_MSG_REQ_DELAY 10 /* ms */
52 #define KWBOOT_MSG_RSP_TIMEO 50 /* ms */
54 /* Defines known to work on Armada XP */
55 #define KWBOOT_MSG_REQ_DELAY_AXP 1000 /* ms */
56 #define KWBOOT_MSG_RSP_TIMEO_AXP 1000 /* ms */
62 #define SOH 1 /* sender start of block header */
63 #define EOT 4 /* sender end of block transfer */
64 #define ACK 6 /* target block ack */
65 #define NAK 21 /* target block negative ack */
66 #define CAN 24 /* target/sender transfer cancellation */
68 #define KWBOOT_XM_BLKSZ 128 /* xmodem block size */
74 uint8_t data[KWBOOT_XM_BLKSZ];
78 #define KWBOOT_BLK_RSP_TIMEO 1000 /* ms */
79 #define KWBOOT_HDR_RSP_TIMEO 10000 /* ms */
81 /* ARM code making baudrate changing function return to original exec address */
82 static unsigned char kwboot_pre_baud_code[] = {
84 0x00, 0x00, 0x00, 0x00, /* .word 0 */
85 0x0c, 0xe0, 0x1f, 0xe5, /* ldr lr, exec_addr */
88 /* ARM code for binary header injection to change baudrate */
89 static unsigned char kwboot_baud_code[] = {
90 /* ; #define UART_BASE 0xd0012000 */
91 /* ; #define THR 0x00 */
92 /* ; #define DLL 0x00 */
93 /* ; #define DLH 0x04 */
94 /* ; #define LCR 0x0c */
95 /* ; #define DLAB 0x80 */
96 /* ; #define LSR 0x14 */
97 /* ; #define THRE 0x20 */
98 /* ; #define TEMT 0x40 */
99 /* ; #define DIV_ROUND(a, b) ((a + b/2) / b) */
101 /* ; u32 set_baudrate(u32 old_b, u32 new_b) { */
102 /* ; const u8 *str = "$baudratechange"; */
106 /* ; writel(UART_BASE + THR, c); */
109 /* ; (!(readl(UART_BASE + LSR) & TEMT)); */
110 /* ; u32 lcr = readl(UART_BASE + LCR); */
111 /* ; writel(UART_BASE + LCR, lcr | DLAB); */
112 /* ; u8 old_dll = readl(UART_BASE + DLL); */
113 /* ; u8 old_dlh = readl(UART_BASE + DLH); */
114 /* ; u16 old_dl = old_dll | (old_dlh << 8); */
115 /* ; u32 clk = old_b * old_dl; */
116 /* ; u16 new_dl = DIV_ROUND(clk, new_b); */
117 /* ; u8 new_dll = new_dl & 0xff; */
118 /* ; u8 new_dlh = (new_dl >> 8) & 0xff; */
119 /* ; writel(UART_BASE + DLL, new_dll); */
120 /* ; writel(UART_BASE + DLH, new_dlh); */
121 /* ; writel(UART_BASE + LCR, lcr & ~DLAB); */
126 0xfe, 0x5f, 0x2d, 0xe9, /* push { r1 - r12, lr } */
128 /* ; r0 = UART_BASE */
129 0x02, 0x0a, 0xa0, 0xe3, /* mov r0, #0x2000 */
130 0x01, 0x00, 0x4d, 0xe3, /* movt r0, #0xd001 */
132 /* ; r2 = address of preamble string */
133 0xd0, 0x20, 0x8f, 0xe2, /* adr r2, preamble */
135 /* ; Send preamble string over UART */
136 /* .Lloop_preamble: */
138 /* ; Wait until Transmitter Holding is Empty */
140 /* ; r1 = UART_BASE[LSR] & THRE */
141 0x14, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x14] */
142 0x20, 0x00, 0x11, 0xe3, /* tst r1, #0x20 */
143 0xfc, 0xff, 0xff, 0x0a, /* beq .Lloop_thre */
145 /* ; Put character into Transmitter FIFO */
147 0x01, 0x10, 0xd2, 0xe4, /* ldrb r1, [r2], #1 */
148 /* ; UART_BASE[THR] = r1 */
149 0x00, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0] */
151 /* ; Loop until end of preamble string */
152 0x00, 0x00, 0x51, 0xe3, /* cmp r1, #0 */
153 0xf8, 0xff, 0xff, 0x1a, /* bne .Lloop_preamble */
155 /* ; Wait until Transmitter FIFO is Empty */
156 /* .Lloop_txempty: */
157 /* ; r1 = UART_BASE[LSR] & TEMT */
158 0x14, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x14] */
159 0x40, 0x00, 0x11, 0xe3, /* tst r1, #0x40 */
160 0xfc, 0xff, 0xff, 0x0a, /* beq .Lloop_txempty */
162 /* ; Set Divisor Latch Access Bit */
163 /* ; UART_BASE[LCR] |= DLAB */
164 0x0c, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x0c] */
165 0x80, 0x10, 0x81, 0xe3, /* orr r1, r1, #0x80 */
166 0x0c, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0c] */
168 /* ; Read current Divisor Latch */
169 /* ; r1 = UART_BASE[DLH]<<8 | UART_BASE[DLL] */
170 0x00, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x00] */
171 0xff, 0x10, 0x01, 0xe2, /* and r1, r1, #0xff */
172 0x01, 0x20, 0xa0, 0xe1, /* mov r2, r1 */
173 0x04, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x04] */
174 0xff, 0x10, 0x01, 0xe2, /* and r1, r1, #0xff */
175 0x41, 0x14, 0xa0, 0xe1, /* asr r1, r1, #8 */
176 0x02, 0x10, 0x81, 0xe1, /* orr r1, r1, r2 */
178 /* ; Read old baudrate value */
179 /* ; r2 = old_baudrate */
180 0x8c, 0x20, 0x9f, 0xe5, /* ldr r2, old_baudrate */
182 /* ; Calculate base clock */
184 0x92, 0x01, 0x01, 0xe0, /* mul r1, r2, r1 */
186 /* ; Read new baudrate value */
187 /* ; r2 = baudrate */
188 0x88, 0x20, 0x9f, 0xe5, /* ldr r2, baudrate */
190 /* ; Calculate new Divisor Latch */
191 /* ; r1 = DIV_ROUND(r1, r2) = */
192 /* ; = (r1 + r2/2) / r2 */
193 0xa2, 0x10, 0x81, 0xe0, /* add r1, r1, r2, lsr #1 */
194 0x02, 0x40, 0xa0, 0xe1, /* mov r4, r2 */
195 0xa1, 0x00, 0x54, 0xe1, /* cmp r4, r1, lsr #1 */
197 0x84, 0x40, 0xa0, 0x91, /* movls r4, r4, lsl #1 */
198 0xa1, 0x00, 0x54, 0xe1, /* cmp r4, r1, lsr #1 */
199 0xfc, 0xff, 0xff, 0x9a, /* bls .Lloop_div1 */
200 0x00, 0x30, 0xa0, 0xe3, /* mov r3, #0 */
202 0x04, 0x00, 0x51, 0xe1, /* cmp r1, r4 */
203 0x04, 0x10, 0x41, 0x20, /* subhs r1, r1, r4 */
204 0x03, 0x30, 0xa3, 0xe0, /* adc r3, r3, r3 */
205 0xa4, 0x40, 0xa0, 0xe1, /* mov r4, r4, lsr #1 */
206 0x02, 0x00, 0x54, 0xe1, /* cmp r4, r2 */
207 0xf9, 0xff, 0xff, 0x2a, /* bhs .Lloop_div2 */
208 0x03, 0x10, 0xa0, 0xe1, /* mov r1, r3 */
210 /* ; Set new Divisor Latch Low */
211 /* ; UART_BASE[DLL] = r1 & 0xff */
212 0x01, 0x20, 0xa0, 0xe1, /* mov r2, r1 */
213 0xff, 0x20, 0x02, 0xe2, /* and r2, r2, #0xff */
214 0x00, 0x20, 0x80, 0xe5, /* str r2, [r0, #0x00] */
216 /* ; Set new Divisor Latch High */
217 /* ; UART_BASE[DLH] = r1>>8 & 0xff */
218 0x41, 0x24, 0xa0, 0xe1, /* asr r2, r1, #8 */
219 0xff, 0x20, 0x02, 0xe2, /* and r2, r2, #0xff */
220 0x04, 0x20, 0x80, 0xe5, /* str r2, [r0, #0x04] */
222 /* ; Clear Divisor Latch Access Bit */
223 /* ; UART_BASE[LCR] &= ~DLAB */
224 0x0c, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x0c] */
225 0x80, 0x10, 0xc1, 0xe3, /* bic r1, r1, #0x80 */
226 0x0c, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0c] */
228 /* ; Sleep 1ms ~~ 600000 cycles at 1200 MHz */
230 0x9f, 0x1d, 0xa0, 0xe3, /* mov r1, #0x27c0 */
231 0x09, 0x10, 0x40, 0xe3, /* movt r1, #0x0009 */
233 0x01, 0x10, 0x41, 0xe2, /* sub r1, r1, #1 */
234 0x00, 0x00, 0x51, 0xe3, /* cmp r1, #0 */
235 0xfc, 0xff, 0xff, 0x1a, /* bne .Lloop_sleep */
237 /* ; Return 0 - no error */
238 0x00, 0x00, 0xa0, 0xe3, /* mov r0, #0 */
239 0xfe, 0x9f, 0xbd, 0xe8, /* pop { r1 - r12, pc } */
241 /* ; Preamble string */
243 0x24, 0x62, 0x61, 0x75, /* .asciz "$baudratechange" */
244 0x64, 0x72, 0x61, 0x74,
245 0x65, 0x63, 0x68, 0x61,
246 0x6e, 0x67, 0x65, 0x00,
248 /* ; Placeholder for old baudrate value */
250 0x00, 0x00, 0x00, 0x00, /* .word 0 */
252 /* ; Placeholder for new baudrate value */
254 0x00, 0x00, 0x00, 0x00, /* .word 0 */
257 #define KWBOOT_BAUDRATE_BIN_HEADER_SZ (sizeof(kwboot_baud_code) + \
258 sizeof(struct opt_hdr_v1) + 8 + 16)
260 static const char kwb_baud_magic[16] = "$baudratechange";
262 static int kwboot_verbose;
264 static int msg_req_delay = KWBOOT_MSG_REQ_DELAY;
265 static int msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO;
266 static int blk_rsp_timeo = KWBOOT_BLK_RSP_TIMEO;
269 kwboot_write(int fd, const char *buf, size_t len)
274 ssize_t wr = write(fd, buf + tot, len - tot);
286 kwboot_printv(const char *fmt, ...)
290 if (kwboot_verbose) {
301 const char seq[] = { '-', '\\', '|', '/' };
303 static int state, bs;
305 if (state % div == 0) {
307 fputc(seq[state / div % sizeof(seq)], stdout);
323 __progress(int pct, char c)
325 const int width = 70;
326 static const char *nl = "";
329 if (pos % width == 0)
330 printf("%s%3d %% [", nl, pct);
335 pos = (pos + 1) % width;
338 while (pos && pos++ < width)
350 kwboot_progress(int _pct, char c)
365 kwboot_tty_recv(int fd, void *buf, size_t len, int timeo)
378 tv.tv_usec = timeo * 1000;
379 if (tv.tv_usec > 1000000) {
380 tv.tv_sec += tv.tv_usec / 1000000;
381 tv.tv_usec %= 1000000;
385 nfds = select(fd + 1, &rfds, NULL, NULL, &tv);
393 n = read(fd, buf, len);
397 buf = (char *)buf + n;
407 kwboot_tty_send(int fd, const void *buf, size_t len)
412 if (kwboot_write(fd, buf, len) < 0)
419 kwboot_tty_send_char(int fd, unsigned char c)
421 return kwboot_tty_send(fd, &c, 1);
425 kwboot_tty_baudrate_to_speed(int baudrate)
574 _is_within_tolerance(int value, int reference, int tolerance)
576 return 100 * value >= reference * (100 - tolerance) &&
577 100 * value <= reference * (100 + tolerance);
581 kwboot_tty_change_baudrate(int fd, int baudrate)
587 rc = tcgetattr(fd, &tio);
591 speed = kwboot_tty_baudrate_to_speed(baudrate);
599 tio.c_ospeed = tio.c_ispeed = baudrate;
602 rc = cfsetospeed(&tio, speed);
606 rc = cfsetispeed(&tio, speed);
610 rc = tcsetattr(fd, TCSANOW, &tio);
614 rc = tcgetattr(fd, &tio);
618 if (cfgetospeed(&tio) != speed || cfgetispeed(&tio) != speed)
623 * Check whether set baudrate is within 3% tolerance.
624 * If BOTHER is defined, Linux always fills out c_ospeed / c_ispeed
627 if (!_is_within_tolerance(tio.c_ospeed, baudrate, 3))
630 if (!_is_within_tolerance(tio.c_ispeed, baudrate, 3))
637 fprintf(stderr, "Could not set baudrate to requested value\n");
643 kwboot_open_tty(const char *path, int baudrate)
650 fd = open(path, O_RDWR | O_NOCTTY | O_NDELAY);
654 rc = tcgetattr(fd, &tio);
659 tio.c_cflag |= CREAD | CLOCAL;
663 rc = tcsetattr(fd, TCSANOW, &tio);
667 flags = fcntl(fd, F_GETFL);
671 rc = fcntl(fd, F_SETFL, flags & ~O_NDELAY);
675 rc = kwboot_tty_change_baudrate(fd, baudrate);
690 kwboot_bootmsg(int tty, void *msg)
697 kwboot_printv("Please reboot the target into UART boot mode...");
699 kwboot_printv("Sending boot message. Please reboot the target...");
702 rc = tcflush(tty, TCIOFLUSH);
706 for (count = 0; count < 128; count++) {
707 rc = kwboot_tty_send(tty, msg, 8);
709 usleep(msg_req_delay * 1000);
714 rc = kwboot_tty_recv(tty, &c, 1, msg_rsp_timeo);
718 } while (rc || c != NAK);
726 kwboot_debugmsg(int tty, void *msg)
730 kwboot_printv("Sending debug message. Please reboot the target...");
735 rc = tcflush(tty, TCIOFLUSH);
739 rc = kwboot_tty_send(tty, msg, 8);
741 usleep(msg_req_delay * 1000);
745 rc = kwboot_tty_recv(tty, buf, 16, msg_rsp_timeo);
757 kwboot_xm_makeblock(struct kwboot_block *block, const void *data,
758 size_t size, int pnum)
764 block->_pnum = ~block->pnum;
766 n = size < KWBOOT_XM_BLKSZ ? size : KWBOOT_XM_BLKSZ;
767 memcpy(&block->data[0], data, n);
768 memset(&block->data[n], 0, KWBOOT_XM_BLKSZ - n);
771 for (i = 0; i < n; i++)
772 block->csum += block->data[i];
782 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
783 static int err_print;
786 perror("clock_gettime() does not work");
790 /* this will just make the timeout not work */
794 return ts.tv_sec * 1000ULL + (ts.tv_nsec + 500000) / 1000000;
800 return c == ACK || c == NAK || c == CAN;
804 _xm_reply_to_error(int c)
827 kwboot_baud_magic_handle(int fd, char c, int baudrate)
829 static size_t rcv_len;
831 if (rcv_len < sizeof(kwb_baud_magic)) {
832 /* try to recognize whole magic word */
833 if (c == kwb_baud_magic[rcv_len]) {
836 printf("%.*s%c", (int)rcv_len, kwb_baud_magic, c);
842 if (rcv_len == sizeof(kwb_baud_magic)) {
843 /* magic word received */
844 kwboot_printv("\nChanging baudrate to %d Bd\n", baudrate);
846 return kwboot_tty_change_baudrate(fd, baudrate) ? : 1;
853 kwboot_xm_recv_reply(int fd, char *c, int allow_non_xm, int *non_xm_print,
854 int baudrate, int *baud_changed)
856 int timeout = allow_non_xm ? KWBOOT_HDR_RSP_TIMEO : blk_rsp_timeo;
857 uint64_t recv_until = _now() + timeout;
866 rc = kwboot_tty_recv(fd, c, 1, timeout);
868 if (errno != ETIMEDOUT)
870 else if (allow_non_xm && *non_xm_print)
876 /* If received xmodem reply, end. */
877 if (_is_xm_reply(*c))
881 * If receiving/printing non-xmodem text output is allowed and
882 * such a byte was received, we want to increase receiving time
884 * - print the byte, if it is not part of baudrate change magic
885 * sequence while baudrate change was requested (-B option)
887 * Otherwise decrease timeout by time elapsed.
890 recv_until = _now() + timeout;
892 if (baudrate && !*baud_changed) {
893 rc = kwboot_baud_magic_handle(fd, *c, baudrate);
900 } else if (!baudrate || !*baud_changed) {
906 timeout = recv_until - _now();
918 kwboot_xm_sendblock(int fd, struct kwboot_block *block, int allow_non_xm,
919 int *done_print, int baudrate)
921 int non_xm_print, baud_changed;
922 int rc, err, retries;
929 rc = kwboot_tty_send(fd, block, sizeof(*block));
933 if (allow_non_xm && !*done_print) {
934 kwboot_progress(100, '.');
935 kwboot_printv("Done\n");
939 rc = kwboot_xm_recv_reply(fd, &c, allow_non_xm, &non_xm_print,
940 baudrate, &baud_changed);
944 if (!allow_non_xm && c != ACK)
945 kwboot_progress(-1, '+');
946 } while (c == NAK && retries-- > 0);
951 if (allow_non_xm && baudrate && !baud_changed) {
952 fprintf(stderr, "Baudrate was not changed\n");
958 return _xm_reply_to_error(c);
961 kwboot_tty_send_char(fd, CAN);
968 kwboot_xm_finish(int fd)
973 kwboot_printv("Finishing transfer\n");
977 rc = kwboot_tty_send_char(fd, EOT);
981 rc = kwboot_xm_recv_reply(fd, &c, 0, NULL, 0, NULL);
984 } while (c == NAK && retries-- > 0);
986 return _xm_reply_to_error(c);
990 kwboot_xmodem_one(int tty, int *pnum, int header, const uint8_t *data,
991 size_t size, int baudrate)
997 kwboot_printv("Sending boot image %s (%zu bytes)...\n",
998 header ? "header" : "data", size);
1003 while (sent < size) {
1004 struct kwboot_block block;
1008 blksz = kwboot_xm_makeblock(&block, data, left, (*pnum)++);
1011 last_block = (left <= blksz);
1013 rc = kwboot_xm_sendblock(tty, &block, header && last_block,
1014 &done_print, baudrate);
1022 kwboot_progress(sent * 100 / size, '.');
1026 kwboot_printv("Done\n");
1030 kwboot_printv("\n");
1035 kwboot_xmodem(int tty, const void *_img, size_t size, int baudrate)
1037 const uint8_t *img = _img;
1041 hdrsz = kwbheader_size(img);
1043 kwboot_printv("Waiting 2s and flushing tty\n");
1044 sleep(2); /* flush isn't effective without it */
1045 tcflush(tty, TCIOFLUSH);
1049 rc = kwboot_xmodem_one(tty, &pnum, 1, img, hdrsz, baudrate);
1056 rc = kwboot_xmodem_one(tty, &pnum, 0, img, size, 0);
1060 rc = kwboot_xm_finish(tty);
1065 char buf[sizeof(kwb_baud_magic)];
1067 /* Wait 1s for baudrate change magic */
1068 rc = kwboot_tty_recv(tty, buf, sizeof(buf), 1000);
1072 if (memcmp(buf, kwb_baud_magic, sizeof(buf))) {
1077 kwboot_printv("\nChanging baudrate back to 115200 Bd\n\n");
1078 rc = kwboot_tty_change_baudrate(tty, 115200);
1087 kwboot_term_pipe(int in, int out, const char *quit, int *s)
1090 char _buf[128], *buf = _buf;
1092 nin = read(in, buf, sizeof(_buf));
1099 for (i = 0; i < nin; i++) {
1100 if (*buf == quit[*s]) {
1107 if (kwboot_write(out, quit, *s) < 0)
1114 if (kwboot_write(out, buf, nin) < 0)
1121 kwboot_terminal(int tty)
1124 const char *quit = "\34c";
1125 struct termios otio, tio;
1131 rc = tcgetattr(in, &otio);
1135 rc = tcsetattr(in, TCSANOW, &tio);
1138 perror("tcsetattr");
1142 kwboot_printv("[Type Ctrl-%c + %c to quit]\r\n",
1143 quit[0] | 0100, quit[1]);
1155 nfds = nfds < tty ? tty : nfds;
1159 nfds = nfds < in ? in : nfds;
1162 nfds = select(nfds + 1, &rfds, NULL, NULL, NULL);
1166 if (FD_ISSET(tty, &rfds)) {
1167 rc = kwboot_term_pipe(tty, STDOUT_FILENO, NULL, NULL);
1172 if (in >= 0 && FD_ISSET(in, &rfds)) {
1173 rc = kwboot_term_pipe(in, tty, quit, &s);
1177 } while (quit[s] != 0);
1180 tcsetattr(in, TCSANOW, &otio);
1187 kwboot_read_image(const char *path, size_t *size, size_t reserve)
1197 fd = open(path, O_RDONLY);
1201 rc = fstat(fd, &st);
1205 img = malloc(st.st_size + reserve);
1210 while (tot < st.st_size) {
1211 ssize_t rd = read(fd, img + tot, st.st_size - tot);
1218 if (!rd && tot < st.st_size) {
1238 kwboot_hdr_csum8(const void *hdr)
1240 const uint8_t *data = hdr;
1244 size = kwbheader_size_for_csum(hdr);
1246 for (csum = 0; size-- > 0; data++)
1253 kwboot_img_is_secure(void *img)
1255 struct opt_hdr_v1 *ohdr;
1257 for_each_opt_hdr_v1 (ohdr, img)
1258 if (ohdr->headertype == OPT_HDR_V1_SECURE_TYPE)
1265 kwboot_img_grow_data_left(void *img, size_t *size, size_t grow)
1267 uint32_t hdrsz, datasz, srcaddr;
1268 struct main_hdr_v1 *hdr = img;
1271 srcaddr = le32_to_cpu(hdr->srcaddr);
1273 hdrsz = kwbheader_size(hdr);
1274 data = (uint8_t *)img + srcaddr;
1275 datasz = *size - srcaddr;
1277 /* only move data if there is not enough space */
1278 if (hdrsz + grow > srcaddr) {
1279 size_t need = hdrsz + grow - srcaddr;
1281 /* move data by enough bytes */
1282 memmove(data + need, data, datasz);
1288 hdr->srcaddr = cpu_to_le32(srcaddr);
1289 hdr->destaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) - grow);
1290 hdr->blocksize = cpu_to_le32(le32_to_cpu(hdr->blocksize) + grow);
1292 return (uint8_t *)img + srcaddr;
1296 kwboot_img_grow_hdr(void *img, size_t *size, size_t grow)
1298 uint32_t hdrsz, datasz, srcaddr;
1299 struct main_hdr_v1 *hdr = img;
1302 srcaddr = le32_to_cpu(hdr->srcaddr);
1304 hdrsz = kwbheader_size(img);
1305 data = (uint8_t *)img + srcaddr;
1306 datasz = *size - srcaddr;
1308 /* only move data if there is not enough space */
1309 if (hdrsz + grow > srcaddr) {
1310 size_t need = hdrsz + grow - srcaddr;
1312 /* move data by enough bytes */
1313 memmove(data + need, data, datasz);
1315 hdr->srcaddr = cpu_to_le32(srcaddr + need);
1319 if (kwbimage_version(img) == 1) {
1321 hdr->headersz_msb = hdrsz >> 16;
1322 hdr->headersz_lsb = cpu_to_le16(hdrsz & 0xffff);
1327 kwboot_add_bin_ohdr_v1(void *img, size_t *size, uint32_t binsz)
1329 struct main_hdr_v1 *hdr = img;
1330 struct opt_hdr_v1 *ohdr;
1335 if (hdr->ext & 0x1) {
1336 for_each_opt_hdr_v1 (ohdr, img)
1337 if (opt_hdr_v1_next(ohdr) == NULL)
1340 *opt_hdr_v1_ext(ohdr) |= 1;
1341 ohdr = opt_hdr_v1_next(ohdr);
1344 ohdr = (void *)(hdr + 1);
1348 * ARM executable code inside the BIN header on some mvebu platforms
1349 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1350 * This requirement can be met by inserting dummy arguments into
1351 * BIN header, if needed.
1353 offset = &ohdr->data[4] - (char *)img;
1354 num_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1356 ohdrsz = sizeof(*ohdr) + 4 + 4 * num_args + binsz + 4;
1357 kwboot_img_grow_hdr(hdr, size, ohdrsz);
1359 ohdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1360 ohdr->headersz_msb = ohdrsz >> 16;
1361 ohdr->headersz_lsb = cpu_to_le16(ohdrsz & 0xffff);
1363 memset(&ohdr->data[0], 0, ohdrsz - sizeof(*ohdr));
1364 *(uint32_t *)&ohdr->data[0] = cpu_to_le32(num_args);
1366 return &ohdr->data[4 + 4 * num_args];
1370 _copy_baudrate_change_code(struct main_hdr_v1 *hdr, void *dst, int pre,
1371 int old_baud, int new_baud)
1373 size_t codesz = sizeof(kwboot_baud_code);
1374 uint8_t *code = dst;
1377 size_t presz = sizeof(kwboot_pre_baud_code);
1380 * We need to prepend code that loads lr register with original
1381 * value of hdr->execaddr. We do this by putting the original
1382 * exec address before the code that loads it relatively from
1384 * Afterwards we change the exec address to this code (which is
1385 * at offset 4, because the first 4 bytes contain the original
1388 memcpy(code, kwboot_pre_baud_code, presz);
1389 *(uint32_t *)code = hdr->execaddr;
1391 hdr->execaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) + 4);
1396 memcpy(code, kwboot_baud_code, codesz - 8);
1397 *(uint32_t *)(code + codesz - 8) = cpu_to_le32(old_baud);
1398 *(uint32_t *)(code + codesz - 4) = cpu_to_le32(new_baud);
1402 kwboot_img_patch(void *img, size_t *size, int baudrate)
1404 struct main_hdr_v1 *hdr;
1413 if (*size < sizeof(struct main_hdr_v1))
1416 image_ver = kwbimage_version(img);
1417 if (image_ver != 0 && image_ver != 1) {
1418 fprintf(stderr, "Invalid image header version\n");
1422 hdrsz = kwbheader_size(hdr);
1427 csum = kwboot_hdr_csum8(hdr) - hdr->checksum;
1428 if (csum != hdr->checksum)
1431 srcaddr = le32_to_cpu(hdr->srcaddr);
1433 switch (hdr->blockid) {
1434 case IBR_HDR_SATA_ID:
1438 hdr->srcaddr = cpu_to_le32((srcaddr - 1) * 512);
1441 case IBR_HDR_SDIO_ID:
1442 hdr->srcaddr = cpu_to_le32(srcaddr * 512);
1445 case IBR_HDR_PEX_ID:
1446 if (srcaddr == 0xFFFFFFFF)
1447 hdr->srcaddr = cpu_to_le32(hdrsz);
1450 case IBR_HDR_SPI_ID:
1451 if (hdr->destaddr == cpu_to_le32(0xFFFFFFFF)) {
1452 kwboot_printv("Patching destination and execution addresses from SPI/NOR XIP area to DDR area 0x00800000\n");
1453 hdr->destaddr = cpu_to_le32(0x00800000);
1454 hdr->execaddr = cpu_to_le32(0x00800000);
1459 if (hdrsz > le32_to_cpu(hdr->srcaddr) ||
1460 *size < le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize))
1463 is_secure = kwboot_img_is_secure(img);
1465 if (hdr->blockid != IBR_HDR_UART_ID) {
1468 "Image has secure header with signature for non-UART booting\n");
1472 kwboot_printv("Patching image boot signature to UART\n");
1473 hdr->blockid = IBR_HDR_UART_ID;
1478 ((struct main_hdr_v0 *)img)->nandeccmode = IBR_HDR_ECC_DISABLED;
1479 hdr->nandpagesize = 0;
1483 uint32_t codesz = sizeof(kwboot_baud_code);
1486 if (image_ver == 0) {
1488 "Cannot inject code for changing baudrate into v0 image header\n");
1494 "Cannot inject code for changing baudrate into image with secure header\n");
1499 * First inject code that changes the baudrate from the default
1500 * value of 115200 Bd to requested value. This code is inserted
1501 * as a new opt hdr, so it is executed by BootROM after the
1502 * header part is received.
1504 kwboot_printv("Injecting binary header code for changing baudrate to %d Bd\n",
1507 code = kwboot_add_bin_ohdr_v1(img, size, codesz);
1508 _copy_baudrate_change_code(hdr, code, 0, 115200, baudrate);
1511 * Now inject code that changes the baudrate back to 115200 Bd.
1512 * This code is prepended to the data part of the image, so it
1513 * is executed before U-Boot proper.
1515 kwboot_printv("Injecting code for changing baudrate back\n");
1517 codesz += sizeof(kwboot_pre_baud_code);
1518 code = kwboot_img_grow_data_left(img, size, codesz);
1519 _copy_baudrate_change_code(hdr, code, 1, baudrate, 115200);
1521 /* recompute header size */
1522 hdrsz = kwbheader_size(hdr);
1525 if (hdrsz % KWBOOT_XM_BLKSZ) {
1526 size_t offset = (KWBOOT_XM_BLKSZ - hdrsz % KWBOOT_XM_BLKSZ) %
1530 fprintf(stderr, "Cannot align image with secure header\n");
1534 kwboot_printv("Aligning image header to Xmodem block size\n");
1535 kwboot_img_grow_hdr(img, size, offset);
1538 hdr->checksum = kwboot_hdr_csum8(hdr) - csum;
1540 *size = le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize);
1548 kwboot_usage(FILE *stream, char *progname)
1550 fprintf(stream, "kwboot version %s\n", PLAIN_VERSION);
1552 "Usage: %s [OPTIONS] [-b <image> | -D <image> ] [-B <baud> ] <TTY>\n",
1554 fprintf(stream, "\n");
1556 " -b <image>: boot <image> with preamble (Kirkwood, Armada 370/XP)\n");
1558 " -D <image>: boot <image> without preamble (Dove)\n");
1559 fprintf(stream, " -d: enter debug mode\n");
1560 fprintf(stream, " -a: use timings for Armada XP\n");
1561 fprintf(stream, " -q <req-delay>: use specific request-delay\n");
1562 fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
1564 " -o <block-timeo>: use specific xmodem block timeout\n");
1565 fprintf(stream, "\n");
1566 fprintf(stream, " -t: mini terminal\n");
1567 fprintf(stream, "\n");
1568 fprintf(stream, " -B <baud>: set baud rate\n");
1569 fprintf(stream, "\n");
1573 main(int argc, char **argv)
1575 const char *ttypath, *imgpath;
1576 int rv, rc, tty, term;
1581 size_t after_img_rsv;
1592 after_img_rsv = KWBOOT_XM_BLKSZ;
1595 kwboot_verbose = isatty(STDOUT_FILENO);
1598 int c = getopt(argc, argv, "hb:ptaB:dD:q:s:o:");
1604 bootmsg = kwboot_msg_boot;
1614 debugmsg = kwboot_msg_debug;
1618 /* nop, for backward compatibility */
1626 msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
1627 msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
1631 msg_req_delay = atoi(optarg);
1635 msg_rsp_timeo = atoi(optarg);
1639 blk_rsp_timeo = atoi(optarg);
1643 baudrate = atoi(optarg);
1653 if (!bootmsg && !term && !debugmsg)
1656 if (argc - optind < 1)
1659 ttypath = argv[optind++];
1661 tty = kwboot_open_tty(ttypath, imgpath ? 115200 : baudrate);
1667 if (baudrate == 115200)
1668 /* do not change baudrate during Xmodem to the same value */
1671 /* ensure we have enough space for baudrate change code */
1672 after_img_rsv += KWBOOT_BAUDRATE_BIN_HEADER_SZ +
1673 sizeof(kwboot_pre_baud_code) +
1674 sizeof(kwboot_baud_code);
1677 img = kwboot_read_image(imgpath, &size, after_img_rsv);
1683 rc = kwboot_img_patch(img, &size, baudrate);
1685 fprintf(stderr, "%s: Invalid image.\n", imgpath);
1691 rc = kwboot_debugmsg(tty, debugmsg);
1696 } else if (bootmsg) {
1697 rc = kwboot_bootmsg(tty, bootmsg);
1705 rc = kwboot_xmodem(tty, img, size, baudrate);
1713 rc = kwboot_terminal(tty);
1714 if (rc && !(errno == EINTR)) {
1731 kwboot_usage(rv ? stderr : stdout, basename(argv[0]));