]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
24de357a MP |
2 | /* |
3 | * (C) Copyright 2000-2004 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
5 | * | |
6 | * (C) Copyright 2011 | |
7 | * Texas Instruments, <www.ti.com> | |
8 | * | |
9 | * Matt Porter <[email protected]> | |
24de357a MP |
10 | */ |
11 | #include <common.h> | |
0c670fc1 | 12 | #include <gzip.h> |
47f7bcae | 13 | #include <spl.h> |
24de357a MP |
14 | #include <xyzModem.h> |
15 | #include <asm/u-boot.h> | |
b08c8c48 | 16 | #include <linux/libfdt.h> |
24de357a MP |
17 | |
18 | #define BUF_SIZE 1024 | |
19 | ||
fa715193 LV |
20 | /* |
21 | * Information required to load image using ymodem. | |
22 | * | |
23 | * @image_read: Now of bytes read from the image. | |
24 | * @buf: pointer to the previous read block. | |
25 | */ | |
26 | struct ymodem_fit_info { | |
27 | int image_read; | |
28 | char *buf; | |
29 | }; | |
30 | ||
24de357a MP |
31 | static int getcymodem(void) { |
32 | if (tstc()) | |
33 | return (getc()); | |
34 | return -1; | |
35 | } | |
36 | ||
fa715193 LV |
37 | static ulong ymodem_read_fit(struct spl_load_info *load, ulong offset, |
38 | ulong size, void *addr) | |
39 | { | |
095764e3 | 40 | int res, err, buf_offset; |
fa715193 LV |
41 | struct ymodem_fit_info *info = load->priv; |
42 | char *buf = info->buf; | |
43 | ||
44 | while (info->image_read < offset) { | |
45 | res = xyzModem_stream_read(buf, BUF_SIZE, &err); | |
46 | if (res <= 0) | |
9d6ee3e2 AD |
47 | break; |
48 | ||
fa715193 LV |
49 | info->image_read += res; |
50 | } | |
51 | ||
52 | if (info->image_read > offset) { | |
53 | res = info->image_read - offset; | |
095764e3 LV |
54 | if (info->image_read % BUF_SIZE) |
55 | buf_offset = (info->image_read % BUF_SIZE); | |
56 | else | |
57 | buf_offset = BUF_SIZE; | |
58 | memcpy(addr, &buf[buf_offset - res], res); | |
fa715193 LV |
59 | addr = addr + res; |
60 | } | |
61 | ||
62 | while (info->image_read < offset + size) { | |
63 | res = xyzModem_stream_read(buf, BUF_SIZE, &err); | |
64 | if (res <= 0) | |
9d6ee3e2 | 65 | break; |
fa715193 LV |
66 | |
67 | memcpy(addr, buf, res); | |
68 | info->image_read += res; | |
69 | addr += res; | |
70 | } | |
71 | ||
72 | return size; | |
73 | } | |
74 | ||
e413033d AD |
75 | int spl_ymodem_load_image(struct spl_image_info *spl_image, |
76 | struct spl_boot_device *bootdev) | |
24de357a | 77 | { |
92e5cb80 | 78 | ulong size = 0; |
24de357a MP |
79 | int err; |
80 | int res; | |
81 | int ret; | |
82 | connection_info_t info; | |
83 | char buf[BUF_SIZE]; | |
d574c19b | 84 | struct image_header *ih = NULL; |
24de357a MP |
85 | ulong addr = 0; |
86 | ||
87 | info.mode = xyzModem_ymodem; | |
88 | ret = xyzModem_stream_open(&info, &err); | |
fa715193 LV |
89 | if (ret) { |
90 | printf("spl: ymodem err - %s\n", xyzModem_error(err)); | |
91 | return ret; | |
92 | } | |
93 | ||
94 | res = xyzModem_stream_read(buf, BUF_SIZE, &err); | |
95 | if (res <= 0) | |
96 | goto end_stream; | |
97 | ||
792dd570 MV |
98 | if (IS_ENABLED(CONFIG_SPL_LOAD_FIT_FULL) && |
99 | image_get_magic((struct image_header *)buf) == FDT_MAGIC) { | |
100 | addr = CONFIG_SYS_LOAD_ADDR; | |
101 | ih = (struct image_header *)addr; | |
102 | ||
103 | memcpy((void *)addr, buf, res); | |
104 | size += res; | |
105 | addr += res; | |
106 | ||
107 | while ((res = xyzModem_stream_read(buf, BUF_SIZE, &err)) > 0) { | |
108 | memcpy((void *)addr, buf, res); | |
109 | size += res; | |
110 | addr += res; | |
111 | } | |
112 | ||
113 | ret = spl_parse_image_header(spl_image, ih); | |
114 | if (ret) | |
115 | return ret; | |
116 | } else if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) && | |
fa715193 LV |
117 | image_get_magic((struct image_header *)buf) == FDT_MAGIC) { |
118 | struct spl_load_info load; | |
119 | struct ymodem_fit_info info; | |
120 | ||
121 | debug("Found FIT\n"); | |
122 | load.dev = NULL; | |
123 | load.priv = (void *)&info; | |
124 | load.filename = NULL; | |
125 | load.bl_len = 1; | |
126 | info.buf = buf; | |
127 | info.image_read = BUF_SIZE; | |
128 | load.read = ymodem_read_fit; | |
f4d7d859 | 129 | ret = spl_load_simple_fit(spl_image, &load, 0, (void *)buf); |
fa715193 | 130 | size = info.image_read; |
24de357a | 131 | |
fa715193 LV |
132 | while ((res = xyzModem_stream_read(buf, BUF_SIZE, &err)) > 0) |
133 | size += res; | |
134 | } else { | |
92e5cb80 MV |
135 | ih = (struct image_header *)buf; |
136 | ret = spl_parse_image_header(spl_image, ih); | |
fa715193 | 137 | if (ret) |
6d8dbe48 | 138 | goto end_stream; |
92e5cb80 MV |
139 | #ifdef CONFIG_SPL_GZIP |
140 | if (ih->ih_comp == IH_COMP_GZIP) | |
141 | addr = CONFIG_SYS_LOAD_ADDR; | |
142 | else | |
143 | #endif | |
144 | addr = spl_image->load_addr; | |
fa715193 | 145 | memcpy((void *)addr, buf, res); |
92e5cb80 | 146 | ih = (struct image_header *)addr; |
fa715193 LV |
147 | size += res; |
148 | addr += res; | |
149 | ||
150 | while ((res = xyzModem_stream_read(buf, BUF_SIZE, &err)) > 0) { | |
151 | memcpy((void *)addr, buf, res); | |
24de357a MP |
152 | size += res; |
153 | addr += res; | |
24de357a | 154 | } |
24de357a MP |
155 | } |
156 | ||
fa715193 | 157 | end_stream: |
24de357a MP |
158 | xyzModem_stream_close(&err); |
159 | xyzModem_stream_terminate(false, &getcymodem); | |
160 | ||
92e5cb80 | 161 | printf("Loaded %lu bytes\n", size); |
6d8dbe48 | 162 | |
d574c19b MV |
163 | #ifdef CONFIG_SPL_GZIP |
164 | if (!(IS_ENABLED(CONFIG_SPL_LOAD_FIT) && | |
165 | image_get_magic((struct image_header *)buf) == FDT_MAGIC) && | |
166 | (ih->ih_comp == IH_COMP_GZIP)) { | |
167 | if (gunzip((void *)(spl_image->load_addr + sizeof(*ih)), | |
168 | CONFIG_SYS_BOOTM_LEN, | |
169 | (void *)(CONFIG_SYS_LOAD_ADDR + sizeof(*ih)), | |
170 | &size)) { | |
171 | puts("Uncompressing error\n"); | |
172 | return -EIO; | |
173 | } | |
174 | } | |
175 | #endif | |
176 | ||
6d8dbe48 | 177 | return ret; |
24de357a | 178 | } |
ebc4ef61 | 179 | SPL_LOAD_IMAGE_METHOD("UART", 0, BOOT_DEVICE_UART, spl_ymodem_load_image); |