blob: 80f16af6535817ebb018a9754e4548881e9305fc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +02002/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * Written by: Rafal Czubak <rcz@semihalf.com>
6 * Bartlomiej Sieka <tur@semihalf.com>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +02007 */
8
9#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070010#include <cpu_func.h>
Simon Glass8e8ccfe2019-12-28 10:45:03 -070011#include <image.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020012
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
Masahiro Yamadae856bdc2017-02-11 22:43:54 +090017#if defined(CONFIG_UPDATE_TFTP) && !defined(CONFIG_MTD_NOR_FLASH)
18#error "CONFIG_UPDATE_TFTP and !CONFIG_MTD_NOR_FLASH needed for legacy behaviour"
Lukasz Majewskic7ff5522015-08-24 00:21:47 +020019#endif
20
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020021#include <command.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060022#include <env.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020023#include <net.h>
Kim Phillips06370592012-10-29 13:34:33 +000024#include <net/tftp.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020025#include <malloc.h>
Heinrich Schuchardt73f4ebb2020-07-22 17:46:02 +020026#include <mapmem.h>
Lukasz Majewskic7ff5522015-08-24 00:21:47 +020027#include <dfu.h>
28#include <errno.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020029
AKASHI Takahiro50efdf22020-11-19 09:37:19 +090030#if defined(CONFIG_DFU_TFTP) || defined(CONFIG_UPDATE_TFTP)
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020031/* 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
Joe Hershberger8885c5f2015-04-08 01:41:07 -050047extern ulong tftp_timeout_ms;
48extern int tftp_timeout_count_max;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +090049#ifdef CONFIG_MTD_NOR_FLASH
Tom Rini17ead042022-07-23 13:05:03 -040050#include <flash.h>
51#include <mtd/cfi_flash.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020052static uchar *saved_prot_info;
Lukasz Majewski66a64722015-08-24 00:21:44 +020053#endif
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020054static int update_load(char *filename, ulong msec_max, int cnt_max, ulong addr)
55{
56 int size, rv;
57 ulong saved_timeout_msecs;
58 int saved_timeout_count;
59 char *saved_netretry, *saved_bootfile;
60
61 rv = 0;
62 /* save used globals and env variable */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050063 saved_timeout_msecs = tftp_timeout_ms;
64 saved_timeout_count = tftp_timeout_count_max;
Simon Glass00caae62017-08-03 12:22:12 -060065 saved_netretry = strdup(env_get("netretry"));
Joe Hershberger14111572015-04-08 01:41:02 -050066 saved_bootfile = strdup(net_boot_file_name);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020067
68 /* set timeouts for auto-update */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050069 tftp_timeout_ms = msec_max;
70 tftp_timeout_count_max = cnt_max;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020071
72 /* we don't want to retry the connection if errors occur */
Simon Glass382bee52017-08-03 12:22:09 -060073 env_set("netretry", "no");
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020074
75 /* download the update file */
Simon Glassbb872dd2019-12-28 10:45:02 -070076 image_load_addr = addr;
Joe Hershberger14111572015-04-08 01:41:02 -050077 copy_filename(net_boot_file_name, filename, sizeof(net_boot_file_name));
Joe Hershbergerbc0571f2015-04-08 01:41:21 -050078 size = net_loop(TFTPGET);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020079
80 if (size < 0)
81 rv = 1;
82 else if (size > 0)
83 flush_cache(addr, size);
84
85 /* restore changed globals and env variable */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050086 tftp_timeout_ms = saved_timeout_msecs;
87 tftp_timeout_count_max = saved_timeout_count;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020088
Simon Glass382bee52017-08-03 12:22:09 -060089 env_set("netretry", saved_netretry);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020090 if (saved_netretry != NULL)
91 free(saved_netretry);
92
93 if (saved_bootfile != NULL) {
Joe Hershberger14111572015-04-08 01:41:02 -050094 copy_filename(net_boot_file_name, saved_bootfile,
95 sizeof(net_boot_file_name));
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020096 free(saved_bootfile);
97 }
98
99 return rv;
100}
101
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900102#ifdef CONFIG_MTD_NOR_FLASH
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200103static int update_flash_protect(int prot, ulong addr_first, ulong addr_last)
104{
105 uchar *sp_info_ptr;
106 ulong s;
107 int i, bank, cnt;
108 flash_info_t *info;
109
110 sp_info_ptr = NULL;
111
112 if (prot == 0) {
113 saved_prot_info =
Patrick Delaunay98150e72022-01-04 14:23:58 +0100114 calloc(CFI_FLASH_BANKS * CONFIG_SYS_MAX_FLASH_SECT, 1);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200115 if (!saved_prot_info)
116 return 1;
117 }
118
Patrick Delaunay98150e72022-01-04 14:23:58 +0100119 for (bank = 0; bank < CFI_FLASH_BANKS; ++bank) {
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200120 cnt = 0;
121 info = &flash_info[bank];
122
123 /* Nothing to do if the bank doesn't exist */
124 if (info->sector_count == 0)
125 return 0;
126
127 /* Point to current bank protection information */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200128 sp_info_ptr = saved_prot_info + (bank * CONFIG_SYS_MAX_FLASH_SECT);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200129
130 /*
131 * Adjust addr_first or addr_last if we are on bank boundary.
132 * Address space between banks must be continuous for other
133 * flash functions (like flash_sect_erase or flash_write) to
134 * succeed. Banks must also be numbered in correct order,
135 * according to increasing addresses.
136 */
137 if (addr_last > info->start[0] + info->size - 1)
138 addr_last = info->start[0] + info->size - 1;
139 if (addr_first < info->start[0])
140 addr_first = info->start[0];
141
142 for (i = 0; i < info->sector_count; i++) {
143 /* Save current information about protected sectors */
144 if (prot == 0) {
145 s = info->start[i];
146 if ((s >= addr_first) && (s <= addr_last))
147 sp_info_ptr[i] = info->protect[i];
148
149 }
150
151 /* Protect/unprotect sectors */
152 if (sp_info_ptr[i] == 1) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153#if defined(CONFIG_SYS_FLASH_PROTECTION)
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200154 if (flash_real_protect(info, i, prot))
155 return 1;
156#else
157 info->protect[i] = prot;
158#endif
159 cnt++;
160 }
161 }
162
163 if (cnt) {
164 printf("%sProtected %d sectors\n",
165 prot ? "": "Un-", cnt);
166 }
167 }
168
169 if((prot == 1) && saved_prot_info)
170 free(saved_prot_info);
171
172 return 0;
173}
Lukasz Majewski66a64722015-08-24 00:21:44 +0200174#endif
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200175
176static int update_flash(ulong addr_source, ulong addr_first, ulong size)
177{
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900178#ifdef CONFIG_MTD_NOR_FLASH
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200179 ulong addr_last = addr_first + size - 1;
180
181 /* round last address to the sector boundary */
182 if (flash_sect_roundb(&addr_last) > 0)
183 return 1;
184
185 if (addr_first >= addr_last) {
186 printf("Error: end address exceeds addressing space\n");
187 return 1;
188 }
189
190 /* remove protection on processed sectors */
191 if (update_flash_protect(0, addr_first, addr_last) > 0) {
192 printf("Error: could not unprotect flash sectors\n");
193 return 1;
194 }
195
196 printf("Erasing 0x%08lx - 0x%08lx", addr_first, addr_last);
197 if (flash_sect_erase(addr_first, addr_last) > 0) {
198 printf("Error: could not erase flash\n");
199 return 1;
200 }
201
202 printf("Copying to flash...");
203 if (flash_write((char *)addr_source, addr_first, size) > 0) {
204 printf("Error: could not copy to flash\n");
205 return 1;
206 }
207 printf("done\n");
208
209 /* enable protection on processed sectors */
210 if (update_flash_protect(1, addr_first, addr_last) > 0) {
211 printf("Error: could not protect flash sectors\n");
212 return 1;
213 }
Lukasz Majewski66a64722015-08-24 00:21:44 +0200214#endif
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200215 return 0;
216}
AKASHI Takahiro50efdf22020-11-19 09:37:19 +0900217#endif /* CONFIG_DFU_TFTP || CONFIG_UPDATE_TFTP */
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200218
219static int update_fit_getparams(const void *fit, int noffset, ulong *addr,
220 ulong *fladdr, ulong *size)
221{
222 const void *data;
223
224 if (fit_image_get_data(fit, noffset, &data, (size_t *)size))
225 return 1;
226
227 if (fit_image_get_load(fit, noffset, (ulong *)fladdr))
228 return 1;
229
230 *addr = (ulong)data;
231
232 return 0;
233}
234
AKASHI Takahiro50efdf22020-11-19 09:37:19 +0900235#if defined(CONFIG_DFU_TFTP) || defined(CONFIG_UPDATE_TFTP)
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200236int update_tftp(ulong addr, char *interface, char *devstring)
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200237{
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200238 char *filename, *env_addr, *fit_image_name;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200239 ulong update_addr, update_fladdr, update_size;
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200240 int images_noffset, ndepth, noffset;
241 bool update_tftp_dfu;
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000242 int ret = 0;
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200243 void *fit;
244
245 if (interface == NULL && devstring == NULL) {
246 update_tftp_dfu = false;
247 } else if (interface && devstring) {
248 update_tftp_dfu = true;
249 } else {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900250 pr_err("Interface: %s and devstring: %s not supported!\n",
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200251 interface, devstring);
252 return -EINVAL;
253 }
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000254
255 /* use already present image */
256 if (addr)
257 goto got_update_file;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200258
259 printf("Auto-update from TFTP: ");
260
261 /* get the file name of the update file */
Simon Glass00caae62017-08-03 12:22:12 -0600262 filename = env_get(UPDATE_FILE_ENV);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200263 if (filename == NULL) {
264 printf("failed, env. variable '%s' not found\n",
265 UPDATE_FILE_ENV);
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000266 return 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200267 }
268
269 printf("trying update file '%s'\n", filename);
270
271 /* get load address of downloaded update file */
Simon Glass00caae62017-08-03 12:22:12 -0600272 env_addr = env_get("loadaddr");
273 if (env_addr)
Simon Glass7e5f4602021-07-24 09:03:29 -0600274 addr = hextoul(env_addr, NULL);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200275 else
276 addr = CONFIG_UPDATE_LOAD_ADDR;
277
278
279 if (update_load(filename, CONFIG_UPDATE_TFTP_MSEC_MAX,
280 CONFIG_UPDATE_TFTP_CNT_MAX, addr)) {
281 printf("Can't load update file, aborting auto-update\n");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000282 return 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200283 }
284
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000285got_update_file:
Heinrich Schuchardt73f4ebb2020-07-22 17:46:02 +0200286 fit = map_sysmem(addr, 0);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200287
Simon Glassc5819702021-02-15 17:08:09 -0700288 if (fit_check_format((void *)fit, IMAGE_SIZE_INVAL)) {
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200289 printf("Bad FIT format of the update file, aborting "
290 "auto-update\n");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000291 return 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200292 }
293
294 /* process updates */
295 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
296
297 ndepth = 0;
298 noffset = fdt_next_node(fit, images_noffset, &ndepth);
299 while (noffset >= 0 && ndepth > 0) {
300 if (ndepth != 1)
301 goto next_node;
302
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200303 fit_image_name = (char *)fit_get_name(fit, noffset, NULL);
304 printf("Processing update '%s' :", fit_image_name);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200305
Simon Glassb8da8362013-05-07 06:11:57 +0000306 if (!fit_image_verify(fit, noffset)) {
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200307 printf("Error: invalid update hash, aborting\n");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000308 ret = 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200309 goto next_node;
310 }
311
312 printf("\n");
313 if (update_fit_getparams(fit, noffset, &update_addr,
314 &update_fladdr, &update_size)) {
Heinrich Schuchardt4e620eb2020-07-17 19:55:54 +0200315 printf("Error: can't get update parameters, aborting\n");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000316 ret = 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200317 goto next_node;
318 }
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200319
320 if (!update_tftp_dfu) {
321 if (update_flash(update_addr, update_fladdr,
322 update_size)) {
323 printf("Error: can't flash update, aborting\n");
324 ret = 1;
325 goto next_node;
326 }
327 } else if (fit_image_check_type(fit, noffset,
328 IH_TYPE_FIRMWARE)) {
AKASHI Takahiro1c2d1292020-10-29 13:47:42 +0900329 ret = dfu_write_by_name(fit_image_name,
330 (void *)update_addr,
AKASHI Takahiro045fd8b2020-10-29 13:47:41 +0900331 update_size, interface,
332 devstring);
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200333 if (ret)
334 return ret;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200335 }
336next_node:
337 noffset = fdt_next_node(fit, noffset, &ndepth);
338 }
339
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000340 return ret;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200341}
AKASHI Takahiro50efdf22020-11-19 09:37:19 +0900342#endif /* CONFIG_DFU_UPDATE || CONFIG_UPDATE_TFTP */
AKASHI Takahiro3149e522020-10-29 13:47:43 +0900343
344#ifdef CONFIG_UPDATE_FIT
345/**
346 * fit_update - update storage with FIT image
347 * @fit: Pointer to FIT image
348 *
349 * Update firmware on storage using FIT image as input.
350 * The storage area to be update will be identified by the name
351 * in FIT and matching it to "dfu_alt_info" variable.
352 *
353 * Return: 0 - on success, non-zero - otherwise
354 */
355int fit_update(const void *fit)
356{
357 char *fit_image_name;
358 ulong update_addr, update_fladdr, update_size;
359 int images_noffset, ndepth, noffset;
360 int ret = 0;
361
362 if (!fit)
363 return -EINVAL;
364
Simon Glassc5819702021-02-15 17:08:09 -0700365 if (fit_check_format((void *)fit, IMAGE_SIZE_INVAL)) {
AKASHI Takahiro3149e522020-10-29 13:47:43 +0900366 printf("Bad FIT format of the update file, aborting auto-update\n");
367 return -EINVAL;
368 }
369
370 /* process updates */
371 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
372
373 ndepth = 0;
374 noffset = fdt_next_node(fit, images_noffset, &ndepth);
375 while (noffset >= 0 && ndepth > 0) {
376 if (ndepth != 1)
377 goto next_node;
378
379 fit_image_name = (char *)fit_get_name(fit, noffset, NULL);
380 printf("Processing update '%s' :", fit_image_name);
381
382 if (!fit_image_verify(fit, noffset)) {
383 printf("Error: invalid update hash, aborting\n");
384 ret = 1;
385 goto next_node;
386 }
387
388 printf("\n");
389 if (update_fit_getparams(fit, noffset, &update_addr,
390 &update_fladdr, &update_size)) {
391 printf("Error: can't get update parameters, aborting\n");
392 ret = 1;
393 goto next_node;
394 }
395
396 if (fit_image_check_type(fit, noffset, IH_TYPE_FIRMWARE)) {
397 ret = dfu_write_by_name(fit_image_name,
398 (void *)update_addr,
399 update_size, NULL, NULL);
400 if (ret)
401 return ret;
402 }
403next_node:
404 noffset = fdt_next_node(fit, noffset, &ndepth);
405 }
406
407 return ret;
408}
409#endif /* CONFIG_UPDATE_FIT */