blob: 310ca16ae303d2ea0aff03141d7df2b9b920316c [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
74#define XMK_STR(x) #x
75#define MK_STR(x) XMK_STR(x)
76
Wolfgang Denkea882ba2010-06-20 23:33:59 +020077/*
78 * Maximum expected input data size for import command
79 */
80#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000081
Mike Frysinger558605c2010-12-21 14:08:27 -050082ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Simon Glass1aec2442011-10-21 18:51:38 +000083ulong save_addr; /* Default Save Address */
84ulong save_size; /* Default Save Size (in bytes) */
Mike Frysinger558605c2010-12-21 14:08:27 -050085
wdenka68d3ed2002-10-11 08:38:32 +000086/*
87 * Table with supported baudrates (defined in config_xyz.h)
88 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000090#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
91
Heiko Schocherda954272009-04-28 08:36:11 +020092/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020093 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020094 * be used via get_env_id() as an indication, if the environment
95 * has changed or not. So it is possible to reread an environment
96 * variable only if the environment was changed ... done so for
97 * example in NetInitLoop()
98 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010099static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +0000100
Macpaul Linf3c615b2011-04-26 16:16:45 +0000101int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100102{
103 return env_id;
104}
wdenka68d3ed2002-10-11 08:38:32 +0000105
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400106/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200107 * Command interface: print one or all environment variables
108 *
109 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400110 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200111static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000112{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200113 char *res = NULL;
114 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000115
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200116 if (name) { /* print a single name */
117 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000118
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200119 e.key = name;
120 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500121 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200122 if (ep == NULL)
123 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000124 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200125 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400126 }
wdenka68d3ed2002-10-11 08:38:32 +0000127
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200128 /* print whole list */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100129 len = hexport_r(&env_htab, '\n', &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200130
131 if (len > 0) {
132 puts(res);
133 free(res);
134 return len;
135 }
136
137 /* should never happen */
138 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400139}
140
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200141int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400142{
143 int i;
144 int rcode = 0;
145
146 if (argc == 1) {
147 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200148 rcode = env_print(NULL);
149 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400150 return 1;
151 printf("\nEnvironment size: %d/%ld bytes\n",
152 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000153 return 0;
154 }
155
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400156 /* print selected env vars */
157 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200158 int rc = env_print(argv[i]);
159 if (!rc) {
160 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400161 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000162 }
163 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400164
wdenka68d3ed2002-10-11 08:38:32 +0000165 return rcode;
166}
167
Kim Phillipsa000b792011-04-05 07:15:14 +0000168#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000169static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
170 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000171{
172 ENTRY *match;
173 unsigned char matched[env_htab.size / 8];
174 int rcode = 1, arg = 1, idx;
175
176 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000177 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000178
179 memset(matched, 0, env_htab.size / 8);
180
181 while (arg <= argc) {
182 idx = 0;
Kumar Gala068f1582011-11-23 09:48:02 +0000183 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
Kim Phillipsa000b792011-04-05 07:15:14 +0000184 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
185 puts(match->key);
186 puts("=");
187 puts(match->data);
188 puts("\n");
189 }
190 matched[idx / 8] |= 1 << (idx & 7);
191 rcode = 0;
192 }
193 arg++;
194 }
195
196 return rcode;
197}
198#endif
199
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200200/*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000201 * Perform consistency checking before setting, replacing, or deleting an
202 * environment variable, then (if successful) apply the changes to internals so
203 * to make them effective. Code for this function was taken out of
204 * _do_env_set(), which now calls it instead.
Gerlando Falautoc5983592012-08-24 00:11:39 +0000205 * Also called as a callback function by himport_r().
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000206 * Returns 0 in case of success, 1 in case of failure.
207 * When (flag & H_FORCE) is set, do not print out any error message and force
208 * overwriting of write-once variables.
wdenka68d3ed2002-10-11 08:38:32 +0000209 */
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000210
211int env_check_apply(const char *name, const char *oldval,
212 const char *newval, int flag)
wdenka68d3ed2002-10-11 08:38:32 +0000213{
wdenka68d3ed2002-10-11 08:38:32 +0000214 int console = -1;
wdenka68d3ed2002-10-11 08:38:32 +0000215
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200216 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000217 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200218 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000219 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200220 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000221 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200222 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200223
224 if (console != -1) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000225 if ((newval == NULL) || (*newval == '\0')) {
226 /* We cannot delete stdin/stdout/stderr */
227 if ((flag & H_FORCE) == 0)
228 printf("Can't delete \"%s\"\n", name);
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200229 return 1;
230 }
231
232#ifdef CONFIG_CONSOLE_MUX
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000233 if (iomux_doenv(console, newval))
Gerlando Falautoc2ba2ff2012-08-24 00:11:36 +0000234 return 1;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200235#else
236 /* Try assigning specified device */
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000237 if (console_assign(console, newval) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200238 return 1;
239
240#ifdef CONFIG_SERIAL_MULTI
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000241 if (serial_assign(newval) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200242 return 1;
243#endif
244#endif /* CONFIG_CONSOLE_MUX */
245 }
246
wdenka68d3ed2002-10-11 08:38:32 +0000247 /*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000248 * Some variables like "ethaddr" and "serial#" can be set only once and
249 * cannot be deleted, unless CONFIG_ENV_OVERWRITE is defined.
wdenka68d3ed2002-10-11 08:38:32 +0000250 */
wdenka68d3ed2002-10-11 08:38:32 +0000251#ifndef CONFIG_ENV_OVERWRITE
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000252 if (oldval != NULL && /* variable exists */
253 (flag & H_FORCE) == 0) { /* and we are not forced */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000254 if (strcmp(name, "serial#") == 0 ||
255 (strcmp(name, "ethaddr") == 0
wdenka68d3ed2002-10-11 08:38:32 +0000256#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000257 && strcmp(oldval, MK_STR(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000258#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000259 )) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000260 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000261 return 1;
262 }
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000263 }
wdenka68d3ed2002-10-11 08:38:32 +0000264#endif
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000265 /*
266 * When we change baudrate, or we are doing an env default -a
267 * (which will erase all variables prior to calling this),
268 * we want the baudrate to actually change - for real.
269 */
270 if (oldval != NULL || /* variable exists */
271 (flag & H_NOCLEAR) == 0) { /* or env is clear */
wdenka68d3ed2002-10-11 08:38:32 +0000272 /*
273 * Switch to new baudrate if new baudrate is supported
274 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000275 if (strcmp(name, "baudrate") == 0) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000276 int baudrate = simple_strtoul(newval, NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000277 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000278 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000279 if (baudrate == baudrate_table[i])
280 break;
281 }
282 if (i == N_BAUDRATES) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000283 if ((flag & H_FORCE) == 0)
284 printf("## Baudrate %d bps not "
285 "supported\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000286 return 1;
287 }
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000288 if (gd->baudrate == baudrate) {
289 /* If unchanged, we just say it's OK */
290 return 0;
291 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000292 printf("## Switch baudrate to %d bps and"
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000293 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000294 udelay(50000);
295 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100296#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000297 gd->bd->bi_baudrate = baudrate;
298#endif
299
Macpaul Linf3c615b2011-04-26 16:16:45 +0000300 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000301 udelay(50000);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000302 while (getc() != '\r')
303 ;
wdenka68d3ed2002-10-11 08:38:32 +0000304 }
wdenka68d3ed2002-10-11 08:38:32 +0000305 }
306
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000307 /*
308 * Some variables should be updated when the corresponding
309 * entry in the environment is changed
310 */
311 if (strcmp(name, "loadaddr") == 0) {
312 load_addr = simple_strtoul(newval, NULL, 16);
313 return 0;
314 }
315#if defined(CONFIG_CMD_NET)
316 else if (strcmp(name, "bootfile") == 0) {
317 copy_filename(BootFile, newval, sizeof(BootFile));
318 return 0;
319 }
320#endif
321 return 0;
322}
323
324/*
325 * Set a new environment variable,
326 * or replace or delete an existing one.
327*/
328int _do_env_set(int flag, int argc, char * const argv[])
329{
330 int i, len;
331 char *name, *value, *s;
332 ENTRY e, *ep;
333
334 name = argv[1];
335 value = argv[2];
336
337 if (strchr(name, '=')) {
338 printf("## Error: illegal character '='"
339 "in variable name \"%s\"\n", name);
340 return 1;
341 }
342
343 env_id++;
344 /*
345 * search if variable with this name already exists
346 */
347 e.key = name;
348 e.data = NULL;
349 hsearch_r(e, FIND, &ep, &env_htab);
350
351 /*
352 * Perform requested checks. Notice how since we are overwriting
353 * a single variable, we need to set H_NOCLEAR
354 */
355 if (env_check_apply(name, ep ? ep->data : NULL, value, H_NOCLEAR)) {
356 debug("check function did not approve, refusing\n");
357 return 1;
358 }
359
wdenka68d3ed2002-10-11 08:38:32 +0000360 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000361 if (argc < 3 || argv[2] == NULL) {
Gerlando Falauto152874b2012-08-24 00:11:40 +0000362 int rc = hdelete_r(name, &env_htab, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200363 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000364 }
365
366 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200367 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000368 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000369 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000370 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000371
372 value = malloc(len);
373 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200374 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000375 return 1;
376 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000377 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200378 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000379
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200380 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000381 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000382 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000383 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200384 if (s != value)
385 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000386
Igor Grinbergd09b1782011-11-07 01:13:59 +0000387 e.key = name;
388 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500389 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200390 free(value);
391 if (!ep) {
392 printf("## Error inserting \"%s\" variable, errno=%d\n",
393 name, errno);
394 return 1;
395 }
wdenka68d3ed2002-10-11 08:38:32 +0000396
wdenka68d3ed2002-10-11 08:38:32 +0000397 return 0;
398}
399
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200400int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000401{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200402 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
403
Igor Grinbergd09b1782011-11-07 01:13:59 +0000404 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200405 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200406 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200407 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000408}
409
Simon Glassd67f10c2011-10-24 17:59:59 +0000410/**
411 * Set an environment variable to an integer value
412 *
413 * @param varname Environmet variable to set
414 * @param value Value to set it to
415 * @return 0 if ok, 1 on error
416 */
417int setenv_ulong(const char *varname, ulong value)
418{
419 /* TODO: this should be unsigned */
420 char *str = simple_itoa(value);
421
422 return setenv(varname, str);
423}
424
425/**
426 * Set an environment variable to an address in hex
427 *
428 * @param varname Environmet variable to set
429 * @param addr Value to set it to
430 * @return 0 if ok, 1 on error
431 */
432int setenv_addr(const char *varname, const void *addr)
433{
434 char str[17];
435
Simon Glass79afc882011-11-04 06:42:36 +0000436 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000437 return setenv(varname, str);
438}
439
Macpaul Linf3c615b2011-04-26 16:16:45 +0000440int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000441{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200442 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000443 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000444
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200445 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000446}
447
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200448/*
wdenka68d3ed2002-10-11 08:38:32 +0000449 * Prompt for environment variable
450 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500451#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000452int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000453{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200454 char message[CONFIG_SYS_CBSIZE];
455 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200456 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000457 char *local_args[4];
458
459 local_args[0] = argv[0];
460 local_args[1] = argv[1];
461 local_args[2] = NULL;
462 local_args[3] = NULL;
463
wdenka68d3ed2002-10-11 08:38:32 +0000464 /* Check the syntax */
465 switch (argc) {
466 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000467 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000468
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200469 case 2: /* env_ask envname */
470 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000471 break;
472
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200473 case 3: /* env_ask envname size */
474 sprintf(message, "Please enter '%s':", argv[1]);
475 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000476 break;
477
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200478 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000479 for (i = 2, pos = 0; i < argc - 1; i++) {
480 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000481 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000482
Igor Grinbergd09b1782011-11-07 01:13:59 +0000483 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000484 pos += strlen(argv[i]);
485 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000486
wdenka68d3ed2002-10-11 08:38:32 +0000487 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200488 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000489 break;
490 }
491
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200492 if (size >= CONFIG_SYS_CBSIZE)
493 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000494
495 if (size <= 0)
496 return 1;
497
498 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200499 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000500
501 if (size < len)
502 console_buffer[size] = '\0';
503
504 len = 2;
505 if (console_buffer[0] != '\0') {
506 local_args[2] = console_buffer;
507 len = 3;
508 }
509
510 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200511 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000512}
Jon Loeliger90253172007-07-10 11:02:44 -0500513#endif
wdenka68d3ed2002-10-11 08:38:32 +0000514
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200515/*
Peter Tyser246c6922009-10-25 15:12:56 -0500516 * Interactively edit an environment variable
517 */
518#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200519int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500520{
521 char buffer[CONFIG_SYS_CBSIZE];
522 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500523
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200524 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000525 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500526
527 /* Set read buffer to initial value or empty sting */
528 init_val = getenv(argv[1]);
529 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200530 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500531 else
532 buffer[0] = '\0';
533
Heiko Schocher9c348312012-01-16 21:13:05 +0000534 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500535
536 return setenv(argv[1], buffer);
537}
538#endif /* CONFIG_CMD_EDITENV */
539
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200540/*
wdenka68d3ed2002-10-11 08:38:32 +0000541 * Look up variable from environment,
542 * return address of storage for that variable,
543 * or NULL if not found
544 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200545char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000546{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000547 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200548 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000549
Wolfgang Denk91a76752010-07-24 20:22:02 +0200550 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000551
Igor Grinbergd09b1782011-11-07 01:13:59 +0000552 e.key = name;
553 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500554 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000555
Macpaul Linf3c615b2011-04-26 16:16:45 +0000556 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000557 }
558
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200559 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200560 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
561 return (char *)(gd->env_buf);
562
563 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000564}
565
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200566/*
567 * Look up variable from environment for restricted C runtime env.
568 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200569int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000570{
571 int i, nxt;
572
Igor Grinbergd09b1782011-11-07 01:13:59 +0000573 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000574 int val, n;
575
Macpaul Linf3c615b2011-04-26 16:16:45 +0000576 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
577 if (nxt >= CONFIG_ENV_SIZE)
578 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000579 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000580
581 val = envmatch((uchar *)name, i);
582 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000583 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200584
wdenka68d3ed2002-10-11 08:38:32 +0000585 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000586 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000587 *buf = env_get_char(val++);
588 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200589 return n;
590 }
591
592 if (n)
593 *--buf = '\0';
594
Wolfgang Denka02a8842011-05-04 10:29:49 +0000595 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
596 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200597
598 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000599 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000600
Macpaul Linf3c615b2011-04-26 16:16:45 +0000601 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000602}
603
Simon Glass4a9b4132011-10-14 13:25:18 +0000604/**
605 * Decode the integer value of an environment variable and return it.
606 *
607 * @param name Name of environemnt variable
608 * @param base Number base to use (normally 10, or 16 for hex)
609 * @param default_val Default value to return if the variable is not
610 * found
611 * @return the decoded value, or default_val if not found
612 */
613ulong getenv_ulong(const char *name, int base, ulong default_val)
614{
615 /*
616 * We can use getenv() here, even before relocation, since the
617 * environment variable value is an integer and thus short.
618 */
619 const char *str = getenv(name);
620
621 return str ? simple_strtoul(str, NULL, base) : default_val;
622}
623
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
638
639
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200640/*
wdenka68d3ed2002-10-11 08:38:32 +0000641 * Match a name / name=value pair
642 *
643 * s1 is either a simple 'name', or a 'name=value' pair.
644 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000645 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000646 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000647int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000648{
wdenka68d3ed2002-10-11 08:38:32 +0000649 while (*s1 == env_get_char(i2++))
650 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000651 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000652
wdenka68d3ed2002-10-11 08:38:32 +0000653 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000654 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000655
Macpaul Linf3c615b2011-04-26 16:16:45 +0000656 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000657}
wdenk8bde7f72003-06-27 21:31:46 +0000658
Igor Grinbergd09b1782011-11-07 01:13:59 +0000659static int do_env_default(cmd_tbl_t *cmdtp, int flag,
660 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200661{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000662 if (argc != 2 || strcmp(argv[1], "-f") != 0)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000663 return CMD_RET_USAGE;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000664
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200665 set_default_env("## Resetting to default environment\n");
666 return 0;
667}
wdenk8bde7f72003-06-27 21:31:46 +0000668
Igor Grinbergd09b1782011-11-07 01:13:59 +0000669static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
670 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200671{
672 printf("Not implemented yet\n");
673 return 0;
674}
675
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500676#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200677/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100678 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200679 * -t: export as text format; if size is given, data will be
680 * padded with '\0' bytes; if not, one terminating '\0'
681 * will be added (which is included in the "filesize"
682 * setting so you can for exmple copy this to flash and
683 * keep the termination).
684 * -b: export as binary format (name=value pairs separated by
685 * '\0', list end marked by double "\0\0")
686 * -c: export as checksum protected environment format as
687 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100688 * -s size:
689 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200690 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100691 * var... List of variable names that get included into the
692 * export. Without arguments, the whole environment gets
693 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200694 *
695 * With "-c" and size is NOT given, then the export command will
696 * format the data as currently used for the persistent storage,
697 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
698 * prepend a valid CRC32 checksum and, in case of resundant
699 * environment, a "current" redundancy flag. If size is given, this
700 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
701 * checksum and redundancy flag will be inserted.
702 *
703 * With "-b" and "-t", always only the real data (including a
704 * terminating '\0' byte) will be written; here the optional size
705 * argument will be used to make sure not to overflow the user
706 * provided buffer; the command will abort if the size is not
707 * sufficient. Any remainign space will be '\0' padded.
708 *
709 * On successful return, the variable "filesize" will be set.
710 * Note that filesize includes the trailing/terminating '\0' byte(s).
711 *
712 * Usage szenario: create a text snapshot/backup of the current settings:
713 *
714 * => env export -t 100000
715 * => era ${backup_addr} +${filesize}
716 * => cp.b 100000 ${backup_addr} ${filesize}
717 *
718 * Re-import this snapshot, deleting all other settings:
719 *
720 * => env import -d -t ${backup_addr}
721 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000722static int do_env_export(cmd_tbl_t *cmdtp, int flag,
723 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200724{
725 char buf[32];
726 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100727 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200728 ssize_t len;
729 env_t *envp;
730 char sep = '\n';
731 int chk = 0;
732 int fmt = 0;
733
734 cmd = *argv;
735
736 while (--argc > 0 && **++argv == '-') {
737 char *arg = *argv;
738 while (*++arg) {
739 switch (*arg) {
740 case 'b': /* raw binary format */
741 if (fmt++)
742 goto sep_err;
743 sep = '\0';
744 break;
745 case 'c': /* external checksum format */
746 if (fmt++)
747 goto sep_err;
748 sep = '\0';
749 chk = 1;
750 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100751 case 's': /* size given */
752 if (--argc <= 0)
753 return cmd_usage(cmdtp);
754 size = simple_strtoul(*++argv, NULL, 16);
755 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200756 case 't': /* text format */
757 if (fmt++)
758 goto sep_err;
759 sep = '\n';
760 break;
761 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000762 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200763 }
764 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100765NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200766 }
767
Macpaul Linf3c615b2011-04-26 16:16:45 +0000768 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000769 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200770
771 addr = (char *)simple_strtoul(argv[0], NULL, 16);
772
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100773 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200774 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100775
776 argc--;
777 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200778
779 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100780 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200781 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000782 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200783 return 1;
784 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100785 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200786 setenv("filesize", buf);
787
788 return 0;
789 }
790
791 envp = (env_t *)addr;
792
793 if (chk) /* export as checksum protected block */
794 res = (char *)envp->data;
795 else /* export as raw binary data */
796 res = addr;
797
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100798 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200799 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000800 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200801 return 1;
802 }
803
804 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000805 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200806#ifdef CONFIG_ENV_ADDR_REDUND
807 envp->flags = ACTIVE_FLAG;
808#endif
809 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000810 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200811 setenv("filesize", buf);
812
813 return 0;
814
815sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000816 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200817 return 1;
818}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500819#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200820
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500821#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200822/*
823 * env import [-d] [-t | -b | -c] addr [size]
824 * -d: delete existing environment before importing;
825 * otherwise overwrite / append to existion definitions
826 * -t: assume text format; either "size" must be given or the
827 * text data must be '\0' terminated
828 * -b: assume binary format ('\0' separated, "\0\0" terminated)
829 * -c: assume checksum protected environment format
830 * addr: memory address to read from
831 * size: length of input data; if missing, proper '\0'
832 * termination is mandatory
833 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000834static int do_env_import(cmd_tbl_t *cmdtp, int flag,
835 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200836{
837 char *cmd, *addr;
838 char sep = '\n';
839 int chk = 0;
840 int fmt = 0;
841 int del = 0;
842 size_t size;
843
844 cmd = *argv;
845
846 while (--argc > 0 && **++argv == '-') {
847 char *arg = *argv;
848 while (*++arg) {
849 switch (*arg) {
850 case 'b': /* raw binary format */
851 if (fmt++)
852 goto sep_err;
853 sep = '\0';
854 break;
855 case 'c': /* external checksum format */
856 if (fmt++)
857 goto sep_err;
858 sep = '\0';
859 chk = 1;
860 break;
861 case 't': /* text format */
862 if (fmt++)
863 goto sep_err;
864 sep = '\n';
865 break;
866 case 'd':
867 del = 1;
868 break;
869 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000870 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200871 }
872 }
873 }
874
Macpaul Linf3c615b2011-04-26 16:16:45 +0000875 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000876 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200877
878 if (!fmt)
879 printf("## Warning: defaulting to text format\n");
880
881 addr = (char *)simple_strtoul(argv[0], NULL, 16);
882
883 if (argc == 2) {
884 size = simple_strtoul(argv[1], NULL, 16);
885 } else {
886 char *s = addr;
887
888 size = 0;
889
890 while (size < MAX_ENV_SIZE) {
891 if ((*s == sep) && (*(s+1) == '\0'))
892 break;
893 ++s;
894 ++size;
895 }
896 if (size == MAX_ENV_SIZE) {
897 printf("## Warning: Input data exceeds %d bytes"
898 " - truncated\n", MAX_ENV_SIZE);
899 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000900 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000901 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200902 }
903
904 if (chk) {
905 uint32_t crc;
906 env_t *ep = (env_t *)addr;
907
908 size -= offsetof(env_t, data);
909 memcpy(&crc, &ep->crc, sizeof(crc));
910
911 if (crc32(0, ep->data, size) != crc) {
912 puts("## Error: bad CRC, import failed\n");
913 return 1;
914 }
915 addr = (char *)ep->data;
916 }
917
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000918 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR,
Gerlando Falautoc5983592012-08-24 00:11:39 +0000919 0, NULL, 0 /* do_apply */) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200920 error("Environment import failed: errno = %d\n", errno);
921 return 1;
922 }
923 gd->flags |= GD_FLG_ENV_READY;
924
925 return 0;
926
927sep_err:
928 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
929 cmd);
930 return 1;
931}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500932#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200933
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200934/*
935 * New command line interface: "env" command with subcommands
936 */
937static cmd_tbl_t cmd_env_sub[] = {
938#if defined(CONFIG_CMD_ASKENV)
939 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
940#endif
941 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
942 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
943#if defined(CONFIG_CMD_EDITENV)
944 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
945#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500946#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200947 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500948#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000949#if defined(CONFIG_CMD_GREPENV)
950 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
951#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500952#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200953 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500954#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200955 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
956#if defined(CONFIG_CMD_RUN)
957 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
958#endif
959#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
960 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
961#endif
962 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
963};
964
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200965#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200966void env_reloc(void)
967{
968 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
969}
970#endif
971
Macpaul Linf3c615b2011-04-26 16:16:45 +0000972static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200973{
974 cmd_tbl_t *cp;
975
Thomas Weber5904da02010-11-24 13:07:52 +0100976 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000977 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +0100978
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200979 /* drop initial "env" arg */
980 argc--;
981 argv++;
982
983 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
984
985 if (cp)
986 return cp->cmd(cmdtp, flag, argc, argv);
987
Simon Glass4c12eeb2011-12-10 08:44:01 +0000988 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200989}
990
991U_BOOT_CMD(
992 env, CONFIG_SYS_MAXARGS, 1, do_env,
993 "environment handling commands",
994#if defined(CONFIG_CMD_ASKENV)
995 "ask name [message] [size] - ask for environment variable\nenv "
996#endif
997 "default -f - reset default environment\n"
998#if defined(CONFIG_CMD_EDITENV)
999 "env edit name - edit environment variable\n"
1000#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001001#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denk37f2fe72011-11-06 22:49:44 +01001002 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001003#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001004#if defined(CONFIG_CMD_GREPENV)
1005 "env grep string [...] - search environment\n"
1006#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001007#if defined(CONFIG_CMD_IMPORTENV)
Kim Phillipsa000b792011-04-05 07:15:14 +00001008 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001009#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001010 "env print [name ...] - print environment\n"
1011#if defined(CONFIG_CMD_RUN)
1012 "env run var [...] - run commands in an environment variable\n"
1013#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001014#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001015 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001016#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001017 "env set [-f] name [arg ...]\n"
1018);
1019
1020/*
1021 * Old command line interface, kept for compatibility
1022 */
wdenk8bde7f72003-06-27 21:31:46 +00001023
Peter Tyser246c6922009-10-25 15:12:56 -05001024#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -04001025U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001026 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -05001027 "edit environment variable",
1028 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001029 " - edit environment variable 'name'",
1030 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -05001031);
1032#endif
1033
Mike Frysinger722b0612010-10-20 03:52:39 -04001034U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001035 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001036 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001037 "\n - print values of all environment variables\n"
1038 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001039 " - print value of environment variable 'name'",
1040 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001041);
1042
Kim Phillipsa000b792011-04-05 07:15:14 +00001043#ifdef CONFIG_CMD_GREPENV
1044U_BOOT_CMD_COMPLETE(
1045 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1046 "search environment variables",
1047 "string ...\n"
1048 " - list environment name=value pairs matching 'string'",
1049 var_complete
1050);
1051#endif
1052
Mike Frysinger722b0612010-10-20 03:52:39 -04001053U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001054 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001055 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001056 "name value ...\n"
1057 " - set environment variable 'name' to 'value ...'\n"
1058 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001059 " - delete environment variable 'name'",
1060 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001061);
1062
Jon Loeligerc76fe472007-07-08 18:02:23 -05001063#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001064
wdenk0d498392003-07-01 21:06:45 +00001065U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001066 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001067 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001068 "name [message] [size]\n"
1069 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1070 "askenv name\n"
1071 " - get environment variable 'name' from stdin\n"
1072 "askenv name size\n"
1073 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1074 "askenv name [message] size\n"
1075 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001076 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001077);
Jon Loeliger90253172007-07-10 11:02:44 -05001078#endif
wdenk8bde7f72003-06-27 21:31:46 +00001079
Jon Loeligerc76fe472007-07-08 18:02:23 -05001080#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001081U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001082 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001083 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001084 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001085 " - run the commands in the environment variable(s) 'var'",
1086 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001087);
Jon Loeliger90253172007-07-10 11:02:44 -05001088#endif