blob: 13e8e51da99d5031b01e2b3bdc3474b7e44e587a [file] [log] [blame]
Matt Porter24de3572012-01-31 12:03:57 +00001/*
2 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2011
6 * Texas Instruments, <www.ti.com>
7 *
8 * Matt Porter <mporter@ti.com>
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Matt Porter24de3572012-01-31 12:03:57 +000011 */
12#include <common.h>
Tom Rini47f7bca2012-08-13 12:03:19 -070013#include <spl.h>
Matt Porter24de3572012-01-31 12:03:57 +000014#include <xyzModem.h>
15#include <asm/u-boot.h>
16#include <asm/utils.h>
Lokesh Vutlafa715192016-05-24 10:34:44 +053017#include <libfdt.h>
Matt Porter24de3572012-01-31 12:03:57 +000018
19#define BUF_SIZE 1024
20
Lokesh Vutlafa715192016-05-24 10:34:44 +053021/*
22 * Information required to load image using ymodem.
23 *
24 * @image_read: Now of bytes read from the image.
25 * @buf: pointer to the previous read block.
26 */
27struct ymodem_fit_info {
28 int image_read;
29 char *buf;
30};
31
Matt Porter24de3572012-01-31 12:03:57 +000032static int getcymodem(void) {
33 if (tstc())
34 return (getc());
35 return -1;
36}
37
Lokesh Vutlafa715192016-05-24 10:34:44 +053038static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset,
39 ulong size, void *addr)
40{
41 int res, err;
42 struct ymodem_fit_info *info = load->priv;
43 char *buf = info->buf;
44
45 while (info->image_read < offset) {
46 res = xyzModem_stream_read(buf, BUF_SIZE, &err);
47 if (res <= 0)
48 return res;
49 info->image_read += res;
50 }
51
52 if (info->image_read > offset) {
53 res = info->image_read - offset;
54 memcpy(addr, &buf[BUF_SIZE - res], res);
55 addr = addr + res;
56 }
57
58 while (info->image_read < offset + size) {
59 res = xyzModem_stream_read(buf, BUF_SIZE, &err);
60 if (res <= 0)
61 return res;
62
63 memcpy(addr, buf, res);
64 info->image_read += res;
65 addr += res;
66 }
67
68 return size;
69}
70
Simon Glass2a2ee2a2016-09-24 18:20:13 -060071static int spl_ymodem_load_image(struct spl_image_info *spl_image,
72 struct spl_boot_device *bootdev)
Matt Porter24de3572012-01-31 12:03:57 +000073{
74 int size = 0;
75 int err;
76 int res;
77 int ret;
78 connection_info_t info;
79 char buf[BUF_SIZE];
Matt Porter24de3572012-01-31 12:03:57 +000080 ulong addr = 0;
81
82 info.mode = xyzModem_ymodem;
83 ret = xyzModem_stream_open(&info, &err);
Lokesh Vutlafa715192016-05-24 10:34:44 +053084 if (ret) {
Matt Porter24de3572012-01-31 12:03:57 +000085 printf("spl: ymodem err - %s\n", xyzModem_error(err));
Nikita Kiryanov36afd452015-11-08 17:11:49 +020086 return ret;
Matt Porter24de3572012-01-31 12:03:57 +000087 }
88
Lokesh Vutlafa715192016-05-24 10:34:44 +053089 res = xyzModem_stream_read(buf, BUF_SIZE, &err);
90 if (res <= 0)
91 goto end_stream;
92
93 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
94 image_get_magic((struct image_header *)buf) == FDT_MAGIC) {
95 struct spl_load_info load;
96 struct ymodem_fit_info info;
97
98 debug("Found FIT\n");
99 load.dev = NULL;
100 load.priv = (void *)&info;
101 load.filename = NULL;
102 load.bl_len = 1;
103 info.buf = buf;
104 info.image_read = BUF_SIZE;
105 load.read = ymodem_read_fit;
Simon Glassf4d7d852016-09-24 18:20:16 -0600106 ret = spl_load_simple_fit(spl_image, &load, 0, (void *)buf);
Lokesh Vutlafa715192016-05-24 10:34:44 +0530107 size = info.image_read;
108
109 while ((res = xyzModem_stream_read(buf, BUF_SIZE, &err)) > 0)
110 size += res;
111 } else {
Simon Glass2a2ee2a2016-09-24 18:20:13 -0600112 spl_parse_image_header(spl_image, (struct image_header *)buf);
113 ret = spl_parse_image_header(spl_image,
Simon Glass71316c12016-09-24 18:19:53 -0600114 (struct image_header *)buf);
Lokesh Vutlafa715192016-05-24 10:34:44 +0530115 if (ret)
116 return ret;
Simon Glass2a2ee2a2016-09-24 18:20:13 -0600117 addr = spl_image->load_addr;
Lokesh Vutlafa715192016-05-24 10:34:44 +0530118 memcpy((void *)addr, buf, res);
119 size += res;
120 addr += res;
121
122 while ((res = xyzModem_stream_read(buf, BUF_SIZE, &err)) > 0) {
123 memcpy((void *)addr, buf, res);
124 size += res;
125 addr += res;
126 }
127 }
128
129end_stream:
Matt Porter24de3572012-01-31 12:03:57 +0000130 xyzModem_stream_close(&err);
131 xyzModem_stream_terminate(false, &getcymodem);
132
133 printf("Loaded %d bytes\n", size);
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200134 return 0;
Matt Porter24de3572012-01-31 12:03:57 +0000135}
Simon Glassdd6bf902016-09-24 18:20:05 -0600136SPL_LOAD_IMAGE_METHOD(0, BOOT_DEVICE_UART, spl_ymodem_load_image);