blob: e1ccdd8f7e23a96c08242816e9e918f24ad9744c [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) && \
62 !defined(CONFIG_ENV_IS_IN_MG_DISK) && \
63 !defined(CONFIG_ENV_IS_IN_MMC) && \
Maximilian Schwerin57210c72012-03-12 23:57:50 +000064 !defined(CONFIG_ENV_IS_IN_FAT) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000065 !defined(CONFIG_ENV_IS_IN_NAND) && \
66 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
67 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
68 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Liu Gang0a85a9e2012-03-08 00:33:20 +000069 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000070 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090071# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Liu Gang0a85a9e2012-03-08 00:33:20 +000072SPI_FLASH|MG_DISK|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE
wdenka68d3ed2002-10-11 08:38:32 +000073#endif
74
75#define XMK_STR(x) #x
76#define MK_STR(x) XMK_STR(x)
77
Wolfgang Denkea882ba2010-06-20 23:33:59 +020078/*
79 * Maximum expected input data size for import command
80 */
81#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000082
Mike Frysinger558605c2010-12-21 14:08:27 -050083ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Simon Glass1aec2442011-10-21 18:51:38 +000084ulong save_addr; /* Default Save Address */
85ulong save_size; /* Default Save Size (in bytes) */
Mike Frysinger558605c2010-12-21 14:08:27 -050086
wdenka68d3ed2002-10-11 08:38:32 +000087/*
88 * Table with supported baudrates (defined in config_xyz.h)
89 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020090static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000091#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
92
Heiko Schocherda954272009-04-28 08:36:11 +020093/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020094 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020095 * be used via get_env_id() as an indication, if the environment
96 * has changed or not. So it is possible to reread an environment
97 * variable only if the environment was changed ... done so for
98 * example in NetInitLoop()
99 */
Heiko Schocher2f70c492009-02-10 09:38:52 +0100100static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +0000101
Macpaul Linf3c615b2011-04-26 16:16:45 +0000102int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100103{
104 return env_id;
105}
wdenka68d3ed2002-10-11 08:38:32 +0000106
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400107/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200108 * Command interface: print one or all environment variables
109 *
110 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400111 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200112static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000113{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200114 char *res = NULL;
115 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000116
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200117 if (name) { /* print a single name */
118 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000119
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200120 e.key = name;
121 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500122 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200123 if (ep == NULL)
124 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000125 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200126 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400127 }
wdenka68d3ed2002-10-11 08:38:32 +0000128
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200129 /* print whole list */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100130 len = hexport_r(&env_htab, '\n', &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200131
132 if (len > 0) {
133 puts(res);
134 free(res);
135 return len;
136 }
137
138 /* should never happen */
139 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400140}
141
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200142int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400143{
144 int i;
145 int rcode = 0;
146
147 if (argc == 1) {
148 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200149 rcode = env_print(NULL);
150 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400151 return 1;
152 printf("\nEnvironment size: %d/%ld bytes\n",
153 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000154 return 0;
155 }
156
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400157 /* print selected env vars */
158 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200159 int rc = env_print(argv[i]);
160 if (!rc) {
161 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400162 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000163 }
164 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400165
wdenka68d3ed2002-10-11 08:38:32 +0000166 return rcode;
167}
168
Kim Phillipsa000b792011-04-05 07:15:14 +0000169#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000170static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
171 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000172{
173 ENTRY *match;
174 unsigned char matched[env_htab.size / 8];
175 int rcode = 1, arg = 1, idx;
176
177 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000178 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000179
180 memset(matched, 0, env_htab.size / 8);
181
182 while (arg <= argc) {
183 idx = 0;
Kumar Gala068f1582011-11-23 09:48:02 +0000184 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
Kim Phillipsa000b792011-04-05 07:15:14 +0000185 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
186 puts(match->key);
187 puts("=");
188 puts(match->data);
189 puts("\n");
190 }
191 matched[idx / 8] |= 1 << (idx & 7);
192 rcode = 0;
193 }
194 arg++;
195 }
196
197 return rcode;
198}
199#endif
200
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200201/*
wdenka68d3ed2002-10-11 08:38:32 +0000202 * Set a new environment variable,
203 * or replace or delete an existing one.
wdenka68d3ed2002-10-11 08:38:32 +0000204 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000205int _do_env_set(int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000206{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200207 bd_t *bd = gd->bd;
208 int i, len;
wdenka68d3ed2002-10-11 08:38:32 +0000209 int console = -1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200210 char *name, *value, *s;
211 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000212
213 name = argv[1];
214
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200215 if (strchr(name, '=')) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000216 printf("## Error: illegal character '=' in variable name"
217 "\"%s\"\n", name);
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200218 return 1;
219 }
220
Heiko Schocher2f70c492009-02-10 09:38:52 +0100221 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000222 /*
223 * search if variable with this name already exists
224 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200225 e.key = name;
226 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500227 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000228
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200229 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000230 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200231 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000232 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200233 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000234 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200235 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200236
237 if (console != -1) {
238 if (argc < 3) { /* Cannot delete it! */
239 printf("Can't delete \"%s\"\n", name);
240 return 1;
241 }
242
243#ifdef CONFIG_CONSOLE_MUX
244 i = iomux_doenv(console, argv[2]);
245 if (i)
246 return i;
247#else
248 /* Try assigning specified device */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000249 if (console_assign(console, argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200250 return 1;
251
252#ifdef CONFIG_SERIAL_MULTI
Macpaul Linf3c615b2011-04-26 16:16:45 +0000253 if (serial_assign(argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200254 return 1;
255#endif
256#endif /* CONFIG_CONSOLE_MUX */
257 }
258
wdenka68d3ed2002-10-11 08:38:32 +0000259 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200260 * Some variables like "ethaddr" and "serial#" can be set only
261 * once and cannot be deleted; also, "ver" is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000262 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200263 if (ep) { /* variable exists */
wdenka68d3ed2002-10-11 08:38:32 +0000264#ifndef CONFIG_ENV_OVERWRITE
Igor Grinbergd09b1782011-11-07 01:13:59 +0000265 if (strcmp(name, "serial#") == 0 ||
266 (strcmp(name, "ethaddr") == 0
wdenka68d3ed2002-10-11 08:38:32 +0000267#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Igor Grinbergd09b1782011-11-07 01:13:59 +0000268 && strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000269#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000270 )) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000271 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000272 return 1;
273 }
274#endif
wdenka68d3ed2002-10-11 08:38:32 +0000275 /*
276 * Switch to new baudrate if new baudrate is supported
277 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000278 if (strcmp(name, "baudrate") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000279 int baudrate = simple_strtoul(argv[2], NULL, 10);
280 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000281 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000282 if (baudrate == baudrate_table[i])
283 break;
284 }
285 if (i == N_BAUDRATES) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000286 printf("## Baudrate %d bps not supported\n",
wdenka68d3ed2002-10-11 08:38:32 +0000287 baudrate);
288 return 1;
289 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000290 printf("## Switch baudrate to %d bps and"
291 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000292 udelay(50000);
293 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100294#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000295 gd->bd->bi_baudrate = baudrate;
296#endif
297
Macpaul Linf3c615b2011-04-26 16:16:45 +0000298 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000299 udelay(50000);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000300 while (getc() != '\r')
301 ;
wdenka68d3ed2002-10-11 08:38:32 +0000302 }
wdenka68d3ed2002-10-11 08:38:32 +0000303 }
304
wdenka68d3ed2002-10-11 08:38:32 +0000305 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000306 if (argc < 3 || argv[2] == NULL) {
Mike Frysinger2eb15732010-12-08 06:26:04 -0500307 int rc = hdelete_r(name, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200308 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000309 }
310
311 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200312 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000313 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000314 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000315 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000316
317 value = malloc(len);
318 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200319 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000320 return 1;
321 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000322 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200323 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000324
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200325 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000326 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000327 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000328 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200329 if (s != value)
330 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000331
Igor Grinbergd09b1782011-11-07 01:13:59 +0000332 e.key = name;
333 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500334 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200335 free(value);
336 if (!ep) {
337 printf("## Error inserting \"%s\" variable, errno=%d\n",
338 name, errno);
339 return 1;
340 }
wdenka68d3ed2002-10-11 08:38:32 +0000341
342 /*
343 * Some variables should be updated when the corresponding
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200344 * entry in the environment is changed
wdenka68d3ed2002-10-11 08:38:32 +0000345 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000346 if (strcmp(name, "ipaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000347 char *s = argv[2]; /* always use only one arg */
348 char *e;
349 unsigned long addr;
350 bd->bi_ip_addr = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000351 for (addr = 0, i = 0; i < 4; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000352 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
353 addr <<= 8;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000354 addr |= val & 0xFF;
355 if (s)
356 s = *e ? e + 1 : e;
wdenka68d3ed2002-10-11 08:38:32 +0000357 }
358 bd->bi_ip_addr = htonl(addr);
359 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000360 } else if (strcmp(argv[1], "loadaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000361 load_addr = simple_strtoul(argv[2], NULL, 16);
362 return 0;
363 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500364#if defined(CONFIG_CMD_NET)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000365 else if (strcmp(argv[1], "bootfile") == 0) {
366 copy_filename(BootFile, argv[2], sizeof(BootFile));
wdenka68d3ed2002-10-11 08:38:32 +0000367 return 0;
368 }
Jon Loeliger90253172007-07-10 11:02:44 -0500369#endif
wdenka68d3ed2002-10-11 08:38:32 +0000370 return 0;
371}
372
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200373int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000374{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200375 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
376
Igor Grinbergd09b1782011-11-07 01:13:59 +0000377 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200378 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200379 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200380 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000381}
382
Simon Glassd67f10c2011-10-24 17:59:59 +0000383/**
384 * Set an environment variable to an integer value
385 *
386 * @param varname Environmet variable to set
387 * @param value Value to set it to
388 * @return 0 if ok, 1 on error
389 */
390int setenv_ulong(const char *varname, ulong value)
391{
392 /* TODO: this should be unsigned */
393 char *str = simple_itoa(value);
394
395 return setenv(varname, str);
396}
397
398/**
399 * Set an environment variable to an address in hex
400 *
401 * @param varname Environmet variable to set
402 * @param addr Value to set it to
403 * @return 0 if ok, 1 on error
404 */
405int setenv_addr(const char *varname, const void *addr)
406{
407 char str[17];
408
Simon Glass79afc882011-11-04 06:42:36 +0000409 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000410 return setenv(varname, str);
411}
412
Macpaul Linf3c615b2011-04-26 16:16:45 +0000413int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000414{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200415 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000416 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000417
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200418 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000419}
420
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200421/*
wdenka68d3ed2002-10-11 08:38:32 +0000422 * Prompt for environment variable
423 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500424#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000425int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000426{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200427 char message[CONFIG_SYS_CBSIZE];
428 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200429 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000430 char *local_args[4];
431
432 local_args[0] = argv[0];
433 local_args[1] = argv[1];
434 local_args[2] = NULL;
435 local_args[3] = NULL;
436
wdenka68d3ed2002-10-11 08:38:32 +0000437 /* Check the syntax */
438 switch (argc) {
439 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000440 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000441
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200442 case 2: /* env_ask envname */
443 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000444 break;
445
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200446 case 3: /* env_ask envname size */
447 sprintf(message, "Please enter '%s':", argv[1]);
448 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000449 break;
450
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200451 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000452 for (i = 2, pos = 0; i < argc - 1; i++) {
453 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000454 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000455
Igor Grinbergd09b1782011-11-07 01:13:59 +0000456 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000457 pos += strlen(argv[i]);
458 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000459
wdenka68d3ed2002-10-11 08:38:32 +0000460 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200461 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000462 break;
463 }
464
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200465 if (size >= CONFIG_SYS_CBSIZE)
466 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000467
468 if (size <= 0)
469 return 1;
470
471 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200472 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000473
474 if (size < len)
475 console_buffer[size] = '\0';
476
477 len = 2;
478 if (console_buffer[0] != '\0') {
479 local_args[2] = console_buffer;
480 len = 3;
481 }
482
483 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200484 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000485}
Jon Loeliger90253172007-07-10 11:02:44 -0500486#endif
wdenka68d3ed2002-10-11 08:38:32 +0000487
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200488/*
Peter Tyser246c6922009-10-25 15:12:56 -0500489 * Interactively edit an environment variable
490 */
491#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200492int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500493{
494 char buffer[CONFIG_SYS_CBSIZE];
495 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500496
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200497 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000498 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500499
500 /* Set read buffer to initial value or empty sting */
501 init_val = getenv(argv[1]);
502 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200503 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500504 else
505 buffer[0] = '\0';
506
Heiko Schocher9c348312012-01-16 21:13:05 +0000507 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500508
509 return setenv(argv[1], buffer);
510}
511#endif /* CONFIG_CMD_EDITENV */
512
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200513/*
wdenka68d3ed2002-10-11 08:38:32 +0000514 * Look up variable from environment,
515 * return address of storage for that variable,
516 * or NULL if not found
517 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200518char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000519{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000520 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200521 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000522
Wolfgang Denk91a76752010-07-24 20:22:02 +0200523 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000524
Igor Grinbergd09b1782011-11-07 01:13:59 +0000525 e.key = name;
526 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500527 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000528
Macpaul Linf3c615b2011-04-26 16:16:45 +0000529 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000530 }
531
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200532 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200533 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
534 return (char *)(gd->env_buf);
535
536 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000537}
538
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200539/*
540 * Look up variable from environment for restricted C runtime env.
541 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200542int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000543{
544 int i, nxt;
545
Igor Grinbergd09b1782011-11-07 01:13:59 +0000546 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000547 int val, n;
548
Macpaul Linf3c615b2011-04-26 16:16:45 +0000549 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
550 if (nxt >= CONFIG_ENV_SIZE)
551 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000552 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000553
554 val = envmatch((uchar *)name, i);
555 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000556 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200557
wdenka68d3ed2002-10-11 08:38:32 +0000558 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000559 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000560 *buf = env_get_char(val++);
561 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200562 return n;
563 }
564
565 if (n)
566 *--buf = '\0';
567
Wolfgang Denka02a8842011-05-04 10:29:49 +0000568 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
569 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200570
571 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000572 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000573
Macpaul Linf3c615b2011-04-26 16:16:45 +0000574 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000575}
576
Simon Glass4a9b4132011-10-14 13:25:18 +0000577/**
578 * Decode the integer value of an environment variable and return it.
579 *
580 * @param name Name of environemnt variable
581 * @param base Number base to use (normally 10, or 16 for hex)
582 * @param default_val Default value to return if the variable is not
583 * found
584 * @return the decoded value, or default_val if not found
585 */
586ulong getenv_ulong(const char *name, int base, ulong default_val)
587{
588 /*
589 * We can use getenv() here, even before relocation, since the
590 * environment variable value is an integer and thus short.
591 */
592 const char *str = getenv(name);
593
594 return str ? simple_strtoul(str, NULL, base) : default_val;
595}
596
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500597#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000598int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000599{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000600 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000601
Macpaul Linf3c615b2011-04-26 16:16:45 +0000602 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000603}
wdenk8bde7f72003-06-27 21:31:46 +0000604
Mike Frysingerba69dc22008-12-30 02:59:25 -0500605U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200606 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600607 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200608 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500609);
wdenka68d3ed2002-10-11 08:38:32 +0000610#endif
611
612
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200613/*
wdenka68d3ed2002-10-11 08:38:32 +0000614 * Match a name / name=value pair
615 *
616 * s1 is either a simple 'name', or a 'name=value' pair.
617 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000618 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000619 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000620int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000621{
wdenka68d3ed2002-10-11 08:38:32 +0000622 while (*s1 == env_get_char(i2++))
623 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000624 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000625
wdenka68d3ed2002-10-11 08:38:32 +0000626 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000627 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000628
Macpaul Linf3c615b2011-04-26 16:16:45 +0000629 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000630}
wdenk8bde7f72003-06-27 21:31:46 +0000631
Igor Grinbergd09b1782011-11-07 01:13:59 +0000632static int do_env_default(cmd_tbl_t *cmdtp, int flag,
633 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200634{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000635 if (argc != 2 || strcmp(argv[1], "-f") != 0)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000636 return CMD_RET_USAGE;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000637
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200638 set_default_env("## Resetting to default environment\n");
639 return 0;
640}
wdenk8bde7f72003-06-27 21:31:46 +0000641
Igor Grinbergd09b1782011-11-07 01:13:59 +0000642static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
643 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200644{
645 printf("Not implemented yet\n");
646 return 0;
647}
648
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500649#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200650/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100651 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200652 * -t: export as text format; if size is given, data will be
653 * padded with '\0' bytes; if not, one terminating '\0'
654 * will be added (which is included in the "filesize"
655 * setting so you can for exmple copy this to flash and
656 * keep the termination).
657 * -b: export as binary format (name=value pairs separated by
658 * '\0', list end marked by double "\0\0")
659 * -c: export as checksum protected environment format as
660 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100661 * -s size:
662 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200663 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100664 * var... List of variable names that get included into the
665 * export. Without arguments, the whole environment gets
666 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200667 *
668 * With "-c" and size is NOT given, then the export command will
669 * format the data as currently used for the persistent storage,
670 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
671 * prepend a valid CRC32 checksum and, in case of resundant
672 * environment, a "current" redundancy flag. If size is given, this
673 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
674 * checksum and redundancy flag will be inserted.
675 *
676 * With "-b" and "-t", always only the real data (including a
677 * terminating '\0' byte) will be written; here the optional size
678 * argument will be used to make sure not to overflow the user
679 * provided buffer; the command will abort if the size is not
680 * sufficient. Any remainign space will be '\0' padded.
681 *
682 * On successful return, the variable "filesize" will be set.
683 * Note that filesize includes the trailing/terminating '\0' byte(s).
684 *
685 * Usage szenario: create a text snapshot/backup of the current settings:
686 *
687 * => env export -t 100000
688 * => era ${backup_addr} +${filesize}
689 * => cp.b 100000 ${backup_addr} ${filesize}
690 *
691 * Re-import this snapshot, deleting all other settings:
692 *
693 * => env import -d -t ${backup_addr}
694 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000695static int do_env_export(cmd_tbl_t *cmdtp, int flag,
696 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200697{
698 char buf[32];
699 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100700 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200701 ssize_t len;
702 env_t *envp;
703 char sep = '\n';
704 int chk = 0;
705 int fmt = 0;
706
707 cmd = *argv;
708
709 while (--argc > 0 && **++argv == '-') {
710 char *arg = *argv;
711 while (*++arg) {
712 switch (*arg) {
713 case 'b': /* raw binary format */
714 if (fmt++)
715 goto sep_err;
716 sep = '\0';
717 break;
718 case 'c': /* external checksum format */
719 if (fmt++)
720 goto sep_err;
721 sep = '\0';
722 chk = 1;
723 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100724 case 's': /* size given */
725 if (--argc <= 0)
726 return cmd_usage(cmdtp);
727 size = simple_strtoul(*++argv, NULL, 16);
728 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200729 case 't': /* text format */
730 if (fmt++)
731 goto sep_err;
732 sep = '\n';
733 break;
734 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000735 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200736 }
737 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100738NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200739 }
740
Macpaul Linf3c615b2011-04-26 16:16:45 +0000741 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000742 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200743
744 addr = (char *)simple_strtoul(argv[0], NULL, 16);
745
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100746 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200747 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100748
749 argc--;
750 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200751
752 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100753 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200754 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000755 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200756 return 1;
757 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100758 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200759 setenv("filesize", buf);
760
761 return 0;
762 }
763
764 envp = (env_t *)addr;
765
766 if (chk) /* export as checksum protected block */
767 res = (char *)envp->data;
768 else /* export as raw binary data */
769 res = addr;
770
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100771 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200772 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000773 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200774 return 1;
775 }
776
777 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000778 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200779#ifdef CONFIG_ENV_ADDR_REDUND
780 envp->flags = ACTIVE_FLAG;
781#endif
782 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000783 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200784 setenv("filesize", buf);
785
786 return 0;
787
788sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000789 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200790 return 1;
791}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500792#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200793
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500794#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200795/*
796 * env import [-d] [-t | -b | -c] addr [size]
797 * -d: delete existing environment before importing;
798 * otherwise overwrite / append to existion definitions
799 * -t: assume text format; either "size" must be given or the
800 * text data must be '\0' terminated
801 * -b: assume binary format ('\0' separated, "\0\0" terminated)
802 * -c: assume checksum protected environment format
803 * addr: memory address to read from
804 * size: length of input data; if missing, proper '\0'
805 * termination is mandatory
806 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000807static int do_env_import(cmd_tbl_t *cmdtp, int flag,
808 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200809{
810 char *cmd, *addr;
811 char sep = '\n';
812 int chk = 0;
813 int fmt = 0;
814 int del = 0;
815 size_t size;
816
817 cmd = *argv;
818
819 while (--argc > 0 && **++argv == '-') {
820 char *arg = *argv;
821 while (*++arg) {
822 switch (*arg) {
823 case 'b': /* raw binary format */
824 if (fmt++)
825 goto sep_err;
826 sep = '\0';
827 break;
828 case 'c': /* external checksum format */
829 if (fmt++)
830 goto sep_err;
831 sep = '\0';
832 chk = 1;
833 break;
834 case 't': /* text format */
835 if (fmt++)
836 goto sep_err;
837 sep = '\n';
838 break;
839 case 'd':
840 del = 1;
841 break;
842 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000843 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200844 }
845 }
846 }
847
Macpaul Linf3c615b2011-04-26 16:16:45 +0000848 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000849 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200850
851 if (!fmt)
852 printf("## Warning: defaulting to text format\n");
853
854 addr = (char *)simple_strtoul(argv[0], NULL, 16);
855
856 if (argc == 2) {
857 size = simple_strtoul(argv[1], NULL, 16);
858 } else {
859 char *s = addr;
860
861 size = 0;
862
863 while (size < MAX_ENV_SIZE) {
864 if ((*s == sep) && (*(s+1) == '\0'))
865 break;
866 ++s;
867 ++size;
868 }
869 if (size == MAX_ENV_SIZE) {
870 printf("## Warning: Input data exceeds %d bytes"
871 " - truncated\n", MAX_ENV_SIZE);
872 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000873 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000874 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200875 }
876
877 if (chk) {
878 uint32_t crc;
879 env_t *ep = (env_t *)addr;
880
881 size -= offsetof(env_t, data);
882 memcpy(&crc, &ep->crc, sizeof(crc));
883
884 if (crc32(0, ep->data, size) != crc) {
885 puts("## Error: bad CRC, import failed\n");
886 return 1;
887 }
888 addr = (char *)ep->data;
889 }
890
Mike Frysinger2eb15732010-12-08 06:26:04 -0500891 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200892 error("Environment import failed: errno = %d\n", errno);
893 return 1;
894 }
895 gd->flags |= GD_FLG_ENV_READY;
896
897 return 0;
898
899sep_err:
900 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
901 cmd);
902 return 1;
903}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500904#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200905
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200906/*
907 * New command line interface: "env" command with subcommands
908 */
909static cmd_tbl_t cmd_env_sub[] = {
910#if defined(CONFIG_CMD_ASKENV)
911 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
912#endif
913 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
914 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
915#if defined(CONFIG_CMD_EDITENV)
916 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
917#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500918#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200919 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500920#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000921#if defined(CONFIG_CMD_GREPENV)
922 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
923#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500924#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200925 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500926#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200927 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
928#if defined(CONFIG_CMD_RUN)
929 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
930#endif
931#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
932 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
933#endif
934 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
935};
936
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200937#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200938void env_reloc(void)
939{
940 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
941}
942#endif
943
Macpaul Linf3c615b2011-04-26 16:16:45 +0000944static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200945{
946 cmd_tbl_t *cp;
947
Thomas Weber5904da02010-11-24 13:07:52 +0100948 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000949 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +0100950
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200951 /* drop initial "env" arg */
952 argc--;
953 argv++;
954
955 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
956
957 if (cp)
958 return cp->cmd(cmdtp, flag, argc, argv);
959
Simon Glass4c12eeb2011-12-10 08:44:01 +0000960 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200961}
962
963U_BOOT_CMD(
964 env, CONFIG_SYS_MAXARGS, 1, do_env,
965 "environment handling commands",
966#if defined(CONFIG_CMD_ASKENV)
967 "ask name [message] [size] - ask for environment variable\nenv "
968#endif
969 "default -f - reset default environment\n"
970#if defined(CONFIG_CMD_EDITENV)
971 "env edit name - edit environment variable\n"
972#endif
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100973 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Kim Phillipsa000b792011-04-05 07:15:14 +0000974#if defined(CONFIG_CMD_GREPENV)
975 "env grep string [...] - search environment\n"
976#endif
977 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200978 "env print [name ...] - print environment\n"
979#if defined(CONFIG_CMD_RUN)
980 "env run var [...] - run commands in an environment variable\n"
981#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000982#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200983 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000984#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200985 "env set [-f] name [arg ...]\n"
986);
987
988/*
989 * Old command line interface, kept for compatibility
990 */
wdenk8bde7f72003-06-27 21:31:46 +0000991
Peter Tyser246c6922009-10-25 15:12:56 -0500992#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400993U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200994 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500995 "edit environment variable",
996 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400997 " - edit environment variable 'name'",
998 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500999);
1000#endif
1001
Mike Frysinger722b0612010-10-20 03:52:39 -04001002U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001003 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001004 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001005 "\n - print values of all environment variables\n"
1006 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001007 " - print value of environment variable 'name'",
1008 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001009);
1010
Kim Phillipsa000b792011-04-05 07:15:14 +00001011#ifdef CONFIG_CMD_GREPENV
1012U_BOOT_CMD_COMPLETE(
1013 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1014 "search environment variables",
1015 "string ...\n"
1016 " - list environment name=value pairs matching 'string'",
1017 var_complete
1018);
1019#endif
1020
Mike Frysinger722b0612010-10-20 03:52:39 -04001021U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001022 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001023 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001024 "name value ...\n"
1025 " - set environment variable 'name' to 'value ...'\n"
1026 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001027 " - delete environment variable 'name'",
1028 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001029);
1030
Jon Loeligerc76fe472007-07-08 18:02:23 -05001031#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001032
wdenk0d498392003-07-01 21:06:45 +00001033U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001034 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001035 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001036 "name [message] [size]\n"
1037 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1038 "askenv name\n"
1039 " - get environment variable 'name' from stdin\n"
1040 "askenv name size\n"
1041 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1042 "askenv name [message] size\n"
1043 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001044 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001045);
Jon Loeliger90253172007-07-10 11:02:44 -05001046#endif
wdenk8bde7f72003-06-27 21:31:46 +00001047
Jon Loeligerc76fe472007-07-08 18:02:23 -05001048#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001049U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001050 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001051 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001052 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001053 " - run the commands in the environment variable(s) 'var'",
1054 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001055);
Jon Loeliger90253172007-07-10 11:02:44 -05001056#endif