]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
4bae9090 BS |
2 | /* |
3 | * (C) Copyright 2008 Semihalf | |
4 | * | |
5 | * Written by: Rafal Czubak <[email protected]> | |
6 | * Bartlomiej Sieka <[email protected]> | |
4bae9090 BS |
7 | */ |
8 | ||
9 | #include <common.h> | |
1eb69ae4 | 10 | #include <cpu_func.h> |
8e8ccfe1 | 11 | #include <image.h> |
4bae9090 BS |
12 | |
13 | #if !(defined(CONFIG_FIT) && defined(CONFIG_OF_LIBFDT)) | |
14 | #error "CONFIG_FIT and CONFIG_OF_LIBFDT are required for auto-update feature" | |
15 | #endif | |
16 | ||
e856bdcf MY |
17 | #if defined(CONFIG_UPDATE_TFTP) && !defined(CONFIG_MTD_NOR_FLASH) |
18 | #error "CONFIG_UPDATE_TFTP and !CONFIG_MTD_NOR_FLASH needed for legacy behaviour" | |
c7ff5528 LM |
19 | #endif |
20 | ||
4bae9090 | 21 | #include <command.h> |
9fb625ce | 22 | #include <env.h> |
4bae9090 BS |
23 | #include <flash.h> |
24 | #include <net.h> | |
06370590 | 25 | #include <net/tftp.h> |
4bae9090 | 26 | #include <malloc.h> |
c7ff5528 LM |
27 | #include <dfu.h> |
28 | #include <errno.h> | |
175c3e3a | 29 | #include <mtd/cfi_flash.h> |
4bae9090 BS |
30 | |
31 | /* env variable holding the location of the update file */ | |
32 | #define UPDATE_FILE_ENV "updatefile" | |
33 | ||
34 | /* set configuration defaults if needed */ | |
35 | #ifndef CONFIG_UPDATE_LOAD_ADDR | |
36 | #define CONFIG_UPDATE_LOAD_ADDR 0x100000 | |
37 | #endif | |
38 | ||
39 | #ifndef CONFIG_UPDATE_TFTP_MSEC_MAX | |
40 | #define CONFIG_UPDATE_TFTP_MSEC_MAX 100 | |
41 | #endif | |
42 | ||
43 | #ifndef CONFIG_UPDATE_TFTP_CNT_MAX | |
44 | #define CONFIG_UPDATE_TFTP_CNT_MAX 0 | |
45 | #endif | |
46 | ||
8885c5fe JH |
47 | extern ulong tftp_timeout_ms; |
48 | extern int tftp_timeout_count_max; | |
e856bdcf | 49 | #ifdef CONFIG_MTD_NOR_FLASH |
66a64723 | 50 | extern flash_info_t flash_info[]; |
4bae9090 | 51 | static uchar *saved_prot_info; |
66a64723 | 52 | #endif |
4bae9090 BS |
53 | static int update_load(char *filename, ulong msec_max, int cnt_max, ulong addr) |
54 | { | |
55 | int size, rv; | |
56 | ulong saved_timeout_msecs; | |
57 | int saved_timeout_count; | |
58 | char *saved_netretry, *saved_bootfile; | |
59 | ||
60 | rv = 0; | |
61 | /* save used globals and env variable */ | |
8885c5fe JH |
62 | saved_timeout_msecs = tftp_timeout_ms; |
63 | saved_timeout_count = tftp_timeout_count_max; | |
00caae6d | 64 | saved_netretry = strdup(env_get("netretry")); |
1411157d | 65 | saved_bootfile = strdup(net_boot_file_name); |
4bae9090 BS |
66 | |
67 | /* set timeouts for auto-update */ | |
8885c5fe JH |
68 | tftp_timeout_ms = msec_max; |
69 | tftp_timeout_count_max = cnt_max; | |
4bae9090 BS |
70 | |
71 | /* we don't want to retry the connection if errors occur */ | |
382bee57 | 72 | env_set("netretry", "no"); |
4bae9090 BS |
73 | |
74 | /* download the update file */ | |
bb872dd9 | 75 | image_load_addr = addr; |
1411157d | 76 | copy_filename(net_boot_file_name, filename, sizeof(net_boot_file_name)); |
bc0571fc | 77 | size = net_loop(TFTPGET); |
4bae9090 BS |
78 | |
79 | if (size < 0) | |
80 | rv = 1; | |
81 | else if (size > 0) | |
82 | flush_cache(addr, size); | |
83 | ||
84 | /* restore changed globals and env variable */ | |
8885c5fe JH |
85 | tftp_timeout_ms = saved_timeout_msecs; |
86 | tftp_timeout_count_max = saved_timeout_count; | |
4bae9090 | 87 | |
382bee57 | 88 | env_set("netretry", saved_netretry); |
4bae9090 BS |
89 | if (saved_netretry != NULL) |
90 | free(saved_netretry); | |
91 | ||
92 | if (saved_bootfile != NULL) { | |
1411157d JH |
93 | copy_filename(net_boot_file_name, saved_bootfile, |
94 | sizeof(net_boot_file_name)); | |
4bae9090 BS |
95 | free(saved_bootfile); |
96 | } | |
97 | ||
98 | return rv; | |
99 | } | |
100 | ||
e856bdcf | 101 | #ifdef CONFIG_MTD_NOR_FLASH |
4bae9090 BS |
102 | static int update_flash_protect(int prot, ulong addr_first, ulong addr_last) |
103 | { | |
104 | uchar *sp_info_ptr; | |
105 | ulong s; | |
106 | int i, bank, cnt; | |
107 | flash_info_t *info; | |
108 | ||
109 | sp_info_ptr = NULL; | |
110 | ||
111 | if (prot == 0) { | |
112 | saved_prot_info = | |
6d0f6bcf | 113 | calloc(CONFIG_SYS_MAX_FLASH_BANKS * CONFIG_SYS_MAX_FLASH_SECT, 1); |
4bae9090 BS |
114 | if (!saved_prot_info) |
115 | return 1; | |
116 | } | |
117 | ||
6d0f6bcf | 118 | for (bank = 0; bank < CONFIG_SYS_MAX_FLASH_BANKS; ++bank) { |
4bae9090 BS |
119 | cnt = 0; |
120 | info = &flash_info[bank]; | |
121 | ||
122 | /* Nothing to do if the bank doesn't exist */ | |
123 | if (info->sector_count == 0) | |
124 | return 0; | |
125 | ||
126 | /* Point to current bank protection information */ | |
6d0f6bcf | 127 | sp_info_ptr = saved_prot_info + (bank * CONFIG_SYS_MAX_FLASH_SECT); |
4bae9090 BS |
128 | |
129 | /* | |
130 | * Adjust addr_first or addr_last if we are on bank boundary. | |
131 | * Address space between banks must be continuous for other | |
132 | * flash functions (like flash_sect_erase or flash_write) to | |
133 | * succeed. Banks must also be numbered in correct order, | |
134 | * according to increasing addresses. | |
135 | */ | |
136 | if (addr_last > info->start[0] + info->size - 1) | |
137 | addr_last = info->start[0] + info->size - 1; | |
138 | if (addr_first < info->start[0]) | |
139 | addr_first = info->start[0]; | |
140 | ||
141 | for (i = 0; i < info->sector_count; i++) { | |
142 | /* Save current information about protected sectors */ | |
143 | if (prot == 0) { | |
144 | s = info->start[i]; | |
145 | if ((s >= addr_first) && (s <= addr_last)) | |
146 | sp_info_ptr[i] = info->protect[i]; | |
147 | ||
148 | } | |
149 | ||
150 | /* Protect/unprotect sectors */ | |
151 | if (sp_info_ptr[i] == 1) { | |
6d0f6bcf | 152 | #if defined(CONFIG_SYS_FLASH_PROTECTION) |
4bae9090 BS |
153 | if (flash_real_protect(info, i, prot)) |
154 | return 1; | |
155 | #else | |
156 | info->protect[i] = prot; | |
157 | #endif | |
158 | cnt++; | |
159 | } | |
160 | } | |
161 | ||
162 | if (cnt) { | |
163 | printf("%sProtected %d sectors\n", | |
164 | prot ? "": "Un-", cnt); | |
165 | } | |
166 | } | |
167 | ||
168 | if((prot == 1) && saved_prot_info) | |
169 | free(saved_prot_info); | |
170 | ||
171 | return 0; | |
172 | } | |
66a64723 | 173 | #endif |
4bae9090 BS |
174 | |
175 | static int update_flash(ulong addr_source, ulong addr_first, ulong size) | |
176 | { | |
e856bdcf | 177 | #ifdef CONFIG_MTD_NOR_FLASH |
4bae9090 BS |
178 | ulong addr_last = addr_first + size - 1; |
179 | ||
180 | /* round last address to the sector boundary */ | |
181 | if (flash_sect_roundb(&addr_last) > 0) | |
182 | return 1; | |
183 | ||
184 | if (addr_first >= addr_last) { | |
185 | printf("Error: end address exceeds addressing space\n"); | |
186 | return 1; | |
187 | } | |
188 | ||
189 | /* remove protection on processed sectors */ | |
190 | if (update_flash_protect(0, addr_first, addr_last) > 0) { | |
191 | printf("Error: could not unprotect flash sectors\n"); | |
192 | return 1; | |
193 | } | |
194 | ||
195 | printf("Erasing 0x%08lx - 0x%08lx", addr_first, addr_last); | |
196 | if (flash_sect_erase(addr_first, addr_last) > 0) { | |
197 | printf("Error: could not erase flash\n"); | |
198 | return 1; | |
199 | } | |
200 | ||
201 | printf("Copying to flash..."); | |
202 | if (flash_write((char *)addr_source, addr_first, size) > 0) { | |
203 | printf("Error: could not copy to flash\n"); | |
204 | return 1; | |
205 | } | |
206 | printf("done\n"); | |
207 | ||
208 | /* enable protection on processed sectors */ | |
209 | if (update_flash_protect(1, addr_first, addr_last) > 0) { | |
210 | printf("Error: could not protect flash sectors\n"); | |
211 | return 1; | |
212 | } | |
66a64723 | 213 | #endif |
4bae9090 BS |
214 | return 0; |
215 | } | |
216 | ||
217 | static int update_fit_getparams(const void *fit, int noffset, ulong *addr, | |
218 | ulong *fladdr, ulong *size) | |
219 | { | |
220 | const void *data; | |
221 | ||
222 | if (fit_image_get_data(fit, noffset, &data, (size_t *)size)) | |
223 | return 1; | |
224 | ||
225 | if (fit_image_get_load(fit, noffset, (ulong *)fladdr)) | |
226 | return 1; | |
227 | ||
228 | *addr = (ulong)data; | |
229 | ||
230 | return 0; | |
231 | } | |
232 | ||
c7ff5528 | 233 | int update_tftp(ulong addr, char *interface, char *devstring) |
4bae9090 | 234 | { |
c7ff5528 | 235 | char *filename, *env_addr, *fit_image_name; |
4bae9090 | 236 | ulong update_addr, update_fladdr, update_size; |
c7ff5528 LM |
237 | int images_noffset, ndepth, noffset; |
238 | bool update_tftp_dfu; | |
8d6b7320 | 239 | int ret = 0; |
c7ff5528 LM |
240 | void *fit; |
241 | ||
242 | if (interface == NULL && devstring == NULL) { | |
243 | update_tftp_dfu = false; | |
244 | } else if (interface && devstring) { | |
245 | update_tftp_dfu = true; | |
246 | } else { | |
9b643e31 | 247 | pr_err("Interface: %s and devstring: %s not supported!\n", |
c7ff5528 LM |
248 | interface, devstring); |
249 | return -EINVAL; | |
250 | } | |
8d6b7320 AP |
251 | |
252 | /* use already present image */ | |
253 | if (addr) | |
254 | goto got_update_file; | |
4bae9090 BS |
255 | |
256 | printf("Auto-update from TFTP: "); | |
257 | ||
258 | /* get the file name of the update file */ | |
00caae6d | 259 | filename = env_get(UPDATE_FILE_ENV); |
4bae9090 BS |
260 | if (filename == NULL) { |
261 | printf("failed, env. variable '%s' not found\n", | |
262 | UPDATE_FILE_ENV); | |
8d6b7320 | 263 | return 1; |
4bae9090 BS |
264 | } |
265 | ||
266 | printf("trying update file '%s'\n", filename); | |
267 | ||
268 | /* get load address of downloaded update file */ | |
00caae6d SG |
269 | env_addr = env_get("loadaddr"); |
270 | if (env_addr) | |
4bae9090 BS |
271 | addr = simple_strtoul(env_addr, NULL, 16); |
272 | else | |
273 | addr = CONFIG_UPDATE_LOAD_ADDR; | |
274 | ||
275 | ||
276 | if (update_load(filename, CONFIG_UPDATE_TFTP_MSEC_MAX, | |
277 | CONFIG_UPDATE_TFTP_CNT_MAX, addr)) { | |
278 | printf("Can't load update file, aborting auto-update\n"); | |
8d6b7320 | 279 | return 1; |
4bae9090 BS |
280 | } |
281 | ||
8d6b7320 | 282 | got_update_file: |
4bae9090 BS |
283 | fit = (void *)addr; |
284 | ||
285 | if (!fit_check_format((void *)fit)) { | |
286 | printf("Bad FIT format of the update file, aborting " | |
287 | "auto-update\n"); | |
8d6b7320 | 288 | return 1; |
4bae9090 BS |
289 | } |
290 | ||
291 | /* process updates */ | |
292 | images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); | |
293 | ||
294 | ndepth = 0; | |
295 | noffset = fdt_next_node(fit, images_noffset, &ndepth); | |
296 | while (noffset >= 0 && ndepth > 0) { | |
297 | if (ndepth != 1) | |
298 | goto next_node; | |
299 | ||
c7ff5528 LM |
300 | fit_image_name = (char *)fit_get_name(fit, noffset, NULL); |
301 | printf("Processing update '%s' :", fit_image_name); | |
4bae9090 | 302 | |
b8da8366 | 303 | if (!fit_image_verify(fit, noffset)) { |
4bae9090 | 304 | printf("Error: invalid update hash, aborting\n"); |
8d6b7320 | 305 | ret = 1; |
4bae9090 BS |
306 | goto next_node; |
307 | } | |
308 | ||
309 | printf("\n"); | |
310 | if (update_fit_getparams(fit, noffset, &update_addr, | |
311 | &update_fladdr, &update_size)) { | |
312 | printf("Error: can't get update parameteres, " | |
313 | "aborting\n"); | |
8d6b7320 | 314 | ret = 1; |
4bae9090 BS |
315 | goto next_node; |
316 | } | |
c7ff5528 LM |
317 | |
318 | if (!update_tftp_dfu) { | |
319 | if (update_flash(update_addr, update_fladdr, | |
320 | update_size)) { | |
321 | printf("Error: can't flash update, aborting\n"); | |
322 | ret = 1; | |
323 | goto next_node; | |
324 | } | |
325 | } else if (fit_image_check_type(fit, noffset, | |
326 | IH_TYPE_FIRMWARE)) { | |
327 | ret = dfu_tftp_write(fit_image_name, update_addr, | |
328 | update_size, interface, devstring); | |
329 | if (ret) | |
330 | return ret; | |
4bae9090 BS |
331 | } |
332 | next_node: | |
333 | noffset = fdt_next_node(fit, noffset, &ndepth); | |
334 | } | |
335 | ||
8d6b7320 | 336 | return ret; |
4bae9090 | 337 | } |