blob: c8dd346a0956951a0683679bdd37d13c07383e60 [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 <flash.h>
24#include <net.h>
Kim Phillips06370592012-10-29 13:34:33 +000025#include <net/tftp.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020026#include <malloc.h>
Lukasz Majewskic7ff5522015-08-24 00:21:47 +020027#include <dfu.h>
28#include <errno.h>
Marek Vasut175c3e32018-02-10 16:22:07 +010029#include <mtd/cfi_flash.h>
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020030
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
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
Lukasz Majewski66a64722015-08-24 00:21:44 +020050extern flash_info_t flash_info[];
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020051static uchar *saved_prot_info;
Lukasz Majewski66a64722015-08-24 00:21:44 +020052#endif
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020053static 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 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050062 saved_timeout_msecs = tftp_timeout_ms;
63 saved_timeout_count = tftp_timeout_count_max;
Simon Glass00caae62017-08-03 12:22:12 -060064 saved_netretry = strdup(env_get("netretry"));
Joe Hershberger14111572015-04-08 01:41:02 -050065 saved_bootfile = strdup(net_boot_file_name);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020066
67 /* set timeouts for auto-update */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050068 tftp_timeout_ms = msec_max;
69 tftp_timeout_count_max = cnt_max;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020070
71 /* we don't want to retry the connection if errors occur */
Simon Glass382bee52017-08-03 12:22:09 -060072 env_set("netretry", "no");
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020073
74 /* download the update file */
Simon Glassbb872dd2019-12-28 10:45:02 -070075 image_load_addr = addr;
Joe Hershberger14111572015-04-08 01:41:02 -050076 copy_filename(net_boot_file_name, filename, sizeof(net_boot_file_name));
Joe Hershbergerbc0571f2015-04-08 01:41:21 -050077 size = net_loop(TFTPGET);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020078
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 */
Joe Hershberger8885c5f2015-04-08 01:41:07 -050085 tftp_timeout_ms = saved_timeout_msecs;
86 tftp_timeout_count_max = saved_timeout_count;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020087
Simon Glass382bee52017-08-03 12:22:09 -060088 env_set("netretry", saved_netretry);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020089 if (saved_netretry != NULL)
90 free(saved_netretry);
91
92 if (saved_bootfile != NULL) {
Joe Hershberger14111572015-04-08 01:41:02 -050093 copy_filename(net_boot_file_name, saved_bootfile,
94 sizeof(net_boot_file_name));
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020095 free(saved_bootfile);
96 }
97
98 return rv;
99}
100
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900101#ifdef CONFIG_MTD_NOR_FLASH
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200102static 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 =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113 calloc(CONFIG_SYS_MAX_FLASH_BANKS * CONFIG_SYS_MAX_FLASH_SECT, 1);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200114 if (!saved_prot_info)
115 return 1;
116 }
117
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118 for (bank = 0; bank < CONFIG_SYS_MAX_FLASH_BANKS; ++bank) {
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200119 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 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127 sp_info_ptr = saved_prot_info + (bank * CONFIG_SYS_MAX_FLASH_SECT);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200128
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) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152#if defined(CONFIG_SYS_FLASH_PROTECTION)
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200153 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}
Lukasz Majewski66a64722015-08-24 00:21:44 +0200173#endif
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200174
175static int update_flash(ulong addr_source, ulong addr_first, ulong size)
176{
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900177#ifdef CONFIG_MTD_NOR_FLASH
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200178 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 }
Lukasz Majewski66a64722015-08-24 00:21:44 +0200213#endif
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200214 return 0;
215}
216
217static 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
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200233int update_tftp(ulong addr, char *interface, char *devstring)
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200234{
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200235 char *filename, *env_addr, *fit_image_name;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200236 ulong update_addr, update_fladdr, update_size;
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200237 int images_noffset, ndepth, noffset;
238 bool update_tftp_dfu;
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000239 int ret = 0;
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200240 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 {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900247 pr_err("Interface: %s and devstring: %s not supported!\n",
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200248 interface, devstring);
249 return -EINVAL;
250 }
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000251
252 /* use already present image */
253 if (addr)
254 goto got_update_file;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200255
256 printf("Auto-update from TFTP: ");
257
258 /* get the file name of the update file */
Simon Glass00caae62017-08-03 12:22:12 -0600259 filename = env_get(UPDATE_FILE_ENV);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200260 if (filename == NULL) {
261 printf("failed, env. variable '%s' not found\n",
262 UPDATE_FILE_ENV);
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000263 return 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200264 }
265
266 printf("trying update file '%s'\n", filename);
267
268 /* get load address of downloaded update file */
Simon Glass00caae62017-08-03 12:22:12 -0600269 env_addr = env_get("loadaddr");
270 if (env_addr)
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200271 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");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000279 return 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200280 }
281
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000282got_update_file:
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200283 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");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000288 return 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200289 }
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
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200300 fit_image_name = (char *)fit_get_name(fit, noffset, NULL);
301 printf("Processing update '%s' :", fit_image_name);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200302
Simon Glassb8da8362013-05-07 06:11:57 +0000303 if (!fit_image_verify(fit, noffset)) {
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200304 printf("Error: invalid update hash, aborting\n");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000305 ret = 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200306 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");
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000314 ret = 1;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200315 goto next_node;
316 }
Lukasz Majewskic7ff5522015-08-24 00:21:47 +0200317
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;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200331 }
332next_node:
333 noffset = fdt_next_node(fit, noffset, &ndepth);
334 }
335
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000336 return ret;
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +0200337}