blob: b2c48812c3865801301ec43f9a6724e9a37cf77d [file] [log] [blame]
Luka Perkovd131ad62012-05-27 11:44:51 +00001/*
Stefan Roese84899e22014-10-22 12:13:21 +02002 * Boot a Marvell SoC, with Xmodem over UART0.
Marek Behúnb843aed2021-09-24 23:07:13 +02003 * supports Kirkwood, Dove, Armada 370, Armada XP, Armada 375, Armada 38x and
4 * Armada 39x
Luka Perkovd131ad62012-05-27 11:44:51 +00005 *
6 * (c) 2012 Daniel Stodden <daniel.stodden@gmail.com>
Pali Rohárcf8c9322021-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 Perkovd131ad62012-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 Roesef4db6c92016-01-07 14:12:04 +010015#include "kwbimage.h"
16#include "mkimage.h"
Pali Rohára050a862021-09-24 23:06:42 +020017#include "version.h"
Stefan Roesef4db6c92016-01-07 14:12:04 +010018
Luka Perkovd131ad62012-05-27 11:44:51 +000019#include <stdlib.h>
20#include <stdio.h>
21#include <string.h>
22#include <stdarg.h>
Stefan Roesef4db6c92016-01-07 14:12:04 +010023#include <image.h>
Luka Perkovd131ad62012-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ún12df7b72021-09-24 23:06:52 +020029#include <time.h>
Luka Perkovd131ad62012-05-27 11:44:51 +000030#include <sys/stat.h>
31
Pali Rohár93b55632021-09-24 23:07:06 +020032#ifdef __linux__
33#include "termios_linux.h"
34#else
35#include <termios.h>
36#endif
37
Luka Perkovd131ad62012-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 Roese84899e22014-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 Perkovd131ad62012-05-27 11:44:51 +000051#define KWBOOT_MSG_REQ_DELAY 10 /* ms */
52#define KWBOOT_MSG_RSP_TIMEO 50 /* ms */
53
Stefan Roese84899e22014-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 Perkovd131ad62012-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 */
66#define CAN 24 /* target/sender transfer cancellation */
67
Pali Rohár2ef87f72021-09-24 23:06:48 +020068#define KWBOOT_XM_BLKSZ 128 /* xmodem block size */
69
Luka Perkovd131ad62012-05-27 11:44:51 +000070struct kwboot_block {
71 uint8_t soh;
72 uint8_t pnum;
73 uint8_t _pnum;
Pali Rohár2ef87f72021-09-24 23:06:48 +020074 uint8_t data[KWBOOT_XM_BLKSZ];
Luka Perkovd131ad62012-05-27 11:44:51 +000075 uint8_t csum;
Pali Rohára107c612021-07-23 11:14:14 +020076} __packed;
Luka Perkovd131ad62012-05-27 11:44:51 +000077
78#define KWBOOT_BLK_RSP_TIMEO 1000 /* ms */
Marek Behún12df7b72021-09-24 23:06:52 +020079#define KWBOOT_HDR_RSP_TIMEO 10000 /* ms */
Luka Perkovd131ad62012-05-27 11:44:51 +000080
Pali Rohárca272042021-09-24 23:07:05 +020081/* ARM code making baudrate changing function return to original exec address */
82static unsigned char kwboot_pre_baud_code[] = {
83 /* exec_addr: */
84 0x00, 0x00, 0x00, 0x00, /* .word 0 */
85 0x0c, 0xe0, 0x1f, 0xe5, /* ldr lr, exec_addr */
86};
87
88/* ARM code for binary header injection to change baudrate */
89static 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) */
100 /* ; */
101 /* ; u32 set_baudrate(u32 old_b, u32 new_b) { */
102 /* ; const u8 *str = "$baudratechange"; */
103 /* ; u8 c; */
104 /* ; do { */
105 /* ; c = *str++; */
106 /* ; writel(UART_BASE + THR, c); */
107 /* ; } while (c); */
108 /* ; while */
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); */
122 /* ; msleep(1); */
123 /* ; return 0; */
124 /* ; } */
125
126 0xfe, 0x5f, 0x2d, 0xe9, /* push { r1 - r12, lr } */
127
128 /* ; r0 = UART_BASE */
129 0x02, 0x0a, 0xa0, 0xe3, /* mov r0, #0x2000 */
130 0x01, 0x00, 0x4d, 0xe3, /* movt r0, #0xd001 */
131
132 /* ; r2 = address of preamble string */
133 0xd0, 0x20, 0x8f, 0xe2, /* adr r2, preamble */
134
135 /* ; Send preamble string over UART */
136 /* .Lloop_preamble: */
137 /* */
138 /* ; Wait until Transmitter Holding is Empty */
139 /* .Lloop_thre: */
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 */
144
145 /* ; Put character into Transmitter FIFO */
146 /* ; r1 = *r2++ */
147 0x01, 0x10, 0xd2, 0xe4, /* ldrb r1, [r2], #1 */
148 /* ; UART_BASE[THR] = r1 */
149 0x00, 0x10, 0x80, 0xe5, /* str r1, [r0, #0x0] */
150
151 /* ; Loop until end of preamble string */
152 0x00, 0x00, 0x51, 0xe3, /* cmp r1, #0 */
153 0xf8, 0xff, 0xff, 0x1a, /* bne .Lloop_preamble */
154
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 */
161
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] */
167
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 */
177
178 /* ; Read old baudrate value */
179 /* ; r2 = old_baudrate */
180 0x8c, 0x20, 0x9f, 0xe5, /* ldr r2, old_baudrate */
181
182 /* ; Calculate base clock */
183 /* ; r1 = r2 * r1 */
184 0x92, 0x01, 0x01, 0xe0, /* mul r1, r2, r1 */
185
186 /* ; Read new baudrate value */
187 /* ; r2 = baudrate */
188 0x88, 0x20, 0x9f, 0xe5, /* ldr r2, baudrate */
189
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 */
196 /* .Lloop_div1: */
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 */
201 /* .Lloop_div2: */
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 */
209
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] */
215
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] */
221
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] */
227
228 /* ; Sleep 1ms ~~ 600000 cycles at 1200 MHz */
229 /* ; r1 = 600000 */
230 0x9f, 0x1d, 0xa0, 0xe3, /* mov r1, #0x27c0 */
231 0x09, 0x10, 0x40, 0xe3, /* movt r1, #0x0009 */
232 /* .Lloop_sleep: */
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 */
236
237 /* ; Return 0 - no error */
238 0x00, 0x00, 0xa0, 0xe3, /* mov r0, #0 */
239 0xfe, 0x9f, 0xbd, 0xe8, /* pop { r1 - r12, pc } */
240
241 /* ; Preamble string */
242 /* 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 /* ; Placeholder for old baudrate value */
249 /* old_baudrate: */
250 0x00, 0x00, 0x00, 0x00, /* .word 0 */
251
252 /* ; Placeholder for new baudrate value */
253 /* new_baudrate: */
254 0x00, 0x00, 0x00, 0x00, /* .word 0 */
255};
256
257#define KWBOOT_BAUDRATE_BIN_HEADER_SZ (sizeof(kwboot_baud_code) + \
Pali Rohára85a71d2021-10-21 16:46:06 +0200258 sizeof(struct opt_hdr_v1) + 8 + 16)
Pali Rohárca272042021-09-24 23:07:05 +0200259
260static const char kwb_baud_magic[16] = "$baudratechange";
261
Luka Perkovd131ad62012-05-27 11:44:51 +0000262static int kwboot_verbose;
263
Stefan Roese84899e22014-10-22 12:13:21 +0200264static int msg_req_delay = KWBOOT_MSG_REQ_DELAY;
265static int msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO;
Kevin Smith7497a6a2016-02-16 21:28:19 +0000266static int blk_rsp_timeo = KWBOOT_BLK_RSP_TIMEO;
Stefan Roese84899e22014-10-22 12:13:21 +0200267
Marek Behúne453bb42021-09-24 23:06:41 +0200268static ssize_t
269kwboot_write(int fd, const char *buf, size_t len)
270{
271 size_t tot = 0;
272
273 while (tot < len) {
274 ssize_t wr = write(fd, buf + tot, len - tot);
275
276 if (wr < 0)
277 return -1;
278
279 tot += wr;
280 }
281
282 return tot;
283}
284
Luka Perkovd131ad62012-05-27 11:44:51 +0000285static void
286kwboot_printv(const char *fmt, ...)
287{
288 va_list ap;
289
290 if (kwboot_verbose) {
291 va_start(ap, fmt);
292 vprintf(fmt, ap);
293 va_end(ap);
294 fflush(stdout);
295 }
296}
297
298static void
299__spinner(void)
300{
301 const char seq[] = { '-', '\\', '|', '/' };
302 const int div = 8;
303 static int state, bs;
304
305 if (state % div == 0) {
306 fputc(bs, stdout);
307 fputc(seq[state / div % sizeof(seq)], stdout);
308 fflush(stdout);
309 }
310
311 bs = '\b';
312 state++;
313}
314
315static void
316kwboot_spinner(void)
317{
318 if (kwboot_verbose)
319 __spinner();
320}
321
322static void
323__progress(int pct, char c)
324{
325 const int width = 70;
326 static const char *nl = "";
327 static int pos;
328
329 if (pos % width == 0)
330 printf("%s%3d %% [", nl, pct);
331
332 fputc(c, stdout);
333
334 nl = "]\n";
Pali Rohár5a1f8cb2021-09-24 23:06:46 +0200335 pos = (pos + 1) % width;
Luka Perkovd131ad62012-05-27 11:44:51 +0000336
337 if (pct == 100) {
Pali Rohár5a1f8cb2021-09-24 23:06:46 +0200338 while (pos && pos++ < width)
Luka Perkovd131ad62012-05-27 11:44:51 +0000339 fputc(' ', stdout);
340 fputs(nl, stdout);
Pali Rohár5a1f8cb2021-09-24 23:06:46 +0200341 nl = "";
342 pos = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +0000343 }
344
345 fflush(stdout);
346
347}
348
349static void
350kwboot_progress(int _pct, char c)
351{
352 static int pct;
353
354 if (_pct != -1)
355 pct = _pct;
356
357 if (kwboot_verbose)
358 __progress(pct, c);
Pali Rohár5a1f8cb2021-09-24 23:06:46 +0200359
360 if (pct == 100)
361 pct = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +0000362}
363
364static int
365kwboot_tty_recv(int fd, void *buf, size_t len, int timeo)
366{
367 int rc, nfds;
368 fd_set rfds;
369 struct timeval tv;
370 ssize_t n;
371
372 rc = -1;
373
374 FD_ZERO(&rfds);
375 FD_SET(fd, &rfds);
376
377 tv.tv_sec = 0;
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;
382 }
383
384 do {
385 nfds = select(fd + 1, &rfds, NULL, NULL, &tv);
386 if (nfds < 0)
387 goto out;
388 if (!nfds) {
389 errno = ETIMEDOUT;
390 goto out;
391 }
392
393 n = read(fd, buf, len);
Willy Tarreau4469bd72018-07-03 12:10:31 -0400394 if (n <= 0)
Luka Perkovd131ad62012-05-27 11:44:51 +0000395 goto out;
396
397 buf = (char *)buf + n;
398 len -= n;
399 } while (len > 0);
400
401 rc = 0;
402out:
403 return rc;
404}
405
406static int
407kwboot_tty_send(int fd, const void *buf, size_t len)
408{
Stefan Roese84899e22014-10-22 12:13:21 +0200409 if (!buf)
410 return 0;
411
Marek Behúne453bb42021-09-24 23:06:41 +0200412 if (kwboot_write(fd, buf, len) < 0)
413 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +0000414
Marek Behúne453bb42021-09-24 23:06:41 +0200415 return tcdrain(fd);
Luka Perkovd131ad62012-05-27 11:44:51 +0000416}
417
418static int
419kwboot_tty_send_char(int fd, unsigned char c)
420{
421 return kwboot_tty_send(fd, &c, 1);
422}
423
424static speed_t
Pali Rohárca272042021-09-24 23:07:05 +0200425kwboot_tty_baudrate_to_speed(int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000426{
427 switch (baudrate) {
Pali Rohárca272042021-09-24 23:07:05 +0200428#ifdef B4000000
429 case 4000000:
430 return B4000000;
431#endif
432#ifdef B3500000
433 case 3500000:
434 return B3500000;
435#endif
436#ifdef B3000000
437 case 3000000:
438 return B3000000;
439#endif
440#ifdef B2500000
441 case 2500000:
442 return B2500000;
443#endif
444#ifdef B2000000
445 case 2000000:
446 return B2000000;
447#endif
448#ifdef B1500000
449 case 1500000:
450 return B1500000;
451#endif
452#ifdef B1152000
453 case 1152000:
454 return B1152000;
455#endif
456#ifdef B1000000
457 case 1000000:
458 return B1000000;
459#endif
460#ifdef B921600
461 case 921600:
462 return B921600;
463#endif
464#ifdef B614400
465 case 614400:
466 return B614400;
467#endif
468#ifdef B576000
469 case 576000:
470 return B576000;
471#endif
472#ifdef B500000
473 case 500000:
474 return B500000;
475#endif
476#ifdef B460800
477 case 460800:
478 return B460800;
479#endif
480#ifdef B307200
481 case 307200:
482 return B307200;
483#endif
484#ifdef B230400
485 case 230400:
486 return B230400;
487#endif
488#ifdef B153600
489 case 153600:
490 return B153600;
491#endif
492#ifdef B115200
Luka Perkovd131ad62012-05-27 11:44:51 +0000493 case 115200:
494 return B115200;
Pali Rohárca272042021-09-24 23:07:05 +0200495#endif
496#ifdef B76800
497 case 76800:
498 return B76800;
499#endif
500#ifdef B57600
Luka Perkovd131ad62012-05-27 11:44:51 +0000501 case 57600:
502 return B57600;
Pali Rohárca272042021-09-24 23:07:05 +0200503#endif
504#ifdef B38400
Luka Perkovd131ad62012-05-27 11:44:51 +0000505 case 38400:
506 return B38400;
Pali Rohárca272042021-09-24 23:07:05 +0200507#endif
508#ifdef B19200
Luka Perkovd131ad62012-05-27 11:44:51 +0000509 case 19200:
510 return B19200;
Pali Rohárca272042021-09-24 23:07:05 +0200511#endif
512#ifdef B9600
Luka Perkovd131ad62012-05-27 11:44:51 +0000513 case 9600:
514 return B9600;
Pali Rohárca272042021-09-24 23:07:05 +0200515#endif
516#ifdef B4800
517 case 4800:
518 return B4800;
519#endif
520#ifdef B2400
521 case 2400:
522 return B2400;
523#endif
524#ifdef B1800
525 case 1800:
526 return B1800;
527#endif
528#ifdef B1200
529 case 1200:
530 return B1200;
531#endif
532#ifdef B600
533 case 600:
534 return B600;
535#endif
536#ifdef B300
537 case 300:
538 return B300;
539#endif
540#ifdef B200
541 case 200:
542 return B200;
543#endif
544#ifdef B150
545 case 150:
546 return B150;
547#endif
548#ifdef B134
549 case 134:
550 return B134;
551#endif
552#ifdef B110
553 case 110:
554 return B110;
555#endif
556#ifdef B75
557 case 75:
558 return B75;
559#endif
560#ifdef B50
561 case 50:
562 return B50;
563#endif
564 default:
Pali Rohár93b55632021-09-24 23:07:06 +0200565#ifdef BOTHER
566 return BOTHER;
567#else
Pali Rohárca272042021-09-24 23:07:05 +0200568 return B0;
Pali Rohár93b55632021-09-24 23:07:06 +0200569#endif
Luka Perkovd131ad62012-05-27 11:44:51 +0000570 }
Luka Perkovd131ad62012-05-27 11:44:51 +0000571}
572
573static int
Marek Behún99a3d0232021-09-24 23:07:07 +0200574_is_within_tolerance(int value, int reference, int tolerance)
575{
576 return 100 * value >= reference * (100 - tolerance) &&
577 100 * value <= reference * (100 + tolerance);
578}
579
580static int
Pali Rohárca272042021-09-24 23:07:05 +0200581kwboot_tty_change_baudrate(int fd, int baudrate)
582{
583 struct termios tio;
584 speed_t speed;
585 int rc;
586
587 rc = tcgetattr(fd, &tio);
588 if (rc)
589 return rc;
590
591 speed = kwboot_tty_baudrate_to_speed(baudrate);
592 if (speed == B0) {
593 errno = EINVAL;
594 return -1;
595 }
596
Pali Rohár93b55632021-09-24 23:07:06 +0200597#ifdef BOTHER
598 if (speed == BOTHER)
599 tio.c_ospeed = tio.c_ispeed = baudrate;
600#endif
601
Pali Rohárca272042021-09-24 23:07:05 +0200602 rc = cfsetospeed(&tio, speed);
603 if (rc)
604 return rc;
605
606 rc = cfsetispeed(&tio, speed);
607 if (rc)
608 return rc;
609
610 rc = tcsetattr(fd, TCSANOW, &tio);
611 if (rc)
612 return rc;
613
Marek Behún99a3d0232021-09-24 23:07:07 +0200614 rc = tcgetattr(fd, &tio);
615 if (rc)
616 return rc;
617
618 if (cfgetospeed(&tio) != speed || cfgetispeed(&tio) != speed)
619 goto baud_fail;
620
621#ifdef BOTHER
622 /*
623 * Check whether set baudrate is within 3% tolerance.
624 * If BOTHER is defined, Linux always fills out c_ospeed / c_ispeed
625 * with real values.
626 */
627 if (!_is_within_tolerance(tio.c_ospeed, baudrate, 3))
628 goto baud_fail;
629
630 if (!_is_within_tolerance(tio.c_ispeed, baudrate, 3))
631 goto baud_fail;
632#endif
633
Pali Rohárca272042021-09-24 23:07:05 +0200634 return 0;
Marek Behún99a3d0232021-09-24 23:07:07 +0200635
636baud_fail:
637 fprintf(stderr, "Could not set baudrate to requested value\n");
638 errno = EINVAL;
639 return -1;
Pali Rohárca272042021-09-24 23:07:05 +0200640}
641
642static int
643kwboot_open_tty(const char *path, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000644{
Pali Rohár911515b2021-09-24 23:07:10 +0200645 int rc, fd, flags;
Luka Perkovd131ad62012-05-27 11:44:51 +0000646 struct termios tio;
647
648 rc = -1;
649
Marek Behún5fa04f42021-09-24 23:07:11 +0200650 fd = open(path, O_RDWR | O_NOCTTY | O_NDELAY);
Luka Perkovd131ad62012-05-27 11:44:51 +0000651 if (fd < 0)
652 goto out;
653
Pali Rohárc704e0e2021-09-24 23:07:08 +0200654 rc = tcgetattr(fd, &tio);
655 if (rc)
656 goto out;
Luka Perkovd131ad62012-05-27 11:44:51 +0000657
Pali Rohárc704e0e2021-09-24 23:07:08 +0200658 cfmakeraw(&tio);
Marek Behún5fa04f42021-09-24 23:07:11 +0200659 tio.c_cflag |= CREAD | CLOCAL;
Pali Rohár2ecca3d2021-10-25 15:12:53 +0200660 tio.c_cflag &= ~(CSTOPB | HUPCL | CRTSCTS);
Luka Perkovd131ad62012-05-27 11:44:51 +0000661 tio.c_cc[VMIN] = 1;
Pali Rohár24a471b2021-09-24 23:07:09 +0200662 tio.c_cc[VTIME] = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +0000663
Luka Perkovd131ad62012-05-27 11:44:51 +0000664 rc = tcsetattr(fd, TCSANOW, &tio);
665 if (rc)
666 goto out;
667
Pali Rohár911515b2021-09-24 23:07:10 +0200668 flags = fcntl(fd, F_GETFL);
669 if (flags < 0)
670 goto out;
671
672 rc = fcntl(fd, F_SETFL, flags & ~O_NDELAY);
673 if (rc)
674 goto out;
675
Pali Rohárca272042021-09-24 23:07:05 +0200676 rc = kwboot_tty_change_baudrate(fd, baudrate);
677 if (rc)
678 goto out;
679
Luka Perkovd131ad62012-05-27 11:44:51 +0000680 rc = fd;
681out:
682 if (rc < 0) {
683 if (fd >= 0)
684 close(fd);
685 }
686
687 return rc;
688}
689
690static int
691kwboot_bootmsg(int tty, void *msg)
692{
693 int rc;
694 char c;
Jon Nettleton9ca6fae2018-08-13 18:24:38 +0300695 int count;
Luka Perkovd131ad62012-05-27 11:44:51 +0000696
Stefan Roese84899e22014-10-22 12:13:21 +0200697 if (msg == NULL)
698 kwboot_printv("Please reboot the target into UART boot mode...");
699 else
700 kwboot_printv("Sending boot message. Please reboot the target...");
Luka Perkovd131ad62012-05-27 11:44:51 +0000701
702 do {
703 rc = tcflush(tty, TCIOFLUSH);
704 if (rc)
705 break;
706
Jon Nettleton9ca6fae2018-08-13 18:24:38 +0300707 for (count = 0; count < 128; count++) {
708 rc = kwboot_tty_send(tty, msg, 8);
709 if (rc) {
710 usleep(msg_req_delay * 1000);
711 continue;
712 }
Luka Perkovd131ad62012-05-27 11:44:51 +0000713 }
714
Stefan Roese84899e22014-10-22 12:13:21 +0200715 rc = kwboot_tty_recv(tty, &c, 1, msg_rsp_timeo);
Luka Perkovd131ad62012-05-27 11:44:51 +0000716
717 kwboot_spinner();
718
719 } while (rc || c != NAK);
720
721 kwboot_printv("\n");
722
723 return rc;
724}
725
726static int
Stefan Roese84899e22014-10-22 12:13:21 +0200727kwboot_debugmsg(int tty, void *msg)
728{
729 int rc;
730
731 kwboot_printv("Sending debug message. Please reboot the target...");
732
733 do {
734 char buf[16];
735
736 rc = tcflush(tty, TCIOFLUSH);
737 if (rc)
738 break;
739
740 rc = kwboot_tty_send(tty, msg, 8);
741 if (rc) {
742 usleep(msg_req_delay * 1000);
743 continue;
744 }
745
746 rc = kwboot_tty_recv(tty, buf, 16, msg_rsp_timeo);
747
748 kwboot_spinner();
749
750 } while (rc);
751
752 kwboot_printv("\n");
753
754 return rc;
755}
756
Pali Rohárc5d666a2021-09-24 23:06:44 +0200757static size_t
Luka Perkovd131ad62012-05-27 11:44:51 +0000758kwboot_xm_makeblock(struct kwboot_block *block, const void *data,
759 size_t size, int pnum)
760{
Marek Behúnd8cc8512021-09-24 23:06:45 +0200761 size_t i, n;
Luka Perkovd131ad62012-05-27 11:44:51 +0000762
Stefan Roese84899e22014-10-22 12:13:21 +0200763 block->soh = SOH;
Luka Perkovd131ad62012-05-27 11:44:51 +0000764 block->pnum = pnum;
765 block->_pnum = ~block->pnum;
766
Pali Rohár2ef87f72021-09-24 23:06:48 +0200767 n = size < KWBOOT_XM_BLKSZ ? size : KWBOOT_XM_BLKSZ;
Luka Perkovd131ad62012-05-27 11:44:51 +0000768 memcpy(&block->data[0], data, n);
Pali Rohár2ef87f72021-09-24 23:06:48 +0200769 memset(&block->data[n], 0, KWBOOT_XM_BLKSZ - n);
Luka Perkovd131ad62012-05-27 11:44:51 +0000770
771 block->csum = 0;
772 for (i = 0; i < n; i++)
773 block->csum += block->data[i];
774
775 return n;
776}
777
Marek Behún12df7b72021-09-24 23:06:52 +0200778static uint64_t
779_now(void)
780{
781 struct timespec ts;
782
783 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
784 static int err_print;
785
786 if (!err_print) {
787 perror("clock_gettime() does not work");
788 err_print = 1;
789 }
790
791 /* this will just make the timeout not work */
792 return -1ULL;
793 }
794
795 return ts.tv_sec * 1000ULL + (ts.tv_nsec + 500000) / 1000000;
796}
797
Luka Perkovd131ad62012-05-27 11:44:51 +0000798static int
Marek Behún408ea612021-09-24 23:06:49 +0200799_is_xm_reply(char c)
800{
801 return c == ACK || c == NAK || c == CAN;
802}
803
804static int
Pali Rohár9cdc2642021-09-24 23:06:54 +0200805_xm_reply_to_error(int c)
806{
807 int rc = -1;
808
809 switch (c) {
810 case ACK:
811 rc = 0;
812 break;
813 case NAK:
814 errno = EBADMSG;
815 break;
816 case CAN:
817 errno = ECANCELED;
818 break;
819 default:
820 errno = EPROTO;
821 break;
822 }
823
824 return rc;
825}
826
827static int
Pali Rohárca272042021-09-24 23:07:05 +0200828kwboot_baud_magic_handle(int fd, char c, int baudrate)
829{
830 static size_t rcv_len;
831
832 if (rcv_len < sizeof(kwb_baud_magic)) {
833 /* try to recognize whole magic word */
834 if (c == kwb_baud_magic[rcv_len]) {
835 rcv_len++;
836 } else {
837 printf("%.*s%c", (int)rcv_len, kwb_baud_magic, c);
838 fflush(stdout);
839 rcv_len = 0;
840 }
841 }
842
843 if (rcv_len == sizeof(kwb_baud_magic)) {
844 /* magic word received */
845 kwboot_printv("\nChanging baudrate to %d Bd\n", baudrate);
846
847 return kwboot_tty_change_baudrate(fd, baudrate) ? : 1;
848 } else {
849 return 0;
850 }
851}
852
853static int
Pali Rohára6fcac22021-10-25 15:13:04 +0200854kwboot_xm_recv_reply(int fd, char *c, int nak_on_non_xm,
855 int allow_non_xm, int *non_xm_print,
Pali Rohárca272042021-09-24 23:07:05 +0200856 int baudrate, int *baud_changed)
Pali Rohár48b3ea62021-09-24 23:06:50 +0200857{
Marek Behún12df7b72021-09-24 23:06:52 +0200858 int timeout = allow_non_xm ? KWBOOT_HDR_RSP_TIMEO : blk_rsp_timeo;
Marek Behún819cd322021-09-24 23:06:53 +0200859 uint64_t recv_until = _now() + timeout;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200860 int rc;
861
862 while (1) {
Marek Behún12df7b72021-09-24 23:06:52 +0200863 rc = kwboot_tty_recv(fd, c, 1, timeout);
Pali Rohár48b3ea62021-09-24 23:06:50 +0200864 if (rc) {
865 if (errno != ETIMEDOUT)
866 return rc;
Marek Behún819cd322021-09-24 23:06:53 +0200867 else if (allow_non_xm && *non_xm_print)
Marek Behún12df7b72021-09-24 23:06:52 +0200868 return -1;
869 else
870 *c = NAK;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200871 }
872
873 /* If received xmodem reply, end. */
874 if (_is_xm_reply(*c))
875 break;
876
877 /*
Pali Rohárca272042021-09-24 23:07:05 +0200878 * If receiving/printing non-xmodem text output is allowed and
879 * such a byte was received, we want to increase receiving time
880 * and either:
881 * - print the byte, if it is not part of baudrate change magic
882 * sequence while baudrate change was requested (-B option)
883 * - change baudrate
Marek Behún819cd322021-09-24 23:06:53 +0200884 * Otherwise decrease timeout by time elapsed.
Pali Rohár48b3ea62021-09-24 23:06:50 +0200885 */
886 if (allow_non_xm) {
Marek Behún12df7b72021-09-24 23:06:52 +0200887 recv_until = _now() + timeout;
Pali Rohárca272042021-09-24 23:07:05 +0200888
889 if (baudrate && !*baud_changed) {
890 rc = kwboot_baud_magic_handle(fd, *c, baudrate);
891 if (rc == 1)
892 *baud_changed = 1;
893 else if (!rc)
894 *non_xm_print = 1;
895 else
896 return rc;
897 } else if (!baudrate || !*baud_changed) {
898 putchar(*c);
899 fflush(stdout);
900 *non_xm_print = 1;
901 }
Marek Behún819cd322021-09-24 23:06:53 +0200902 } else {
Pali Rohára6fcac22021-10-25 15:13:04 +0200903 if (nak_on_non_xm) {
904 *c = NAK;
905 break;
906 }
Marek Behún819cd322021-09-24 23:06:53 +0200907 timeout = recv_until - _now();
908 if (timeout < 0) {
909 errno = ETIMEDOUT;
910 return -1;
911 }
Pali Rohár48b3ea62021-09-24 23:06:50 +0200912 }
913 }
914
915 return 0;
916}
917
918static int
919kwboot_xm_sendblock(int fd, struct kwboot_block *block, int allow_non_xm,
Pali Rohárca272042021-09-24 23:07:05 +0200920 int *done_print, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000921{
Pali Rohárca272042021-09-24 23:07:05 +0200922 int non_xm_print, baud_changed;
923 int rc, err, retries;
Luka Perkovd131ad62012-05-27 11:44:51 +0000924 char c;
925
Pali Rohár48b3ea62021-09-24 23:06:50 +0200926 *done_print = 0;
Pali Rohár455c0d22021-10-27 20:56:58 +0200927 non_xm_print = 0;
928 baud_changed = 0;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200929
Pali Rohárd14a3422021-10-25 15:13:03 +0200930 retries = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +0000931 do {
932 rc = kwboot_tty_send(fd, block, sizeof(*block));
933 if (rc)
Pali Rohár00a1dee2021-09-24 23:06:43 +0200934 return rc;
Luka Perkovd131ad62012-05-27 11:44:51 +0000935
Pali Rohár48b3ea62021-09-24 23:06:50 +0200936 if (allow_non_xm && !*done_print) {
937 kwboot_progress(100, '.');
938 kwboot_printv("Done\n");
939 *done_print = 1;
940 }
Stefan Roese84899e22014-10-22 12:13:21 +0200941
Pali Rohára6fcac22021-10-25 15:13:04 +0200942 rc = kwboot_xm_recv_reply(fd, &c, retries < 3,
943 allow_non_xm, &non_xm_print,
Pali Rohárca272042021-09-24 23:07:05 +0200944 baudrate, &baud_changed);
Pali Rohár48b3ea62021-09-24 23:06:50 +0200945 if (rc)
Pali Rohárca272042021-09-24 23:07:05 +0200946 goto can;
Stefan Roese84899e22014-10-22 12:13:21 +0200947
Pali Rohár48b3ea62021-09-24 23:06:50 +0200948 if (!allow_non_xm && c != ACK)
Luka Perkovd131ad62012-05-27 11:44:51 +0000949 kwboot_progress(-1, '+');
Pali Rohárd14a3422021-10-25 15:13:03 +0200950 } while (c == NAK && retries++ < 16);
Luka Perkovd131ad62012-05-27 11:44:51 +0000951
Marek Behún2e81b3a2021-09-24 23:06:51 +0200952 if (non_xm_print)
953 kwboot_printv("\n");
954
Pali Rohárca272042021-09-24 23:07:05 +0200955 if (allow_non_xm && baudrate && !baud_changed) {
956 fprintf(stderr, "Baudrate was not changed\n");
957 rc = -1;
958 errno = EPROTO;
959 goto can;
960 }
961
Pali Rohár9cdc2642021-09-24 23:06:54 +0200962 return _xm_reply_to_error(c);
Pali Rohárca272042021-09-24 23:07:05 +0200963can:
964 err = errno;
965 kwboot_tty_send_char(fd, CAN);
966 kwboot_printv("\n");
967 errno = err;
968 return rc;
Pali Rohár9cdc2642021-09-24 23:06:54 +0200969}
Luka Perkovd131ad62012-05-27 11:44:51 +0000970
Pali Rohár9cdc2642021-09-24 23:06:54 +0200971static int
972kwboot_xm_finish(int fd)
973{
974 int rc, retries;
975 char c;
Luka Perkovd131ad62012-05-27 11:44:51 +0000976
Pali Rohár9cdc2642021-09-24 23:06:54 +0200977 kwboot_printv("Finishing transfer\n");
978
Pali Rohárd14a3422021-10-25 15:13:03 +0200979 retries = 0;
Pali Rohár9cdc2642021-09-24 23:06:54 +0200980 do {
981 rc = kwboot_tty_send_char(fd, EOT);
982 if (rc)
983 return rc;
984
Pali Rohára6fcac22021-10-25 15:13:04 +0200985 rc = kwboot_xm_recv_reply(fd, &c, retries < 3,
986 0, NULL, 0, NULL);
Pali Rohár9cdc2642021-09-24 23:06:54 +0200987 if (rc)
988 return rc;
Pali Rohárd14a3422021-10-25 15:13:03 +0200989 } while (c == NAK && retries++ < 16);
Pali Rohár9cdc2642021-09-24 23:06:54 +0200990
991 return _xm_reply_to_error(c);
Luka Perkovd131ad62012-05-27 11:44:51 +0000992}
993
994static int
Pali Rohár2ef87f72021-09-24 23:06:48 +0200995kwboot_xmodem_one(int tty, int *pnum, int header, const uint8_t *data,
Pali Rohárca272042021-09-24 23:07:05 +0200996 size_t size, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000997{
Pali Rohár48b3ea62021-09-24 23:06:50 +0200998 int done_print = 0;
Pali Rohár2ef87f72021-09-24 23:06:48 +0200999 size_t sent, left;
1000 int rc;
Luka Perkovd131ad62012-05-27 11:44:51 +00001001
Pali Rohár2ef87f72021-09-24 23:06:48 +02001002 kwboot_printv("Sending boot image %s (%zu bytes)...\n",
1003 header ? "header" : "data", size);
Luka Perkovd131ad62012-05-27 11:44:51 +00001004
Pali Rohár2ef87f72021-09-24 23:06:48 +02001005 left = size;
1006 sent = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001007
Pali Rohár2ef87f72021-09-24 23:06:48 +02001008 while (sent < size) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001009 struct kwboot_block block;
Pali Rohár48b3ea62021-09-24 23:06:50 +02001010 int last_block;
Pali Rohár2ef87f72021-09-24 23:06:48 +02001011 size_t blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001012
Pali Rohár2ef87f72021-09-24 23:06:48 +02001013 blksz = kwboot_xm_makeblock(&block, data, left, (*pnum)++);
1014 data += blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001015
Pali Rohár48b3ea62021-09-24 23:06:50 +02001016 last_block = (left <= blksz);
1017
1018 rc = kwboot_xm_sendblock(tty, &block, header && last_block,
Pali Rohárca272042021-09-24 23:07:05 +02001019 &done_print, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001020 if (rc)
1021 goto out;
1022
Pali Rohár2ef87f72021-09-24 23:06:48 +02001023 sent += blksz;
1024 left -= blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001025
Pali Rohár48b3ea62021-09-24 23:06:50 +02001026 if (!done_print)
1027 kwboot_progress(sent * 100 / size, '.');
Pali Rohár2ef87f72021-09-24 23:06:48 +02001028 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001029
Pali Rohár48b3ea62021-09-24 23:06:50 +02001030 if (!done_print)
1031 kwboot_printv("Done\n");
Pali Rohár2ef87f72021-09-24 23:06:48 +02001032
1033 return 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001034out:
Pali Rohárd5ba8db2021-09-24 23:06:47 +02001035 kwboot_printv("\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001036 return rc;
Pali Rohár2ef87f72021-09-24 23:06:48 +02001037}
Luka Perkovd131ad62012-05-27 11:44:51 +00001038
Pali Rohár2ef87f72021-09-24 23:06:48 +02001039static int
Pali Rohárca272042021-09-24 23:07:05 +02001040kwboot_xmodem(int tty, const void *_img, size_t size, int baudrate)
Pali Rohár2ef87f72021-09-24 23:06:48 +02001041{
1042 const uint8_t *img = _img;
1043 int rc, pnum;
1044 size_t hdrsz;
1045
Marek Behúnfe2fd732021-09-24 23:07:01 +02001046 hdrsz = kwbheader_size(img);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001047
1048 kwboot_printv("Waiting 2s and flushing tty\n");
1049 sleep(2); /* flush isn't effective without it */
1050 tcflush(tty, TCIOFLUSH);
1051
1052 pnum = 1;
1053
Pali Rohárca272042021-09-24 23:07:05 +02001054 rc = kwboot_xmodem_one(tty, &pnum, 1, img, hdrsz, baudrate);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001055 if (rc)
1056 return rc;
1057
1058 img += hdrsz;
1059 size -= hdrsz;
1060
Pali Rohárca272042021-09-24 23:07:05 +02001061 rc = kwboot_xmodem_one(tty, &pnum, 0, img, size, 0);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001062 if (rc)
1063 return rc;
1064
Pali Rohárca272042021-09-24 23:07:05 +02001065 rc = kwboot_xm_finish(tty);
1066 if (rc)
1067 return rc;
1068
1069 if (baudrate) {
1070 char buf[sizeof(kwb_baud_magic)];
1071
Pali Rohár8e2e7ca2021-10-25 15:12:59 +02001072 kwboot_printv("Waiting 1s for baudrate change magic\n");
Pali Rohárca272042021-09-24 23:07:05 +02001073 rc = kwboot_tty_recv(tty, buf, sizeof(buf), 1000);
1074 if (rc)
1075 return rc;
1076
1077 if (memcmp(buf, kwb_baud_magic, sizeof(buf))) {
1078 errno = EPROTO;
1079 return -1;
1080 }
1081
1082 kwboot_printv("\nChanging baudrate back to 115200 Bd\n\n");
1083 rc = kwboot_tty_change_baudrate(tty, 115200);
1084 if (rc)
1085 return rc;
1086 }
1087
1088 return 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001089}
1090
1091static int
Marek Behún46237e62021-09-24 23:06:40 +02001092kwboot_term_pipe(int in, int out, const char *quit, int *s)
Luka Perkovd131ad62012-05-27 11:44:51 +00001093{
Marek Behúne453bb42021-09-24 23:06:41 +02001094 ssize_t nin;
Luka Perkovd131ad62012-05-27 11:44:51 +00001095 char _buf[128], *buf = _buf;
1096
Pali Rohár43fef8d2021-07-23 11:14:17 +02001097 nin = read(in, buf, sizeof(_buf));
Willy Tarreau4469bd72018-07-03 12:10:31 -04001098 if (nin <= 0)
Luka Perkovd131ad62012-05-27 11:44:51 +00001099 return -1;
1100
1101 if (quit) {
1102 int i;
1103
1104 for (i = 0; i < nin; i++) {
1105 if (*buf == quit[*s]) {
1106 (*s)++;
1107 if (!quit[*s])
1108 return 0;
1109 buf++;
1110 nin--;
Pali Rohárb943eee2021-07-23 11:14:20 +02001111 } else {
Marek Behúne453bb42021-09-24 23:06:41 +02001112 if (kwboot_write(out, quit, *s) < 0)
1113 return -1;
1114 *s = 0;
Pali Rohárb943eee2021-07-23 11:14:20 +02001115 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001116 }
1117 }
1118
Marek Behúne453bb42021-09-24 23:06:41 +02001119 if (kwboot_write(out, buf, nin) < 0)
1120 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001121
1122 return 0;
1123}
1124
1125static int
1126kwboot_terminal(int tty)
1127{
1128 int rc, in, s;
Marek Behún46237e62021-09-24 23:06:40 +02001129 const char *quit = "\34c";
Luka Perkovd131ad62012-05-27 11:44:51 +00001130 struct termios otio, tio;
1131
1132 rc = -1;
1133
1134 in = STDIN_FILENO;
1135 if (isatty(in)) {
1136 rc = tcgetattr(in, &otio);
1137 if (!rc) {
1138 tio = otio;
1139 cfmakeraw(&tio);
1140 rc = tcsetattr(in, TCSANOW, &tio);
1141 }
1142 if (rc) {
1143 perror("tcsetattr");
1144 goto out;
1145 }
1146
1147 kwboot_printv("[Type Ctrl-%c + %c to quit]\r\n",
Marek Behún5fa04f42021-09-24 23:07:11 +02001148 quit[0] | 0100, quit[1]);
Luka Perkovd131ad62012-05-27 11:44:51 +00001149 } else
1150 in = -1;
1151
1152 rc = 0;
1153 s = 0;
1154
1155 do {
1156 fd_set rfds;
1157 int nfds = 0;
1158
Pali Rohár0a143412021-10-25 15:12:52 +02001159 FD_ZERO(&rfds);
Luka Perkovd131ad62012-05-27 11:44:51 +00001160 FD_SET(tty, &rfds);
1161 nfds = nfds < tty ? tty : nfds;
1162
1163 if (in >= 0) {
1164 FD_SET(in, &rfds);
1165 nfds = nfds < in ? in : nfds;
1166 }
1167
1168 nfds = select(nfds + 1, &rfds, NULL, NULL, NULL);
1169 if (nfds < 0)
1170 break;
1171
1172 if (FD_ISSET(tty, &rfds)) {
1173 rc = kwboot_term_pipe(tty, STDOUT_FILENO, NULL, NULL);
1174 if (rc)
1175 break;
1176 }
1177
Marek Behúnf30cb0d2021-09-24 23:06:39 +02001178 if (in >= 0 && FD_ISSET(in, &rfds)) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001179 rc = kwboot_term_pipe(in, tty, quit, &s);
1180 if (rc)
1181 break;
1182 }
1183 } while (quit[s] != 0);
1184
Pali Rohárec0fe5b2021-07-23 11:14:18 +02001185 if (in >= 0)
1186 tcsetattr(in, TCSANOW, &otio);
Pali Rohár49a0a3b2021-07-23 11:14:19 +02001187 printf("\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001188out:
1189 return rc;
1190}
1191
1192static void *
Pali Rohár04ced022021-09-24 23:07:03 +02001193kwboot_read_image(const char *path, size_t *size, size_t reserve)
Luka Perkovd131ad62012-05-27 11:44:51 +00001194{
Pali Rohárddc04fa2021-09-24 23:06:55 +02001195 int rc, fd;
Luka Perkovd131ad62012-05-27 11:44:51 +00001196 struct stat st;
1197 void *img;
Pali Rohár04ced022021-09-24 23:07:03 +02001198 off_t tot;
Luka Perkovd131ad62012-05-27 11:44:51 +00001199
1200 rc = -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001201 img = NULL;
1202
1203 fd = open(path, O_RDONLY);
1204 if (fd < 0)
1205 goto out;
1206
1207 rc = fstat(fd, &st);
1208 if (rc)
1209 goto out;
1210
Pali Rohár04ced022021-09-24 23:07:03 +02001211 img = malloc(st.st_size + reserve);
1212 if (!img)
Luka Perkovd131ad62012-05-27 11:44:51 +00001213 goto out;
Pali Rohár04ced022021-09-24 23:07:03 +02001214
1215 tot = 0;
1216 while (tot < st.st_size) {
1217 ssize_t rd = read(fd, img + tot, st.st_size - tot);
1218
1219 if (rd < 0)
1220 goto out;
1221
1222 tot += rd;
1223
1224 if (!rd && tot < st.st_size) {
1225 errno = EIO;
1226 goto out;
1227 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001228 }
1229
1230 rc = 0;
1231 *size = st.st_size;
1232out:
1233 if (rc && img) {
Pali Rohár04ced022021-09-24 23:07:03 +02001234 free(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001235 img = NULL;
1236 }
1237 if (fd >= 0)
1238 close(fd);
1239
1240 return img;
1241}
1242
1243static uint8_t
Marek Behúnfe2fd732021-09-24 23:07:01 +02001244kwboot_hdr_csum8(const void *hdr)
Luka Perkovd131ad62012-05-27 11:44:51 +00001245{
Marek Behúnfe2fd732021-09-24 23:07:01 +02001246 const uint8_t *data = hdr;
1247 uint8_t csum;
1248 size_t size;
1249
1250 size = kwbheader_size_for_csum(hdr);
Luka Perkovd131ad62012-05-27 11:44:51 +00001251
1252 for (csum = 0; size-- > 0; data++)
1253 csum += *data;
1254
1255 return csum;
1256}
1257
Pali Rohárad9a3ac2021-10-25 15:12:55 +02001258static uint32_t *
1259kwboot_img_csum32_ptr(void *img)
1260{
1261 struct main_hdr_v1 *hdr = img;
1262 uint32_t datasz;
1263
1264 datasz = le32_to_cpu(hdr->blocksize) - sizeof(uint32_t);
1265
1266 return img + le32_to_cpu(hdr->srcaddr) + datasz;
1267}
1268
1269static uint32_t
1270kwboot_img_csum32(const void *img)
1271{
1272 const struct main_hdr_v1 *hdr = img;
1273 uint32_t datasz, csum = 0;
1274 const uint32_t *data;
1275
1276 datasz = le32_to_cpu(hdr->blocksize) - sizeof(csum);
1277 if (datasz % sizeof(uint32_t))
1278 return 0;
1279
1280 data = img + le32_to_cpu(hdr->srcaddr);
1281 while (datasz > 0) {
1282 csum += le32_to_cpu(*data++);
1283 datasz -= 4;
1284 }
1285
1286 return cpu_to_le32(csum);
1287}
1288
Luka Perkovd131ad62012-05-27 11:44:51 +00001289static int
Pali Rohár550c9302021-09-24 23:06:57 +02001290kwboot_img_is_secure(void *img)
1291{
1292 struct opt_hdr_v1 *ohdr;
1293
1294 for_each_opt_hdr_v1 (ohdr, img)
1295 if (ohdr->headertype == OPT_HDR_V1_SECURE_TYPE)
1296 return 1;
1297
1298 return 0;
1299}
1300
Pali Rohárca272042021-09-24 23:07:05 +02001301static void *
Pali Rohár063cb352021-10-25 15:12:56 +02001302kwboot_img_grow_data_right(void *img, size_t *size, size_t grow)
Pali Rohárca272042021-09-24 23:07:05 +02001303{
Pali Rohárca272042021-09-24 23:07:05 +02001304 struct main_hdr_v1 *hdr = img;
Pali Rohár063cb352021-10-25 15:12:56 +02001305 void *result;
Pali Rohárca272042021-09-24 23:07:05 +02001306
Pali Rohár063cb352021-10-25 15:12:56 +02001307 /*
1308 * 32-bit checksum comes after end of image code, so we will be putting
1309 * new code there. So we get this pointer and then increase data size
1310 * (since increasing data size changes kwboot_img_csum32_ptr() return
1311 * value).
1312 */
1313 result = kwboot_img_csum32_ptr(img);
Pali Rohárca272042021-09-24 23:07:05 +02001314 hdr->blocksize = cpu_to_le32(le32_to_cpu(hdr->blocksize) + grow);
Pali Rohár063cb352021-10-25 15:12:56 +02001315 *size += grow;
Pali Rohárca272042021-09-24 23:07:05 +02001316
Pali Rohár063cb352021-10-25 15:12:56 +02001317 return result;
Pali Rohárca272042021-09-24 23:07:05 +02001318}
1319
Pali Rohár04ced022021-09-24 23:07:03 +02001320static void
1321kwboot_img_grow_hdr(void *img, size_t *size, size_t grow)
1322{
1323 uint32_t hdrsz, datasz, srcaddr;
1324 struct main_hdr_v1 *hdr = img;
Pali Rohárd656f5a2021-10-25 15:13:02 +02001325 struct opt_hdr_v1 *ohdr;
Pali Rohár04ced022021-09-24 23:07:03 +02001326 uint8_t *data;
1327
1328 srcaddr = le32_to_cpu(hdr->srcaddr);
1329
Pali Rohárd656f5a2021-10-25 15:13:02 +02001330 /* calculate real used space in kwbimage header */
1331 if (kwbimage_version(img) == 0) {
1332 hdrsz = kwbheader_size(img);
1333 } else {
1334 hdrsz = sizeof(*hdr);
1335 for_each_opt_hdr_v1 (ohdr, hdr)
1336 hdrsz += opt_hdr_v1_size(ohdr);
1337 }
1338
Pali Rohár04ced022021-09-24 23:07:03 +02001339 data = (uint8_t *)img + srcaddr;
1340 datasz = *size - srcaddr;
1341
1342 /* only move data if there is not enough space */
1343 if (hdrsz + grow > srcaddr) {
1344 size_t need = hdrsz + grow - srcaddr;
1345
1346 /* move data by enough bytes */
1347 memmove(data + need, data, datasz);
1348
1349 hdr->srcaddr = cpu_to_le32(srcaddr + need);
1350 *size += need;
1351 }
1352
1353 if (kwbimage_version(img) == 1) {
1354 hdrsz += grow;
Pali Rohárd656f5a2021-10-25 15:13:02 +02001355 if (hdrsz > kwbheader_size(img)) {
1356 hdr->headersz_msb = hdrsz >> 16;
1357 hdr->headersz_lsb = cpu_to_le16(hdrsz & 0xffff);
1358 }
Pali Rohár04ced022021-09-24 23:07:03 +02001359 }
1360}
1361
Pali Rohárca272042021-09-24 23:07:05 +02001362static void *
1363kwboot_add_bin_ohdr_v1(void *img, size_t *size, uint32_t binsz)
1364{
1365 struct main_hdr_v1 *hdr = img;
1366 struct opt_hdr_v1 *ohdr;
Pali Rohára85a71d2021-10-21 16:46:06 +02001367 uint32_t num_args;
1368 uint32_t offset;
Pali Rohárca272042021-09-24 23:07:05 +02001369 uint32_t ohdrsz;
Pali Roháre511cc32021-10-25 15:13:01 +02001370 uint8_t *prev_ext;
Pali Rohárca272042021-09-24 23:07:05 +02001371
Pali Rohárca272042021-09-24 23:07:05 +02001372 if (hdr->ext & 0x1) {
1373 for_each_opt_hdr_v1 (ohdr, img)
1374 if (opt_hdr_v1_next(ohdr) == NULL)
1375 break;
1376
Pali Roháre511cc32021-10-25 15:13:01 +02001377 prev_ext = opt_hdr_v1_ext(ohdr);
1378 ohdr = _opt_hdr_v1_next(ohdr);
Pali Rohárca272042021-09-24 23:07:05 +02001379 } else {
Pali Rohárca272042021-09-24 23:07:05 +02001380 ohdr = (void *)(hdr + 1);
Pali Roháre511cc32021-10-25 15:13:01 +02001381 prev_ext = &hdr->ext;
Pali Rohárca272042021-09-24 23:07:05 +02001382 }
1383
Pali Rohára85a71d2021-10-21 16:46:06 +02001384 /*
1385 * ARM executable code inside the BIN header on some mvebu platforms
1386 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1387 * This requirement can be met by inserting dummy arguments into
1388 * BIN header, if needed.
1389 */
1390 offset = &ohdr->data[4] - (char *)img;
1391 num_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1392
1393 ohdrsz = sizeof(*ohdr) + 4 + 4 * num_args + binsz + 4;
1394 kwboot_img_grow_hdr(hdr, size, ohdrsz);
1395
Pali Roháre511cc32021-10-25 15:13:01 +02001396 *prev_ext |= 1;
1397
Pali Rohárca272042021-09-24 23:07:05 +02001398 ohdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1399 ohdr->headersz_msb = ohdrsz >> 16;
1400 ohdr->headersz_lsb = cpu_to_le16(ohdrsz & 0xffff);
1401
1402 memset(&ohdr->data[0], 0, ohdrsz - sizeof(*ohdr));
Pali Rohára85a71d2021-10-21 16:46:06 +02001403 *(uint32_t *)&ohdr->data[0] = cpu_to_le32(num_args);
Pali Rohárca272042021-09-24 23:07:05 +02001404
Pali Rohára85a71d2021-10-21 16:46:06 +02001405 return &ohdr->data[4 + 4 * num_args];
Pali Rohárca272042021-09-24 23:07:05 +02001406}
1407
1408static void
Pali Rohár063cb352021-10-25 15:12:56 +02001409_inject_baudrate_change_code(void *img, size_t *size, int pre,
1410 int old_baud, int new_baud)
Pali Rohárca272042021-09-24 23:07:05 +02001411{
Pali Rohár063cb352021-10-25 15:12:56 +02001412 uint32_t codesz = sizeof(kwboot_baud_code);
1413 struct main_hdr_v1 *hdr = img;
1414 uint8_t *code;
Pali Rohárca272042021-09-24 23:07:05 +02001415
1416 if (pre) {
Pali Rohár063cb352021-10-25 15:12:56 +02001417 uint32_t presz = sizeof(kwboot_pre_baud_code);
1418 uint32_t orig_datasz;
1419
1420 orig_datasz = le32_to_cpu(hdr->blocksize) - sizeof(uint32_t);
1421
1422 code = kwboot_img_grow_data_right(img, size, presz + codesz);
Pali Rohárca272042021-09-24 23:07:05 +02001423
1424 /*
1425 * We need to prepend code that loads lr register with original
1426 * value of hdr->execaddr. We do this by putting the original
1427 * exec address before the code that loads it relatively from
1428 * it's beginning.
1429 * Afterwards we change the exec address to this code (which is
1430 * at offset 4, because the first 4 bytes contain the original
1431 * exec address).
1432 */
1433 memcpy(code, kwboot_pre_baud_code, presz);
1434 *(uint32_t *)code = hdr->execaddr;
1435
Pali Rohár063cb352021-10-25 15:12:56 +02001436 hdr->execaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) +
1437 orig_datasz + 4);
Pali Rohárca272042021-09-24 23:07:05 +02001438
1439 code += presz;
Pali Rohár063cb352021-10-25 15:12:56 +02001440 } else {
1441 code = kwboot_add_bin_ohdr_v1(img, size, codesz);
Pali Rohárca272042021-09-24 23:07:05 +02001442 }
1443
1444 memcpy(code, kwboot_baud_code, codesz - 8);
1445 *(uint32_t *)(code + codesz - 8) = cpu_to_le32(old_baud);
1446 *(uint32_t *)(code + codesz - 4) = cpu_to_le32(new_baud);
1447}
1448
Pali Rohár550c9302021-09-24 23:06:57 +02001449static int
Pali Rohárca272042021-09-24 23:07:05 +02001450kwboot_img_patch(void *img, size_t *size, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +00001451{
Stefan Roesee29f1db2015-09-29 09:19:59 +02001452 struct main_hdr_v1 *hdr;
Pali Rohár792e4232021-09-24 23:06:58 +02001453 uint32_t srcaddr;
Luka Perkovd131ad62012-05-27 11:44:51 +00001454 uint8_t csum;
Marek Behún5c8f8122021-09-24 23:07:04 +02001455 size_t hdrsz;
Stefan Roesee29f1db2015-09-29 09:19:59 +02001456 int image_ver;
Pali Rohár550c9302021-09-24 23:06:57 +02001457 int is_secure;
Luka Perkovd131ad62012-05-27 11:44:51 +00001458
Luka Perkovd131ad62012-05-27 11:44:51 +00001459 hdr = img;
1460
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001461 if (*size < sizeof(struct main_hdr_v1))
1462 goto err;
Luka Perkovd131ad62012-05-27 11:44:51 +00001463
Marek Behúnacb0b382021-09-24 23:07:00 +02001464 image_ver = kwbimage_version(img);
Pali Rohár5029d7b2021-07-23 11:14:22 +02001465 if (image_ver != 0 && image_ver != 1) {
Stefan Roesee29f1db2015-09-29 09:19:59 +02001466 fprintf(stderr, "Invalid image header version\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001467 goto err;
Stefan Roesee29f1db2015-09-29 09:19:59 +02001468 }
1469
Marek Behúnfe2fd732021-09-24 23:07:01 +02001470 hdrsz = kwbheader_size(hdr);
Stefan Roesee29f1db2015-09-29 09:19:59 +02001471
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001472 if (*size < hdrsz)
1473 goto err;
Pali Rohár825a2ca2021-07-23 11:14:21 +02001474
Marek Behúnfe2fd732021-09-24 23:07:01 +02001475 csum = kwboot_hdr_csum8(hdr) - hdr->checksum;
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001476 if (csum != hdr->checksum)
1477 goto err;
Luka Perkovd131ad62012-05-27 11:44:51 +00001478
Pali Rohár792e4232021-09-24 23:06:58 +02001479 srcaddr = le32_to_cpu(hdr->srcaddr);
1480
1481 switch (hdr->blockid) {
1482 case IBR_HDR_SATA_ID:
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001483 if (srcaddr < 1)
1484 goto err;
1485
Pali Rohár792e4232021-09-24 23:06:58 +02001486 hdr->srcaddr = cpu_to_le32((srcaddr - 1) * 512);
1487 break;
1488
1489 case IBR_HDR_SDIO_ID:
1490 hdr->srcaddr = cpu_to_le32(srcaddr * 512);
1491 break;
1492
1493 case IBR_HDR_PEX_ID:
1494 if (srcaddr == 0xFFFFFFFF)
1495 hdr->srcaddr = cpu_to_le32(hdrsz);
1496 break;
Pali Rohárf2c644e2021-09-24 23:06:59 +02001497
1498 case IBR_HDR_SPI_ID:
1499 if (hdr->destaddr == cpu_to_le32(0xFFFFFFFF)) {
1500 kwboot_printv("Patching destination and execution addresses from SPI/NOR XIP area to DDR area 0x00800000\n");
1501 hdr->destaddr = cpu_to_le32(0x00800000);
1502 hdr->execaddr = cpu_to_le32(0x00800000);
1503 }
1504 break;
Pali Rohár792e4232021-09-24 23:06:58 +02001505 }
1506
Pali Rohár04ced022021-09-24 23:07:03 +02001507 if (hdrsz > le32_to_cpu(hdr->srcaddr) ||
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001508 *size < le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize))
1509 goto err;
Pali Rohár04ced022021-09-24 23:07:03 +02001510
Pali Rohárad9a3ac2021-10-25 15:12:55 +02001511 if (kwboot_img_csum32(img) != *kwboot_img_csum32_ptr(img))
1512 goto err;
1513
Pali Rohár550c9302021-09-24 23:06:57 +02001514 is_secure = kwboot_img_is_secure(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001515
Pali Rohár550c9302021-09-24 23:06:57 +02001516 if (hdr->blockid != IBR_HDR_UART_ID) {
1517 if (is_secure) {
1518 fprintf(stderr,
1519 "Image has secure header with signature for non-UART booting\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001520 goto err;
Pali Rohár550c9302021-09-24 23:06:57 +02001521 }
1522
1523 kwboot_printv("Patching image boot signature to UART\n");
1524 hdr->blockid = IBR_HDR_UART_ID;
1525 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001526
Pali Rohár0089f612021-10-22 12:37:47 +02001527 if (!is_secure) {
Pali Rohár4bebab62021-10-25 15:12:58 +02001528 if (image_ver == 1) {
1529 /*
1530 * Tell BootROM to send BootROM messages to UART port
1531 * number 0 (used also for UART booting) with default
1532 * baudrate (which should be 115200) and do not touch
1533 * UART MPP configuration.
1534 */
1535 hdr->options &= ~0x1F;
1536 hdr->options |= MAIN_HDR_V1_OPT_BAUD_DEFAULT;
1537 hdr->options |= 0 << 3;
1538 }
Pali Rohár0089f612021-10-22 12:37:47 +02001539 if (image_ver == 0)
1540 ((struct main_hdr_v0 *)img)->nandeccmode = IBR_HDR_ECC_DISABLED;
1541 hdr->nandpagesize = 0;
1542 }
1543
Pali Rohárca272042021-09-24 23:07:05 +02001544 if (baudrate) {
Pali Rohárca272042021-09-24 23:07:05 +02001545 if (image_ver == 0) {
1546 fprintf(stderr,
1547 "Cannot inject code for changing baudrate into v0 image header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001548 goto err;
Pali Rohárca272042021-09-24 23:07:05 +02001549 }
1550
1551 if (is_secure) {
1552 fprintf(stderr,
1553 "Cannot inject code for changing baudrate into image with secure header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001554 goto err;
Pali Rohárca272042021-09-24 23:07:05 +02001555 }
1556
1557 /*
1558 * First inject code that changes the baudrate from the default
1559 * value of 115200 Bd to requested value. This code is inserted
1560 * as a new opt hdr, so it is executed by BootROM after the
1561 * header part is received.
1562 */
1563 kwboot_printv("Injecting binary header code for changing baudrate to %d Bd\n",
1564 baudrate);
Pali Rohár063cb352021-10-25 15:12:56 +02001565 _inject_baudrate_change_code(img, size, 0, 115200, baudrate);
Pali Rohárca272042021-09-24 23:07:05 +02001566
1567 /*
1568 * Now inject code that changes the baudrate back to 115200 Bd.
Pali Rohár063cb352021-10-25 15:12:56 +02001569 * This code is appended after the data part of the image, and
1570 * execaddr is changed so that it is executed before U-Boot
1571 * proper.
Pali Rohárca272042021-09-24 23:07:05 +02001572 */
1573 kwboot_printv("Injecting code for changing baudrate back\n");
Pali Rohár063cb352021-10-25 15:12:56 +02001574 _inject_baudrate_change_code(img, size, 1, baudrate, 115200);
Pali Rohárca272042021-09-24 23:07:05 +02001575
Pali Rohár82c5a0a2021-10-25 15:12:57 +02001576 /* Update the 32-bit data checksum */
1577 *kwboot_img_csum32_ptr(img) = kwboot_img_csum32(img);
1578
Pali Rohárca272042021-09-24 23:07:05 +02001579 /* recompute header size */
1580 hdrsz = kwbheader_size(hdr);
1581 }
1582
Pali Rohár04ced022021-09-24 23:07:03 +02001583 if (hdrsz % KWBOOT_XM_BLKSZ) {
Pali Roháred792c22021-10-25 15:13:00 +02001584 size_t grow = KWBOOT_XM_BLKSZ - hdrsz % KWBOOT_XM_BLKSZ;
Pali Rohár04ced022021-09-24 23:07:03 +02001585
1586 if (is_secure) {
1587 fprintf(stderr, "Cannot align image with secure header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001588 goto err;
Pali Rohár04ced022021-09-24 23:07:03 +02001589 }
1590
1591 kwboot_printv("Aligning image header to Xmodem block size\n");
Pali Roháred792c22021-10-25 15:13:00 +02001592 kwboot_img_grow_hdr(img, size, grow);
Pali Rohár04ced022021-09-24 23:07:03 +02001593 }
1594
Marek Behúnfe2fd732021-09-24 23:07:01 +02001595 hdr->checksum = kwboot_hdr_csum8(hdr) - csum;
Luka Perkovd131ad62012-05-27 11:44:51 +00001596
Pali Rohár04ced022021-09-24 23:07:03 +02001597 *size = le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize);
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001598 return 0;
1599err:
1600 errno = EINVAL;
1601 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001602}
1603
1604static void
1605kwboot_usage(FILE *stream, char *progname)
1606{
Pali Rohára050a862021-09-24 23:06:42 +02001607 fprintf(stream, "kwboot version %s\n", PLAIN_VERSION);
Luka Perkovd131ad62012-05-27 11:44:51 +00001608 fprintf(stream,
Kevin Smith8669dac2016-02-16 21:28:17 +00001609 "Usage: %s [OPTIONS] [-b <image> | -D <image> ] [-B <baud> ] <TTY>\n",
Stefan Roese84899e22014-10-22 12:13:21 +02001610 progname);
Luka Perkovd131ad62012-05-27 11:44:51 +00001611 fprintf(stream, "\n");
Stefan Roese84899e22014-10-22 12:13:21 +02001612 fprintf(stream,
1613 " -b <image>: boot <image> with preamble (Kirkwood, Armada 370/XP)\n");
Stefan Roese84899e22014-10-22 12:13:21 +02001614 fprintf(stream,
1615 " -D <image>: boot <image> without preamble (Dove)\n");
1616 fprintf(stream, " -d: enter debug mode\n");
1617 fprintf(stream, " -a: use timings for Armada XP\n");
Stefan Roese1c0df9e2015-05-29 13:25:04 +02001618 fprintf(stream, " -q <req-delay>: use specific request-delay\n");
1619 fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
Kevin Smith7497a6a2016-02-16 21:28:19 +00001620 fprintf(stream,
1621 " -o <block-timeo>: use specific xmodem block timeout\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001622 fprintf(stream, "\n");
1623 fprintf(stream, " -t: mini terminal\n");
1624 fprintf(stream, "\n");
1625 fprintf(stream, " -B <baud>: set baud rate\n");
1626 fprintf(stream, "\n");
1627}
1628
1629int
1630main(int argc, char **argv)
1631{
1632 const char *ttypath, *imgpath;
Pali Rohárddc04fa2021-09-24 23:06:55 +02001633 int rv, rc, tty, term;
Luka Perkovd131ad62012-05-27 11:44:51 +00001634 void *bootmsg;
Stefan Roese84899e22014-10-22 12:13:21 +02001635 void *debugmsg;
Luka Perkovd131ad62012-05-27 11:44:51 +00001636 void *img;
1637 size_t size;
Pali Rohárca272042021-09-24 23:07:05 +02001638 size_t after_img_rsv;
1639 int baudrate;
Luka Perkovd131ad62012-05-27 11:44:51 +00001640
1641 rv = 1;
1642 tty = -1;
1643 bootmsg = NULL;
Stefan Roese84899e22014-10-22 12:13:21 +02001644 debugmsg = NULL;
Luka Perkovd131ad62012-05-27 11:44:51 +00001645 imgpath = NULL;
1646 img = NULL;
1647 term = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001648 size = 0;
Pali Rohárca272042021-09-24 23:07:05 +02001649 after_img_rsv = KWBOOT_XM_BLKSZ;
1650 baudrate = 115200;
Luka Perkovd131ad62012-05-27 11:44:51 +00001651
1652 kwboot_verbose = isatty(STDOUT_FILENO);
1653
1654 do {
Kevin Smith7497a6a2016-02-16 21:28:19 +00001655 int c = getopt(argc, argv, "hb:ptaB:dD:q:s:o:");
Luka Perkovd131ad62012-05-27 11:44:51 +00001656 if (c < 0)
1657 break;
1658
1659 switch (c) {
1660 case 'b':
1661 bootmsg = kwboot_msg_boot;
1662 imgpath = optarg;
1663 break;
1664
Stefan Roese84899e22014-10-22 12:13:21 +02001665 case 'D':
1666 bootmsg = NULL;
1667 imgpath = optarg;
1668 break;
1669
1670 case 'd':
1671 debugmsg = kwboot_msg_debug;
1672 break;
1673
Luka Perkovd131ad62012-05-27 11:44:51 +00001674 case 'p':
Pali Rohárddc04fa2021-09-24 23:06:55 +02001675 /* nop, for backward compatibility */
Luka Perkovd131ad62012-05-27 11:44:51 +00001676 break;
1677
1678 case 't':
1679 term = 1;
1680 break;
1681
Stefan Roese84899e22014-10-22 12:13:21 +02001682 case 'a':
1683 msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
1684 msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
1685 break;
1686
Stefan Roese1c0df9e2015-05-29 13:25:04 +02001687 case 'q':
1688 msg_req_delay = atoi(optarg);
1689 break;
1690
1691 case 's':
1692 msg_rsp_timeo = atoi(optarg);
1693 break;
1694
Kevin Smith7497a6a2016-02-16 21:28:19 +00001695 case 'o':
1696 blk_rsp_timeo = atoi(optarg);
1697 break;
1698
Luka Perkovd131ad62012-05-27 11:44:51 +00001699 case 'B':
Pali Rohárca272042021-09-24 23:07:05 +02001700 baudrate = atoi(optarg);
Luka Perkovd131ad62012-05-27 11:44:51 +00001701 break;
1702
1703 case 'h':
1704 rv = 0;
1705 default:
1706 goto usage;
1707 }
1708 } while (1);
1709
Stefan Roese84899e22014-10-22 12:13:21 +02001710 if (!bootmsg && !term && !debugmsg)
Luka Perkovd131ad62012-05-27 11:44:51 +00001711 goto usage;
1712
Luka Perkovd131ad62012-05-27 11:44:51 +00001713 if (argc - optind < 1)
1714 goto usage;
1715
1716 ttypath = argv[optind++];
1717
Pali Rohárca272042021-09-24 23:07:05 +02001718 tty = kwboot_open_tty(ttypath, imgpath ? 115200 : baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001719 if (tty < 0) {
1720 perror(ttypath);
1721 goto out;
1722 }
1723
Pali Rohárca272042021-09-24 23:07:05 +02001724 if (baudrate == 115200)
1725 /* do not change baudrate during Xmodem to the same value */
1726 baudrate = 0;
1727 else
1728 /* ensure we have enough space for baudrate change code */
1729 after_img_rsv += KWBOOT_BAUDRATE_BIN_HEADER_SZ +
Pali Rohár5923ef62021-10-25 15:12:54 +02001730 KWBOOT_XM_BLKSZ +
Pali Rohárca272042021-09-24 23:07:05 +02001731 sizeof(kwboot_pre_baud_code) +
Pali Rohár5923ef62021-10-25 15:12:54 +02001732 sizeof(kwboot_baud_code) +
1733 KWBOOT_XM_BLKSZ;
Pali Rohárca272042021-09-24 23:07:05 +02001734
Luka Perkovd131ad62012-05-27 11:44:51 +00001735 if (imgpath) {
Pali Rohárca272042021-09-24 23:07:05 +02001736 img = kwboot_read_image(imgpath, &size, after_img_rsv);
Luka Perkovd131ad62012-05-27 11:44:51 +00001737 if (!img) {
1738 perror(imgpath);
1739 goto out;
1740 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001741
Pali Rohárca272042021-09-24 23:07:05 +02001742 rc = kwboot_img_patch(img, &size, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001743 if (rc) {
1744 fprintf(stderr, "%s: Invalid image.\n", imgpath);
1745 goto out;
1746 }
1747 }
1748
Stefan Roese84899e22014-10-22 12:13:21 +02001749 if (debugmsg) {
1750 rc = kwboot_debugmsg(tty, debugmsg);
1751 if (rc) {
1752 perror("debugmsg");
1753 goto out;
1754 }
Willy Tarreau3475a712018-07-03 12:10:30 -04001755 } else if (bootmsg) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001756 rc = kwboot_bootmsg(tty, bootmsg);
1757 if (rc) {
1758 perror("bootmsg");
1759 goto out;
1760 }
1761 }
1762
1763 if (img) {
Pali Rohárca272042021-09-24 23:07:05 +02001764 rc = kwboot_xmodem(tty, img, size, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001765 if (rc) {
1766 perror("xmodem");
1767 goto out;
1768 }
1769 }
1770
1771 if (term) {
1772 rc = kwboot_terminal(tty);
1773 if (rc && !(errno == EINTR)) {
1774 perror("terminal");
1775 goto out;
1776 }
1777 }
1778
1779 rv = 0;
1780out:
1781 if (tty >= 0)
1782 close(tty);
1783
1784 if (img)
Pali Rohár04ced022021-09-24 23:07:03 +02001785 free(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001786
1787 return rv;
1788
1789usage:
1790 kwboot_usage(rv ? stderr : stdout, basename(argv[0]));
1791 goto out;
1792}