blob: 8b748f0fddf50763e10a87926cb41ed23fe3d9eb [file] [log] [blame]
Luka Perkovdff289642012-05-27 11:44:51 +00001/*
Stefan Roesebb5c4282014-10-22 12:13:21 +02002 * Boot a Marvell SoC, with Xmodem over UART0.
Marek Behúndb5b53e2021-09-24 23:07:13 +02003 * supports Kirkwood, Dove, Armada 370, Armada XP, Armada 375, Armada 38x and
4 * Armada 39x
Luka Perkovdff289642012-05-27 11:44:51 +00005 *
6 * (c) 2012 Daniel Stodden <daniel.stodden@gmail.com>
Pali Roháraa98a1e2021-09-24 23:07:14 +02007 * (c) 2021 Pali Rohár <pali@kernel.org>
8 * (c) 2021 Marek Behún <marek.behun@nic.cz>
Luka Perkovdff289642012-05-27 11:44:51 +00009 *
10 * References: marvell.com, "88F6180, 88F6190, 88F6192, and 88F6281
11 * Integrated Controller: Functional Specifications" December 2,
12 * 2008. Chapter 24.2 "BootROM Firmware".
13 */
14
Stefan Roese04ec0d32016-01-07 14:12:04 +010015#include "kwbimage.h"
16#include "mkimage.h"
Pali Rohár3c703aaf2021-09-24 23:06:42 +020017#include "version.h"
Stefan Roese04ec0d32016-01-07 14:12:04 +010018
Luka Perkovdff289642012-05-27 11:44:51 +000019#include <stdlib.h>
20#include <stdio.h>
21#include <string.h>
22#include <stdarg.h>
Stefan Roese04ec0d32016-01-07 14:12:04 +010023#include <image.h>
Luka Perkovdff289642012-05-27 11:44:51 +000024#include <libgen.h>
25#include <fcntl.h>
26#include <errno.h>
27#include <unistd.h>
28#include <stdint.h>
Marek Behún2d9f2452021-09-24 23:06:52 +020029#include <time.h>
Luka Perkovdff289642012-05-27 11:44:51 +000030#include <sys/stat.h>
31
Pali Rohárfd935e92021-09-24 23:07:06 +020032#ifdef __linux__
33#include "termios_linux.h"
34#else
35#include <termios.h>
36#endif
37
Luka Perkovdff289642012-05-27 11:44:51 +000038/*
39 * Marvell BootROM UART Sensing
40 */
41
42static unsigned char kwboot_msg_boot[] = {
43 0xBB, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77
44};
45
Stefan Roesebb5c4282014-10-22 12:13:21 +020046static unsigned char kwboot_msg_debug[] = {
47 0xDD, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77
48};
49
50/* Defines known to work on Kirkwood */
Luka Perkovdff289642012-05-27 11:44:51 +000051#define KWBOOT_MSG_REQ_DELAY 10 /* ms */
52#define KWBOOT_MSG_RSP_TIMEO 50 /* ms */
53
Stefan Roesebb5c4282014-10-22 12:13:21 +020054/* 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 */
57
Luka Perkovdff289642012-05-27 11:44:51 +000058/*
59 * Xmodem Transfers
60 */
61
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 */
Luka Perkovdff289642012-05-27 11:44:51 +000066
Pali Rohárbed18ef2021-09-24 23:06:48 +020067#define KWBOOT_XM_BLKSZ 128 /* xmodem block size */
68
Luka Perkovdff289642012-05-27 11:44:51 +000069struct kwboot_block {
70 uint8_t soh;
71 uint8_t pnum;
72 uint8_t _pnum;
Pali Rohárbed18ef2021-09-24 23:06:48 +020073 uint8_t data[KWBOOT_XM_BLKSZ];
Luka Perkovdff289642012-05-27 11:44:51 +000074 uint8_t csum;
Pali Rohárf01adfd2021-07-23 11:14:14 +020075} __packed;
Luka Perkovdff289642012-05-27 11:44:51 +000076
Pali Rohárdef98382022-01-25 18:13:00 +010077#define KWBOOT_BLK_RSP_TIMEO 2000 /* ms */
Marek Behún2d9f2452021-09-24 23:06:52 +020078#define KWBOOT_HDR_RSP_TIMEO 10000 /* ms */
Luka Perkovdff289642012-05-27 11:44:51 +000079
Pali Rohár6303a232021-10-27 20:57:02 +020080/* ARM code to change baudrate */
Pali Rohár2a8b7692021-09-24 23:07:05 +020081static unsigned char kwboot_baud_code[] = {
82 /* ; #define UART_BASE 0xd0012000 */
Pali Rohár2a8b7692021-09-24 23:07:05 +020083 /* ; #define DLL 0x00 */
84 /* ; #define DLH 0x04 */
85 /* ; #define LCR 0x0c */
86 /* ; #define DLAB 0x80 */
87 /* ; #define LSR 0x14 */
Pali Rohár2a8b7692021-09-24 23:07:05 +020088 /* ; #define TEMT 0x40 */
89 /* ; #define DIV_ROUND(a, b) ((a + b/2) / b) */
90 /* ; */
91 /* ; u32 set_baudrate(u32 old_b, u32 new_b) { */
Pali Rohár2a8b7692021-09-24 23:07:05 +020092 /* ; while */
93 /* ; (!(readl(UART_BASE + LSR) & TEMT)); */
94 /* ; u32 lcr = readl(UART_BASE + LCR); */
95 /* ; writel(UART_BASE + LCR, lcr | DLAB); */
96 /* ; u8 old_dll = readl(UART_BASE + DLL); */
97 /* ; u8 old_dlh = readl(UART_BASE + DLH); */
98 /* ; u16 old_dl = old_dll | (old_dlh << 8); */
99 /* ; u32 clk = old_b * old_dl; */
100 /* ; u16 new_dl = DIV_ROUND(clk, new_b); */
101 /* ; u8 new_dll = new_dl & 0xff; */
102 /* ; u8 new_dlh = (new_dl >> 8) & 0xff; */
103 /* ; writel(UART_BASE + DLL, new_dll); */
104 /* ; writel(UART_BASE + DLH, new_dlh); */
105 /* ; writel(UART_BASE + LCR, lcr & ~DLAB); */
Pali Rohár9e624c92021-10-27 20:57:00 +0200106 /* ; msleep(5); */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200107 /* ; return 0; */
108 /* ; } */
109
Pali Rohár2a8b7692021-09-24 23:07:05 +0200110 /* ; r0 = UART_BASE */
Pali Rohár15b16e52021-10-27 20:57:01 +0200111 0x0d, 0x02, 0xa0, 0xe3, /* mov r0, #0xd0000000 */
112 0x12, 0x0a, 0x80, 0xe3, /* orr r0, r0, #0x12000 */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200113
Pali Rohár2a8b7692021-09-24 23:07:05 +0200114 /* ; Wait until Transmitter FIFO is Empty */
115 /* .Lloop_txempty: */
116 /* ; r1 = UART_BASE[LSR] & TEMT */
117 0x14, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x14] */
118 0x40, 0x00, 0x11, 0xe3, /* tst r1, #0x40 */
119 0xfc, 0xff, 0xff, 0x0a, /* beq .Lloop_txempty */
120
121 /* ; Set Divisor Latch Access Bit */
122 /* ; UART_BASE[LCR] |= DLAB */
123 0x0c, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x0c] */
124 0x80, 0x10, 0x81, 0xe3, /* orr r1, r1, #0x80 */
125 0x0c, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0c] */
126
127 /* ; Read current Divisor Latch */
128 /* ; r1 = UART_BASE[DLH]<<8 | UART_BASE[DLL] */
129 0x00, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x00] */
130 0xff, 0x10, 0x01, 0xe2, /* and r1, r1, #0xff */
131 0x01, 0x20, 0xa0, 0xe1, /* mov r2, r1 */
132 0x04, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x04] */
133 0xff, 0x10, 0x01, 0xe2, /* and r1, r1, #0xff */
134 0x41, 0x14, 0xa0, 0xe1, /* asr r1, r1, #8 */
135 0x02, 0x10, 0x81, 0xe1, /* orr r1, r1, r2 */
136
137 /* ; Read old baudrate value */
138 /* ; r2 = old_baudrate */
Pali Rohár2d760ed2021-11-01 14:00:02 +0100139 0x74, 0x20, 0x9f, 0xe5, /* ldr r2, old_baudrate */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200140
141 /* ; Calculate base clock */
142 /* ; r1 = r2 * r1 */
143 0x92, 0x01, 0x01, 0xe0, /* mul r1, r2, r1 */
144
145 /* ; Read new baudrate value */
Pali Rohár9e624c92021-10-27 20:57:00 +0200146 /* ; r2 = new_baudrate */
Pali Rohár2d760ed2021-11-01 14:00:02 +0100147 0x70, 0x20, 0x9f, 0xe5, /* ldr r2, new_baudrate */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200148
149 /* ; Calculate new Divisor Latch */
150 /* ; r1 = DIV_ROUND(r1, r2) = */
151 /* ; = (r1 + r2/2) / r2 */
152 0xa2, 0x10, 0x81, 0xe0, /* add r1, r1, r2, lsr #1 */
153 0x02, 0x40, 0xa0, 0xe1, /* mov r4, r2 */
154 0xa1, 0x00, 0x54, 0xe1, /* cmp r4, r1, lsr #1 */
155 /* .Lloop_div1: */
156 0x84, 0x40, 0xa0, 0x91, /* movls r4, r4, lsl #1 */
157 0xa1, 0x00, 0x54, 0xe1, /* cmp r4, r1, lsr #1 */
158 0xfc, 0xff, 0xff, 0x9a, /* bls .Lloop_div1 */
159 0x00, 0x30, 0xa0, 0xe3, /* mov r3, #0 */
160 /* .Lloop_div2: */
161 0x04, 0x00, 0x51, 0xe1, /* cmp r1, r4 */
162 0x04, 0x10, 0x41, 0x20, /* subhs r1, r1, r4 */
163 0x03, 0x30, 0xa3, 0xe0, /* adc r3, r3, r3 */
164 0xa4, 0x40, 0xa0, 0xe1, /* mov r4, r4, lsr #1 */
165 0x02, 0x00, 0x54, 0xe1, /* cmp r4, r2 */
166 0xf9, 0xff, 0xff, 0x2a, /* bhs .Lloop_div2 */
167 0x03, 0x10, 0xa0, 0xe1, /* mov r1, r3 */
168
169 /* ; Set new Divisor Latch Low */
170 /* ; UART_BASE[DLL] = r1 & 0xff */
171 0x01, 0x20, 0xa0, 0xe1, /* mov r2, r1 */
172 0xff, 0x20, 0x02, 0xe2, /* and r2, r2, #0xff */
173 0x00, 0x20, 0x80, 0xe5, /* str r2, [r0, #0x00] */
174
175 /* ; Set new Divisor Latch High */
176 /* ; UART_BASE[DLH] = r1>>8 & 0xff */
177 0x41, 0x24, 0xa0, 0xe1, /* asr r2, r1, #8 */
178 0xff, 0x20, 0x02, 0xe2, /* and r2, r2, #0xff */
179 0x04, 0x20, 0x80, 0xe5, /* str r2, [r0, #0x04] */
180
181 /* ; Clear Divisor Latch Access Bit */
182 /* ; UART_BASE[LCR] &= ~DLAB */
183 0x0c, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x0c] */
184 0x80, 0x10, 0xc1, 0xe3, /* bic r1, r1, #0x80 */
185 0x0c, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0c] */
186
Pali Rohár9e624c92021-10-27 20:57:00 +0200187 /* ; Loop 0x2dc000 (2998272) cycles */
188 /* ; which is about 5ms on 1200 MHz CPU */
189 /* ; r1 = 0x2dc000 */
190 0xb7, 0x19, 0xa0, 0xe3, /* mov r1, #0x2dc000 */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200191 /* .Lloop_sleep: */
192 0x01, 0x10, 0x41, 0xe2, /* sub r1, r1, #1 */
193 0x00, 0x00, 0x51, 0xe3, /* cmp r1, #0 */
194 0xfc, 0xff, 0xff, 0x1a, /* bne .Lloop_sleep */
195
Pali Rohár2d760ed2021-11-01 14:00:02 +0100196 /* ; Jump to the end of execution */
197 0x01, 0x00, 0x00, 0xea, /* b end */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200198
199 /* ; Placeholder for old baudrate value */
200 /* old_baudrate: */
201 0x00, 0x00, 0x00, 0x00, /* .word 0 */
202
203 /* ; Placeholder for new baudrate value */
204 /* new_baudrate: */
205 0x00, 0x00, 0x00, 0x00, /* .word 0 */
Pali Rohár6303a232021-10-27 20:57:02 +0200206
207 /* end: */
208};
209
Pali Rohár2d760ed2021-11-01 14:00:02 +0100210/* ARM code from binary header executed by BootROM before changing baudrate */
Pali Rohár6303a232021-10-27 20:57:02 +0200211static unsigned char kwboot_baud_code_binhdr_pre[] = {
Pali Rohár2d760ed2021-11-01 14:00:02 +0100212 /* ; #define UART_BASE 0xd0012000 */
213 /* ; #define THR 0x00 */
214 /* ; #define LSR 0x14 */
215 /* ; #define THRE 0x20 */
216 /* ; */
217 /* ; void send_preamble(void) { */
218 /* ; const u8 *str = "$baudratechange"; */
219 /* ; u8 c; */
220 /* ; do { */
221 /* ; while */
222 /* ; ((readl(UART_BASE + LSR) & THRE)); */
223 /* ; c = *str++; */
224 /* ; writel(UART_BASE + THR, c); */
225 /* ; } while (c); */
226 /* ; } */
227
228 /* ; Preserve registers for BootROM */
Pali Rohár6303a232021-10-27 20:57:02 +0200229 0xfe, 0x5f, 0x2d, 0xe9, /* push { r1 - r12, lr } */
Pali Rohár2d760ed2021-11-01 14:00:02 +0100230
231 /* ; r0 = UART_BASE */
232 0x0d, 0x02, 0xa0, 0xe3, /* mov r0, #0xd0000000 */
233 0x12, 0x0a, 0x80, 0xe3, /* orr r0, r0, #0x12000 */
234
235 /* ; r2 = address of preamble string */
236 0x00, 0x20, 0x8f, 0xe2, /* adr r2, .Lstr_preamble */
237
238 /* ; Skip preamble data section */
239 0x03, 0x00, 0x00, 0xea, /* b .Lloop_preamble */
240
241 /* ; Preamble string */
242 /* .Lstr_preamble: */
243 0x24, 0x62, 0x61, 0x75, /* .asciz "$baudratechange" */
244 0x64, 0x72, 0x61, 0x74,
245 0x65, 0x63, 0x68, 0x61,
246 0x6e, 0x67, 0x65, 0x00,
247
248 /* ; Send preamble string over UART */
249 /* .Lloop_preamble: */
250 /* */
251 /* ; Wait until Transmitter Holding is Empty */
252 /* .Lloop_thre: */
253 /* ; r1 = UART_BASE[LSR] & THRE */
254 0x14, 0x10, 0x90, 0xe5, /* ldr r1, [r0, #0x14] */
255 0x20, 0x00, 0x11, 0xe3, /* tst r1, #0x20 */
256 0xfc, 0xff, 0xff, 0x0a, /* beq .Lloop_thre */
257
258 /* ; Put character into Transmitter FIFO */
259 /* ; r1 = *r2++ */
260 0x01, 0x10, 0xd2, 0xe4, /* ldrb r1, [r2], #1 */
261 /* ; UART_BASE[THR] = r1 */
262 0x00, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0] */
263
264 /* ; Loop until end of preamble string */
265 0x00, 0x00, 0x51, 0xe3, /* cmp r1, #0 */
266 0xf8, 0xff, 0xff, 0x1a, /* bne .Lloop_preamble */
Pali Rohár6303a232021-10-27 20:57:02 +0200267};
268
Pali Rohár2d760ed2021-11-01 14:00:02 +0100269/* ARM code for returning from binary header back to BootROM */
Pali Rohár6303a232021-10-27 20:57:02 +0200270static unsigned char kwboot_baud_code_binhdr_post[] = {
271 /* ; Return 0 - no error */
272 0x00, 0x00, 0xa0, 0xe3, /* mov r0, #0 */
273 0xfe, 0x9f, 0xbd, 0xe8, /* pop { r1 - r12, pc } */
Pali Rohár2a8b7692021-09-24 23:07:05 +0200274};
275
Pali Rohár6303a232021-10-27 20:57:02 +0200276/* ARM code for jumping to the original image exec_addr */
277static unsigned char kwboot_baud_code_data_jump[] = {
278 0x04, 0xf0, 0x1f, 0xe5, /* ldr pc, exec_addr */
279 /* ; Placeholder for exec_addr */
280 /* exec_addr: */
281 0x00, 0x00, 0x00, 0x00, /* .word 0 */
282};
Pali Rohár2a8b7692021-09-24 23:07:05 +0200283
284static const char kwb_baud_magic[16] = "$baudratechange";
285
Luka Perkovdff289642012-05-27 11:44:51 +0000286static int kwboot_verbose;
287
Stefan Roesebb5c4282014-10-22 12:13:21 +0200288static int msg_req_delay = KWBOOT_MSG_REQ_DELAY;
289static int msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO;
Kevin Smith4d31a842016-02-16 21:28:19 +0000290static int blk_rsp_timeo = KWBOOT_BLK_RSP_TIMEO;
Stefan Roesebb5c4282014-10-22 12:13:21 +0200291
Marek Behúnd3bc5c32021-09-24 23:06:41 +0200292static ssize_t
293kwboot_write(int fd, const char *buf, size_t len)
294{
Pali Rohár5350df12022-01-25 18:13:10 +0100295 ssize_t tot = 0;
Marek Behúnd3bc5c32021-09-24 23:06:41 +0200296
297 while (tot < len) {
298 ssize_t wr = write(fd, buf + tot, len - tot);
299
Pali Rohár5350df12022-01-25 18:13:10 +0100300 if (wr < 0 && errno == EINTR)
301 continue;
302 else if (wr < 0)
303 return wr;
Marek Behúnd3bc5c32021-09-24 23:06:41 +0200304
305 tot += wr;
306 }
307
308 return tot;
309}
310
Luka Perkovdff289642012-05-27 11:44:51 +0000311static void
312kwboot_printv(const char *fmt, ...)
313{
314 va_list ap;
315
316 if (kwboot_verbose) {
317 va_start(ap, fmt);
318 vprintf(fmt, ap);
319 va_end(ap);
320 fflush(stdout);
321 }
322}
323
324static void
325__spinner(void)
326{
327 const char seq[] = { '-', '\\', '|', '/' };
328 const int div = 8;
329 static int state, bs;
330
331 if (state % div == 0) {
332 fputc(bs, stdout);
333 fputc(seq[state / div % sizeof(seq)], stdout);
334 fflush(stdout);
335 }
336
337 bs = '\b';
338 state++;
339}
340
341static void
342kwboot_spinner(void)
343{
344 if (kwboot_verbose)
345 __spinner();
346}
347
348static void
349__progress(int pct, char c)
350{
351 const int width = 70;
352 static const char *nl = "";
353 static int pos;
354
355 if (pos % width == 0)
356 printf("%s%3d %% [", nl, pct);
357
358 fputc(c, stdout);
359
360 nl = "]\n";
Pali Rohárd01b9ce2021-09-24 23:06:46 +0200361 pos = (pos + 1) % width;
Luka Perkovdff289642012-05-27 11:44:51 +0000362
363 if (pct == 100) {
Pali Rohárd01b9ce2021-09-24 23:06:46 +0200364 while (pos && pos++ < width)
Luka Perkovdff289642012-05-27 11:44:51 +0000365 fputc(' ', stdout);
366 fputs(nl, stdout);
Pali Rohárd01b9ce2021-09-24 23:06:46 +0200367 nl = "";
368 pos = 0;
Luka Perkovdff289642012-05-27 11:44:51 +0000369 }
370
371 fflush(stdout);
372
373}
374
375static void
376kwboot_progress(int _pct, char c)
377{
378 static int pct;
379
380 if (_pct != -1)
381 pct = _pct;
382
383 if (kwboot_verbose)
384 __progress(pct, c);
Pali Rohárd01b9ce2021-09-24 23:06:46 +0200385
386 if (pct == 100)
387 pct = 0;
Luka Perkovdff289642012-05-27 11:44:51 +0000388}
389
390static int
391kwboot_tty_recv(int fd, void *buf, size_t len, int timeo)
392{
393 int rc, nfds;
394 fd_set rfds;
395 struct timeval tv;
396 ssize_t n;
397
398 rc = -1;
399
400 FD_ZERO(&rfds);
401 FD_SET(fd, &rfds);
402
403 tv.tv_sec = 0;
404 tv.tv_usec = timeo * 1000;
405 if (tv.tv_usec > 1000000) {
406 tv.tv_sec += tv.tv_usec / 1000000;
407 tv.tv_usec %= 1000000;
408 }
409
410 do {
411 nfds = select(fd + 1, &rfds, NULL, NULL, &tv);
412 if (nfds < 0)
413 goto out;
414 if (!nfds) {
415 errno = ETIMEDOUT;
416 goto out;
417 }
418
419 n = read(fd, buf, len);
Willy Tarreauab7e8a12018-07-03 12:10:31 -0400420 if (n <= 0)
Luka Perkovdff289642012-05-27 11:44:51 +0000421 goto out;
422
423 buf = (char *)buf + n;
424 len -= n;
425 } while (len > 0);
426
427 rc = 0;
428out:
429 return rc;
430}
431
432static int
Pali Rohárf2acbba2021-10-27 20:56:59 +0200433kwboot_tty_send(int fd, const void *buf, size_t len, int nodrain)
Luka Perkovdff289642012-05-27 11:44:51 +0000434{
Stefan Roesebb5c4282014-10-22 12:13:21 +0200435 if (!buf)
436 return 0;
437
Marek Behúnd3bc5c32021-09-24 23:06:41 +0200438 if (kwboot_write(fd, buf, len) < 0)
439 return -1;
Luka Perkovdff289642012-05-27 11:44:51 +0000440
Pali Rohárf2acbba2021-10-27 20:56:59 +0200441 if (nodrain)
442 return 0;
443
Marek Behúnd3bc5c32021-09-24 23:06:41 +0200444 return tcdrain(fd);
Luka Perkovdff289642012-05-27 11:44:51 +0000445}
446
447static int
448kwboot_tty_send_char(int fd, unsigned char c)
449{
Pali Rohárf2acbba2021-10-27 20:56:59 +0200450 return kwboot_tty_send(fd, &c, 1, 0);
Luka Perkovdff289642012-05-27 11:44:51 +0000451}
452
453static speed_t
Pali Rohár2a8b7692021-09-24 23:07:05 +0200454kwboot_tty_baudrate_to_speed(int baudrate)
Luka Perkovdff289642012-05-27 11:44:51 +0000455{
456 switch (baudrate) {
Pali Rohár2a8b7692021-09-24 23:07:05 +0200457#ifdef B4000000
458 case 4000000:
459 return B4000000;
460#endif
461#ifdef B3500000
462 case 3500000:
463 return B3500000;
464#endif
465#ifdef B3000000
466 case 3000000:
467 return B3000000;
468#endif
469#ifdef B2500000
470 case 2500000:
471 return B2500000;
472#endif
473#ifdef B2000000
474 case 2000000:
475 return B2000000;
476#endif
477#ifdef B1500000
478 case 1500000:
479 return B1500000;
480#endif
481#ifdef B1152000
482 case 1152000:
483 return B1152000;
484#endif
485#ifdef B1000000
486 case 1000000:
487 return B1000000;
488#endif
489#ifdef B921600
490 case 921600:
491 return B921600;
492#endif
493#ifdef B614400
494 case 614400:
495 return B614400;
496#endif
497#ifdef B576000
498 case 576000:
499 return B576000;
500#endif
501#ifdef B500000
502 case 500000:
503 return B500000;
504#endif
505#ifdef B460800
506 case 460800:
507 return B460800;
508#endif
509#ifdef B307200
510 case 307200:
511 return B307200;
512#endif
513#ifdef B230400
514 case 230400:
515 return B230400;
516#endif
517#ifdef B153600
518 case 153600:
519 return B153600;
520#endif
521#ifdef B115200
Luka Perkovdff289642012-05-27 11:44:51 +0000522 case 115200:
523 return B115200;
Pali Rohár2a8b7692021-09-24 23:07:05 +0200524#endif
525#ifdef B76800
526 case 76800:
527 return B76800;
528#endif
529#ifdef B57600
Luka Perkovdff289642012-05-27 11:44:51 +0000530 case 57600:
531 return B57600;
Pali Rohár2a8b7692021-09-24 23:07:05 +0200532#endif
533#ifdef B38400
Luka Perkovdff289642012-05-27 11:44:51 +0000534 case 38400:
535 return B38400;
Pali Rohár2a8b7692021-09-24 23:07:05 +0200536#endif
537#ifdef B19200
Luka Perkovdff289642012-05-27 11:44:51 +0000538 case 19200:
539 return B19200;
Pali Rohár2a8b7692021-09-24 23:07:05 +0200540#endif
541#ifdef B9600
Luka Perkovdff289642012-05-27 11:44:51 +0000542 case 9600:
543 return B9600;
Pali Rohár2a8b7692021-09-24 23:07:05 +0200544#endif
545#ifdef B4800
546 case 4800:
547 return B4800;
548#endif
549#ifdef B2400
550 case 2400:
551 return B2400;
552#endif
553#ifdef B1800
554 case 1800:
555 return B1800;
556#endif
557#ifdef B1200
558 case 1200:
559 return B1200;
560#endif
561#ifdef B600
562 case 600:
563 return B600;
564#endif
565#ifdef B300
566 case 300:
567 return B300;
568#endif
569#ifdef B200
570 case 200:
571 return B200;
572#endif
573#ifdef B150
574 case 150:
575 return B150;
576#endif
577#ifdef B134
578 case 134:
579 return B134;
580#endif
581#ifdef B110
582 case 110:
583 return B110;
584#endif
585#ifdef B75
586 case 75:
587 return B75;
588#endif
589#ifdef B50
590 case 50:
591 return B50;
592#endif
593 default:
Pali Rohárfd935e92021-09-24 23:07:06 +0200594#ifdef BOTHER
595 return BOTHER;
596#else
Pali Rohár2a8b7692021-09-24 23:07:05 +0200597 return B0;
Pali Rohárfd935e92021-09-24 23:07:06 +0200598#endif
Luka Perkovdff289642012-05-27 11:44:51 +0000599 }
Pali Rohár2a8b7692021-09-24 23:07:05 +0200600}
601
602static int
Marek Behún67835492021-09-24 23:07:07 +0200603_is_within_tolerance(int value, int reference, int tolerance)
604{
605 return 100 * value >= reference * (100 - tolerance) &&
606 100 * value <= reference * (100 + tolerance);
607}
608
609static int
Pali Rohár2a8b7692021-09-24 23:07:05 +0200610kwboot_tty_change_baudrate(int fd, int baudrate)
611{
612 struct termios tio;
613 speed_t speed;
614 int rc;
615
616 rc = tcgetattr(fd, &tio);
617 if (rc)
618 return rc;
619
620 speed = kwboot_tty_baudrate_to_speed(baudrate);
621 if (speed == B0) {
622 errno = EINVAL;
623 return -1;
624 }
625
Pali Rohárfd935e92021-09-24 23:07:06 +0200626#ifdef BOTHER
627 if (speed == BOTHER)
628 tio.c_ospeed = tio.c_ispeed = baudrate;
629#endif
630
Pali Rohár2a8b7692021-09-24 23:07:05 +0200631 rc = cfsetospeed(&tio, speed);
632 if (rc)
633 return rc;
634
635 rc = cfsetispeed(&tio, speed);
636 if (rc)
637 return rc;
Luka Perkovdff289642012-05-27 11:44:51 +0000638
Pali Rohár2a8b7692021-09-24 23:07:05 +0200639 rc = tcsetattr(fd, TCSANOW, &tio);
640 if (rc)
641 return rc;
642
Marek Behún67835492021-09-24 23:07:07 +0200643 rc = tcgetattr(fd, &tio);
644 if (rc)
645 return rc;
646
647 if (cfgetospeed(&tio) != speed || cfgetispeed(&tio) != speed)
648 goto baud_fail;
649
650#ifdef BOTHER
651 /*
652 * Check whether set baudrate is within 3% tolerance.
653 * If BOTHER is defined, Linux always fills out c_ospeed / c_ispeed
654 * with real values.
655 */
656 if (!_is_within_tolerance(tio.c_ospeed, baudrate, 3))
657 goto baud_fail;
658
659 if (!_is_within_tolerance(tio.c_ispeed, baudrate, 3))
660 goto baud_fail;
661#endif
662
Pali Rohár2a8b7692021-09-24 23:07:05 +0200663 return 0;
Marek Behún67835492021-09-24 23:07:07 +0200664
665baud_fail:
666 fprintf(stderr, "Could not set baudrate to requested value\n");
667 errno = EINVAL;
668 return -1;
Luka Perkovdff289642012-05-27 11:44:51 +0000669}
670
671static int
Pali Rohár2a8b7692021-09-24 23:07:05 +0200672kwboot_open_tty(const char *path, int baudrate)
Luka Perkovdff289642012-05-27 11:44:51 +0000673{
Pali Rohár2bffe242021-09-24 23:07:10 +0200674 int rc, fd, flags;
Luka Perkovdff289642012-05-27 11:44:51 +0000675 struct termios tio;
676
677 rc = -1;
678
Marek Behún6c598c32021-09-24 23:07:11 +0200679 fd = open(path, O_RDWR | O_NOCTTY | O_NDELAY);
Luka Perkovdff289642012-05-27 11:44:51 +0000680 if (fd < 0)
681 goto out;
682
Pali Rohár909a0b92021-09-24 23:07:08 +0200683 rc = tcgetattr(fd, &tio);
684 if (rc)
685 goto out;
Luka Perkovdff289642012-05-27 11:44:51 +0000686
Pali Rohár909a0b92021-09-24 23:07:08 +0200687 cfmakeraw(&tio);
Marek Behún6c598c32021-09-24 23:07:11 +0200688 tio.c_cflag |= CREAD | CLOCAL;
Pali Rohár40003a02021-10-25 15:12:53 +0200689 tio.c_cflag &= ~(CSTOPB | HUPCL | CRTSCTS);
Luka Perkovdff289642012-05-27 11:44:51 +0000690 tio.c_cc[VMIN] = 1;
Pali Rohár12095b22021-09-24 23:07:09 +0200691 tio.c_cc[VTIME] = 0;
Luka Perkovdff289642012-05-27 11:44:51 +0000692
Luka Perkovdff289642012-05-27 11:44:51 +0000693 rc = tcsetattr(fd, TCSANOW, &tio);
694 if (rc)
695 goto out;
696
Pali Rohár2bffe242021-09-24 23:07:10 +0200697 flags = fcntl(fd, F_GETFL);
698 if (flags < 0)
699 goto out;
700
701 rc = fcntl(fd, F_SETFL, flags & ~O_NDELAY);
702 if (rc)
703 goto out;
704
Pali Rohár2a8b7692021-09-24 23:07:05 +0200705 rc = kwboot_tty_change_baudrate(fd, baudrate);
706 if (rc)
707 goto out;
708
Luka Perkovdff289642012-05-27 11:44:51 +0000709 rc = fd;
710out:
711 if (rc < 0) {
712 if (fd >= 0)
713 close(fd);
714 }
715
716 return rc;
717}
718
719static int
720kwboot_bootmsg(int tty, void *msg)
721{
Pali Roháre68c27bd2022-01-25 18:13:08 +0100722 struct kwboot_block block;
Luka Perkovdff289642012-05-27 11:44:51 +0000723 int rc;
724 char c;
Jon Nettleton0e428ee2018-08-13 18:24:38 +0300725 int count;
Luka Perkovdff289642012-05-27 11:44:51 +0000726
Stefan Roesebb5c4282014-10-22 12:13:21 +0200727 if (msg == NULL)
728 kwboot_printv("Please reboot the target into UART boot mode...");
729 else
730 kwboot_printv("Sending boot message. Please reboot the target...");
Luka Perkovdff289642012-05-27 11:44:51 +0000731
732 do {
733 rc = tcflush(tty, TCIOFLUSH);
734 if (rc)
735 break;
736
Jon Nettleton0e428ee2018-08-13 18:24:38 +0300737 for (count = 0; count < 128; count++) {
Pali Rohárf2acbba2021-10-27 20:56:59 +0200738 rc = kwboot_tty_send(tty, msg, 8, 0);
Jon Nettleton0e428ee2018-08-13 18:24:38 +0300739 if (rc) {
740 usleep(msg_req_delay * 1000);
741 continue;
742 }
Luka Perkovdff289642012-05-27 11:44:51 +0000743 }
744
Stefan Roesebb5c4282014-10-22 12:13:21 +0200745 rc = kwboot_tty_recv(tty, &c, 1, msg_rsp_timeo);
Luka Perkovdff289642012-05-27 11:44:51 +0000746
747 kwboot_spinner();
748
749 } while (rc || c != NAK);
750
751 kwboot_printv("\n");
752
Pali Roháre68c27bd2022-01-25 18:13:08 +0100753 if (rc)
754 return rc;
755
756 /*
757 * At this stage we have sent more boot message patterns and BootROM
758 * (at least on Armada XP and 385) started interpreting sent bytes as
759 * part of xmodem packets. If BootROM is expecting SOH byte as start of
760 * a xmodem packet and it receives byte 0xff, then it throws it away and
761 * sends a NAK reply to host. If BootROM does not receive any byte for
762 * 2s when expecting some continuation of the xmodem packet, it throws
763 * away the partially received xmodem data and sends NAK reply to host.
764 *
765 * Therefore for starting xmodem transfer we have two options: Either
766 * wait 2s or send 132 0xff bytes (which is the size of xmodem packet)
767 * to ensure that BootROM throws away any partially received data.
768 */
769
770 /* flush output queue with remaining boot message patterns */
771 tcflush(tty, TCOFLUSH);
772
773 /* send one xmodem packet with 0xff bytes to force BootROM to re-sync */
774 memset(&block, 0xff, sizeof(block));
775 kwboot_tty_send(tty, &block, sizeof(block), 0);
776
777 /*
778 * Sending 132 bytes via 115200B/8-N-1 takes 11.45 ms, reading 132 bytes
779 * takes 11.45 ms, so waiting for 30 ms should be enough.
780 */
781 usleep(30 * 1000);
782
783 /* flush remaining NAK replies from input queue */
784 tcflush(tty, TCIFLUSH);
785
786 return 0;
Luka Perkovdff289642012-05-27 11:44:51 +0000787}
788
789static int
Stefan Roesebb5c4282014-10-22 12:13:21 +0200790kwboot_debugmsg(int tty, void *msg)
791{
792 int rc;
793
794 kwboot_printv("Sending debug message. Please reboot the target...");
795
796 do {
797 char buf[16];
798
799 rc = tcflush(tty, TCIOFLUSH);
800 if (rc)
801 break;
802
Pali Rohárf2acbba2021-10-27 20:56:59 +0200803 rc = kwboot_tty_send(tty, msg, 8, 0);
Stefan Roesebb5c4282014-10-22 12:13:21 +0200804 if (rc) {
805 usleep(msg_req_delay * 1000);
806 continue;
807 }
808
809 rc = kwboot_tty_recv(tty, buf, 16, msg_rsp_timeo);
810
811 kwboot_spinner();
812
813 } while (rc);
814
815 kwboot_printv("\n");
816
817 return rc;
818}
819
Pali Rohár58cf04de2021-09-24 23:06:44 +0200820static size_t
Luka Perkovdff289642012-05-27 11:44:51 +0000821kwboot_xm_makeblock(struct kwboot_block *block, const void *data,
822 size_t size, int pnum)
823{
Marek Behúnedb63242021-09-24 23:06:45 +0200824 size_t i, n;
Luka Perkovdff289642012-05-27 11:44:51 +0000825
Stefan Roesebb5c4282014-10-22 12:13:21 +0200826 block->soh = SOH;
Luka Perkovdff289642012-05-27 11:44:51 +0000827 block->pnum = pnum;
828 block->_pnum = ~block->pnum;
829
Pali Rohárbed18ef2021-09-24 23:06:48 +0200830 n = size < KWBOOT_XM_BLKSZ ? size : KWBOOT_XM_BLKSZ;
Luka Perkovdff289642012-05-27 11:44:51 +0000831 memcpy(&block->data[0], data, n);
Pali Rohárbed18ef2021-09-24 23:06:48 +0200832 memset(&block->data[n], 0, KWBOOT_XM_BLKSZ - n);
Luka Perkovdff289642012-05-27 11:44:51 +0000833
834 block->csum = 0;
835 for (i = 0; i < n; i++)
836 block->csum += block->data[i];
837
838 return n;
839}
840
Marek Behún2d9f2452021-09-24 23:06:52 +0200841static uint64_t
842_now(void)
843{
844 struct timespec ts;
845
846 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
847 static int err_print;
848
849 if (!err_print) {
850 perror("clock_gettime() does not work");
851 err_print = 1;
852 }
853
854 /* this will just make the timeout not work */
855 return -1ULL;
856 }
857
858 return ts.tv_sec * 1000ULL + (ts.tv_nsec + 500000) / 1000000;
859}
860
Luka Perkovdff289642012-05-27 11:44:51 +0000861static int
Marek Behúneabacb82021-09-24 23:06:49 +0200862_is_xm_reply(char c)
863{
Pali Rohár6af14292022-01-25 18:13:03 +0100864 return c == ACK || c == NAK;
Marek Behúneabacb82021-09-24 23:06:49 +0200865}
866
867static int
Pali Rohár42c61a42021-09-24 23:06:54 +0200868_xm_reply_to_error(int c)
869{
870 int rc = -1;
871
872 switch (c) {
873 case ACK:
874 rc = 0;
875 break;
876 case NAK:
877 errno = EBADMSG;
878 break;
Pali Rohár42c61a42021-09-24 23:06:54 +0200879 default:
880 errno = EPROTO;
881 break;
882 }
883
884 return rc;
885}
886
887static int
Pali Rohár2a8b7692021-09-24 23:07:05 +0200888kwboot_baud_magic_handle(int fd, char c, int baudrate)
889{
890 static size_t rcv_len;
891
892 if (rcv_len < sizeof(kwb_baud_magic)) {
893 /* try to recognize whole magic word */
894 if (c == kwb_baud_magic[rcv_len]) {
895 rcv_len++;
896 } else {
897 printf("%.*s%c", (int)rcv_len, kwb_baud_magic, c);
898 fflush(stdout);
899 rcv_len = 0;
900 }
901 }
902
903 if (rcv_len == sizeof(kwb_baud_magic)) {
904 /* magic word received */
905 kwboot_printv("\nChanging baudrate to %d Bd\n", baudrate);
906
907 return kwboot_tty_change_baudrate(fd, baudrate) ? : 1;
908 } else {
909 return 0;
910 }
911}
912
913static int
Pali Rohár230d4f82022-01-25 18:13:04 +0100914kwboot_xm_recv_reply(int fd, char *c, int stop_on_non_xm,
Pali Roháre4529bd2022-01-25 18:13:02 +0100915 int ignore_nak_reply,
Pali Rohár959e8502021-10-25 15:13:04 +0200916 int allow_non_xm, int *non_xm_print,
Pali Rohár2a8b7692021-09-24 23:07:05 +0200917 int baudrate, int *baud_changed)
Pali Rohárd06d5202021-09-24 23:06:50 +0200918{
Marek Behún2d9f2452021-09-24 23:06:52 +0200919 int timeout = allow_non_xm ? KWBOOT_HDR_RSP_TIMEO : blk_rsp_timeo;
Marek Behún0a3b85a2021-09-24 23:06:53 +0200920 uint64_t recv_until = _now() + timeout;
Pali Rohárd06d5202021-09-24 23:06:50 +0200921 int rc;
922
923 while (1) {
Marek Behún2d9f2452021-09-24 23:06:52 +0200924 rc = kwboot_tty_recv(fd, c, 1, timeout);
Pali Rohárd06d5202021-09-24 23:06:50 +0200925 if (rc) {
926 if (errno != ETIMEDOUT)
927 return rc;
Marek Behún0a3b85a2021-09-24 23:06:53 +0200928 else if (allow_non_xm && *non_xm_print)
Marek Behún2d9f2452021-09-24 23:06:52 +0200929 return -1;
930 else
931 *c = NAK;
Pali Rohárd06d5202021-09-24 23:06:50 +0200932 }
933
934 /* If received xmodem reply, end. */
Pali Roháre4529bd2022-01-25 18:13:02 +0100935 if (_is_xm_reply(*c)) {
936 if (*c == NAK && ignore_nak_reply) {
937 timeout = recv_until - _now();
938 if (timeout >= 0)
939 continue;
940 }
Pali Rohárd06d5202021-09-24 23:06:50 +0200941 break;
Pali Roháre4529bd2022-01-25 18:13:02 +0100942 }
Pali Rohárd06d5202021-09-24 23:06:50 +0200943
944 /*
Pali Rohár2a8b7692021-09-24 23:07:05 +0200945 * If receiving/printing non-xmodem text output is allowed and
946 * such a byte was received, we want to increase receiving time
947 * and either:
948 * - print the byte, if it is not part of baudrate change magic
949 * sequence while baudrate change was requested (-B option)
950 * - change baudrate
Marek Behún0a3b85a2021-09-24 23:06:53 +0200951 * Otherwise decrease timeout by time elapsed.
Pali Rohárd06d5202021-09-24 23:06:50 +0200952 */
953 if (allow_non_xm) {
Marek Behún2d9f2452021-09-24 23:06:52 +0200954 recv_until = _now() + timeout;
Pali Rohár2a8b7692021-09-24 23:07:05 +0200955
956 if (baudrate && !*baud_changed) {
957 rc = kwboot_baud_magic_handle(fd, *c, baudrate);
958 if (rc == 1)
959 *baud_changed = 1;
960 else if (!rc)
961 *non_xm_print = 1;
962 else
963 return rc;
964 } else if (!baudrate || !*baud_changed) {
965 putchar(*c);
966 fflush(stdout);
967 *non_xm_print = 1;
968 }
Marek Behún0a3b85a2021-09-24 23:06:53 +0200969 } else {
Pali Rohár230d4f82022-01-25 18:13:04 +0100970 if (stop_on_non_xm)
Pali Rohár959e8502021-10-25 15:13:04 +0200971 break;
Marek Behún0a3b85a2021-09-24 23:06:53 +0200972 timeout = recv_until - _now();
973 if (timeout < 0) {
974 errno = ETIMEDOUT;
975 return -1;
976 }
Pali Rohárd06d5202021-09-24 23:06:50 +0200977 }
978 }
979
980 return 0;
981}
982
983static int
984kwboot_xm_sendblock(int fd, struct kwboot_block *block, int allow_non_xm,
Pali Rohár80241ce2022-01-25 18:13:05 +0100985 int *done_print, int baudrate, int allow_retries)
Luka Perkovdff289642012-05-27 11:44:51 +0000986{
Pali Rohár2a8b7692021-09-24 23:07:05 +0200987 int non_xm_print, baud_changed;
988 int rc, err, retries;
Luka Perkovdff289642012-05-27 11:44:51 +0000989 char c;
990
Pali Rohárd06d5202021-09-24 23:06:50 +0200991 *done_print = 0;
Pali Rohár6daa5612021-10-27 20:56:58 +0200992 non_xm_print = 0;
993 baud_changed = 0;
Pali Rohárd06d5202021-09-24 23:06:50 +0200994
Pali Roháre665c6a2021-10-25 15:13:03 +0200995 retries = 0;
Luka Perkovdff289642012-05-27 11:44:51 +0000996 do {
Pali Rohárf2acbba2021-10-27 20:56:59 +0200997 rc = kwboot_tty_send(fd, block, sizeof(*block), 1);
Luka Perkovdff289642012-05-27 11:44:51 +0000998 if (rc)
Pali Rohár6af14292022-01-25 18:13:03 +0100999 goto err;
Luka Perkovdff289642012-05-27 11:44:51 +00001000
Pali Rohárd06d5202021-09-24 23:06:50 +02001001 if (allow_non_xm && !*done_print) {
1002 kwboot_progress(100, '.');
1003 kwboot_printv("Done\n");
1004 *done_print = 1;
1005 }
Stefan Roesebb5c4282014-10-22 12:13:21 +02001006
Pali Rohár959e8502021-10-25 15:13:04 +02001007 rc = kwboot_xm_recv_reply(fd, &c, retries < 3,
Pali Roháre4529bd2022-01-25 18:13:02 +01001008 retries > 8,
Pali Rohár959e8502021-10-25 15:13:04 +02001009 allow_non_xm, &non_xm_print,
Pali Rohár2a8b7692021-09-24 23:07:05 +02001010 baudrate, &baud_changed);
Pali Rohárd06d5202021-09-24 23:06:50 +02001011 if (rc)
Pali Rohár6af14292022-01-25 18:13:03 +01001012 goto err;
Luka Perkovdff289642012-05-27 11:44:51 +00001013
Pali Rohárb3760f92022-01-25 18:13:06 +01001014 if (!allow_non_xm && c != ACK) {
1015 if (c == NAK && allow_retries && retries + 1 < 16)
1016 kwboot_progress(-1, '+');
1017 else
1018 kwboot_progress(-1, 'E');
1019 }
Pali Rohár80241ce2022-01-25 18:13:05 +01001020 } while (c == NAK && allow_retries && retries++ < 16);
Luka Perkovdff289642012-05-27 11:44:51 +00001021
Marek Behúnbcc5e042021-09-24 23:06:51 +02001022 if (non_xm_print)
1023 kwboot_printv("\n");
1024
Pali Rohár2a8b7692021-09-24 23:07:05 +02001025 if (allow_non_xm && baudrate && !baud_changed) {
1026 fprintf(stderr, "Baudrate was not changed\n");
Pali Rohár2a8b7692021-09-24 23:07:05 +02001027 errno = EPROTO;
Pali Rohár6af14292022-01-25 18:13:03 +01001028 return -1;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001029 }
1030
Pali Rohár42c61a42021-09-24 23:06:54 +02001031 return _xm_reply_to_error(c);
Pali Rohár6af14292022-01-25 18:13:03 +01001032err:
Pali Rohár2a8b7692021-09-24 23:07:05 +02001033 err = errno;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001034 kwboot_printv("\n");
1035 errno = err;
1036 return rc;
Pali Rohár42c61a42021-09-24 23:06:54 +02001037}
Luka Perkovdff289642012-05-27 11:44:51 +00001038
Pali Rohár42c61a42021-09-24 23:06:54 +02001039static int
1040kwboot_xm_finish(int fd)
1041{
1042 int rc, retries;
1043 char c;
Luka Perkovdff289642012-05-27 11:44:51 +00001044
Pali Rohár42c61a42021-09-24 23:06:54 +02001045 kwboot_printv("Finishing transfer\n");
1046
Pali Roháre665c6a2021-10-25 15:13:03 +02001047 retries = 0;
Pali Rohár42c61a42021-09-24 23:06:54 +02001048 do {
1049 rc = kwboot_tty_send_char(fd, EOT);
1050 if (rc)
1051 return rc;
1052
Pali Rohár959e8502021-10-25 15:13:04 +02001053 rc = kwboot_xm_recv_reply(fd, &c, retries < 3,
Pali Roháre4529bd2022-01-25 18:13:02 +01001054 retries > 8,
Pali Rohár959e8502021-10-25 15:13:04 +02001055 0, NULL, 0, NULL);
Pali Rohár42c61a42021-09-24 23:06:54 +02001056 if (rc)
1057 return rc;
Pali Roháre665c6a2021-10-25 15:13:03 +02001058 } while (c == NAK && retries++ < 16);
Pali Rohár42c61a42021-09-24 23:06:54 +02001059
1060 return _xm_reply_to_error(c);
Luka Perkovdff289642012-05-27 11:44:51 +00001061}
1062
1063static int
Pali Rohárbed18ef2021-09-24 23:06:48 +02001064kwboot_xmodem_one(int tty, int *pnum, int header, const uint8_t *data,
Pali Rohár2a8b7692021-09-24 23:07:05 +02001065 size_t size, int baudrate)
Luka Perkovdff289642012-05-27 11:44:51 +00001066{
Pali Rohárd06d5202021-09-24 23:06:50 +02001067 int done_print = 0;
Pali Rohárbed18ef2021-09-24 23:06:48 +02001068 size_t sent, left;
1069 int rc;
Luka Perkovdff289642012-05-27 11:44:51 +00001070
Pali Rohárbed18ef2021-09-24 23:06:48 +02001071 kwboot_printv("Sending boot image %s (%zu bytes)...\n",
1072 header ? "header" : "data", size);
Luka Perkovdff289642012-05-27 11:44:51 +00001073
Pali Rohárbed18ef2021-09-24 23:06:48 +02001074 left = size;
1075 sent = 0;
Luka Perkovdff289642012-05-27 11:44:51 +00001076
Pali Rohárbed18ef2021-09-24 23:06:48 +02001077 while (sent < size) {
Luka Perkovdff289642012-05-27 11:44:51 +00001078 struct kwboot_block block;
Pali Rohárd06d5202021-09-24 23:06:50 +02001079 int last_block;
Pali Rohárbed18ef2021-09-24 23:06:48 +02001080 size_t blksz;
Luka Perkovdff289642012-05-27 11:44:51 +00001081
Pali Rohárbed18ef2021-09-24 23:06:48 +02001082 blksz = kwboot_xm_makeblock(&block, data, left, (*pnum)++);
1083 data += blksz;
Luka Perkovdff289642012-05-27 11:44:51 +00001084
Pali Rohárd06d5202021-09-24 23:06:50 +02001085 last_block = (left <= blksz);
1086
Pali Rohár80241ce2022-01-25 18:13:05 +01001087 /*
1088 * Handling of repeated xmodem packets is completely broken in
1089 * Armada 385 BootROM - it completely ignores xmodem packet
1090 * numbers, they are only used for checksum verification.
1091 * BootROM can handle a retry of the xmodem packet only during
1092 * the transmission of kwbimage header and only if BootROM
1093 * itself sent NAK response to previous attempt (it does it on
1094 * checksum failure). During the transmission of kwbimage data
1095 * part, BootROM always expects next xmodem packet, even if it
1096 * sent NAK to previous attempt - there is absolutely no way to
1097 * repair incorrectly transmitted xmodem packet during kwbimage
1098 * data part upload. Also, if kwboot receives non-ACK/NAK
1099 * response (meaning that original BootROM response was damaged
1100 * on UART) there is no way to detect if BootROM accepted xmodem
1101 * packet or not and no way to check if kwboot could repeat the
1102 * packet or not.
1103 *
1104 * Stop transfer and return failure if kwboot receives unknown
1105 * reply if non-xmodem reply is not allowed (for all xmodem
1106 * packets except the last header packet) or when non-ACK reply
1107 * is received during data part transfer.
1108 */
Pali Rohárd06d5202021-09-24 23:06:50 +02001109 rc = kwboot_xm_sendblock(tty, &block, header && last_block,
Pali Rohár80241ce2022-01-25 18:13:05 +01001110 &done_print, baudrate, header);
Luka Perkovdff289642012-05-27 11:44:51 +00001111 if (rc)
1112 goto out;
1113
Pali Rohárbed18ef2021-09-24 23:06:48 +02001114 sent += blksz;
1115 left -= blksz;
1116
Pali Rohárd06d5202021-09-24 23:06:50 +02001117 if (!done_print)
1118 kwboot_progress(sent * 100 / size, '.');
Pali Rohárbed18ef2021-09-24 23:06:48 +02001119 }
Luka Perkovdff289642012-05-27 11:44:51 +00001120
Pali Rohárd06d5202021-09-24 23:06:50 +02001121 if (!done_print)
1122 kwboot_printv("Done\n");
Luka Perkovdff289642012-05-27 11:44:51 +00001123
Pali Rohárbed18ef2021-09-24 23:06:48 +02001124 return 0;
Luka Perkovdff289642012-05-27 11:44:51 +00001125out:
Pali Rohár5ed896f2021-09-24 23:06:47 +02001126 kwboot_printv("\n");
Luka Perkovdff289642012-05-27 11:44:51 +00001127 return rc;
Pali Rohárbed18ef2021-09-24 23:06:48 +02001128}
1129
1130static int
Pali Rohár2a8b7692021-09-24 23:07:05 +02001131kwboot_xmodem(int tty, const void *_img, size_t size, int baudrate)
Pali Rohárbed18ef2021-09-24 23:06:48 +02001132{
1133 const uint8_t *img = _img;
1134 int rc, pnum;
1135 size_t hdrsz;
1136
Marek Behúnd1b0b032021-09-24 23:07:01 +02001137 hdrsz = kwbheader_size(img);
Pali Rohárbed18ef2021-09-24 23:06:48 +02001138
Pali Rohár400b5cf2021-11-05 23:29:58 +01001139 /*
1140 * If header size is not aligned to xmodem block size (which applies
1141 * for all images in kwbimage v0 format) then we have to ensure that
1142 * the last xmodem block of header contains beginning of the data
1143 * followed by the header. So align header size to xmodem block size.
1144 */
1145 hdrsz += (KWBOOT_XM_BLKSZ - hdrsz % KWBOOT_XM_BLKSZ) % KWBOOT_XM_BLKSZ;
1146
Pali Rohárbed18ef2021-09-24 23:06:48 +02001147 pnum = 1;
1148
Pali Rohár2a8b7692021-09-24 23:07:05 +02001149 rc = kwboot_xmodem_one(tty, &pnum, 1, img, hdrsz, baudrate);
Pali Rohárbed18ef2021-09-24 23:06:48 +02001150 if (rc)
1151 return rc;
1152
Pali Rohár400b5cf2021-11-05 23:29:58 +01001153 /*
1154 * If we have already sent image data as a part of the last
1155 * xmodem header block then we have nothing more to send.
1156 */
1157 if (hdrsz < size) {
1158 img += hdrsz;
1159 size -= hdrsz;
1160 rc = kwboot_xmodem_one(tty, &pnum, 0, img, size, 0);
1161 if (rc)
1162 return rc;
1163 }
Pali Rohár2a8b7692021-09-24 23:07:05 +02001164
1165 rc = kwboot_xm_finish(tty);
Pali Rohárbed18ef2021-09-24 23:06:48 +02001166 if (rc)
1167 return rc;
Luka Perkovdff289642012-05-27 11:44:51 +00001168
Pali Rohár2a8b7692021-09-24 23:07:05 +02001169 if (baudrate) {
Pali Rohár2a8b7692021-09-24 23:07:05 +02001170 kwboot_printv("\nChanging baudrate back to 115200 Bd\n\n");
1171 rc = kwboot_tty_change_baudrate(tty, 115200);
1172 if (rc)
1173 return rc;
1174 }
1175
1176 return 0;
Luka Perkovdff289642012-05-27 11:44:51 +00001177}
1178
1179static int
Marek Behúnea5b2b32021-09-24 23:06:40 +02001180kwboot_term_pipe(int in, int out, const char *quit, int *s)
Luka Perkovdff289642012-05-27 11:44:51 +00001181{
Marek Behúnd3bc5c32021-09-24 23:06:41 +02001182 ssize_t nin;
Luka Perkovdff289642012-05-27 11:44:51 +00001183 char _buf[128], *buf = _buf;
1184
Pali Rohár8210ea02021-07-23 11:14:17 +02001185 nin = read(in, buf, sizeof(_buf));
Willy Tarreauab7e8a12018-07-03 12:10:31 -04001186 if (nin <= 0)
Luka Perkovdff289642012-05-27 11:44:51 +00001187 return -1;
1188
1189 if (quit) {
1190 int i;
1191
1192 for (i = 0; i < nin; i++) {
1193 if (*buf == quit[*s]) {
1194 (*s)++;
1195 if (!quit[*s])
1196 return 0;
1197 buf++;
1198 nin--;
Pali Rohár48615ba2021-07-23 11:14:20 +02001199 } else {
Marek Behúnd3bc5c32021-09-24 23:06:41 +02001200 if (kwboot_write(out, quit, *s) < 0)
1201 return -1;
1202 *s = 0;
Pali Rohár48615ba2021-07-23 11:14:20 +02001203 }
Luka Perkovdff289642012-05-27 11:44:51 +00001204 }
1205 }
1206
Marek Behúnd3bc5c32021-09-24 23:06:41 +02001207 if (kwboot_write(out, buf, nin) < 0)
1208 return -1;
Luka Perkovdff289642012-05-27 11:44:51 +00001209
1210 return 0;
1211}
1212
1213static int
1214kwboot_terminal(int tty)
1215{
1216 int rc, in, s;
Marek Behúnea5b2b32021-09-24 23:06:40 +02001217 const char *quit = "\34c";
Luka Perkovdff289642012-05-27 11:44:51 +00001218 struct termios otio, tio;
1219
1220 rc = -1;
1221
1222 in = STDIN_FILENO;
1223 if (isatty(in)) {
1224 rc = tcgetattr(in, &otio);
1225 if (!rc) {
1226 tio = otio;
1227 cfmakeraw(&tio);
1228 rc = tcsetattr(in, TCSANOW, &tio);
1229 }
1230 if (rc) {
1231 perror("tcsetattr");
1232 goto out;
1233 }
1234
1235 kwboot_printv("[Type Ctrl-%c + %c to quit]\r\n",
Marek Behún6c598c32021-09-24 23:07:11 +02001236 quit[0] | 0100, quit[1]);
Luka Perkovdff289642012-05-27 11:44:51 +00001237 } else
1238 in = -1;
1239
1240 rc = 0;
1241 s = 0;
1242
1243 do {
1244 fd_set rfds;
1245 int nfds = 0;
1246
Pali Rohárc1efca42021-10-25 15:12:52 +02001247 FD_ZERO(&rfds);
Luka Perkovdff289642012-05-27 11:44:51 +00001248 FD_SET(tty, &rfds);
1249 nfds = nfds < tty ? tty : nfds;
1250
1251 if (in >= 0) {
1252 FD_SET(in, &rfds);
1253 nfds = nfds < in ? in : nfds;
1254 }
1255
1256 nfds = select(nfds + 1, &rfds, NULL, NULL, NULL);
1257 if (nfds < 0)
1258 break;
1259
1260 if (FD_ISSET(tty, &rfds)) {
1261 rc = kwboot_term_pipe(tty, STDOUT_FILENO, NULL, NULL);
1262 if (rc)
1263 break;
1264 }
1265
Marek Behún4eb55de2021-09-24 23:06:39 +02001266 if (in >= 0 && FD_ISSET(in, &rfds)) {
Luka Perkovdff289642012-05-27 11:44:51 +00001267 rc = kwboot_term_pipe(in, tty, quit, &s);
1268 if (rc)
1269 break;
1270 }
1271 } while (quit[s] != 0);
1272
Pali Roháreafc9692021-07-23 11:14:18 +02001273 if (in >= 0)
1274 tcsetattr(in, TCSANOW, &otio);
Pali Rohár049cf912021-07-23 11:14:19 +02001275 printf("\n");
Luka Perkovdff289642012-05-27 11:44:51 +00001276out:
1277 return rc;
1278}
1279
1280static void *
Pali Rohárd9355bf2021-09-24 23:07:03 +02001281kwboot_read_image(const char *path, size_t *size, size_t reserve)
Luka Perkovdff289642012-05-27 11:44:51 +00001282{
Pali Rohár4d276012021-09-24 23:06:55 +02001283 int rc, fd;
Luka Perkovdff289642012-05-27 11:44:51 +00001284 struct stat st;
1285 void *img;
Pali Rohárd9355bf2021-09-24 23:07:03 +02001286 off_t tot;
Luka Perkovdff289642012-05-27 11:44:51 +00001287
1288 rc = -1;
Luka Perkovdff289642012-05-27 11:44:51 +00001289 img = NULL;
1290
1291 fd = open(path, O_RDONLY);
1292 if (fd < 0)
1293 goto out;
1294
1295 rc = fstat(fd, &st);
1296 if (rc)
1297 goto out;
1298
Pali Rohárd9355bf2021-09-24 23:07:03 +02001299 img = malloc(st.st_size + reserve);
1300 if (!img)
Luka Perkovdff289642012-05-27 11:44:51 +00001301 goto out;
Pali Rohárd9355bf2021-09-24 23:07:03 +02001302
1303 tot = 0;
1304 while (tot < st.st_size) {
1305 ssize_t rd = read(fd, img + tot, st.st_size - tot);
1306
1307 if (rd < 0)
1308 goto out;
1309
1310 tot += rd;
1311
1312 if (!rd && tot < st.st_size) {
1313 errno = EIO;
1314 goto out;
1315 }
Luka Perkovdff289642012-05-27 11:44:51 +00001316 }
1317
1318 rc = 0;
1319 *size = st.st_size;
1320out:
1321 if (rc && img) {
Pali Rohárd9355bf2021-09-24 23:07:03 +02001322 free(img);
Luka Perkovdff289642012-05-27 11:44:51 +00001323 img = NULL;
1324 }
1325 if (fd >= 0)
1326 close(fd);
1327
1328 return img;
1329}
1330
1331static uint8_t
Marek Behúnd1b0b032021-09-24 23:07:01 +02001332kwboot_hdr_csum8(const void *hdr)
Luka Perkovdff289642012-05-27 11:44:51 +00001333{
Marek Behúnd1b0b032021-09-24 23:07:01 +02001334 const uint8_t *data = hdr;
1335 uint8_t csum;
1336 size_t size;
1337
1338 size = kwbheader_size_for_csum(hdr);
Luka Perkovdff289642012-05-27 11:44:51 +00001339
1340 for (csum = 0; size-- > 0; data++)
1341 csum += *data;
1342
1343 return csum;
1344}
1345
Pali Rohár0b659e52021-10-25 15:12:55 +02001346static uint32_t *
1347kwboot_img_csum32_ptr(void *img)
1348{
1349 struct main_hdr_v1 *hdr = img;
1350 uint32_t datasz;
1351
1352 datasz = le32_to_cpu(hdr->blocksize) - sizeof(uint32_t);
1353
1354 return img + le32_to_cpu(hdr->srcaddr) + datasz;
1355}
1356
1357static uint32_t
1358kwboot_img_csum32(const void *img)
1359{
1360 const struct main_hdr_v1 *hdr = img;
1361 uint32_t datasz, csum = 0;
1362 const uint32_t *data;
1363
1364 datasz = le32_to_cpu(hdr->blocksize) - sizeof(csum);
1365 if (datasz % sizeof(uint32_t))
1366 return 0;
1367
1368 data = img + le32_to_cpu(hdr->srcaddr);
1369 while (datasz > 0) {
1370 csum += le32_to_cpu(*data++);
1371 datasz -= 4;
1372 }
1373
1374 return cpu_to_le32(csum);
1375}
1376
Luka Perkovdff289642012-05-27 11:44:51 +00001377static int
Pali Rohár5725e0c2021-09-24 23:06:57 +02001378kwboot_img_is_secure(void *img)
1379{
1380 struct opt_hdr_v1 *ohdr;
1381
1382 for_each_opt_hdr_v1 (ohdr, img)
1383 if (ohdr->headertype == OPT_HDR_V1_SECURE_TYPE)
1384 return 1;
1385
1386 return 0;
1387}
1388
Pali Rohár2a8b7692021-09-24 23:07:05 +02001389static void *
Pali Roháraed39f22021-10-25 15:12:56 +02001390kwboot_img_grow_data_right(void *img, size_t *size, size_t grow)
Pali Rohár2a8b7692021-09-24 23:07:05 +02001391{
Pali Rohár2a8b7692021-09-24 23:07:05 +02001392 struct main_hdr_v1 *hdr = img;
Pali Roháraed39f22021-10-25 15:12:56 +02001393 void *result;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001394
Pali Roháraed39f22021-10-25 15:12:56 +02001395 /*
1396 * 32-bit checksum comes after end of image code, so we will be putting
1397 * new code there. So we get this pointer and then increase data size
1398 * (since increasing data size changes kwboot_img_csum32_ptr() return
1399 * value).
1400 */
1401 result = kwboot_img_csum32_ptr(img);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001402 hdr->blocksize = cpu_to_le32(le32_to_cpu(hdr->blocksize) + grow);
Pali Roháraed39f22021-10-25 15:12:56 +02001403 *size += grow;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001404
Pali Roháraed39f22021-10-25 15:12:56 +02001405 return result;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001406}
1407
Pali Rohárd9355bf2021-09-24 23:07:03 +02001408static void
1409kwboot_img_grow_hdr(void *img, size_t *size, size_t grow)
1410{
1411 uint32_t hdrsz, datasz, srcaddr;
1412 struct main_hdr_v1 *hdr = img;
Pali Rohár6fa97092021-10-25 15:13:02 +02001413 struct opt_hdr_v1 *ohdr;
Pali Rohárd9355bf2021-09-24 23:07:03 +02001414 uint8_t *data;
1415
1416 srcaddr = le32_to_cpu(hdr->srcaddr);
1417
Pali Rohár6fa97092021-10-25 15:13:02 +02001418 /* calculate real used space in kwbimage header */
1419 if (kwbimage_version(img) == 0) {
1420 hdrsz = kwbheader_size(img);
1421 } else {
1422 hdrsz = sizeof(*hdr);
1423 for_each_opt_hdr_v1 (ohdr, hdr)
1424 hdrsz += opt_hdr_v1_size(ohdr);
1425 }
1426
Pali Rohárd9355bf2021-09-24 23:07:03 +02001427 data = (uint8_t *)img + srcaddr;
1428 datasz = *size - srcaddr;
1429
1430 /* only move data if there is not enough space */
1431 if (hdrsz + grow > srcaddr) {
1432 size_t need = hdrsz + grow - srcaddr;
1433
1434 /* move data by enough bytes */
1435 memmove(data + need, data, datasz);
1436
1437 hdr->srcaddr = cpu_to_le32(srcaddr + need);
1438 *size += need;
1439 }
1440
1441 if (kwbimage_version(img) == 1) {
1442 hdrsz += grow;
Pali Rohár6fa97092021-10-25 15:13:02 +02001443 if (hdrsz > kwbheader_size(img)) {
1444 hdr->headersz_msb = hdrsz >> 16;
1445 hdr->headersz_lsb = cpu_to_le16(hdrsz & 0xffff);
1446 }
Pali Rohárd9355bf2021-09-24 23:07:03 +02001447 }
Pali Rohár2a8b7692021-09-24 23:07:05 +02001448}
1449
1450static void *
1451kwboot_add_bin_ohdr_v1(void *img, size_t *size, uint32_t binsz)
1452{
1453 struct main_hdr_v1 *hdr = img;
1454 struct opt_hdr_v1 *ohdr;
Pali Rohár87cc3c92021-10-21 16:46:06 +02001455 uint32_t num_args;
1456 uint32_t offset;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001457 uint32_t ohdrsz;
Pali Rohár90eb9002021-10-25 15:13:01 +02001458 uint8_t *prev_ext;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001459
Pali Rohár32eec192022-01-12 18:20:52 +01001460 if (hdr->ext) {
Pali Rohár2a8b7692021-09-24 23:07:05 +02001461 for_each_opt_hdr_v1 (ohdr, img)
1462 if (opt_hdr_v1_next(ohdr) == NULL)
1463 break;
1464
Pali Rohár90eb9002021-10-25 15:13:01 +02001465 prev_ext = opt_hdr_v1_ext(ohdr);
1466 ohdr = _opt_hdr_v1_next(ohdr);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001467 } else {
Pali Rohár2a8b7692021-09-24 23:07:05 +02001468 ohdr = (void *)(hdr + 1);
Pali Rohár90eb9002021-10-25 15:13:01 +02001469 prev_ext = &hdr->ext;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001470 }
1471
Pali Rohár87cc3c92021-10-21 16:46:06 +02001472 /*
1473 * ARM executable code inside the BIN header on some mvebu platforms
1474 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1475 * This requirement can be met by inserting dummy arguments into
1476 * BIN header, if needed.
1477 */
1478 offset = &ohdr->data[4] - (char *)img;
1479 num_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1480
1481 ohdrsz = sizeof(*ohdr) + 4 + 4 * num_args + binsz + 4;
1482 kwboot_img_grow_hdr(hdr, size, ohdrsz);
1483
Pali Rohár32eec192022-01-12 18:20:52 +01001484 *prev_ext = 1;
Pali Rohár90eb9002021-10-25 15:13:01 +02001485
Pali Rohár2a8b7692021-09-24 23:07:05 +02001486 ohdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1487 ohdr->headersz_msb = ohdrsz >> 16;
1488 ohdr->headersz_lsb = cpu_to_le16(ohdrsz & 0xffff);
1489
1490 memset(&ohdr->data[0], 0, ohdrsz - sizeof(*ohdr));
Pali Rohár87cc3c92021-10-21 16:46:06 +02001491 *(uint32_t *)&ohdr->data[0] = cpu_to_le32(num_args);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001492
Pali Rohár87cc3c92021-10-21 16:46:06 +02001493 return &ohdr->data[4 + 4 * num_args];
Pali Rohárd9355bf2021-09-24 23:07:03 +02001494}
1495
Pali Rohár2a8b7692021-09-24 23:07:05 +02001496static void
Pali Rohár6303a232021-10-27 20:57:02 +02001497_inject_baudrate_change_code(void *img, size_t *size, int for_data,
Pali Roháraed39f22021-10-25 15:12:56 +02001498 int old_baud, int new_baud)
Pali Rohár2a8b7692021-09-24 23:07:05 +02001499{
Pali Roháraed39f22021-10-25 15:12:56 +02001500 struct main_hdr_v1 *hdr = img;
Pali Rohár6303a232021-10-27 20:57:02 +02001501 uint32_t orig_datasz;
1502 uint32_t codesz;
Pali Roháraed39f22021-10-25 15:12:56 +02001503 uint8_t *code;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001504
Pali Rohár6303a232021-10-27 20:57:02 +02001505 if (for_data) {
Pali Roháraed39f22021-10-25 15:12:56 +02001506 orig_datasz = le32_to_cpu(hdr->blocksize) - sizeof(uint32_t);
1507
Pali Rohár6303a232021-10-27 20:57:02 +02001508 codesz = sizeof(kwboot_baud_code) +
1509 sizeof(kwboot_baud_code_data_jump);
1510 code = kwboot_img_grow_data_right(img, size, codesz);
1511 } else {
1512 codesz = sizeof(kwboot_baud_code_binhdr_pre) +
1513 sizeof(kwboot_baud_code) +
1514 sizeof(kwboot_baud_code_binhdr_post);
1515 code = kwboot_add_bin_ohdr_v1(img, size, codesz);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001516
Pali Rohár6303a232021-10-27 20:57:02 +02001517 codesz = sizeof(kwboot_baud_code_binhdr_pre);
1518 memcpy(code, kwboot_baud_code_binhdr_pre, codesz);
1519 code += codesz;
1520 }
Pali Rohár2a8b7692021-09-24 23:07:05 +02001521
Pali Rohár6303a232021-10-27 20:57:02 +02001522 codesz = sizeof(kwboot_baud_code) - 2 * sizeof(uint32_t);
1523 memcpy(code, kwboot_baud_code, codesz);
1524 code += codesz;
1525 *(uint32_t *)code = cpu_to_le32(old_baud);
1526 code += sizeof(uint32_t);
1527 *(uint32_t *)code = cpu_to_le32(new_baud);
1528 code += sizeof(uint32_t);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001529
Pali Rohár6303a232021-10-27 20:57:02 +02001530 if (for_data) {
1531 codesz = sizeof(kwboot_baud_code_data_jump) - sizeof(uint32_t);
1532 memcpy(code, kwboot_baud_code_data_jump, codesz);
1533 code += codesz;
1534 *(uint32_t *)code = hdr->execaddr;
1535 code += sizeof(uint32_t);
1536 hdr->execaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) + orig_datasz);
Pali Roháraed39f22021-10-25 15:12:56 +02001537 } else {
Pali Rohár6303a232021-10-27 20:57:02 +02001538 codesz = sizeof(kwboot_baud_code_binhdr_post);
1539 memcpy(code, kwboot_baud_code_binhdr_post, codesz);
1540 code += codesz;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001541 }
Pali Rohár2a8b7692021-09-24 23:07:05 +02001542}
1543
Pali Rohár5725e0c2021-09-24 23:06:57 +02001544static int
Pali Rohár2a8b7692021-09-24 23:07:05 +02001545kwboot_img_patch(void *img, size_t *size, int baudrate)
Luka Perkovdff289642012-05-27 11:44:51 +00001546{
Stefan Roesec74165d2015-09-29 09:19:59 +02001547 struct main_hdr_v1 *hdr;
Pali Rohár88255af2021-09-24 23:06:58 +02001548 uint32_t srcaddr;
Luka Perkovdff289642012-05-27 11:44:51 +00001549 uint8_t csum;
Marek Behún811821e2021-09-24 23:07:04 +02001550 size_t hdrsz;
Stefan Roesec74165d2015-09-29 09:19:59 +02001551 int image_ver;
Pali Rohár5725e0c2021-09-24 23:06:57 +02001552 int is_secure;
Luka Perkovdff289642012-05-27 11:44:51 +00001553
Luka Perkovdff289642012-05-27 11:44:51 +00001554 hdr = img;
1555
Marek Behún3e6117e2021-09-24 23:07:12 +02001556 if (*size < sizeof(struct main_hdr_v1))
1557 goto err;
Luka Perkovdff289642012-05-27 11:44:51 +00001558
Marek Behúnfa9caec2021-09-24 23:07:00 +02001559 image_ver = kwbimage_version(img);
Pali Rohárb572ac42021-07-23 11:14:22 +02001560 if (image_ver != 0 && image_ver != 1) {
Stefan Roesec74165d2015-09-29 09:19:59 +02001561 fprintf(stderr, "Invalid image header version\n");
Marek Behún3e6117e2021-09-24 23:07:12 +02001562 goto err;
Luka Perkovdff289642012-05-27 11:44:51 +00001563 }
1564
Marek Behúnd1b0b032021-09-24 23:07:01 +02001565 hdrsz = kwbheader_size(hdr);
Stefan Roesec74165d2015-09-29 09:19:59 +02001566
Marek Behún3e6117e2021-09-24 23:07:12 +02001567 if (*size < hdrsz)
1568 goto err;
Pali Rohár12281162021-07-23 11:14:21 +02001569
Marek Behúnd1b0b032021-09-24 23:07:01 +02001570 csum = kwboot_hdr_csum8(hdr) - hdr->checksum;
Marek Behún3e6117e2021-09-24 23:07:12 +02001571 if (csum != hdr->checksum)
1572 goto err;
Stefan Roesec74165d2015-09-29 09:19:59 +02001573
Pali Rohár88255af2021-09-24 23:06:58 +02001574 srcaddr = le32_to_cpu(hdr->srcaddr);
1575
1576 switch (hdr->blockid) {
1577 case IBR_HDR_SATA_ID:
Marek Behún3e6117e2021-09-24 23:07:12 +02001578 if (srcaddr < 1)
1579 goto err;
1580
Pali Rohár88255af2021-09-24 23:06:58 +02001581 hdr->srcaddr = cpu_to_le32((srcaddr - 1) * 512);
1582 break;
1583
1584 case IBR_HDR_SDIO_ID:
1585 hdr->srcaddr = cpu_to_le32(srcaddr * 512);
1586 break;
1587
1588 case IBR_HDR_PEX_ID:
1589 if (srcaddr == 0xFFFFFFFF)
1590 hdr->srcaddr = cpu_to_le32(hdrsz);
1591 break;
Pali Rohár398d4152021-09-24 23:06:59 +02001592
1593 case IBR_HDR_SPI_ID:
1594 if (hdr->destaddr == cpu_to_le32(0xFFFFFFFF)) {
1595 kwboot_printv("Patching destination and execution addresses from SPI/NOR XIP area to DDR area 0x00800000\n");
1596 hdr->destaddr = cpu_to_le32(0x00800000);
1597 hdr->execaddr = cpu_to_le32(0x00800000);
1598 }
1599 break;
Pali Rohár88255af2021-09-24 23:06:58 +02001600 }
1601
Pali Rohárd9355bf2021-09-24 23:07:03 +02001602 if (hdrsz > le32_to_cpu(hdr->srcaddr) ||
Marek Behún3e6117e2021-09-24 23:07:12 +02001603 *size < le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize))
1604 goto err;
Pali Rohárd9355bf2021-09-24 23:07:03 +02001605
Pali Rohár0b659e52021-10-25 15:12:55 +02001606 if (kwboot_img_csum32(img) != *kwboot_img_csum32_ptr(img))
1607 goto err;
1608
Pali Rohár5725e0c2021-09-24 23:06:57 +02001609 is_secure = kwboot_img_is_secure(img);
Luka Perkovdff289642012-05-27 11:44:51 +00001610
Pali Rohár5725e0c2021-09-24 23:06:57 +02001611 if (hdr->blockid != IBR_HDR_UART_ID) {
1612 if (is_secure) {
1613 fprintf(stderr,
1614 "Image has secure header with signature for non-UART booting\n");
Marek Behún3e6117e2021-09-24 23:07:12 +02001615 goto err;
Pali Rohár5725e0c2021-09-24 23:06:57 +02001616 }
1617
1618 kwboot_printv("Patching image boot signature to UART\n");
1619 hdr->blockid = IBR_HDR_UART_ID;
1620 }
Luka Perkovdff289642012-05-27 11:44:51 +00001621
Pali Rohár3024ebd2021-10-22 12:37:47 +02001622 if (!is_secure) {
Pali Rohár71db3622021-10-25 15:12:58 +02001623 if (image_ver == 1) {
1624 /*
1625 * Tell BootROM to send BootROM messages to UART port
1626 * number 0 (used also for UART booting) with default
1627 * baudrate (which should be 115200) and do not touch
1628 * UART MPP configuration.
1629 */
1630 hdr->options &= ~0x1F;
1631 hdr->options |= MAIN_HDR_V1_OPT_BAUD_DEFAULT;
1632 hdr->options |= 0 << 3;
1633 }
Pali Rohár3024ebd2021-10-22 12:37:47 +02001634 if (image_ver == 0)
1635 ((struct main_hdr_v0 *)img)->nandeccmode = IBR_HDR_ECC_DISABLED;
1636 hdr->nandpagesize = 0;
1637 }
1638
Pali Rohár2a8b7692021-09-24 23:07:05 +02001639 if (baudrate) {
Pali Rohár2a8b7692021-09-24 23:07:05 +02001640 if (image_ver == 0) {
1641 fprintf(stderr,
1642 "Cannot inject code for changing baudrate into v0 image header\n");
Marek Behún3e6117e2021-09-24 23:07:12 +02001643 goto err;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001644 }
1645
1646 if (is_secure) {
1647 fprintf(stderr,
1648 "Cannot inject code for changing baudrate into image with secure header\n");
Marek Behún3e6117e2021-09-24 23:07:12 +02001649 goto err;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001650 }
1651
1652 /*
1653 * First inject code that changes the baudrate from the default
1654 * value of 115200 Bd to requested value. This code is inserted
1655 * as a new opt hdr, so it is executed by BootROM after the
1656 * header part is received.
1657 */
1658 kwboot_printv("Injecting binary header code for changing baudrate to %d Bd\n",
1659 baudrate);
Pali Roháraed39f22021-10-25 15:12:56 +02001660 _inject_baudrate_change_code(img, size, 0, 115200, baudrate);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001661
1662 /*
1663 * Now inject code that changes the baudrate back to 115200 Bd.
Pali Roháraed39f22021-10-25 15:12:56 +02001664 * This code is appended after the data part of the image, and
1665 * execaddr is changed so that it is executed before U-Boot
1666 * proper.
Pali Rohár2a8b7692021-09-24 23:07:05 +02001667 */
1668 kwboot_printv("Injecting code for changing baudrate back\n");
Pali Roháraed39f22021-10-25 15:12:56 +02001669 _inject_baudrate_change_code(img, size, 1, baudrate, 115200);
Pali Rohár2a8b7692021-09-24 23:07:05 +02001670
Pali Rohárf625a222021-10-25 15:12:57 +02001671 /* Update the 32-bit data checksum */
1672 *kwboot_img_csum32_ptr(img) = kwboot_img_csum32(img);
1673
Pali Rohár2a8b7692021-09-24 23:07:05 +02001674 /* recompute header size */
1675 hdrsz = kwbheader_size(hdr);
1676 }
1677
Pali Rohárd9355bf2021-09-24 23:07:03 +02001678 if (hdrsz % KWBOOT_XM_BLKSZ) {
Pali Rohár085d9ce2021-10-25 15:13:00 +02001679 size_t grow = KWBOOT_XM_BLKSZ - hdrsz % KWBOOT_XM_BLKSZ;
Pali Rohárd9355bf2021-09-24 23:07:03 +02001680
1681 if (is_secure) {
1682 fprintf(stderr, "Cannot align image with secure header\n");
Marek Behún3e6117e2021-09-24 23:07:12 +02001683 goto err;
Pali Rohárd9355bf2021-09-24 23:07:03 +02001684 }
1685
1686 kwboot_printv("Aligning image header to Xmodem block size\n");
Pali Rohár085d9ce2021-10-25 15:13:00 +02001687 kwboot_img_grow_hdr(img, size, grow);
Pali Rohárd9355bf2021-09-24 23:07:03 +02001688 }
1689
Marek Behúnd1b0b032021-09-24 23:07:01 +02001690 hdr->checksum = kwboot_hdr_csum8(hdr) - csum;
Luka Perkovdff289642012-05-27 11:44:51 +00001691
Pali Rohárd9355bf2021-09-24 23:07:03 +02001692 *size = le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize);
Marek Behún3e6117e2021-09-24 23:07:12 +02001693 return 0;
1694err:
1695 errno = EINVAL;
1696 return -1;
Luka Perkovdff289642012-05-27 11:44:51 +00001697}
1698
1699static void
1700kwboot_usage(FILE *stream, char *progname)
1701{
1702 fprintf(stream,
Kevin Smith6c7c1ba2016-02-16 21:28:17 +00001703 "Usage: %s [OPTIONS] [-b <image> | -D <image> ] [-B <baud> ] <TTY>\n",
Stefan Roesebb5c4282014-10-22 12:13:21 +02001704 progname);
Luka Perkovdff289642012-05-27 11:44:51 +00001705 fprintf(stream, "\n");
Stefan Roesebb5c4282014-10-22 12:13:21 +02001706 fprintf(stream,
1707 " -b <image>: boot <image> with preamble (Kirkwood, Armada 370/XP)\n");
Stefan Roesebb5c4282014-10-22 12:13:21 +02001708 fprintf(stream,
1709 " -D <image>: boot <image> without preamble (Dove)\n");
1710 fprintf(stream, " -d: enter debug mode\n");
1711 fprintf(stream, " -a: use timings for Armada XP\n");
Stefan Roesef7f509d2015-05-29 13:25:04 +02001712 fprintf(stream, " -q <req-delay>: use specific request-delay\n");
1713 fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
Kevin Smith4d31a842016-02-16 21:28:19 +00001714 fprintf(stream,
1715 " -o <block-timeo>: use specific xmodem block timeout\n");
Luka Perkovdff289642012-05-27 11:44:51 +00001716 fprintf(stream, "\n");
1717 fprintf(stream, " -t: mini terminal\n");
1718 fprintf(stream, "\n");
1719 fprintf(stream, " -B <baud>: set baud rate\n");
1720 fprintf(stream, "\n");
1721}
1722
1723int
1724main(int argc, char **argv)
1725{
1726 const char *ttypath, *imgpath;
Pali Rohár4d276012021-09-24 23:06:55 +02001727 int rv, rc, tty, term;
Luka Perkovdff289642012-05-27 11:44:51 +00001728 void *bootmsg;
Stefan Roesebb5c4282014-10-22 12:13:21 +02001729 void *debugmsg;
Luka Perkovdff289642012-05-27 11:44:51 +00001730 void *img;
1731 size_t size;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001732 size_t after_img_rsv;
1733 int baudrate;
Pali Rohár48953362022-01-25 18:13:07 +01001734 int prev_optind;
1735 int c;
Luka Perkovdff289642012-05-27 11:44:51 +00001736
1737 rv = 1;
1738 tty = -1;
1739 bootmsg = NULL;
Stefan Roesebb5c4282014-10-22 12:13:21 +02001740 debugmsg = NULL;
Luka Perkovdff289642012-05-27 11:44:51 +00001741 imgpath = NULL;
1742 img = NULL;
1743 term = 0;
Luka Perkovdff289642012-05-27 11:44:51 +00001744 size = 0;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001745 after_img_rsv = KWBOOT_XM_BLKSZ;
1746 baudrate = 115200;
Luka Perkovdff289642012-05-27 11:44:51 +00001747
Pali Rohár73ae7aa2021-11-05 23:30:42 +01001748 printf("kwboot version %s\n", PLAIN_VERSION);
1749
Luka Perkovdff289642012-05-27 11:44:51 +00001750 kwboot_verbose = isatty(STDOUT_FILENO);
1751
1752 do {
Pali Rohár48953362022-01-25 18:13:07 +01001753 prev_optind = optind;
1754 c = getopt(argc, argv, "hbptaB:dD:q:s:o:");
Luka Perkovdff289642012-05-27 11:44:51 +00001755 if (c < 0)
1756 break;
1757
1758 switch (c) {
1759 case 'b':
Pali Rohár48953362022-01-25 18:13:07 +01001760 if (imgpath || bootmsg || debugmsg)
1761 goto usage;
Luka Perkovdff289642012-05-27 11:44:51 +00001762 bootmsg = kwboot_msg_boot;
Pali Rohár48953362022-01-25 18:13:07 +01001763 if (prev_optind == optind)
1764 goto usage;
1765 if (argv[optind] && argv[optind][0] != '-')
1766 imgpath = argv[optind++];
Luka Perkovdff289642012-05-27 11:44:51 +00001767 break;
1768
Stefan Roesebb5c4282014-10-22 12:13:21 +02001769 case 'D':
Pali Rohár48953362022-01-25 18:13:07 +01001770 if (imgpath || bootmsg || debugmsg)
1771 goto usage;
Stefan Roesebb5c4282014-10-22 12:13:21 +02001772 bootmsg = NULL;
1773 imgpath = optarg;
1774 break;
1775
1776 case 'd':
Pali Rohár48953362022-01-25 18:13:07 +01001777 if (imgpath || bootmsg || debugmsg)
1778 goto usage;
Stefan Roesebb5c4282014-10-22 12:13:21 +02001779 debugmsg = kwboot_msg_debug;
1780 break;
1781
Luka Perkovdff289642012-05-27 11:44:51 +00001782 case 'p':
Pali Rohár4d276012021-09-24 23:06:55 +02001783 /* nop, for backward compatibility */
Luka Perkovdff289642012-05-27 11:44:51 +00001784 break;
1785
1786 case 't':
1787 term = 1;
1788 break;
1789
Stefan Roesebb5c4282014-10-22 12:13:21 +02001790 case 'a':
1791 msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
1792 msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
1793 break;
1794
Stefan Roesef7f509d2015-05-29 13:25:04 +02001795 case 'q':
1796 msg_req_delay = atoi(optarg);
1797 break;
1798
1799 case 's':
1800 msg_rsp_timeo = atoi(optarg);
1801 break;
1802
Kevin Smith4d31a842016-02-16 21:28:19 +00001803 case 'o':
1804 blk_rsp_timeo = atoi(optarg);
1805 break;
1806
Luka Perkovdff289642012-05-27 11:44:51 +00001807 case 'B':
Pali Rohár2a8b7692021-09-24 23:07:05 +02001808 baudrate = atoi(optarg);
Luka Perkovdff289642012-05-27 11:44:51 +00001809 break;
1810
1811 case 'h':
1812 rv = 0;
1813 default:
1814 goto usage;
1815 }
1816 } while (1);
1817
Stefan Roesebb5c4282014-10-22 12:13:21 +02001818 if (!bootmsg && !term && !debugmsg)
Luka Perkovdff289642012-05-27 11:44:51 +00001819 goto usage;
1820
Luka Perkovdff289642012-05-27 11:44:51 +00001821 ttypath = argv[optind++];
1822
Pali Rohár48953362022-01-25 18:13:07 +01001823 if (optind != argc)
1824 goto usage;
1825
Pali Rohár2a8b7692021-09-24 23:07:05 +02001826 tty = kwboot_open_tty(ttypath, imgpath ? 115200 : baudrate);
Luka Perkovdff289642012-05-27 11:44:51 +00001827 if (tty < 0) {
1828 perror(ttypath);
1829 goto out;
1830 }
1831
Pali Rohár2a8b7692021-09-24 23:07:05 +02001832 if (baudrate == 115200)
1833 /* do not change baudrate during Xmodem to the same value */
1834 baudrate = 0;
1835 else
1836 /* ensure we have enough space for baudrate change code */
Pali Rohár6303a232021-10-27 20:57:02 +02001837 after_img_rsv += sizeof(struct opt_hdr_v1) + 8 + 16 +
1838 sizeof(kwboot_baud_code_binhdr_pre) +
1839 sizeof(kwboot_baud_code) +
1840 sizeof(kwboot_baud_code_binhdr_post) +
Pali Rohárd8774392021-10-25 15:12:54 +02001841 KWBOOT_XM_BLKSZ +
Pali Rohárd8774392021-10-25 15:12:54 +02001842 sizeof(kwboot_baud_code) +
Pali Rohár6303a232021-10-27 20:57:02 +02001843 sizeof(kwboot_baud_code_data_jump) +
Pali Rohárd8774392021-10-25 15:12:54 +02001844 KWBOOT_XM_BLKSZ;
Pali Rohár2a8b7692021-09-24 23:07:05 +02001845
Luka Perkovdff289642012-05-27 11:44:51 +00001846 if (imgpath) {
Pali Rohár2a8b7692021-09-24 23:07:05 +02001847 img = kwboot_read_image(imgpath, &size, after_img_rsv);
Luka Perkovdff289642012-05-27 11:44:51 +00001848 if (!img) {
1849 perror(imgpath);
1850 goto out;
1851 }
Luka Perkovdff289642012-05-27 11:44:51 +00001852
Pali Rohár2a8b7692021-09-24 23:07:05 +02001853 rc = kwboot_img_patch(img, &size, baudrate);
Luka Perkovdff289642012-05-27 11:44:51 +00001854 if (rc) {
1855 fprintf(stderr, "%s: Invalid image.\n", imgpath);
1856 goto out;
1857 }
1858 }
1859
Stefan Roesebb5c4282014-10-22 12:13:21 +02001860 if (debugmsg) {
1861 rc = kwboot_debugmsg(tty, debugmsg);
1862 if (rc) {
1863 perror("debugmsg");
1864 goto out;
1865 }
Willy Tarreaue8f8a7c2018-07-03 12:10:30 -04001866 } else if (bootmsg) {
Luka Perkovdff289642012-05-27 11:44:51 +00001867 rc = kwboot_bootmsg(tty, bootmsg);
1868 if (rc) {
1869 perror("bootmsg");
1870 goto out;
1871 }
1872 }
1873
1874 if (img) {
Pali Rohár2a8b7692021-09-24 23:07:05 +02001875 rc = kwboot_xmodem(tty, img, size, baudrate);
Luka Perkovdff289642012-05-27 11:44:51 +00001876 if (rc) {
1877 perror("xmodem");
1878 goto out;
1879 }
1880 }
1881
1882 if (term) {
1883 rc = kwboot_terminal(tty);
1884 if (rc && !(errno == EINTR)) {
1885 perror("terminal");
1886 goto out;
1887 }
1888 }
1889
1890 rv = 0;
1891out:
1892 if (tty >= 0)
1893 close(tty);
1894
1895 if (img)
Pali Rohárd9355bf2021-09-24 23:07:03 +02001896 free(img);
Luka Perkovdff289642012-05-27 11:44:51 +00001897
1898 return rv;
1899
1900usage:
1901 kwboot_usage(rv ? stderr : stdout, basename(argv[0]));
1902 goto out;
1903}