blob: 695d433b96ee3b178f7d535d3ae800d642773e22 [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;
Luka Perkovd131ad62012-05-27 11:44:51 +0000660 tio.c_cc[VMIN] = 1;
Pali Rohár24a471b2021-09-24 23:07:09 +0200661 tio.c_cc[VTIME] = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +0000662
Luka Perkovd131ad62012-05-27 11:44:51 +0000663 rc = tcsetattr(fd, TCSANOW, &tio);
664 if (rc)
665 goto out;
666
Pali Rohár911515b2021-09-24 23:07:10 +0200667 flags = fcntl(fd, F_GETFL);
668 if (flags < 0)
669 goto out;
670
671 rc = fcntl(fd, F_SETFL, flags & ~O_NDELAY);
672 if (rc)
673 goto out;
674
Pali Rohárca272042021-09-24 23:07:05 +0200675 rc = kwboot_tty_change_baudrate(fd, baudrate);
676 if (rc)
677 goto out;
678
Luka Perkovd131ad62012-05-27 11:44:51 +0000679 rc = fd;
680out:
681 if (rc < 0) {
682 if (fd >= 0)
683 close(fd);
684 }
685
686 return rc;
687}
688
689static int
690kwboot_bootmsg(int tty, void *msg)
691{
692 int rc;
693 char c;
Jon Nettleton9ca6fae2018-08-13 18:24:38 +0300694 int count;
Luka Perkovd131ad62012-05-27 11:44:51 +0000695
Stefan Roese84899e22014-10-22 12:13:21 +0200696 if (msg == NULL)
697 kwboot_printv("Please reboot the target into UART boot mode...");
698 else
699 kwboot_printv("Sending boot message. Please reboot the target...");
Luka Perkovd131ad62012-05-27 11:44:51 +0000700
701 do {
702 rc = tcflush(tty, TCIOFLUSH);
703 if (rc)
704 break;
705
Jon Nettleton9ca6fae2018-08-13 18:24:38 +0300706 for (count = 0; count < 128; count++) {
707 rc = kwboot_tty_send(tty, msg, 8);
708 if (rc) {
709 usleep(msg_req_delay * 1000);
710 continue;
711 }
Luka Perkovd131ad62012-05-27 11:44:51 +0000712 }
713
Stefan Roese84899e22014-10-22 12:13:21 +0200714 rc = kwboot_tty_recv(tty, &c, 1, msg_rsp_timeo);
Luka Perkovd131ad62012-05-27 11:44:51 +0000715
716 kwboot_spinner();
717
718 } while (rc || c != NAK);
719
720 kwboot_printv("\n");
721
722 return rc;
723}
724
725static int
Stefan Roese84899e22014-10-22 12:13:21 +0200726kwboot_debugmsg(int tty, void *msg)
727{
728 int rc;
729
730 kwboot_printv("Sending debug message. Please reboot the target...");
731
732 do {
733 char buf[16];
734
735 rc = tcflush(tty, TCIOFLUSH);
736 if (rc)
737 break;
738
739 rc = kwboot_tty_send(tty, msg, 8);
740 if (rc) {
741 usleep(msg_req_delay * 1000);
742 continue;
743 }
744
745 rc = kwboot_tty_recv(tty, buf, 16, msg_rsp_timeo);
746
747 kwboot_spinner();
748
749 } while (rc);
750
751 kwboot_printv("\n");
752
753 return rc;
754}
755
Pali Rohárc5d666a2021-09-24 23:06:44 +0200756static size_t
Luka Perkovd131ad62012-05-27 11:44:51 +0000757kwboot_xm_makeblock(struct kwboot_block *block, const void *data,
758 size_t size, int pnum)
759{
Marek Behúnd8cc8512021-09-24 23:06:45 +0200760 size_t i, n;
Luka Perkovd131ad62012-05-27 11:44:51 +0000761
Stefan Roese84899e22014-10-22 12:13:21 +0200762 block->soh = SOH;
Luka Perkovd131ad62012-05-27 11:44:51 +0000763 block->pnum = pnum;
764 block->_pnum = ~block->pnum;
765
Pali Rohár2ef87f72021-09-24 23:06:48 +0200766 n = size < KWBOOT_XM_BLKSZ ? size : KWBOOT_XM_BLKSZ;
Luka Perkovd131ad62012-05-27 11:44:51 +0000767 memcpy(&block->data[0], data, n);
Pali Rohár2ef87f72021-09-24 23:06:48 +0200768 memset(&block->data[n], 0, KWBOOT_XM_BLKSZ - n);
Luka Perkovd131ad62012-05-27 11:44:51 +0000769
770 block->csum = 0;
771 for (i = 0; i < n; i++)
772 block->csum += block->data[i];
773
774 return n;
775}
776
Marek Behún12df7b72021-09-24 23:06:52 +0200777static uint64_t
778_now(void)
779{
780 struct timespec ts;
781
782 if (clock_gettime(CLOCK_MONOTONIC, &ts)) {
783 static int err_print;
784
785 if (!err_print) {
786 perror("clock_gettime() does not work");
787 err_print = 1;
788 }
789
790 /* this will just make the timeout not work */
791 return -1ULL;
792 }
793
794 return ts.tv_sec * 1000ULL + (ts.tv_nsec + 500000) / 1000000;
795}
796
Luka Perkovd131ad62012-05-27 11:44:51 +0000797static int
Marek Behún408ea612021-09-24 23:06:49 +0200798_is_xm_reply(char c)
799{
800 return c == ACK || c == NAK || c == CAN;
801}
802
803static int
Pali Rohár9cdc2642021-09-24 23:06:54 +0200804_xm_reply_to_error(int c)
805{
806 int rc = -1;
807
808 switch (c) {
809 case ACK:
810 rc = 0;
811 break;
812 case NAK:
813 errno = EBADMSG;
814 break;
815 case CAN:
816 errno = ECANCELED;
817 break;
818 default:
819 errno = EPROTO;
820 break;
821 }
822
823 return rc;
824}
825
826static int
Pali Rohárca272042021-09-24 23:07:05 +0200827kwboot_baud_magic_handle(int fd, char c, int baudrate)
828{
829 static size_t rcv_len;
830
831 if (rcv_len < sizeof(kwb_baud_magic)) {
832 /* try to recognize whole magic word */
833 if (c == kwb_baud_magic[rcv_len]) {
834 rcv_len++;
835 } else {
836 printf("%.*s%c", (int)rcv_len, kwb_baud_magic, c);
837 fflush(stdout);
838 rcv_len = 0;
839 }
840 }
841
842 if (rcv_len == sizeof(kwb_baud_magic)) {
843 /* magic word received */
844 kwboot_printv("\nChanging baudrate to %d Bd\n", baudrate);
845
846 return kwboot_tty_change_baudrate(fd, baudrate) ? : 1;
847 } else {
848 return 0;
849 }
850}
851
852static int
853kwboot_xm_recv_reply(int fd, char *c, int allow_non_xm, int *non_xm_print,
854 int baudrate, int *baud_changed)
Pali Rohár48b3ea62021-09-24 23:06:50 +0200855{
Marek Behún12df7b72021-09-24 23:06:52 +0200856 int timeout = allow_non_xm ? KWBOOT_HDR_RSP_TIMEO : blk_rsp_timeo;
Marek Behún819cd322021-09-24 23:06:53 +0200857 uint64_t recv_until = _now() + timeout;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200858 int rc;
859
Marek Behún819cd322021-09-24 23:06:53 +0200860 if (non_xm_print)
861 *non_xm_print = 0;
Pali Rohárca272042021-09-24 23:07:05 +0200862 if (baud_changed)
863 *baud_changed = 0;
Marek Behún2e81b3a2021-09-24 23:06:51 +0200864
Pali Rohár48b3ea62021-09-24 23:06:50 +0200865 while (1) {
Marek Behún12df7b72021-09-24 23:06:52 +0200866 rc = kwboot_tty_recv(fd, c, 1, timeout);
Pali Rohár48b3ea62021-09-24 23:06:50 +0200867 if (rc) {
868 if (errno != ETIMEDOUT)
869 return rc;
Marek Behún819cd322021-09-24 23:06:53 +0200870 else if (allow_non_xm && *non_xm_print)
Marek Behún12df7b72021-09-24 23:06:52 +0200871 return -1;
872 else
873 *c = NAK;
Pali Rohár48b3ea62021-09-24 23:06:50 +0200874 }
875
876 /* If received xmodem reply, end. */
877 if (_is_xm_reply(*c))
878 break;
879
880 /*
Pali Rohárca272042021-09-24 23:07:05 +0200881 * If receiving/printing non-xmodem text output is allowed and
882 * such a byte was received, we want to increase receiving time
883 * and either:
884 * - print the byte, if it is not part of baudrate change magic
885 * sequence while baudrate change was requested (-B option)
886 * - change baudrate
Marek Behún819cd322021-09-24 23:06:53 +0200887 * Otherwise decrease timeout by time elapsed.
Pali Rohár48b3ea62021-09-24 23:06:50 +0200888 */
889 if (allow_non_xm) {
Marek Behún12df7b72021-09-24 23:06:52 +0200890 recv_until = _now() + timeout;
Pali Rohárca272042021-09-24 23:07:05 +0200891
892 if (baudrate && !*baud_changed) {
893 rc = kwboot_baud_magic_handle(fd, *c, baudrate);
894 if (rc == 1)
895 *baud_changed = 1;
896 else if (!rc)
897 *non_xm_print = 1;
898 else
899 return rc;
900 } else if (!baudrate || !*baud_changed) {
901 putchar(*c);
902 fflush(stdout);
903 *non_xm_print = 1;
904 }
Marek Behún819cd322021-09-24 23:06:53 +0200905 } else {
906 timeout = recv_until - _now();
907 if (timeout < 0) {
908 errno = ETIMEDOUT;
909 return -1;
910 }
Pali Rohár48b3ea62021-09-24 23:06:50 +0200911 }
912 }
913
914 return 0;
915}
916
917static int
918kwboot_xm_sendblock(int fd, struct kwboot_block *block, int allow_non_xm,
Pali Rohárca272042021-09-24 23:07:05 +0200919 int *done_print, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000920{
Pali Rohárca272042021-09-24 23:07:05 +0200921 int non_xm_print, baud_changed;
922 int rc, err, retries;
Luka Perkovd131ad62012-05-27 11:44:51 +0000923 char c;
924
Pali Rohár48b3ea62021-09-24 23:06:50 +0200925 *done_print = 0;
926
Luka Perkovd131ad62012-05-27 11:44:51 +0000927 retries = 16;
928 do {
929 rc = kwboot_tty_send(fd, block, sizeof(*block));
930 if (rc)
Pali Rohár00a1dee2021-09-24 23:06:43 +0200931 return rc;
Luka Perkovd131ad62012-05-27 11:44:51 +0000932
Pali Rohár48b3ea62021-09-24 23:06:50 +0200933 if (allow_non_xm && !*done_print) {
934 kwboot_progress(100, '.');
935 kwboot_printv("Done\n");
936 *done_print = 1;
937 }
Stefan Roese84899e22014-10-22 12:13:21 +0200938
Pali Rohárca272042021-09-24 23:07:05 +0200939 rc = kwboot_xm_recv_reply(fd, &c, allow_non_xm, &non_xm_print,
940 baudrate, &baud_changed);
Pali Rohár48b3ea62021-09-24 23:06:50 +0200941 if (rc)
Pali Rohárca272042021-09-24 23:07:05 +0200942 goto can;
Stefan Roese84899e22014-10-22 12:13:21 +0200943
Pali Rohár48b3ea62021-09-24 23:06:50 +0200944 if (!allow_non_xm && c != ACK)
Luka Perkovd131ad62012-05-27 11:44:51 +0000945 kwboot_progress(-1, '+');
Luka Perkovd131ad62012-05-27 11:44:51 +0000946 } while (c == NAK && retries-- > 0);
947
Marek Behún2e81b3a2021-09-24 23:06:51 +0200948 if (non_xm_print)
949 kwboot_printv("\n");
950
Pali Rohárca272042021-09-24 23:07:05 +0200951 if (allow_non_xm && baudrate && !baud_changed) {
952 fprintf(stderr, "Baudrate was not changed\n");
953 rc = -1;
954 errno = EPROTO;
955 goto can;
956 }
957
Pali Rohár9cdc2642021-09-24 23:06:54 +0200958 return _xm_reply_to_error(c);
Pali Rohárca272042021-09-24 23:07:05 +0200959can:
960 err = errno;
961 kwboot_tty_send_char(fd, CAN);
962 kwboot_printv("\n");
963 errno = err;
964 return rc;
Pali Rohár9cdc2642021-09-24 23:06:54 +0200965}
Luka Perkovd131ad62012-05-27 11:44:51 +0000966
Pali Rohár9cdc2642021-09-24 23:06:54 +0200967static int
968kwboot_xm_finish(int fd)
969{
970 int rc, retries;
971 char c;
Luka Perkovd131ad62012-05-27 11:44:51 +0000972
Pali Rohár9cdc2642021-09-24 23:06:54 +0200973 kwboot_printv("Finishing transfer\n");
974
975 retries = 16;
976 do {
977 rc = kwboot_tty_send_char(fd, EOT);
978 if (rc)
979 return rc;
980
Pali Rohárca272042021-09-24 23:07:05 +0200981 rc = kwboot_xm_recv_reply(fd, &c, 0, NULL, 0, NULL);
Pali Rohár9cdc2642021-09-24 23:06:54 +0200982 if (rc)
983 return rc;
984 } while (c == NAK && retries-- > 0);
985
986 return _xm_reply_to_error(c);
Luka Perkovd131ad62012-05-27 11:44:51 +0000987}
988
989static int
Pali Rohár2ef87f72021-09-24 23:06:48 +0200990kwboot_xmodem_one(int tty, int *pnum, int header, const uint8_t *data,
Pali Rohárca272042021-09-24 23:07:05 +0200991 size_t size, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +0000992{
Pali Rohár48b3ea62021-09-24 23:06:50 +0200993 int done_print = 0;
Pali Rohár2ef87f72021-09-24 23:06:48 +0200994 size_t sent, left;
995 int rc;
Luka Perkovd131ad62012-05-27 11:44:51 +0000996
Pali Rohár2ef87f72021-09-24 23:06:48 +0200997 kwboot_printv("Sending boot image %s (%zu bytes)...\n",
998 header ? "header" : "data", size);
Luka Perkovd131ad62012-05-27 11:44:51 +0000999
Pali Rohár2ef87f72021-09-24 23:06:48 +02001000 left = size;
1001 sent = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001002
Pali Rohár2ef87f72021-09-24 23:06:48 +02001003 while (sent < size) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001004 struct kwboot_block block;
Pali Rohár48b3ea62021-09-24 23:06:50 +02001005 int last_block;
Pali Rohár2ef87f72021-09-24 23:06:48 +02001006 size_t blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001007
Pali Rohár2ef87f72021-09-24 23:06:48 +02001008 blksz = kwboot_xm_makeblock(&block, data, left, (*pnum)++);
1009 data += blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001010
Pali Rohár48b3ea62021-09-24 23:06:50 +02001011 last_block = (left <= blksz);
1012
1013 rc = kwboot_xm_sendblock(tty, &block, header && last_block,
Pali Rohárca272042021-09-24 23:07:05 +02001014 &done_print, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001015 if (rc)
1016 goto out;
1017
Pali Rohár2ef87f72021-09-24 23:06:48 +02001018 sent += blksz;
1019 left -= blksz;
Luka Perkovd131ad62012-05-27 11:44:51 +00001020
Pali Rohár48b3ea62021-09-24 23:06:50 +02001021 if (!done_print)
1022 kwboot_progress(sent * 100 / size, '.');
Pali Rohár2ef87f72021-09-24 23:06:48 +02001023 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001024
Pali Rohár48b3ea62021-09-24 23:06:50 +02001025 if (!done_print)
1026 kwboot_printv("Done\n");
Pali Rohár2ef87f72021-09-24 23:06:48 +02001027
1028 return 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001029out:
Pali Rohárd5ba8db2021-09-24 23:06:47 +02001030 kwboot_printv("\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001031 return rc;
Pali Rohár2ef87f72021-09-24 23:06:48 +02001032}
Luka Perkovd131ad62012-05-27 11:44:51 +00001033
Pali Rohár2ef87f72021-09-24 23:06:48 +02001034static int
Pali Rohárca272042021-09-24 23:07:05 +02001035kwboot_xmodem(int tty, const void *_img, size_t size, int baudrate)
Pali Rohár2ef87f72021-09-24 23:06:48 +02001036{
1037 const uint8_t *img = _img;
1038 int rc, pnum;
1039 size_t hdrsz;
1040
Marek Behúnfe2fd732021-09-24 23:07:01 +02001041 hdrsz = kwbheader_size(img);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001042
1043 kwboot_printv("Waiting 2s and flushing tty\n");
1044 sleep(2); /* flush isn't effective without it */
1045 tcflush(tty, TCIOFLUSH);
1046
1047 pnum = 1;
1048
Pali Rohárca272042021-09-24 23:07:05 +02001049 rc = kwboot_xmodem_one(tty, &pnum, 1, img, hdrsz, baudrate);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001050 if (rc)
1051 return rc;
1052
1053 img += hdrsz;
1054 size -= hdrsz;
1055
Pali Rohárca272042021-09-24 23:07:05 +02001056 rc = kwboot_xmodem_one(tty, &pnum, 0, img, size, 0);
Pali Rohár2ef87f72021-09-24 23:06:48 +02001057 if (rc)
1058 return rc;
1059
Pali Rohárca272042021-09-24 23:07:05 +02001060 rc = kwboot_xm_finish(tty);
1061 if (rc)
1062 return rc;
1063
1064 if (baudrate) {
1065 char buf[sizeof(kwb_baud_magic)];
1066
1067 /* Wait 1s for baudrate change magic */
1068 rc = kwboot_tty_recv(tty, buf, sizeof(buf), 1000);
1069 if (rc)
1070 return rc;
1071
1072 if (memcmp(buf, kwb_baud_magic, sizeof(buf))) {
1073 errno = EPROTO;
1074 return -1;
1075 }
1076
1077 kwboot_printv("\nChanging baudrate back to 115200 Bd\n\n");
1078 rc = kwboot_tty_change_baudrate(tty, 115200);
1079 if (rc)
1080 return rc;
1081 }
1082
1083 return 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001084}
1085
1086static int
Marek Behún46237e62021-09-24 23:06:40 +02001087kwboot_term_pipe(int in, int out, const char *quit, int *s)
Luka Perkovd131ad62012-05-27 11:44:51 +00001088{
Marek Behúne453bb42021-09-24 23:06:41 +02001089 ssize_t nin;
Luka Perkovd131ad62012-05-27 11:44:51 +00001090 char _buf[128], *buf = _buf;
1091
Pali Rohár43fef8d2021-07-23 11:14:17 +02001092 nin = read(in, buf, sizeof(_buf));
Willy Tarreau4469bd72018-07-03 12:10:31 -04001093 if (nin <= 0)
Luka Perkovd131ad62012-05-27 11:44:51 +00001094 return -1;
1095
1096 if (quit) {
1097 int i;
1098
1099 for (i = 0; i < nin; i++) {
1100 if (*buf == quit[*s]) {
1101 (*s)++;
1102 if (!quit[*s])
1103 return 0;
1104 buf++;
1105 nin--;
Pali Rohárb943eee2021-07-23 11:14:20 +02001106 } else {
Marek Behúne453bb42021-09-24 23:06:41 +02001107 if (kwboot_write(out, quit, *s) < 0)
1108 return -1;
1109 *s = 0;
Pali Rohárb943eee2021-07-23 11:14:20 +02001110 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001111 }
1112 }
1113
Marek Behúne453bb42021-09-24 23:06:41 +02001114 if (kwboot_write(out, buf, nin) < 0)
1115 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001116
1117 return 0;
1118}
1119
1120static int
1121kwboot_terminal(int tty)
1122{
1123 int rc, in, s;
Marek Behún46237e62021-09-24 23:06:40 +02001124 const char *quit = "\34c";
Luka Perkovd131ad62012-05-27 11:44:51 +00001125 struct termios otio, tio;
1126
1127 rc = -1;
1128
1129 in = STDIN_FILENO;
1130 if (isatty(in)) {
1131 rc = tcgetattr(in, &otio);
1132 if (!rc) {
1133 tio = otio;
1134 cfmakeraw(&tio);
1135 rc = tcsetattr(in, TCSANOW, &tio);
1136 }
1137 if (rc) {
1138 perror("tcsetattr");
1139 goto out;
1140 }
1141
1142 kwboot_printv("[Type Ctrl-%c + %c to quit]\r\n",
Marek Behún5fa04f42021-09-24 23:07:11 +02001143 quit[0] | 0100, quit[1]);
Luka Perkovd131ad62012-05-27 11:44:51 +00001144 } else
1145 in = -1;
1146
1147 rc = 0;
1148 s = 0;
1149
1150 do {
1151 fd_set rfds;
1152 int nfds = 0;
1153
Pali Rohár0a143412021-10-25 15:12:52 +02001154 FD_ZERO(&rfds);
Luka Perkovd131ad62012-05-27 11:44:51 +00001155 FD_SET(tty, &rfds);
1156 nfds = nfds < tty ? tty : nfds;
1157
1158 if (in >= 0) {
1159 FD_SET(in, &rfds);
1160 nfds = nfds < in ? in : nfds;
1161 }
1162
1163 nfds = select(nfds + 1, &rfds, NULL, NULL, NULL);
1164 if (nfds < 0)
1165 break;
1166
1167 if (FD_ISSET(tty, &rfds)) {
1168 rc = kwboot_term_pipe(tty, STDOUT_FILENO, NULL, NULL);
1169 if (rc)
1170 break;
1171 }
1172
Marek Behúnf30cb0d2021-09-24 23:06:39 +02001173 if (in >= 0 && FD_ISSET(in, &rfds)) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001174 rc = kwboot_term_pipe(in, tty, quit, &s);
1175 if (rc)
1176 break;
1177 }
1178 } while (quit[s] != 0);
1179
Pali Rohárec0fe5b2021-07-23 11:14:18 +02001180 if (in >= 0)
1181 tcsetattr(in, TCSANOW, &otio);
Pali Rohár49a0a3b2021-07-23 11:14:19 +02001182 printf("\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001183out:
1184 return rc;
1185}
1186
1187static void *
Pali Rohár04ced022021-09-24 23:07:03 +02001188kwboot_read_image(const char *path, size_t *size, size_t reserve)
Luka Perkovd131ad62012-05-27 11:44:51 +00001189{
Pali Rohárddc04fa2021-09-24 23:06:55 +02001190 int rc, fd;
Luka Perkovd131ad62012-05-27 11:44:51 +00001191 struct stat st;
1192 void *img;
Pali Rohár04ced022021-09-24 23:07:03 +02001193 off_t tot;
Luka Perkovd131ad62012-05-27 11:44:51 +00001194
1195 rc = -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001196 img = NULL;
1197
1198 fd = open(path, O_RDONLY);
1199 if (fd < 0)
1200 goto out;
1201
1202 rc = fstat(fd, &st);
1203 if (rc)
1204 goto out;
1205
Pali Rohár04ced022021-09-24 23:07:03 +02001206 img = malloc(st.st_size + reserve);
1207 if (!img)
Luka Perkovd131ad62012-05-27 11:44:51 +00001208 goto out;
Pali Rohár04ced022021-09-24 23:07:03 +02001209
1210 tot = 0;
1211 while (tot < st.st_size) {
1212 ssize_t rd = read(fd, img + tot, st.st_size - tot);
1213
1214 if (rd < 0)
1215 goto out;
1216
1217 tot += rd;
1218
1219 if (!rd && tot < st.st_size) {
1220 errno = EIO;
1221 goto out;
1222 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001223 }
1224
1225 rc = 0;
1226 *size = st.st_size;
1227out:
1228 if (rc && img) {
Pali Rohár04ced022021-09-24 23:07:03 +02001229 free(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001230 img = NULL;
1231 }
1232 if (fd >= 0)
1233 close(fd);
1234
1235 return img;
1236}
1237
1238static uint8_t
Marek Behúnfe2fd732021-09-24 23:07:01 +02001239kwboot_hdr_csum8(const void *hdr)
Luka Perkovd131ad62012-05-27 11:44:51 +00001240{
Marek Behúnfe2fd732021-09-24 23:07:01 +02001241 const uint8_t *data = hdr;
1242 uint8_t csum;
1243 size_t size;
1244
1245 size = kwbheader_size_for_csum(hdr);
Luka Perkovd131ad62012-05-27 11:44:51 +00001246
1247 for (csum = 0; size-- > 0; data++)
1248 csum += *data;
1249
1250 return csum;
1251}
1252
1253static int
Pali Rohár550c9302021-09-24 23:06:57 +02001254kwboot_img_is_secure(void *img)
1255{
1256 struct opt_hdr_v1 *ohdr;
1257
1258 for_each_opt_hdr_v1 (ohdr, img)
1259 if (ohdr->headertype == OPT_HDR_V1_SECURE_TYPE)
1260 return 1;
1261
1262 return 0;
1263}
1264
Pali Rohárca272042021-09-24 23:07:05 +02001265static void *
1266kwboot_img_grow_data_left(void *img, size_t *size, size_t grow)
1267{
1268 uint32_t hdrsz, datasz, srcaddr;
1269 struct main_hdr_v1 *hdr = img;
1270 uint8_t *data;
1271
1272 srcaddr = le32_to_cpu(hdr->srcaddr);
1273
1274 hdrsz = kwbheader_size(hdr);
1275 data = (uint8_t *)img + srcaddr;
1276 datasz = *size - srcaddr;
1277
1278 /* only move data if there is not enough space */
1279 if (hdrsz + grow > srcaddr) {
1280 size_t need = hdrsz + grow - srcaddr;
1281
1282 /* move data by enough bytes */
1283 memmove(data + need, data, datasz);
1284 *size += need;
1285 srcaddr += need;
1286 }
1287
1288 srcaddr -= grow;
1289 hdr->srcaddr = cpu_to_le32(srcaddr);
1290 hdr->destaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) - grow);
1291 hdr->blocksize = cpu_to_le32(le32_to_cpu(hdr->blocksize) + grow);
1292
1293 return (uint8_t *)img + srcaddr;
1294}
1295
Pali Rohár04ced022021-09-24 23:07:03 +02001296static void
1297kwboot_img_grow_hdr(void *img, size_t *size, size_t grow)
1298{
1299 uint32_t hdrsz, datasz, srcaddr;
1300 struct main_hdr_v1 *hdr = img;
1301 uint8_t *data;
1302
1303 srcaddr = le32_to_cpu(hdr->srcaddr);
1304
1305 hdrsz = kwbheader_size(img);
1306 data = (uint8_t *)img + srcaddr;
1307 datasz = *size - srcaddr;
1308
1309 /* only move data if there is not enough space */
1310 if (hdrsz + grow > srcaddr) {
1311 size_t need = hdrsz + grow - srcaddr;
1312
1313 /* move data by enough bytes */
1314 memmove(data + need, data, datasz);
1315
1316 hdr->srcaddr = cpu_to_le32(srcaddr + need);
1317 *size += need;
1318 }
1319
1320 if (kwbimage_version(img) == 1) {
1321 hdrsz += grow;
1322 hdr->headersz_msb = hdrsz >> 16;
1323 hdr->headersz_lsb = cpu_to_le16(hdrsz & 0xffff);
1324 }
1325}
1326
Pali Rohárca272042021-09-24 23:07:05 +02001327static void *
1328kwboot_add_bin_ohdr_v1(void *img, size_t *size, uint32_t binsz)
1329{
1330 struct main_hdr_v1 *hdr = img;
1331 struct opt_hdr_v1 *ohdr;
Pali Rohára85a71d2021-10-21 16:46:06 +02001332 uint32_t num_args;
1333 uint32_t offset;
Pali Rohárca272042021-09-24 23:07:05 +02001334 uint32_t ohdrsz;
1335
Pali Rohárca272042021-09-24 23:07:05 +02001336 if (hdr->ext & 0x1) {
1337 for_each_opt_hdr_v1 (ohdr, img)
1338 if (opt_hdr_v1_next(ohdr) == NULL)
1339 break;
1340
1341 *opt_hdr_v1_ext(ohdr) |= 1;
1342 ohdr = opt_hdr_v1_next(ohdr);
1343 } else {
1344 hdr->ext |= 1;
1345 ohdr = (void *)(hdr + 1);
1346 }
1347
Pali Rohára85a71d2021-10-21 16:46:06 +02001348 /*
1349 * ARM executable code inside the BIN header on some mvebu platforms
1350 * (e.g. A370, AXP) must always be aligned with the 128-bit boundary.
1351 * This requirement can be met by inserting dummy arguments into
1352 * BIN header, if needed.
1353 */
1354 offset = &ohdr->data[4] - (char *)img;
1355 num_args = ((16 - offset % 16) % 16) / sizeof(uint32_t);
1356
1357 ohdrsz = sizeof(*ohdr) + 4 + 4 * num_args + binsz + 4;
1358 kwboot_img_grow_hdr(hdr, size, ohdrsz);
1359
Pali Rohárca272042021-09-24 23:07:05 +02001360 ohdr->headertype = OPT_HDR_V1_BINARY_TYPE;
1361 ohdr->headersz_msb = ohdrsz >> 16;
1362 ohdr->headersz_lsb = cpu_to_le16(ohdrsz & 0xffff);
1363
1364 memset(&ohdr->data[0], 0, ohdrsz - sizeof(*ohdr));
Pali Rohára85a71d2021-10-21 16:46:06 +02001365 *(uint32_t *)&ohdr->data[0] = cpu_to_le32(num_args);
Pali Rohárca272042021-09-24 23:07:05 +02001366
Pali Rohára85a71d2021-10-21 16:46:06 +02001367 return &ohdr->data[4 + 4 * num_args];
Pali Rohárca272042021-09-24 23:07:05 +02001368}
1369
1370static void
1371_copy_baudrate_change_code(struct main_hdr_v1 *hdr, void *dst, int pre,
1372 int old_baud, int new_baud)
1373{
1374 size_t codesz = sizeof(kwboot_baud_code);
1375 uint8_t *code = dst;
1376
1377 if (pre) {
1378 size_t presz = sizeof(kwboot_pre_baud_code);
1379
1380 /*
1381 * We need to prepend code that loads lr register with original
1382 * value of hdr->execaddr. We do this by putting the original
1383 * exec address before the code that loads it relatively from
1384 * it's beginning.
1385 * Afterwards we change the exec address to this code (which is
1386 * at offset 4, because the first 4 bytes contain the original
1387 * exec address).
1388 */
1389 memcpy(code, kwboot_pre_baud_code, presz);
1390 *(uint32_t *)code = hdr->execaddr;
1391
1392 hdr->execaddr = cpu_to_le32(le32_to_cpu(hdr->destaddr) + 4);
1393
1394 code += presz;
1395 }
1396
1397 memcpy(code, kwboot_baud_code, codesz - 8);
1398 *(uint32_t *)(code + codesz - 8) = cpu_to_le32(old_baud);
1399 *(uint32_t *)(code + codesz - 4) = cpu_to_le32(new_baud);
1400}
1401
Pali Rohár550c9302021-09-24 23:06:57 +02001402static int
Pali Rohárca272042021-09-24 23:07:05 +02001403kwboot_img_patch(void *img, size_t *size, int baudrate)
Luka Perkovd131ad62012-05-27 11:44:51 +00001404{
Stefan Roesee29f1db2015-09-29 09:19:59 +02001405 struct main_hdr_v1 *hdr;
Pali Rohár792e4232021-09-24 23:06:58 +02001406 uint32_t srcaddr;
Luka Perkovd131ad62012-05-27 11:44:51 +00001407 uint8_t csum;
Marek Behún5c8f8122021-09-24 23:07:04 +02001408 size_t hdrsz;
Stefan Roesee29f1db2015-09-29 09:19:59 +02001409 int image_ver;
Pali Rohár550c9302021-09-24 23:06:57 +02001410 int is_secure;
Luka Perkovd131ad62012-05-27 11:44:51 +00001411
Luka Perkovd131ad62012-05-27 11:44:51 +00001412 hdr = img;
1413
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001414 if (*size < sizeof(struct main_hdr_v1))
1415 goto err;
Luka Perkovd131ad62012-05-27 11:44:51 +00001416
Marek Behúnacb0b382021-09-24 23:07:00 +02001417 image_ver = kwbimage_version(img);
Pali Rohár5029d7b2021-07-23 11:14:22 +02001418 if (image_ver != 0 && image_ver != 1) {
Stefan Roesee29f1db2015-09-29 09:19:59 +02001419 fprintf(stderr, "Invalid image header version\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001420 goto err;
Stefan Roesee29f1db2015-09-29 09:19:59 +02001421 }
1422
Marek Behúnfe2fd732021-09-24 23:07:01 +02001423 hdrsz = kwbheader_size(hdr);
Stefan Roesee29f1db2015-09-29 09:19:59 +02001424
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001425 if (*size < hdrsz)
1426 goto err;
Pali Rohár825a2ca2021-07-23 11:14:21 +02001427
Marek Behúnfe2fd732021-09-24 23:07:01 +02001428 csum = kwboot_hdr_csum8(hdr) - hdr->checksum;
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001429 if (csum != hdr->checksum)
1430 goto err;
Luka Perkovd131ad62012-05-27 11:44:51 +00001431
Pali Rohár792e4232021-09-24 23:06:58 +02001432 srcaddr = le32_to_cpu(hdr->srcaddr);
1433
1434 switch (hdr->blockid) {
1435 case IBR_HDR_SATA_ID:
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001436 if (srcaddr < 1)
1437 goto err;
1438
Pali Rohár792e4232021-09-24 23:06:58 +02001439 hdr->srcaddr = cpu_to_le32((srcaddr - 1) * 512);
1440 break;
1441
1442 case IBR_HDR_SDIO_ID:
1443 hdr->srcaddr = cpu_to_le32(srcaddr * 512);
1444 break;
1445
1446 case IBR_HDR_PEX_ID:
1447 if (srcaddr == 0xFFFFFFFF)
1448 hdr->srcaddr = cpu_to_le32(hdrsz);
1449 break;
Pali Rohárf2c644e2021-09-24 23:06:59 +02001450
1451 case IBR_HDR_SPI_ID:
1452 if (hdr->destaddr == cpu_to_le32(0xFFFFFFFF)) {
1453 kwboot_printv("Patching destination and execution addresses from SPI/NOR XIP area to DDR area 0x00800000\n");
1454 hdr->destaddr = cpu_to_le32(0x00800000);
1455 hdr->execaddr = cpu_to_le32(0x00800000);
1456 }
1457 break;
Pali Rohár792e4232021-09-24 23:06:58 +02001458 }
1459
Pali Rohár04ced022021-09-24 23:07:03 +02001460 if (hdrsz > le32_to_cpu(hdr->srcaddr) ||
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001461 *size < le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize))
1462 goto err;
Pali Rohár04ced022021-09-24 23:07:03 +02001463
Pali Rohár550c9302021-09-24 23:06:57 +02001464 is_secure = kwboot_img_is_secure(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001465
Pali Rohár550c9302021-09-24 23:06:57 +02001466 if (hdr->blockid != IBR_HDR_UART_ID) {
1467 if (is_secure) {
1468 fprintf(stderr,
1469 "Image has secure header with signature for non-UART booting\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001470 goto err;
Pali Rohár550c9302021-09-24 23:06:57 +02001471 }
1472
1473 kwboot_printv("Patching image boot signature to UART\n");
1474 hdr->blockid = IBR_HDR_UART_ID;
1475 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001476
Pali Rohár0089f612021-10-22 12:37:47 +02001477 if (!is_secure) {
1478 if (image_ver == 0)
1479 ((struct main_hdr_v0 *)img)->nandeccmode = IBR_HDR_ECC_DISABLED;
1480 hdr->nandpagesize = 0;
1481 }
1482
Pali Rohárca272042021-09-24 23:07:05 +02001483 if (baudrate) {
1484 uint32_t codesz = sizeof(kwboot_baud_code);
1485 void *code;
1486
1487 if (image_ver == 0) {
1488 fprintf(stderr,
1489 "Cannot inject code for changing baudrate into v0 image header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001490 goto err;
Pali Rohárca272042021-09-24 23:07:05 +02001491 }
1492
1493 if (is_secure) {
1494 fprintf(stderr,
1495 "Cannot inject code for changing baudrate into image with secure header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001496 goto err;
Pali Rohárca272042021-09-24 23:07:05 +02001497 }
1498
1499 /*
1500 * First inject code that changes the baudrate from the default
1501 * value of 115200 Bd to requested value. This code is inserted
1502 * as a new opt hdr, so it is executed by BootROM after the
1503 * header part is received.
1504 */
1505 kwboot_printv("Injecting binary header code for changing baudrate to %d Bd\n",
1506 baudrate);
1507
1508 code = kwboot_add_bin_ohdr_v1(img, size, codesz);
1509 _copy_baudrate_change_code(hdr, code, 0, 115200, baudrate);
1510
1511 /*
1512 * Now inject code that changes the baudrate back to 115200 Bd.
1513 * This code is prepended to the data part of the image, so it
1514 * is executed before U-Boot proper.
1515 */
1516 kwboot_printv("Injecting code for changing baudrate back\n");
1517
1518 codesz += sizeof(kwboot_pre_baud_code);
1519 code = kwboot_img_grow_data_left(img, size, codesz);
1520 _copy_baudrate_change_code(hdr, code, 1, baudrate, 115200);
1521
1522 /* recompute header size */
1523 hdrsz = kwbheader_size(hdr);
1524 }
1525
Pali Rohár04ced022021-09-24 23:07:03 +02001526 if (hdrsz % KWBOOT_XM_BLKSZ) {
1527 size_t offset = (KWBOOT_XM_BLKSZ - hdrsz % KWBOOT_XM_BLKSZ) %
1528 KWBOOT_XM_BLKSZ;
1529
1530 if (is_secure) {
1531 fprintf(stderr, "Cannot align image with secure header\n");
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001532 goto err;
Pali Rohár04ced022021-09-24 23:07:03 +02001533 }
1534
1535 kwboot_printv("Aligning image header to Xmodem block size\n");
1536 kwboot_img_grow_hdr(img, size, offset);
1537 }
1538
Marek Behúnfe2fd732021-09-24 23:07:01 +02001539 hdr->checksum = kwboot_hdr_csum8(hdr) - csum;
Luka Perkovd131ad62012-05-27 11:44:51 +00001540
Pali Rohár04ced022021-09-24 23:07:03 +02001541 *size = le32_to_cpu(hdr->srcaddr) + le32_to_cpu(hdr->blocksize);
Marek Behúnb4eea8f2021-09-24 23:07:12 +02001542 return 0;
1543err:
1544 errno = EINVAL;
1545 return -1;
Luka Perkovd131ad62012-05-27 11:44:51 +00001546}
1547
1548static void
1549kwboot_usage(FILE *stream, char *progname)
1550{
Pali Rohára050a862021-09-24 23:06:42 +02001551 fprintf(stream, "kwboot version %s\n", PLAIN_VERSION);
Luka Perkovd131ad62012-05-27 11:44:51 +00001552 fprintf(stream,
Kevin Smith8669dac2016-02-16 21:28:17 +00001553 "Usage: %s [OPTIONS] [-b <image> | -D <image> ] [-B <baud> ] <TTY>\n",
Stefan Roese84899e22014-10-22 12:13:21 +02001554 progname);
Luka Perkovd131ad62012-05-27 11:44:51 +00001555 fprintf(stream, "\n");
Stefan Roese84899e22014-10-22 12:13:21 +02001556 fprintf(stream,
1557 " -b <image>: boot <image> with preamble (Kirkwood, Armada 370/XP)\n");
Stefan Roese84899e22014-10-22 12:13:21 +02001558 fprintf(stream,
1559 " -D <image>: boot <image> without preamble (Dove)\n");
1560 fprintf(stream, " -d: enter debug mode\n");
1561 fprintf(stream, " -a: use timings for Armada XP\n");
Stefan Roese1c0df9e2015-05-29 13:25:04 +02001562 fprintf(stream, " -q <req-delay>: use specific request-delay\n");
1563 fprintf(stream, " -s <resp-timeo>: use specific response-timeout\n");
Kevin Smith7497a6a2016-02-16 21:28:19 +00001564 fprintf(stream,
1565 " -o <block-timeo>: use specific xmodem block timeout\n");
Luka Perkovd131ad62012-05-27 11:44:51 +00001566 fprintf(stream, "\n");
1567 fprintf(stream, " -t: mini terminal\n");
1568 fprintf(stream, "\n");
1569 fprintf(stream, " -B <baud>: set baud rate\n");
1570 fprintf(stream, "\n");
1571}
1572
1573int
1574main(int argc, char **argv)
1575{
1576 const char *ttypath, *imgpath;
Pali Rohárddc04fa2021-09-24 23:06:55 +02001577 int rv, rc, tty, term;
Luka Perkovd131ad62012-05-27 11:44:51 +00001578 void *bootmsg;
Stefan Roese84899e22014-10-22 12:13:21 +02001579 void *debugmsg;
Luka Perkovd131ad62012-05-27 11:44:51 +00001580 void *img;
1581 size_t size;
Pali Rohárca272042021-09-24 23:07:05 +02001582 size_t after_img_rsv;
1583 int baudrate;
Luka Perkovd131ad62012-05-27 11:44:51 +00001584
1585 rv = 1;
1586 tty = -1;
1587 bootmsg = NULL;
Stefan Roese84899e22014-10-22 12:13:21 +02001588 debugmsg = NULL;
Luka Perkovd131ad62012-05-27 11:44:51 +00001589 imgpath = NULL;
1590 img = NULL;
1591 term = 0;
Luka Perkovd131ad62012-05-27 11:44:51 +00001592 size = 0;
Pali Rohárca272042021-09-24 23:07:05 +02001593 after_img_rsv = KWBOOT_XM_BLKSZ;
1594 baudrate = 115200;
Luka Perkovd131ad62012-05-27 11:44:51 +00001595
1596 kwboot_verbose = isatty(STDOUT_FILENO);
1597
1598 do {
Kevin Smith7497a6a2016-02-16 21:28:19 +00001599 int c = getopt(argc, argv, "hb:ptaB:dD:q:s:o:");
Luka Perkovd131ad62012-05-27 11:44:51 +00001600 if (c < 0)
1601 break;
1602
1603 switch (c) {
1604 case 'b':
1605 bootmsg = kwboot_msg_boot;
1606 imgpath = optarg;
1607 break;
1608
Stefan Roese84899e22014-10-22 12:13:21 +02001609 case 'D':
1610 bootmsg = NULL;
1611 imgpath = optarg;
1612 break;
1613
1614 case 'd':
1615 debugmsg = kwboot_msg_debug;
1616 break;
1617
Luka Perkovd131ad62012-05-27 11:44:51 +00001618 case 'p':
Pali Rohárddc04fa2021-09-24 23:06:55 +02001619 /* nop, for backward compatibility */
Luka Perkovd131ad62012-05-27 11:44:51 +00001620 break;
1621
1622 case 't':
1623 term = 1;
1624 break;
1625
Stefan Roese84899e22014-10-22 12:13:21 +02001626 case 'a':
1627 msg_req_delay = KWBOOT_MSG_REQ_DELAY_AXP;
1628 msg_rsp_timeo = KWBOOT_MSG_RSP_TIMEO_AXP;
1629 break;
1630
Stefan Roese1c0df9e2015-05-29 13:25:04 +02001631 case 'q':
1632 msg_req_delay = atoi(optarg);
1633 break;
1634
1635 case 's':
1636 msg_rsp_timeo = atoi(optarg);
1637 break;
1638
Kevin Smith7497a6a2016-02-16 21:28:19 +00001639 case 'o':
1640 blk_rsp_timeo = atoi(optarg);
1641 break;
1642
Luka Perkovd131ad62012-05-27 11:44:51 +00001643 case 'B':
Pali Rohárca272042021-09-24 23:07:05 +02001644 baudrate = atoi(optarg);
Luka Perkovd131ad62012-05-27 11:44:51 +00001645 break;
1646
1647 case 'h':
1648 rv = 0;
1649 default:
1650 goto usage;
1651 }
1652 } while (1);
1653
Stefan Roese84899e22014-10-22 12:13:21 +02001654 if (!bootmsg && !term && !debugmsg)
Luka Perkovd131ad62012-05-27 11:44:51 +00001655 goto usage;
1656
Luka Perkovd131ad62012-05-27 11:44:51 +00001657 if (argc - optind < 1)
1658 goto usage;
1659
1660 ttypath = argv[optind++];
1661
Pali Rohárca272042021-09-24 23:07:05 +02001662 tty = kwboot_open_tty(ttypath, imgpath ? 115200 : baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001663 if (tty < 0) {
1664 perror(ttypath);
1665 goto out;
1666 }
1667
Pali Rohárca272042021-09-24 23:07:05 +02001668 if (baudrate == 115200)
1669 /* do not change baudrate during Xmodem to the same value */
1670 baudrate = 0;
1671 else
1672 /* ensure we have enough space for baudrate change code */
1673 after_img_rsv += KWBOOT_BAUDRATE_BIN_HEADER_SZ +
1674 sizeof(kwboot_pre_baud_code) +
1675 sizeof(kwboot_baud_code);
1676
Luka Perkovd131ad62012-05-27 11:44:51 +00001677 if (imgpath) {
Pali Rohárca272042021-09-24 23:07:05 +02001678 img = kwboot_read_image(imgpath, &size, after_img_rsv);
Luka Perkovd131ad62012-05-27 11:44:51 +00001679 if (!img) {
1680 perror(imgpath);
1681 goto out;
1682 }
Luka Perkovd131ad62012-05-27 11:44:51 +00001683
Pali Rohárca272042021-09-24 23:07:05 +02001684 rc = kwboot_img_patch(img, &size, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001685 if (rc) {
1686 fprintf(stderr, "%s: Invalid image.\n", imgpath);
1687 goto out;
1688 }
1689 }
1690
Stefan Roese84899e22014-10-22 12:13:21 +02001691 if (debugmsg) {
1692 rc = kwboot_debugmsg(tty, debugmsg);
1693 if (rc) {
1694 perror("debugmsg");
1695 goto out;
1696 }
Willy Tarreau3475a712018-07-03 12:10:30 -04001697 } else if (bootmsg) {
Luka Perkovd131ad62012-05-27 11:44:51 +00001698 rc = kwboot_bootmsg(tty, bootmsg);
1699 if (rc) {
1700 perror("bootmsg");
1701 goto out;
1702 }
1703 }
1704
1705 if (img) {
Pali Rohárca272042021-09-24 23:07:05 +02001706 rc = kwboot_xmodem(tty, img, size, baudrate);
Luka Perkovd131ad62012-05-27 11:44:51 +00001707 if (rc) {
1708 perror("xmodem");
1709 goto out;
1710 }
1711 }
1712
1713 if (term) {
1714 rc = kwboot_terminal(tty);
1715 if (rc && !(errno == EINTR)) {
1716 perror("terminal");
1717 goto out;
1718 }
1719 }
1720
1721 rv = 0;
1722out:
1723 if (tty >= 0)
1724 close(tty);
1725
1726 if (img)
Pali Rohár04ced022021-09-24 23:07:03 +02001727 free(img);
Luka Perkovd131ad62012-05-27 11:44:51 +00001728
1729 return rv;
1730
1731usage:
1732 kwboot_usage(rv ? stderr : stdout, basename(argv[0]));
1733 goto out;
1734}