blob: 68c38f4e5cc082c7d5bf228023dba9136ab30847 [file] [log] [blame]
wdenka68d3ed2002-10-11 08:38:32 +00001/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02002 * (C) Copyright 2000-2010
wdenka68d3ed2002-10-11 08:38:32 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
Kim Phillipsa000b792011-04-05 07:15:14 +00007 *
8 * Copyright 2011 Freescale Semiconductor, Inc.
9 *
wdenka68d3ed2002-10-11 08:38:32 +000010 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
Wolfgang Denkea882ba2010-06-20 23:33:59 +020029/*
wdenka68d3ed2002-10-11 08:38:32 +000030 * Support for persistent environment data
31 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020032 * The "environment" is stored on external storage as a list of '\0'
33 * terminated "name=value" strings. The end of the list is marked by
34 * a double '\0'. The environment is preceeded by a 32 bit CRC over
35 * the data part and, in case of redundant environment, a byte of
36 * flags.
wdenka68d3ed2002-10-11 08:38:32 +000037 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020038 * This linearized representation will also be used before
39 * relocation, i. e. as long as we don't have a full C runtime
40 * environment. After that, we use a hash table.
wdenka68d3ed2002-10-11 08:38:32 +000041 */
42
43#include <common.h>
44#include <command.h>
45#include <environment.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020046#include <search.h>
47#include <errno.h>
Peter Tyser246c6922009-10-25 15:12:56 -050048#include <malloc.h>
wdenk2a3cb022002-11-05 21:01:48 +000049#include <watchdog.h>
wdenk281e00a2004-08-01 22:48:16 +000050#include <serial.h>
wdenka68d3ed2002-10-11 08:38:32 +000051#include <linux/stddef.h>
52#include <asm/byteorder.h>
Jon Loeligerc76fe472007-07-08 18:02:23 -050053#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +000054#include <net.h>
55#endif
56
Wolfgang Denkd87080b2006-03-31 18:32:53 +020057DECLARE_GLOBAL_DATA_PTR;
58
Macpaul Linf3c615b2011-04-26 16:16:45 +000059#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
60 !defined(CONFIG_ENV_IS_IN_FLASH) && \
61 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000062 !defined(CONFIG_ENV_IS_IN_MMC) && \
Maximilian Schwerin57210c72012-03-12 23:57:50 +000063 !defined(CONFIG_ENV_IS_IN_FAT) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000064 !defined(CONFIG_ENV_IS_IN_NAND) && \
65 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
66 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
67 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Liu Gang0a85a9e2012-03-08 00:33:20 +000068 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000069 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090070# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Marek Vasutb37d41a2012-03-04 15:11:32 +000071SPI_FLASH|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE
wdenka68d3ed2002-10-11 08:38:32 +000072#endif
73
Wolfgang Denkea882ba2010-06-20 23:33:59 +020074/*
75 * Maximum expected input data size for import command
76 */
77#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000078
Mike Frysinger558605c2010-12-21 14:08:27 -050079ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Simon Glass1aec2442011-10-21 18:51:38 +000080ulong save_addr; /* Default Save Address */
81ulong save_size; /* Default Save Size (in bytes) */
Mike Frysinger558605c2010-12-21 14:08:27 -050082
wdenka68d3ed2002-10-11 08:38:32 +000083/*
84 * Table with supported baudrates (defined in config_xyz.h)
85 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000087#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
88
Heiko Schocherda954272009-04-28 08:36:11 +020089/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020090 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020091 * be used via get_env_id() as an indication, if the environment
92 * has changed or not. So it is possible to reread an environment
93 * variable only if the environment was changed ... done so for
94 * example in NetInitLoop()
95 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010096static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000097
Macpaul Linf3c615b2011-04-26 16:16:45 +000098int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +010099{
100 return env_id;
101}
wdenka68d3ed2002-10-11 08:38:32 +0000102
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000103#ifndef CONFIG_SPL_BUILD
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400104/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200105 * Command interface: print one or all environment variables
106 *
107 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400108 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200109static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000110{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200111 char *res = NULL;
112 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000113
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200114 if (name) { /* print a single name */
115 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000116
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200117 e.key = name;
118 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500119 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200120 if (ep == NULL)
121 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000122 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200123 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400124 }
wdenka68d3ed2002-10-11 08:38:32 +0000125
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200126 /* print whole list */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100127 len = hexport_r(&env_htab, '\n', &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200128
129 if (len > 0) {
130 puts(res);
131 free(res);
132 return len;
133 }
134
135 /* should never happen */
136 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400137}
138
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200139int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400140{
141 int i;
142 int rcode = 0;
143
144 if (argc == 1) {
145 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200146 rcode = env_print(NULL);
147 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400148 return 1;
149 printf("\nEnvironment size: %d/%ld bytes\n",
150 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000151 return 0;
152 }
153
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400154 /* print selected env vars */
155 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200156 int rc = env_print(argv[i]);
157 if (!rc) {
158 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400159 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000160 }
161 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400162
wdenka68d3ed2002-10-11 08:38:32 +0000163 return rcode;
164}
165
Kim Phillipsa000b792011-04-05 07:15:14 +0000166#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000167static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
168 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000169{
170 ENTRY *match;
171 unsigned char matched[env_htab.size / 8];
172 int rcode = 1, arg = 1, idx;
173
174 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000175 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000176
177 memset(matched, 0, env_htab.size / 8);
178
179 while (arg <= argc) {
180 idx = 0;
Kumar Gala068f1582011-11-23 09:48:02 +0000181 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
Kim Phillipsa000b792011-04-05 07:15:14 +0000182 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
183 puts(match->key);
184 puts("=");
185 puts(match->data);
186 puts("\n");
187 }
188 matched[idx / 8] |= 1 << (idx & 7);
189 rcode = 0;
190 }
191 arg++;
192 }
193
194 return rcode;
195}
196#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000197#endif /* CONFIG_SPL_BUILD */
Kim Phillipsa000b792011-04-05 07:15:14 +0000198
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200199/*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000200 * Perform consistency checking before setting, replacing, or deleting an
201 * environment variable, then (if successful) apply the changes to internals so
202 * to make them effective. Code for this function was taken out of
203 * _do_env_set(), which now calls it instead.
Gerlando Falautoc5983592012-08-24 00:11:39 +0000204 * Also called as a callback function by himport_r().
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000205 * Returns 0 in case of success, 1 in case of failure.
206 * When (flag & H_FORCE) is set, do not print out any error message and force
207 * overwriting of write-once variables.
wdenka68d3ed2002-10-11 08:38:32 +0000208 */
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000209
210int env_check_apply(const char *name, const char *oldval,
211 const char *newval, int flag)
wdenka68d3ed2002-10-11 08:38:32 +0000212{
wdenka68d3ed2002-10-11 08:38:32 +0000213 int console = -1;
wdenka68d3ed2002-10-11 08:38:32 +0000214
Gerlando Falauto7ac80552012-10-05 00:46:10 +0000215 /* Default value for NULL to protect string-manipulating functions */
216 newval = newval ? : "";
217
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200218 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000219 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200220 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000221 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200222 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000223 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200224 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200225
226 if (console != -1) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000227 if ((newval == NULL) || (*newval == '\0')) {
228 /* We cannot delete stdin/stdout/stderr */
229 if ((flag & H_FORCE) == 0)
230 printf("Can't delete \"%s\"\n", name);
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200231 return 1;
232 }
233
234#ifdef CONFIG_CONSOLE_MUX
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000235 if (iomux_doenv(console, newval))
Gerlando Falautoc2ba2ff2012-08-24 00:11:36 +0000236 return 1;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200237#else
238 /* Try assigning specified device */
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000239 if (console_assign(console, newval) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200240 return 1;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200241#endif /* CONFIG_CONSOLE_MUX */
242 }
243
wdenka68d3ed2002-10-11 08:38:32 +0000244 /*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000245 * Some variables like "ethaddr" and "serial#" can be set only once and
246 * cannot be deleted, unless CONFIG_ENV_OVERWRITE is defined.
wdenka68d3ed2002-10-11 08:38:32 +0000247 */
wdenka68d3ed2002-10-11 08:38:32 +0000248#ifndef CONFIG_ENV_OVERWRITE
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000249 if (oldval != NULL && /* variable exists */
250 (flag & H_FORCE) == 0) { /* and we are not forced */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000251 if (strcmp(name, "serial#") == 0 ||
252 (strcmp(name, "ethaddr") == 0
wdenka68d3ed2002-10-11 08:38:32 +0000253#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Marek Vasut5368c552012-09-23 17:41:24 +0200254 && strcmp(oldval, __stringify(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000255#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000256 )) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000257 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000258 return 1;
259 }
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000260 }
wdenka68d3ed2002-10-11 08:38:32 +0000261#endif
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000262 /*
263 * When we change baudrate, or we are doing an env default -a
264 * (which will erase all variables prior to calling this),
265 * we want the baudrate to actually change - for real.
266 */
267 if (oldval != NULL || /* variable exists */
268 (flag & H_NOCLEAR) == 0) { /* or env is clear */
wdenka68d3ed2002-10-11 08:38:32 +0000269 /*
270 * Switch to new baudrate if new baudrate is supported
271 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000272 if (strcmp(name, "baudrate") == 0) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000273 int baudrate = simple_strtoul(newval, NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000274 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000275 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000276 if (baudrate == baudrate_table[i])
277 break;
278 }
279 if (i == N_BAUDRATES) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000280 if ((flag & H_FORCE) == 0)
281 printf("## Baudrate %d bps not "
282 "supported\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000283 return 1;
284 }
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000285 if (gd->baudrate == baudrate) {
286 /* If unchanged, we just say it's OK */
287 return 0;
288 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000289 printf("## Switch baudrate to %d bps and"
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000290 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000291 udelay(50000);
292 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100293#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000294 gd->bd->bi_baudrate = baudrate;
295#endif
296
Macpaul Linf3c615b2011-04-26 16:16:45 +0000297 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000298 udelay(50000);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000299 while (getc() != '\r')
300 ;
wdenka68d3ed2002-10-11 08:38:32 +0000301 }
wdenka68d3ed2002-10-11 08:38:32 +0000302 }
303
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000304 /*
305 * Some variables should be updated when the corresponding
306 * entry in the environment is changed
307 */
308 if (strcmp(name, "loadaddr") == 0) {
309 load_addr = simple_strtoul(newval, NULL, 16);
310 return 0;
311 }
312#if defined(CONFIG_CMD_NET)
313 else if (strcmp(name, "bootfile") == 0) {
314 copy_filename(BootFile, newval, sizeof(BootFile));
315 return 0;
316 }
317#endif
318 return 0;
319}
320
321/*
322 * Set a new environment variable,
323 * or replace or delete an existing one.
324*/
325int _do_env_set(int flag, int argc, char * const argv[])
326{
327 int i, len;
328 char *name, *value, *s;
329 ENTRY e, *ep;
330
331 name = argv[1];
332 value = argv[2];
333
334 if (strchr(name, '=')) {
335 printf("## Error: illegal character '='"
336 "in variable name \"%s\"\n", name);
337 return 1;
338 }
339
340 env_id++;
341 /*
342 * search if variable with this name already exists
343 */
344 e.key = name;
345 e.data = NULL;
346 hsearch_r(e, FIND, &ep, &env_htab);
347
348 /*
349 * Perform requested checks. Notice how since we are overwriting
350 * a single variable, we need to set H_NOCLEAR
351 */
352 if (env_check_apply(name, ep ? ep->data : NULL, value, H_NOCLEAR)) {
353 debug("check function did not approve, refusing\n");
354 return 1;
355 }
356
wdenka68d3ed2002-10-11 08:38:32 +0000357 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000358 if (argc < 3 || argv[2] == NULL) {
Gerlando Falauto152874b2012-08-24 00:11:40 +0000359 int rc = hdelete_r(name, &env_htab, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200360 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000361 }
362
363 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200364 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000365 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000366 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000367 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000368
369 value = malloc(len);
370 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200371 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000372 return 1;
373 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000374 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200375 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000376
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200377 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000378 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000379 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000380 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200381 if (s != value)
382 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000383
Igor Grinbergd09b1782011-11-07 01:13:59 +0000384 e.key = name;
385 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500386 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200387 free(value);
388 if (!ep) {
389 printf("## Error inserting \"%s\" variable, errno=%d\n",
390 name, errno);
391 return 1;
392 }
wdenka68d3ed2002-10-11 08:38:32 +0000393
wdenka68d3ed2002-10-11 08:38:32 +0000394 return 0;
395}
396
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200397int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000398{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200399 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
400
Igor Grinbergd09b1782011-11-07 01:13:59 +0000401 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200402 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200403 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200404 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000405}
406
Simon Glassd67f10c2011-10-24 17:59:59 +0000407/**
408 * Set an environment variable to an integer value
409 *
410 * @param varname Environmet variable to set
411 * @param value Value to set it to
412 * @return 0 if ok, 1 on error
413 */
414int setenv_ulong(const char *varname, ulong value)
415{
416 /* TODO: this should be unsigned */
417 char *str = simple_itoa(value);
418
419 return setenv(varname, str);
420}
421
422/**
423 * Set an environment variable to an address in hex
424 *
425 * @param varname Environmet variable to set
426 * @param addr Value to set it to
427 * @return 0 if ok, 1 on error
428 */
429int setenv_addr(const char *varname, const void *addr)
430{
431 char str[17];
432
Simon Glass79afc882011-11-04 06:42:36 +0000433 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000434 return setenv(varname, str);
435}
436
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000437#ifndef CONFIG_SPL_BUILD
Macpaul Linf3c615b2011-04-26 16:16:45 +0000438int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000439{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200440 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000441 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000442
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200443 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000444}
445
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200446/*
wdenka68d3ed2002-10-11 08:38:32 +0000447 * Prompt for environment variable
448 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500449#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000450int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000451{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200452 char message[CONFIG_SYS_CBSIZE];
453 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200454 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000455 char *local_args[4];
456
457 local_args[0] = argv[0];
458 local_args[1] = argv[1];
459 local_args[2] = NULL;
460 local_args[3] = NULL;
461
wdenka68d3ed2002-10-11 08:38:32 +0000462 /* Check the syntax */
463 switch (argc) {
464 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000465 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000466
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200467 case 2: /* env_ask envname */
468 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000469 break;
470
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200471 case 3: /* env_ask envname size */
472 sprintf(message, "Please enter '%s':", argv[1]);
473 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000474 break;
475
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200476 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000477 for (i = 2, pos = 0; i < argc - 1; i++) {
478 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000479 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000480
Igor Grinbergd09b1782011-11-07 01:13:59 +0000481 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000482 pos += strlen(argv[i]);
483 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000484
wdenka68d3ed2002-10-11 08:38:32 +0000485 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200486 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000487 break;
488 }
489
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200490 if (size >= CONFIG_SYS_CBSIZE)
491 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000492
493 if (size <= 0)
494 return 1;
495
496 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200497 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000498
499 if (size < len)
500 console_buffer[size] = '\0';
501
502 len = 2;
503 if (console_buffer[0] != '\0') {
504 local_args[2] = console_buffer;
505 len = 3;
506 }
507
508 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200509 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000510}
Jon Loeliger90253172007-07-10 11:02:44 -0500511#endif
wdenka68d3ed2002-10-11 08:38:32 +0000512
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200513/*
Peter Tyser246c6922009-10-25 15:12:56 -0500514 * Interactively edit an environment variable
515 */
516#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200517int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500518{
519 char buffer[CONFIG_SYS_CBSIZE];
520 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500521
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200522 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000523 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500524
525 /* Set read buffer to initial value or empty sting */
526 init_val = getenv(argv[1]);
527 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200528 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500529 else
530 buffer[0] = '\0';
531
Heiko Schocher9c348312012-01-16 21:13:05 +0000532 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500533
534 return setenv(argv[1], buffer);
535}
536#endif /* CONFIG_CMD_EDITENV */
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000537#endif /* CONFIG_SPL_BUILD */
Peter Tyser246c6922009-10-25 15:12:56 -0500538
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200539/*
wdenka68d3ed2002-10-11 08:38:32 +0000540 * Look up variable from environment,
541 * return address of storage for that variable,
542 * or NULL if not found
543 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200544char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000545{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000546 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200547 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000548
Wolfgang Denk91a76752010-07-24 20:22:02 +0200549 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000550
Igor Grinbergd09b1782011-11-07 01:13:59 +0000551 e.key = name;
552 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500553 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000554
Macpaul Linf3c615b2011-04-26 16:16:45 +0000555 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000556 }
557
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200558 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200559 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
560 return (char *)(gd->env_buf);
561
562 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000563}
564
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200565/*
566 * Look up variable from environment for restricted C runtime env.
567 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200568int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000569{
570 int i, nxt;
571
Igor Grinbergd09b1782011-11-07 01:13:59 +0000572 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000573 int val, n;
574
Macpaul Linf3c615b2011-04-26 16:16:45 +0000575 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
576 if (nxt >= CONFIG_ENV_SIZE)
577 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000578 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000579
580 val = envmatch((uchar *)name, i);
581 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000582 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200583
wdenka68d3ed2002-10-11 08:38:32 +0000584 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000585 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000586 *buf = env_get_char(val++);
587 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200588 return n;
589 }
590
591 if (n)
592 *--buf = '\0';
593
Wolfgang Denka02a8842011-05-04 10:29:49 +0000594 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
595 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200596
597 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000598 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000599
Macpaul Linf3c615b2011-04-26 16:16:45 +0000600 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000601}
602
Simon Glass4a9b4132011-10-14 13:25:18 +0000603/**
604 * Decode the integer value of an environment variable and return it.
605 *
606 * @param name Name of environemnt variable
607 * @param base Number base to use (normally 10, or 16 for hex)
608 * @param default_val Default value to return if the variable is not
609 * found
610 * @return the decoded value, or default_val if not found
611 */
612ulong getenv_ulong(const char *name, int base, ulong default_val)
613{
614 /*
615 * We can use getenv() here, even before relocation, since the
616 * environment variable value is an integer and thus short.
617 */
618 const char *str = getenv(name);
619
620 return str ? simple_strtoul(str, NULL, base) : default_val;
621}
622
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000623#ifndef CONFIG_SPL_BUILD
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500624#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000625int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000626{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000627 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000628
Macpaul Linf3c615b2011-04-26 16:16:45 +0000629 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000630}
wdenk8bde7f72003-06-27 21:31:46 +0000631
Mike Frysingerba69dc22008-12-30 02:59:25 -0500632U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200633 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600634 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200635 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500636);
wdenka68d3ed2002-10-11 08:38:32 +0000637#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000638#endif /* CONFIG_SPL_BUILD */
wdenka68d3ed2002-10-11 08:38:32 +0000639
640
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200641/*
wdenka68d3ed2002-10-11 08:38:32 +0000642 * Match a name / name=value pair
643 *
644 * s1 is either a simple 'name', or a 'name=value' pair.
645 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000646 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000647 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000648int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000649{
Joe Hershberger586197d2012-10-03 09:38:50 +0000650 if (s1 == NULL)
651 return -1;
652
wdenka68d3ed2002-10-11 08:38:32 +0000653 while (*s1 == env_get_char(i2++))
654 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000655 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000656
wdenka68d3ed2002-10-11 08:38:32 +0000657 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000658 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000659
Macpaul Linf3c615b2011-04-26 16:16:45 +0000660 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000661}
wdenk8bde7f72003-06-27 21:31:46 +0000662
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000663#ifndef CONFIG_SPL_BUILD
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000664static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
Igor Grinbergd09b1782011-11-07 01:13:59 +0000665 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200666{
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000667 int all = 0, flag = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000668
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000669 debug("Initial value for argc=%d\n", argc);
670 while (--argc > 0 && **++argv == '-') {
671 char *arg = *argv;
672
673 while (*++arg) {
674 switch (*arg) {
675 case 'a': /* default all */
676 all = 1;
677 break;
678 case 'f': /* force */
679 flag |= H_FORCE;
680 break;
681 default:
682 return cmd_usage(cmdtp);
683 }
684 }
685 }
686 debug("Final value for argc=%d\n", argc);
687 if (all && (argc == 0)) {
688 /* Reset the whole environment */
689 set_default_env("## Resetting to default environment\n");
690 return 0;
691 }
692 if (!all && (argc > 0)) {
693 /* Reset individual variables */
694 set_default_vars(argc, argv);
695 return 0;
696 }
697
698 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200699}
wdenk8bde7f72003-06-27 21:31:46 +0000700
Igor Grinbergd09b1782011-11-07 01:13:59 +0000701static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
702 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200703{
704 printf("Not implemented yet\n");
705 return 0;
706}
707
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500708#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200709/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100710 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200711 * -t: export as text format; if size is given, data will be
712 * padded with '\0' bytes; if not, one terminating '\0'
713 * will be added (which is included in the "filesize"
714 * setting so you can for exmple copy this to flash and
715 * keep the termination).
716 * -b: export as binary format (name=value pairs separated by
717 * '\0', list end marked by double "\0\0")
718 * -c: export as checksum protected environment format as
719 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100720 * -s size:
721 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200722 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100723 * var... List of variable names that get included into the
724 * export. Without arguments, the whole environment gets
725 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200726 *
727 * With "-c" and size is NOT given, then the export command will
728 * format the data as currently used for the persistent storage,
729 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
730 * prepend a valid CRC32 checksum and, in case of resundant
731 * environment, a "current" redundancy flag. If size is given, this
732 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
733 * checksum and redundancy flag will be inserted.
734 *
735 * With "-b" and "-t", always only the real data (including a
736 * terminating '\0' byte) will be written; here the optional size
737 * argument will be used to make sure not to overflow the user
738 * provided buffer; the command will abort if the size is not
739 * sufficient. Any remainign space will be '\0' padded.
740 *
741 * On successful return, the variable "filesize" will be set.
742 * Note that filesize includes the trailing/terminating '\0' byte(s).
743 *
744 * Usage szenario: create a text snapshot/backup of the current settings:
745 *
746 * => env export -t 100000
747 * => era ${backup_addr} +${filesize}
748 * => cp.b 100000 ${backup_addr} ${filesize}
749 *
750 * Re-import this snapshot, deleting all other settings:
751 *
752 * => env import -d -t ${backup_addr}
753 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000754static int do_env_export(cmd_tbl_t *cmdtp, int flag,
755 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200756{
757 char buf[32];
758 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100759 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200760 ssize_t len;
761 env_t *envp;
762 char sep = '\n';
763 int chk = 0;
764 int fmt = 0;
765
766 cmd = *argv;
767
768 while (--argc > 0 && **++argv == '-') {
769 char *arg = *argv;
770 while (*++arg) {
771 switch (*arg) {
772 case 'b': /* raw binary format */
773 if (fmt++)
774 goto sep_err;
775 sep = '\0';
776 break;
777 case 'c': /* external checksum format */
778 if (fmt++)
779 goto sep_err;
780 sep = '\0';
781 chk = 1;
782 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100783 case 's': /* size given */
784 if (--argc <= 0)
785 return cmd_usage(cmdtp);
786 size = simple_strtoul(*++argv, NULL, 16);
787 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200788 case 't': /* text format */
789 if (fmt++)
790 goto sep_err;
791 sep = '\n';
792 break;
793 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000794 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200795 }
796 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100797NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200798 }
799
Macpaul Linf3c615b2011-04-26 16:16:45 +0000800 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000801 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200802
803 addr = (char *)simple_strtoul(argv[0], NULL, 16);
804
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100805 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200806 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100807
808 argc--;
809 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200810
811 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100812 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200813 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000814 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200815 return 1;
816 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100817 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200818 setenv("filesize", buf);
819
820 return 0;
821 }
822
823 envp = (env_t *)addr;
824
825 if (chk) /* export as checksum protected block */
826 res = (char *)envp->data;
827 else /* export as raw binary data */
828 res = addr;
829
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100830 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200831 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000832 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200833 return 1;
834 }
835
836 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000837 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200838#ifdef CONFIG_ENV_ADDR_REDUND
839 envp->flags = ACTIVE_FLAG;
840#endif
841 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000842 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200843 setenv("filesize", buf);
844
845 return 0;
846
847sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000848 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200849 return 1;
850}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500851#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200852
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500853#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200854/*
855 * env import [-d] [-t | -b | -c] addr [size]
856 * -d: delete existing environment before importing;
857 * otherwise overwrite / append to existion definitions
858 * -t: assume text format; either "size" must be given or the
859 * text data must be '\0' terminated
860 * -b: assume binary format ('\0' separated, "\0\0" terminated)
861 * -c: assume checksum protected environment format
862 * addr: memory address to read from
863 * size: length of input data; if missing, proper '\0'
864 * termination is mandatory
865 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000866static int do_env_import(cmd_tbl_t *cmdtp, int flag,
867 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200868{
869 char *cmd, *addr;
870 char sep = '\n';
871 int chk = 0;
872 int fmt = 0;
873 int del = 0;
874 size_t size;
875
876 cmd = *argv;
877
878 while (--argc > 0 && **++argv == '-') {
879 char *arg = *argv;
880 while (*++arg) {
881 switch (*arg) {
882 case 'b': /* raw binary format */
883 if (fmt++)
884 goto sep_err;
885 sep = '\0';
886 break;
887 case 'c': /* external checksum format */
888 if (fmt++)
889 goto sep_err;
890 sep = '\0';
891 chk = 1;
892 break;
893 case 't': /* text format */
894 if (fmt++)
895 goto sep_err;
896 sep = '\n';
897 break;
898 case 'd':
899 del = 1;
900 break;
901 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000902 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200903 }
904 }
905 }
906
Macpaul Linf3c615b2011-04-26 16:16:45 +0000907 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000908 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200909
910 if (!fmt)
911 printf("## Warning: defaulting to text format\n");
912
913 addr = (char *)simple_strtoul(argv[0], NULL, 16);
914
915 if (argc == 2) {
916 size = simple_strtoul(argv[1], NULL, 16);
917 } else {
918 char *s = addr;
919
920 size = 0;
921
922 while (size < MAX_ENV_SIZE) {
923 if ((*s == sep) && (*(s+1) == '\0'))
924 break;
925 ++s;
926 ++size;
927 }
928 if (size == MAX_ENV_SIZE) {
929 printf("## Warning: Input data exceeds %d bytes"
930 " - truncated\n", MAX_ENV_SIZE);
931 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000932 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000933 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200934 }
935
936 if (chk) {
937 uint32_t crc;
938 env_t *ep = (env_t *)addr;
939
940 size -= offsetof(env_t, data);
941 memcpy(&crc, &ep->crc, sizeof(crc));
942
943 if (crc32(0, ep->data, size) != crc) {
944 puts("## Error: bad CRC, import failed\n");
945 return 1;
946 }
947 addr = (char *)ep->data;
948 }
949
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000950 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR,
Gerlando Falautoc5983592012-08-24 00:11:39 +0000951 0, NULL, 0 /* do_apply */) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200952 error("Environment import failed: errno = %d\n", errno);
953 return 1;
954 }
955 gd->flags |= GD_FLG_ENV_READY;
956
957 return 0;
958
959sep_err:
960 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
961 cmd);
962 return 1;
963}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500964#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200965
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200966/*
967 * New command line interface: "env" command with subcommands
968 */
969static cmd_tbl_t cmd_env_sub[] = {
970#if defined(CONFIG_CMD_ASKENV)
971 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
972#endif
973 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
974 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
975#if defined(CONFIG_CMD_EDITENV)
976 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
977#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500978#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200979 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500980#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000981#if defined(CONFIG_CMD_GREPENV)
982 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
983#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500984#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200985 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500986#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200987 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
988#if defined(CONFIG_CMD_RUN)
989 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
990#endif
991#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
992 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
993#endif
994 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
995};
996
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200997#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200998void env_reloc(void)
999{
1000 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1001}
1002#endif
1003
Macpaul Linf3c615b2011-04-26 16:16:45 +00001004static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001005{
1006 cmd_tbl_t *cp;
1007
Thomas Weber5904da02010-11-24 13:07:52 +01001008 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001009 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +01001010
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001011 /* drop initial "env" arg */
1012 argc--;
1013 argv++;
1014
1015 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1016
1017 if (cp)
1018 return cp->cmd(cmdtp, flag, argc, argv);
1019
Simon Glass4c12eeb2011-12-10 08:44:01 +00001020 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001021}
1022
1023U_BOOT_CMD(
1024 env, CONFIG_SYS_MAXARGS, 1, do_env,
1025 "environment handling commands",
1026#if defined(CONFIG_CMD_ASKENV)
1027 "ask name [message] [size] - ask for environment variable\nenv "
1028#endif
Gerlando Falautob64b7c32012-08-24 00:11:41 +00001029 "default [-f] -a - [forcibly] reset default environment\n"
1030 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001031#if defined(CONFIG_CMD_EDITENV)
1032 "env edit name - edit environment variable\n"
1033#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001034#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denk37f2fe72011-11-06 22:49:44 +01001035 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001036#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001037#if defined(CONFIG_CMD_GREPENV)
1038 "env grep string [...] - search environment\n"
1039#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001040#if defined(CONFIG_CMD_IMPORTENV)
Kim Phillipsa000b792011-04-05 07:15:14 +00001041 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001042#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001043 "env print [name ...] - print environment\n"
1044#if defined(CONFIG_CMD_RUN)
1045 "env run var [...] - run commands in an environment variable\n"
1046#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001047#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001048 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001049#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001050 "env set [-f] name [arg ...]\n"
1051);
1052
1053/*
1054 * Old command line interface, kept for compatibility
1055 */
wdenk8bde7f72003-06-27 21:31:46 +00001056
Peter Tyser246c6922009-10-25 15:12:56 -05001057#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -04001058U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001059 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -05001060 "edit environment variable",
1061 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001062 " - edit environment variable 'name'",
1063 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -05001064);
1065#endif
1066
Mike Frysinger722b0612010-10-20 03:52:39 -04001067U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001068 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001069 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001070 "\n - print values of all environment variables\n"
1071 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001072 " - print value of environment variable 'name'",
1073 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001074);
1075
Kim Phillipsa000b792011-04-05 07:15:14 +00001076#ifdef CONFIG_CMD_GREPENV
1077U_BOOT_CMD_COMPLETE(
1078 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1079 "search environment variables",
1080 "string ...\n"
1081 " - list environment name=value pairs matching 'string'",
1082 var_complete
1083);
1084#endif
1085
Mike Frysinger722b0612010-10-20 03:52:39 -04001086U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001087 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001088 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001089 "name value ...\n"
1090 " - set environment variable 'name' to 'value ...'\n"
1091 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001092 " - delete environment variable 'name'",
1093 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001094);
1095
Jon Loeligerc76fe472007-07-08 18:02:23 -05001096#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001097
wdenk0d498392003-07-01 21:06:45 +00001098U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001099 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001100 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001101 "name [message] [size]\n"
1102 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1103 "askenv name\n"
1104 " - get environment variable 'name' from stdin\n"
1105 "askenv name size\n"
1106 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1107 "askenv name [message] size\n"
1108 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001109 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001110);
Jon Loeliger90253172007-07-10 11:02:44 -05001111#endif
wdenk8bde7f72003-06-27 21:31:46 +00001112
Jon Loeligerc76fe472007-07-08 18:02:23 -05001113#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001114U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001115 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001116 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001117 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001118 " - run the commands in the environment variable(s) 'var'",
1119 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001120);
Jon Loeliger90253172007-07-10 11:02:44 -05001121#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +00001122#endif /* CONFIG_SPL_BUILD */