blob: 62288382289f27b82ade33d22c1f189809a9a721 [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
854kwboot_xm_recv_reply(int fd, char *c, int allow_non_xm, int *non_xm_print,
855 int baudrate, int *baud_changed)
Pali Rohár48b3ea62021-09-24 23:06:50 +0200856{
Marek Behún12df7b72021-09-24 23:06:52 +0200857 int timeout = allow_non_xm ? KWBOOT_HDR_RSP_TIMEO : blk_rsp_timeo;
Marek Behún819cd322021-09-24 23:06:53 +0200858 uint64_t recv_until = _now() + timeout;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200859 int rc;
860
Marek Behún819cd322021-09-24 23:06:53 +0200861 if (non_xm_print)
862 *non_xm_print = 0;
Pali Rohárca272042021-09-24 23:07:05 +0200863 if (baud_changed)
864 *baud_changed = 0;
Marek Behún2e81b3a2021-09-24 23:06:51 +0200865
Pali Rohár48b3ea62021-09-24 23:06:50 +0200866 while (1) {
Marek Behún12df7b72021-09-24 23:06:52 +0200867 rc = kwboot_tty_recv(fd, c, 1, timeout);
Pali Rohár48b3ea62021-09-24 23:06:50 +0200868 if (rc) {
869 if (errno != ETIMEDOUT)
870 return rc;
Marek Behún819cd322021-09-24 23:06:53 +0200871 else if (allow_non_xm && *non_xm_print)
Marek Behún12df7b72021-09-24 23:06:52 +0200872 return -1;
873 else
874 *c = NAK;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200875 }
876
877 /* If received xmodem reply, end. */
878 if (_is_xm_reply(*c))
879 break;
880
881 /*
Pali Rohárca272042021-09-24 23:07:05 +0200882 * If receiving/printing non-xmodem text output is allowed and
883 * such a byte was received, we want to increase receiving time
884 * and either:
885 * - print the byte, if it is not part of baudrate change magic
886 * sequence while baudrate change was requested (-B option)
887 * - change baudrate
Marek Behún819cd322021-09-24 23:06:53 +0200888 * Otherwise decrease timeout by time elapsed.
Pali Rohár48b3ea62021-09-24 23:06:50 +0200889 */
890 if (allow_non_xm) {
Marek Behún12df7b72021-09-24 23:06:52 +0200891 recv_until = _now() + timeout;
Pali Rohárca272042021-09-24 23:07:05 +0200892
893 if (baudrate && !*baud_changed) {
894 rc = kwboot_baud_magic_handle(fd, *c, baudrate);
895 if (rc == 1)
896 *baud_changed = 1;
897 else if (!rc)
898 *non_xm_print = 1;
899 else
900 return rc;
901 } else if (!baudrate || !*baud_changed) {
902 putchar(*c);
903 fflush(stdout);
904 *non_xm_print = 1;
905 }
Marek Behún819cd322021-09-24 23:06:53 +0200906 } else {
907 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;
927
Luka Perkovd131ad62012-05-27 11:44:51 +0000928 retries = 16;
929 do {
930 rc = kwboot_tty_send(fd, block, sizeof(*block));
931 if (rc)
Pali Rohár00a1dee2021-09-24 23:06:43 +0200932 return rc;
Luka Perkovd131ad62012-05-27 11:44:51 +0000933
Pali Rohár48b3ea62021-09-24 23:06:50 +0200934 if (allow_non_xm && !*done_print) {
935 kwboot_progress(100, '.');
936 kwboot_printv("Done\n");
937 *done_print = 1;
938 }
Stefan Roese84899e22014-10-22 12:13:21 +0200939
Pali Rohárca272042021-09-24 23:07:05 +0200940 rc = kwboot_xm_recv_reply(fd, &c, allow_non_xm, &non_xm_print,
941 baudrate, &baud_changed);
Pali Rohár48b3ea62021-09-24 23:06:50 +0200942 if (rc)
Pali Rohárca272042021-09-24 23:07:05 +0200943 goto can;
Stefan Roese84899e22014-10-22 12:13:21 +0200944
Pali Rohár48b3ea62021-09-24 23:06:50 +0200945 if (!allow_non_xm && c != ACK)
Luka Perkovd131ad62012-05-27 11:44:51 +0000946 kwboot_progress(-1, '+');
Luka Perkovd131ad62012-05-27 11:44:51 +0000947 } while (c == NAK && retries-- > 0);
948
Marek Behún2e81b3a2021-09-24 23:06:51 +0200949 if (non_xm_print)
950 kwboot_printv("\n");
951
Pali Rohárca272042021-09-24 23:07:05 +0200952 if (allow_non_xm && baudrate && !baud_changed) {
953 fprintf(stderr, "Baudrate was not changed\n");
954 rc = -1;
955 errno = EPROTO;
956 goto can;
957 }
958
Pali Rohár9cdc2642021-09-24 23:06:54 +0200959 return _xm_reply_to_error(c);
Pali Rohárca272042021-09-24 23:07:05 +0200960can:
961 err = errno;
962 kwboot_tty_send_char(fd, CAN);
963 kwboot_printv("\n");
964 errno = err;
965 return rc;
Pali Rohár9cdc2642021-09-24 23:06:54 +0200966}
Luka Perkovd131ad62012-05-27 11:44:51 +0000967
Pali Rohár9cdc2642021-09-24 23:06:54 +0200968static int
969kwboot_xm_finish(int fd)
970{
971 int rc, retries;
972 char c;
Luka Perkovd131ad62012-05-27 11:44:51 +0000973
Pali Rohár9cdc2642021-09-24 23:06:54 +0200974 kwboot_printv("Finishing transfer\n");
975
976 retries = 16;
977 do {
978 rc = kwboot_tty_send_char(fd, EOT);
979 if (rc)
980 return rc;
981
Pali Rohárca272042021-09-24 23:07:05 +0200982 rc = kwboot_xm_recv_reply(fd, &c, 0, NULL, 0, NULL);
Pali Rohár9cdc2642021-09-24 23:06:54 +0200983 if (rc)
984 return rc;
985 } while (c == NAK && retries-- > 0);
986
987 return _xm_reply_to_error(c);
Luka Perkovd131ad62012-05-27 11:44:51 +0000988}
989
990static int
Pali Rohár2ef87f72021-09-24 23:06:48 +0200991kwboot_xmodem_one(int tty, int *pnum, int header, const uint8_t *data,
Pali Rohárca272042021-09-24 23:07:05 +0200992 size_t size, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000993{
Pali Rohár48b3ea62021-09-24 23:06:50 +0200994 int done_print = 0;
Pali Rohár2ef87f72021-09-24 23:06:48 +0200995 size_t sent, left;
996 int rc;
Luka Perkovd131ad62012-05-27 11:44:51 +0000997
Pali Rohár2ef87f72021-09-24 23:06:48 +0200998 kwboot_printv("Sending boot image %s (%zu bytes)...\n",
999 header ? "header" : "data", size);
Luka Perkovd131ad62012-05-27 11:44:51 +00001000
Pali Rohár2ef87f72021-09-24 23:06:48 +02001001 left = size;
1002 sent = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001003
Pali Rohár2ef87f72021-09-24 23:06:48 +02001004 while (sent < size) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001005 struct kwboot_block block;
Pali Rohár48b3ea62021-09-24 23:06:50 +02001006 int last_block;
Pali Rohár2ef87f72021-09-24 23:06:48 +02001007 size_t blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001008
Pali Rohár2ef87f72021-09-24 23:06:48 +02001009 blksz = kwboot_xm_makeblock(&block, data, left, (*pnum)++);
1010 data += blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001011
Pali Rohár48b3ea62021-09-24 23:06:50 +02001012 last_block = (left <= blksz);
1013
1014 rc = kwboot_xm_sendblock(tty, &block, header && last_block,
Pali Rohárca272042021-09-24 23:07:05 +02001015 &done_print, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001016 if (rc)
1017 goto out;
1018
Pali Rohár2ef87f72021-09-24 23:06:48 +02001019 sent += blksz;
1020 left -= blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001021
Pali Rohár48b3ea62021-09-24 23:06:50 +02001022 if (!done_print)
1023 kwboot_progress(sent * 100 / size, '.');
Pali Rohár2ef87f72021-09-24 23:06:48 +02001024 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001025
Pali Rohár48b3ea62021-09-24 23:06:50 +02001026 if (!done_print)
1027 kwboot_printv("Done\n");
Pali Rohár2ef87f72021-09-24 23:06:48 +02001028
1029 return 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001030out:
Pali Rohárd5ba8db2021-09-24 23:06:47 +02001031 kwboot_printv("\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001032 return rc;
Pali Rohár2ef87f72021-09-24 23:06:48 +02001033}
Luka Perkovd131ad62012-05-27 11:44:51 +00001034
Pali Rohár2ef87f72021-09-24 23:06:48 +02001035static int
Pali Rohárca272042021-09-24 23:07:05 +02001036kwboot_xmodem(int tty, const void *_img, size_t size, int baudrate)
Pali Rohár2ef87f72021-09-24 23:06:48 +02001037{
1038 const uint8_t *img = _img;
1039 int rc, pnum;
1040 size_t hdrsz;
1041
Marek Behúnfe2fd732021-09-24 23:07:01 +02001042 hdrsz = kwbheader_size(img);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001043
1044 kwboot_printv("Waiting 2s and flushing tty\n");
1045 sleep(2); /* flush isn't effective without it */
1046 tcflush(tty, TCIOFLUSH);
1047
1048 pnum = 1;
1049
Pali Rohárca272042021-09-24 23:07:05 +02001050 rc = kwboot_xmodem_one(tty, &pnum, 1, img, hdrsz, baudrate);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001051 if (rc)
1052 return rc;
1053
1054 img += hdrsz;
1055 size -= hdrsz;
1056
Pali Rohárca272042021-09-24 23:07:05 +02001057 rc = kwboot_xmodem_one(tty, &pnum, 0, img, size, 0);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001058 if (rc)
1059 return rc;
1060
Pali Rohárca272042021-09-24 23:07:05 +02001061 rc = kwboot_xm_finish(tty);
1062 if (rc)
1063 return rc;
1064
1065 if (baudrate) {
1066 char buf[sizeof(kwb_baud_magic)];
1067
1068 /* Wait 1s for baudrate change magic */
1069 rc = kwboot_tty_recv(tty, buf, sizeof(buf), 1000);
1070 if (rc)
1071 return rc;
1072
1073 if (memcmp(buf, kwb_baud_magic, sizeof(buf))) {
1074 errno = EPROTO;
1075 return -1;
1076 }
1077
1078 kwboot_printv("\nChanging baudrate back to 115200 Bd\n\n");
1079 rc = kwboot_tty_change_baudrate(tty, 115200);
1080 if (rc)
1081 return rc;
1082 }
1083
1084 return 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001085}
1086
1087static int
Marek Behún46237e62021-09-24 23:06:40 +02001088kwboot_term_pipe(int in, int out, const char *quit, int *s)
Luka Perkovd131ad62012-05-27 11:44:51 +00001089{
Marek Behúne453bb42021-09-24 23:06:41 +02001090 ssize_t nin;
Luka Perkovd131ad62012-05-27 11:44:51 +00001091 char _buf[128], *buf = _buf;
1092
Pali Rohár43fef8d2021-07-23 11:14:17 +02001093 nin = read(in, buf, sizeof(_buf));
Willy Tarreau4469bd72018-07-03 12:10:31 -04001094 if (nin <= 0)
Luka Perkovd131ad62012-05-27 11:44:51 +00001095 return -1;
1096
1097 if (quit) {
1098 int i;
1099
1100 for (i = 0; i < nin; i++) {
1101 if (*buf == quit[*s]) {
1102 (*s)++;
1103 if (!quit[*s])
1104 return 0;
1105 buf++;
1106 nin--;
Pali Rohárb943eee2021-07-23 11:14:20 +02001107 } else {
Marek Behúne453bb42021-09-24 23:06:41 +02001108 if (kwboot_write(out, quit, *s) < 0)
1109 return -1;
1110 *s = 0;
Pali Rohárb943eee2021-07-23 11:14:20 +02001111 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001112 }
1113 }
1114
Marek Behúne453bb42021-09-24 23:06:41 +02001115 if (kwboot_write(out, buf, nin) < 0)
1116 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001117
1118 return 0;
1119}
1120
1121static int
1122kwboot_terminal(int tty)
1123{
1124 int rc, in, s;
Marek Behún46237e62021-09-24 23:06:40 +02001125 const char *quit = "\34c";
Luka Perkovd131ad62012-05-27 11:44:51 +00001126 struct termios otio, tio;
1127
1128 rc = -1;
1129
1130 in = STDIN_FILENO;
1131 if (isatty(in)) {
1132 rc = tcgetattr(in, &otio);
1133 if (!rc) {
1134 tio = otio;
1135 cfmakeraw(&tio);
1136 rc = tcsetattr(in, TCSANOW, &tio);
1137 }
1138 if (rc) {
1139 perror("tcsetattr");
1140 goto out;
1141 }
1142
1143 kwboot_printv("[Type Ctrl-%c + %c to quit]\r\n",
Marek Behún5fa04f42021-09-24 23:07:11 +02001144 quit[0] | 0100, quit[1]);
Luka Perkovd131ad62012-05-27 11:44:51 +00001145 } else
1146 in = -1;
1147
1148 rc = 0;
1149 s = 0;
1150
1151 do {
1152 fd_set rfds;
1153 int nfds = 0;
1154
Pali Rohár0a143412021-10-25 15:12:52 +02001155 FD_ZERO(&rfds);
Luka Perkovd131ad62012-05-27 11:44:51 +00001156 FD_SET(tty, &rfds);
1157 nfds = nfds < tty ? tty : nfds;
1158
1159 if (in >= 0) {
1160 FD_SET(in, &rfds);
1161 nfds = nfds < in ? in : nfds;
1162 }
1163
1164 nfds = select(nfds + 1, &rfds, NULL, NULL, NULL);
1165 if (nfds < 0)
1166 break;
1167
1168 if (FD_ISSET(tty, &rfds)) {
1169 rc = kwboot_term_pipe(tty, STDOUT_FILENO, NULL, NULL);
1170 if (rc)
1171 break;
1172 }
1173
Marek Behúnf30cb0d2021-09-24 23:06:39 +02001174 if (in >= 0 && FD_ISSET(in, &rfds)) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001175 rc = kwboot_term_pipe(in, tty, quit, &s);
1176 if (rc)
1177 break;
1178 }
1179 } while (quit[s] != 0);
1180
Pali Rohárec0fe5b2021-07-23 11:14:18 +02001181 if (in >= 0)
1182 tcsetattr(in, TCSANOW, &otio);
Pali Rohár49a0a3b2021-07-23 11:14:19 +02001183 printf("\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001184out:
1185 return rc;
1186}
1187
1188static void *
Pali Rohár04ced022021-09-24 23:07:03 +02001189kwboot_read_image(const char *path, size_t *size, size_t reserve)
Luka Perkovd131ad62012-05-27 11:44:51 +00001190{
Pali Rohárddc04fa2021-09-24 23:06:55 +02001191 int rc, fd;
Luka Perkovd131ad62012-05-27 11:44:51 +00001192 struct stat st;
1193 void *img;
Pali Rohár04ced022021-09-24 23:07:03 +02001194 off_t tot;
Luka Perkovd131ad62012-05-27 11:44:51 +00001195
1196 rc = -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001197 img = NULL;
1198
1199 fd = open(path, O_RDONLY);
1200 if (fd < 0)
1201 goto out;
1202
1203 rc = fstat(fd, &st);
1204 if (rc)
1205 goto out;
1206
Pali Rohár04ced022021-09-24 23:07:03 +02001207 img = malloc(st.st_size + reserve);
1208 if (!img)
Luka Perkovd131ad62012-05-27 11:44:51 +00001209 goto out;
Pali Rohár04ced022021-09-24 23:07:03 +02001210
1211 tot = 0;
1212 while (tot < st.st_size) {
1213 ssize_t rd = read(fd, img + tot, st.st_size - tot);
1214
1215 if (rd < 0)
1216 goto out;
1217
1218 tot += rd;
1219
1220 if (!rd && tot < st.st_size) {
1221 errno = EIO;
1222 goto out;
1223 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001224 }
1225
1226 rc = 0;
1227 *size = st.st_size;
1228out:
1229 if (rc && img) {
Pali Rohár04ced022021-09-24 23:07:03 +02001230 free(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001231 img = NULL;
1232 }
1233 if (fd >= 0)
1234 close(fd);
1235
1236 return img;
1237}
1238
1239static uint8_t
Marek Behúnfe2fd732021-09-24 23:07:01 +02001240kwboot_hdr_csum8(const void *hdr)
Luka Perkovd131ad62012-05-27 11:44:51 +00001241{
Marek Behúnfe2fd732021-09-24 23:07:01 +02001242 const uint8_t *data = hdr;
1243 uint8_t csum;
1244 size_t size;
1245
1246 size = kwbheader_size_for_csum(hdr);
Luka Perkovd131ad62012-05-27 11:44:51 +00001247
1248 for (csum = 0; size-- > 0; data++)
1249 csum += *data;
1250
1251 return csum;
1252}
1253
Pali Rohárad9a3ac2021-10-25 15:12:55 +02001254static uint32_t *
1255kwboot_img_csum32_ptr(void *img)
1256{
1257 struct main_hdr_v1 *hdr = img;
1258 uint32_t datasz;
1259
1260 datasz = le32_to_cpu(hdr->blocksize) - sizeof(uint32_t);
1261
1262 return img + le32_to_cpu(hdr->srcaddr) + datasz;
1263}
1264
1265static uint32_t
1266kwboot_img_csum32(const void *img)
1267{
1268 const struct main_hdr_v1 *hdr = img;
1269 uint32_t datasz, csum = 0;
1270 const uint32_t *data;
1271
1272 datasz = le32_to_cpu(hdr->blocksize) - sizeof(csum);
1273 if (datasz % sizeof(uint32_t))
1274 return 0;
1275
1276 data = img + le32_to_cpu(hdr->srcaddr);
1277 while (datasz > 0) {
1278 csum += le32_to_cpu(*data++);
1279 datasz -= 4;
1280 }
1281
1282 return cpu_to_le32(csum);
1283}
1284
Luka Perkovd131ad62012-05-27 11:44:51 +00001285static int
Pali Rohár550c9302021-09-24 23:06:57 +02001286kwboot_img_is_secure(void *img)
1287{
1288 struct opt_hdr_v1 *ohdr;
1289
1290 for_each_opt_hdr_v1 (ohdr, img)
1291 if (ohdr->headertype == OPT_HDR_V1_SECURE_TYPE)
1292 return 1;
1293
1294 return 0;
1295}
1296
Pali Rohárca272042021-09-24 23:07:05 +02001297static void *
Pali Rohár063cb352021-10-25 15:12:56 +02001298kwboot_img_grow_data_right(void *img, size_t *size, size_t grow)
Pali Rohárca272042021-09-24 23:07:05 +02001299{
Pali Rohárca272042021-09-24 23:07:05 +02001300 struct main_hdr_v1 *hdr = img;
Pali Rohár063cb352021-10-25 15:12:56 +02001301 void *result;
Pali Rohárca272042021-09-24 23:07:05 +02001302
Pali Rohár063cb352021-10-25 15:12:56 +02001303 /*
1304 * 32-bit checksum comes after end of image code, so we will be putting
1305 * new code there. So we get this pointer and then increase data size
1306 * (since increasing data size changes kwboot_img_csum32_ptr() return
1307 * value).
1308 */
1309 result = kwboot_img_csum32_ptr(img);
Pali Rohárca272042021-09-24 23:07:05 +02001310 hdr->blocksize = cpu_to_le32(le32_to_cpu(hdr->blocksize) + grow);
Pali Rohár063cb352021-10-25 15:12:56 +02001311 *size += grow;
Pali Rohárca272042021-09-24 23:07:05 +02001312
Pali Rohár063cb352021-10-25 15:12:56 +02001313 return result;
Pali Rohárca272042021-09-24 23:07:05 +02001314}
1315
Pali Rohár04ced022021-09-24 23:07:03 +02001316static void
1317kwboot_img_grow_hdr(void *img, size_t *size, size_t grow)
1318{
1319 uint32_t hdrsz, datasz, srcaddr;
1320 struct main_hdr_v1 *hdr = img;
1321 uint8_t *data;
1322
1323 srcaddr = le32_to_cpu(hdr->srcaddr);
1324
1325 hdrsz = kwbheader_size(img);
1326 data = (uint8_t *)img + srcaddr;
1327 datasz = *size - srcaddr;
1328
1329 /* only move data if there is not enough space */
1330 if (hdrsz + grow > srcaddr) {
1331 size_t need = hdrsz + grow - srcaddr;
1332
1333 /* move data by enough bytes */
1334 memmove(data + need, data, datasz);
1335
1336 hdr->srcaddr = cpu_to_le32(srcaddr + need);
1337 *size += need;
1338 }
1339
1340 if (kwbimage_version(img) == 1) {
1341 hdrsz += grow;
1342 hdr->headersz_msb = hdrsz >> 16;
1343 hdr->headersz_lsb = cpu_to_le16(hdrsz & 0xffff);
1344 }
1345}
1346
Pali Rohárca272042021-09-24 23:07:05 +02001347static void *
1348kwboot_add_bin_ohdr_v1(void *img, size_t *size, uint32_t binsz)
1349{
1350 struct main_hdr_v1 *hdr = img;
1351 struct opt_hdr_v1 *ohdr;
Pali Rohára85a71d2021-10-21 16:46:06 +02001352 uint32_t num_args;
1353 uint32_t offset;
Pali Rohárca272042021-09-24 23:07:05 +02001354 uint32_t ohdrsz;
1355
Pali Rohárca272042021-09-24 23:07:05 +02001356 if (hdr->ext & 0x1) {
1357 for_each_opt_hdr_v1 (ohdr, img)
1358 if (opt_hdr_v1_next(ohdr) == NULL)
1359 break;
1360
1361 *opt_hdr_v1_ext(ohdr) |= 1;
1362 ohdr = opt_hdr_v1_next(ohdr);
1363 } else {
1364 hdr->ext |= 1;
1365 ohdr = (void *)(hdr + 1);
1366 }
1367
Pali Rohára85a71d2021-10-21 16:46:06 +02001368 /*
1369 * ARM executable code inside the BIN header on some mvebu platforms
1370 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1371 * This requirement can be met by inserting dummy arguments into
1372 * BIN header, if needed.
1373 */
1374 offset = &ohdr->data[4] - (char *)img;
1375 num_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1376
1377 ohdrsz = sizeof(*ohdr) + 4 + 4 * num_args + binsz + 4;
1378 kwboot_img_grow_hdr(hdr, size, ohdrsz);
1379
Pali Rohárca272042021-09-24 23:07:05 +02001380 ohdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1381 ohdr->headersz_msb = ohdrsz >> 16;
1382 ohdr->headersz_lsb = cpu_to_le16(ohdrsz & 0xffff);
1383
1384 memset(&ohdr->data[0], 0, ohdrsz - sizeof(*ohdr));
Pali Rohára85a71d2021-10-21 16:46:06 +02001385 *(uint32_t *)&ohdr->data[0] = cpu_to_le32(num_args);
Pali Rohárca272042021-09-24 23:07:05 +02001386
Pali Rohára85a71d2021-10-21 16:46:06 +02001387 return &ohdr->data[4 + 4 * num_args];
Pali Rohárca272042021-09-24 23:07:05 +02001388}
1389
1390static void
Pali Rohár063cb352021-10-25 15:12:56 +02001391_inject_baudrate_change_code(void *img, size_t *size, int pre,
1392 int old_baud, int new_baud)
Pali Rohárca272042021-09-24 23:07:05 +02001393{
Pali Rohár063cb352021-10-25 15:12:56 +02001394 uint32_t codesz = sizeof(kwboot_baud_code);
1395 struct main_hdr_v1 *hdr = img;
1396 uint8_t *code;
Pali Rohárca272042021-09-24 23:07:05 +02001397
1398 if (pre) {
Pali Rohár063cb352021-10-25 15:12:56 +02001399 uint32_t presz = sizeof(kwboot_pre_baud_code);
1400 uint32_t orig_datasz;
1401
1402 orig_datasz = le32_to_cpu(hdr->blocksize) - sizeof(uint32_t);
1403
1404 code = kwboot_img_grow_data_right(img, size, presz + codesz);
Pali Rohárca272042021-09-24 23:07:05 +02001405
1406 /*
1407 * We need to prepend code that loads lr register with original
1408 * value of hdr->execaddr. We do this by putting the original
1409 * exec address before the code that loads it relatively from
1410 * it's beginning.
1411 * Afterwards we change the exec address to this code (which is
1412 * at offset 4, because the first 4 bytes contain the original
1413 * exec address).
1414 */
1415 memcpy(code, kwboot_pre_baud_code, presz);
1416 *(uint32_t *)code = hdr->execaddr;
1417
Pali Rohár063cb352021-10-25 15:12:56 +02001418 hdr->execaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) +
1419 orig_datasz + 4);
Pali Rohárca272042021-09-24 23:07:05 +02001420
1421 code += presz;
Pali Rohár063cb352021-10-25 15:12:56 +02001422 } else {
1423 code = kwboot_add_bin_ohdr_v1(img, size, codesz);
Pali Rohárca272042021-09-24 23:07:05 +02001424 }
1425
1426 memcpy(code, kwboot_baud_code, codesz - 8);
1427 *(uint32_t *)(code + codesz - 8) = cpu_to_le32(old_baud);
1428 *(uint32_t *)(code + codesz - 4) = cpu_to_le32(new_baud);
1429}
1430
Pali Rohár550c9302021-09-24 23:06:57 +02001431static int
Pali Rohárca272042021-09-24 23:07:05 +02001432kwboot_img_patch(void *img, size_t *size, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +00001433{
Stefan Roesee29f1db2015-09-29 09:19:59 +02001434 struct main_hdr_v1 *hdr;
Pali Rohár792e4232021-09-24 23:06:58 +02001435 uint32_t srcaddr;
Luka Perkovd131ad62012-05-27 11:44:51 +00001436 uint8_t csum;
Marek Behún5c8f8122021-09-24 23:07:04 +02001437 size_t hdrsz;
Stefan Roesee29f1db2015-09-29 09:19:59 +02001438 int image_ver;
Pali Rohár550c9302021-09-24 23:06:57 +02001439 int is_secure;
Luka Perkovd131ad62012-05-27 11:44:51 +00001440
Luka Perkovd131ad62012-05-27 11:44:51 +00001441 hdr = img;
1442
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001443 if (*size < sizeof(struct main_hdr_v1))
1444 goto err;
Luka Perkovd131ad62012-05-27 11:44:51 +00001445
Marek Behúnacb0b382021-09-24 23:07:00 +02001446 image_ver = kwbimage_version(img);
Pali Rohár5029d7b2021-07-23 11:14:22 +02001447 if (image_ver != 0 && image_ver != 1) {
Stefan Roesee29f1db2015-09-29 09:19:59 +02001448 fprintf(stderr, "Invalid image header version\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001449 goto err;
Stefan Roesee29f1db2015-09-29 09:19:59 +02001450 }
1451
Marek Behúnfe2fd732021-09-24 23:07:01 +02001452 hdrsz = kwbheader_size(hdr);
Stefan Roesee29f1db2015-09-29 09:19:59 +02001453
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001454 if (*size < hdrsz)
1455 goto err;
Pali Rohár825a2ca2021-07-23 11:14:21 +02001456
Marek Behúnfe2fd732021-09-24 23:07:01 +02001457 csum = kwboot_hdr_csum8(hdr) - hdr->checksum;
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001458 if (csum != hdr->checksum)
1459 goto err;
Luka Perkovd131ad62012-05-27 11:44:51 +00001460
Pali Rohár792e4232021-09-24 23:06:58 +02001461 srcaddr = le32_to_cpu(hdr->srcaddr);
1462
1463 switch (hdr->blockid) {
1464 case IBR_HDR_SATA_ID:
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001465 if (srcaddr < 1)
1466 goto err;
1467
Pali Rohár792e4232021-09-24 23:06:58 +02001468 hdr->srcaddr = cpu_to_le32((srcaddr - 1) * 512);
1469 break;
1470
1471 case IBR_HDR_SDIO_ID:
1472 hdr->srcaddr = cpu_to_le32(srcaddr * 512);
1473 break;
1474
1475 case IBR_HDR_PEX_ID:
1476 if (srcaddr == 0xFFFFFFFF)
1477 hdr->srcaddr = cpu_to_le32(hdrsz);
1478 break;
Pali Rohárf2c644e2021-09-24 23:06:59 +02001479
1480 case IBR_HDR_SPI_ID:
1481 if (hdr->destaddr == cpu_to_le32(0xFFFFFFFF)) {
1482 kwboot_printv("Patching destination and execution addresses from SPI/NOR XIP area to DDR area 0x00800000\n");
1483 hdr->destaddr = cpu_to_le32(0x00800000);
1484 hdr->execaddr = cpu_to_le32(0x00800000);
1485 }
1486 break;
Pali Rohár792e4232021-09-24 23:06:58 +02001487 }
1488
Pali Rohár04ced022021-09-24 23:07:03 +02001489 if (hdrsz > le32_to_cpu(hdr->srcaddr) ||
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001490 *size < le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize))
1491 goto err;
Pali Rohár04ced022021-09-24 23:07:03 +02001492
Pali Rohárad9a3ac2021-10-25 15:12:55 +02001493 if (kwboot_img_csum32(img) != *kwboot_img_csum32_ptr(img))
1494 goto err;
1495
Pali Rohár550c9302021-09-24 23:06:57 +02001496 is_secure = kwboot_img_is_secure(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001497
Pali Rohár550c9302021-09-24 23:06:57 +02001498 if (hdr->blockid != IBR_HDR_UART_ID) {
1499 if (is_secure) {
1500 fprintf(stderr,
1501 "Image has secure header with signature for non-UART booting\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001502 goto err;
Pali Rohár550c9302021-09-24 23:06:57 +02001503 }
1504
1505 kwboot_printv("Patching image boot signature to UART\n");
1506 hdr->blockid = IBR_HDR_UART_ID;
1507 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001508
Pali Rohár0089f612021-10-22 12:37:47 +02001509 if (!is_secure) {
Pali Rohár4bebab62021-10-25 15:12:58 +02001510 if (image_ver == 1) {
1511 /*
1512 * Tell BootROM to send BootROM messages to UART port
1513 * number 0 (used also for UART booting) with default
1514 * baudrate (which should be 115200) and do not touch
1515 * UART MPP configuration.
1516 */
1517 hdr->options &= ~0x1F;
1518 hdr->options |= MAIN_HDR_V1_OPT_BAUD_DEFAULT;
1519 hdr->options |= 0 << 3;
1520 }
Pali Rohár0089f612021-10-22 12:37:47 +02001521 if (image_ver == 0)
1522 ((struct main_hdr_v0 *)img)->nandeccmode = IBR_HDR_ECC_DISABLED;
1523 hdr->nandpagesize = 0;
1524 }
1525
Pali Rohárca272042021-09-24 23:07:05 +02001526 if (baudrate) {
Pali Rohárca272042021-09-24 23:07:05 +02001527 if (image_ver == 0) {
1528 fprintf(stderr,
1529 "Cannot inject code for changing baudrate into v0 image header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001530 goto err;
Pali Rohárca272042021-09-24 23:07:05 +02001531 }
1532
1533 if (is_secure) {
1534 fprintf(stderr,
1535 "Cannot inject code for changing baudrate into image with secure header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001536 goto err;
Pali Rohárca272042021-09-24 23:07:05 +02001537 }
1538
1539 /*
1540 * First inject code that changes the baudrate from the default
1541 * value of 115200 Bd to requested value. This code is inserted
1542 * as a new opt hdr, so it is executed by BootROM after the
1543 * header part is received.
1544 */
1545 kwboot_printv("Injecting binary header code for changing baudrate to %d Bd\n",
1546 baudrate);
Pali Rohár063cb352021-10-25 15:12:56 +02001547 _inject_baudrate_change_code(img, size, 0, 115200, baudrate);
Pali Rohárca272042021-09-24 23:07:05 +02001548
1549 /*
1550 * Now inject code that changes the baudrate back to 115200 Bd.
Pali Rohár063cb352021-10-25 15:12:56 +02001551 * This code is appended after the data part of the image, and
1552 * execaddr is changed so that it is executed before U-Boot
1553 * proper.
Pali Rohárca272042021-09-24 23:07:05 +02001554 */
1555 kwboot_printv("Injecting code for changing baudrate back\n");
Pali Rohár063cb352021-10-25 15:12:56 +02001556 _inject_baudrate_change_code(img, size, 1, baudrate, 115200);
Pali Rohárca272042021-09-24 23:07:05 +02001557
Pali Rohár82c5a0a2021-10-25 15:12:57 +02001558 /* Update the 32-bit data checksum */
1559 *kwboot_img_csum32_ptr(img) = kwboot_img_csum32(img);
1560
Pali Rohárca272042021-09-24 23:07:05 +02001561 /* recompute header size */
1562 hdrsz = kwbheader_size(hdr);
1563 }
1564
Pali Rohár04ced022021-09-24 23:07:03 +02001565 if (hdrsz % KWBOOT_XM_BLKSZ) {
1566 size_t offset = (KWBOOT_XM_BLKSZ - hdrsz % KWBOOT_XM_BLKSZ) %
1567 KWBOOT_XM_BLKSZ;
1568
1569 if (is_secure) {
1570 fprintf(stderr, "Cannot align image with secure header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001571 goto err;
Pali Rohár04ced022021-09-24 23:07:03 +02001572 }
1573
1574 kwboot_printv("Aligning image header to Xmodem block size\n");
1575 kwboot_img_grow_hdr(img, size, offset);
1576 }
1577
Marek Behúnfe2fd732021-09-24 23:07:01 +02001578 hdr->checksum = kwboot_hdr_csum8(hdr) - csum;
Luka Perkovd131ad62012-05-27 11:44:51 +00001579
Pali Rohár04ced022021-09-24 23:07:03 +02001580 *size = le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize);
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001581 return 0;
1582err:
1583 errno = EINVAL;
1584 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001585}
1586
1587static void
1588kwboot_usage(FILE *stream, char *progname)
1589{
Pali Rohára050a862021-09-24 23:06:42 +02001590 fprintf(stream, "kwboot version %s\n", PLAIN_VERSION);
Luka Perkovd131ad62012-05-27 11:44:51 +00001591 fprintf(stream,
Kevin Smith8669dac2016-02-16 21:28:17 +00001592 "Usage: %s [OPTIONS] [-b <image> | -D <image> ] [-B <baud> ] <TTY>\n",
Stefan Roese84899e22014-10-22 12:13:21 +02001593 progname);
Luka Perkovd131ad62012-05-27 11:44:51 +00001594 fprintf(stream, "\n");
Stefan Roese84899e22014-10-22 12:13:21 +02001595 fprintf(stream,
1596 " -b <image>: boot <image> with preamble (Kirkwood, Armada 370/XP)\n");
Stefan Roese84899e22014-10-22 12:13:21 +02001597 fprintf(stream,
1598 " -D <image>: boot <image> without preamble (Dove)\n");
1599 fprintf(stream, " -d: enter debug mode\n");
1600 fprintf(stream, " -a: use timings for Armada XP\n");
Stefan Roese1c0df9e2015-05-29 13:25:04 +02001601 fprintf(stream, " -q <req-delay>: use specific request-delay\n");
1602 fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
Kevin Smith7497a6a2016-02-16 21:28:19 +00001603 fprintf(stream,
1604 " -o <block-timeo>: use specific xmodem block timeout\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001605 fprintf(stream, "\n");
1606 fprintf(stream, " -t: mini terminal\n");
1607 fprintf(stream, "\n");
1608 fprintf(stream, " -B <baud>: set baud rate\n");
1609 fprintf(stream, "\n");
1610}
1611
1612int
1613main(int argc, char **argv)
1614{
1615 const char *ttypath, *imgpath;
Pali Rohárddc04fa2021-09-24 23:06:55 +02001616 int rv, rc, tty, term;
Luka Perkovd131ad62012-05-27 11:44:51 +00001617 void *bootmsg;
Stefan Roese84899e22014-10-22 12:13:21 +02001618 void *debugmsg;
Luka Perkovd131ad62012-05-27 11:44:51 +00001619 void *img;
1620 size_t size;
Pali Rohárca272042021-09-24 23:07:05 +02001621 size_t after_img_rsv;
1622 int baudrate;
Luka Perkovd131ad62012-05-27 11:44:51 +00001623
1624 rv = 1;
1625 tty = -1;
1626 bootmsg = NULL;
Stefan Roese84899e22014-10-22 12:13:21 +02001627 debugmsg = NULL;
Luka Perkovd131ad62012-05-27 11:44:51 +00001628 imgpath = NULL;
1629 img = NULL;
1630 term = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001631 size = 0;
Pali Rohárca272042021-09-24 23:07:05 +02001632 after_img_rsv = KWBOOT_XM_BLKSZ;
1633 baudrate = 115200;
Luka Perkovd131ad62012-05-27 11:44:51 +00001634
1635 kwboot_verbose = isatty(STDOUT_FILENO);
1636
1637 do {
Kevin Smith7497a6a2016-02-16 21:28:19 +00001638 int c = getopt(argc, argv, "hb:ptaB:dD:q:s:o:");
Luka Perkovd131ad62012-05-27 11:44:51 +00001639 if (c < 0)
1640 break;
1641
1642 switch (c) {
1643 case 'b':
1644 bootmsg = kwboot_msg_boot;
1645 imgpath = optarg;
1646 break;
1647
Stefan Roese84899e22014-10-22 12:13:21 +02001648 case 'D':
1649 bootmsg = NULL;
1650 imgpath = optarg;
1651 break;
1652
1653 case 'd':
1654 debugmsg = kwboot_msg_debug;
1655 break;
1656
Luka Perkovd131ad62012-05-27 11:44:51 +00001657 case 'p':
Pali Rohárddc04fa2021-09-24 23:06:55 +02001658 /* nop, for backward compatibility */
Luka Perkovd131ad62012-05-27 11:44:51 +00001659 break;
1660
1661 case 't':
1662 term = 1;
1663 break;
1664
Stefan Roese84899e22014-10-22 12:13:21 +02001665 case 'a':
1666 msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
1667 msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
1668 break;
1669
Stefan Roese1c0df9e2015-05-29 13:25:04 +02001670 case 'q':
1671 msg_req_delay = atoi(optarg);
1672 break;
1673
1674 case 's':
1675 msg_rsp_timeo = atoi(optarg);
1676 break;
1677
Kevin Smith7497a6a2016-02-16 21:28:19 +00001678 case 'o':
1679 blk_rsp_timeo = atoi(optarg);
1680 break;
1681
Luka Perkovd131ad62012-05-27 11:44:51 +00001682 case 'B':
Pali Rohárca272042021-09-24 23:07:05 +02001683 baudrate = atoi(optarg);
Luka Perkovd131ad62012-05-27 11:44:51 +00001684 break;
1685
1686 case 'h':
1687 rv = 0;
1688 default:
1689 goto usage;
1690 }
1691 } while (1);
1692
Stefan Roese84899e22014-10-22 12:13:21 +02001693 if (!bootmsg && !term && !debugmsg)
Luka Perkovd131ad62012-05-27 11:44:51 +00001694 goto usage;
1695
Luka Perkovd131ad62012-05-27 11:44:51 +00001696 if (argc - optind < 1)
1697 goto usage;
1698
1699 ttypath = argv[optind++];
1700
Pali Rohárca272042021-09-24 23:07:05 +02001701 tty = kwboot_open_tty(ttypath, imgpath ? 115200 : baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001702 if (tty < 0) {
1703 perror(ttypath);
1704 goto out;
1705 }
1706
Pali Rohárca272042021-09-24 23:07:05 +02001707 if (baudrate == 115200)
1708 /* do not change baudrate during Xmodem to the same value */
1709 baudrate = 0;
1710 else
1711 /* ensure we have enough space for baudrate change code */
1712 after_img_rsv += KWBOOT_BAUDRATE_BIN_HEADER_SZ +
Pali Rohár5923ef62021-10-25 15:12:54 +02001713 KWBOOT_XM_BLKSZ +
Pali Rohárca272042021-09-24 23:07:05 +02001714 sizeof(kwboot_pre_baud_code) +
Pali Rohár5923ef62021-10-25 15:12:54 +02001715 sizeof(kwboot_baud_code) +
1716 KWBOOT_XM_BLKSZ;
Pali Rohárca272042021-09-24 23:07:05 +02001717
Luka Perkovd131ad62012-05-27 11:44:51 +00001718 if (imgpath) {
Pali Rohárca272042021-09-24 23:07:05 +02001719 img = kwboot_read_image(imgpath, &size, after_img_rsv);
Luka Perkovd131ad62012-05-27 11:44:51 +00001720 if (!img) {
1721 perror(imgpath);
1722 goto out;
1723 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001724
Pali Rohárca272042021-09-24 23:07:05 +02001725 rc = kwboot_img_patch(img, &size, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001726 if (rc) {
1727 fprintf(stderr, "%s: Invalid image.\n", imgpath);
1728 goto out;
1729 }
1730 }
1731
Stefan Roese84899e22014-10-22 12:13:21 +02001732 if (debugmsg) {
1733 rc = kwboot_debugmsg(tty, debugmsg);
1734 if (rc) {
1735 perror("debugmsg");
1736 goto out;
1737 }
Willy Tarreau3475a712018-07-03 12:10:30 -04001738 } else if (bootmsg) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001739 rc = kwboot_bootmsg(tty, bootmsg);
1740 if (rc) {
1741 perror("bootmsg");
1742 goto out;
1743 }
1744 }
1745
1746 if (img) {
Pali Rohárca272042021-09-24 23:07:05 +02001747 rc = kwboot_xmodem(tty, img, size, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001748 if (rc) {
1749 perror("xmodem");
1750 goto out;
1751 }
1752 }
1753
1754 if (term) {
1755 rc = kwboot_terminal(tty);
1756 if (rc && !(errno == EINTR)) {
1757 perror("terminal");
1758 goto out;
1759 }
1760 }
1761
1762 rv = 0;
1763out:
1764 if (tty >= 0)
1765 close(tty);
1766
1767 if (img)
Pali Rohár04ced022021-09-24 23:07:03 +02001768 free(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001769
1770 return rv;
1771
1772usage:
1773 kwboot_usage(rv ? stderr : stdout, basename(argv[0]));
1774 goto out;
1775}