blob: b1494dcb0ce698a89545a0e35fc283074bd34fd6 [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) && \
69 !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|\
Maximilian Schwerin57210c72012-03-12 23:57:50 +000071SPI_FLASH|MG_DISK|NVRAM|MMC|FAT} 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/*
wdenka68d3ed2002-10-11 08:38:32 +0000201 * Set a new environment variable,
202 * or replace or delete an existing one.
wdenka68d3ed2002-10-11 08:38:32 +0000203 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000204int _do_env_set(int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000205{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200206 bd_t *bd = gd->bd;
207 int i, len;
wdenka68d3ed2002-10-11 08:38:32 +0000208 int console = -1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200209 char *name, *value, *s;
210 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000211
212 name = argv[1];
213
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200214 if (strchr(name, '=')) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000215 printf("## Error: illegal character '=' in variable name"
216 "\"%s\"\n", name);
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200217 return 1;
218 }
219
Heiko Schocher2f70c492009-02-10 09:38:52 +0100220 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000221 /*
222 * search if variable with this name already exists
223 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200224 e.key = name;
225 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500226 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000227
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200228 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000229 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200230 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000231 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200232 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000233 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200234 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200235
236 if (console != -1) {
237 if (argc < 3) { /* Cannot delete it! */
238 printf("Can't delete \"%s\"\n", name);
239 return 1;
240 }
241
242#ifdef CONFIG_CONSOLE_MUX
243 i = iomux_doenv(console, argv[2]);
244 if (i)
245 return i;
246#else
247 /* Try assigning specified device */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000248 if (console_assign(console, argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200249 return 1;
250
251#ifdef CONFIG_SERIAL_MULTI
Macpaul Linf3c615b2011-04-26 16:16:45 +0000252 if (serial_assign(argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200253 return 1;
254#endif
255#endif /* CONFIG_CONSOLE_MUX */
256 }
257
wdenka68d3ed2002-10-11 08:38:32 +0000258 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200259 * Some variables like "ethaddr" and "serial#" can be set only
260 * once and cannot be deleted; also, "ver" is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000261 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200262 if (ep) { /* variable exists */
wdenka68d3ed2002-10-11 08:38:32 +0000263#ifndef CONFIG_ENV_OVERWRITE
Igor Grinbergd09b1782011-11-07 01:13:59 +0000264 if (strcmp(name, "serial#") == 0 ||
265 (strcmp(name, "ethaddr") == 0
wdenka68d3ed2002-10-11 08:38:32 +0000266#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Igor Grinbergd09b1782011-11-07 01:13:59 +0000267 && strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000268#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000269 )) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000270 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000271 return 1;
272 }
273#endif
wdenka68d3ed2002-10-11 08:38:32 +0000274 /*
275 * Switch to new baudrate if new baudrate is supported
276 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000277 if (strcmp(name, "baudrate") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000278 int baudrate = simple_strtoul(argv[2], NULL, 10);
279 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000280 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000281 if (baudrate == baudrate_table[i])
282 break;
283 }
284 if (i == N_BAUDRATES) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000285 printf("## Baudrate %d bps not supported\n",
wdenka68d3ed2002-10-11 08:38:32 +0000286 baudrate);
287 return 1;
288 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000289 printf("## Switch baudrate to %d bps and"
290 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000291 udelay(50000);
292 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100293#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000294 gd->bd->bi_baudrate = baudrate;
295#endif
296
Macpaul Linf3c615b2011-04-26 16:16:45 +0000297 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000298 udelay(50000);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000299 while (getc() != '\r')
300 ;
wdenka68d3ed2002-10-11 08:38:32 +0000301 }
wdenka68d3ed2002-10-11 08:38:32 +0000302 }
303
wdenka68d3ed2002-10-11 08:38:32 +0000304 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000305 if (argc < 3 || argv[2] == NULL) {
Mike Frysinger2eb15732010-12-08 06:26:04 -0500306 int rc = hdelete_r(name, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200307 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000308 }
309
310 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200311 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000312 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000313 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000314 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000315
316 value = malloc(len);
317 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200318 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000319 return 1;
320 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000321 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200322 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000323
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200324 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000325 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000326 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000327 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200328 if (s != value)
329 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000330
Igor Grinbergd09b1782011-11-07 01:13:59 +0000331 e.key = name;
332 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500333 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200334 free(value);
335 if (!ep) {
336 printf("## Error inserting \"%s\" variable, errno=%d\n",
337 name, errno);
338 return 1;
339 }
wdenka68d3ed2002-10-11 08:38:32 +0000340
341 /*
342 * Some variables should be updated when the corresponding
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200343 * entry in the environment is changed
wdenka68d3ed2002-10-11 08:38:32 +0000344 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000345 if (strcmp(name, "ipaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000346 char *s = argv[2]; /* always use only one arg */
347 char *e;
348 unsigned long addr;
349 bd->bi_ip_addr = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000350 for (addr = 0, i = 0; i < 4; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000351 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
352 addr <<= 8;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000353 addr |= val & 0xFF;
354 if (s)
355 s = *e ? e + 1 : e;
wdenka68d3ed2002-10-11 08:38:32 +0000356 }
357 bd->bi_ip_addr = htonl(addr);
358 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000359 } else if (strcmp(argv[1], "loadaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000360 load_addr = simple_strtoul(argv[2], NULL, 16);
361 return 0;
362 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500363#if defined(CONFIG_CMD_NET)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000364 else if (strcmp(argv[1], "bootfile") == 0) {
365 copy_filename(BootFile, argv[2], sizeof(BootFile));
wdenka68d3ed2002-10-11 08:38:32 +0000366 return 0;
367 }
Jon Loeliger90253172007-07-10 11:02:44 -0500368#endif
wdenka68d3ed2002-10-11 08:38:32 +0000369 return 0;
370}
371
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200372int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000373{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200374 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
375
Igor Grinbergd09b1782011-11-07 01:13:59 +0000376 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200377 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200378 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200379 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000380}
381
Simon Glassd67f10c2011-10-24 17:59:59 +0000382/**
383 * Set an environment variable to an integer value
384 *
385 * @param varname Environmet variable to set
386 * @param value Value to set it to
387 * @return 0 if ok, 1 on error
388 */
389int setenv_ulong(const char *varname, ulong value)
390{
391 /* TODO: this should be unsigned */
392 char *str = simple_itoa(value);
393
394 return setenv(varname, str);
395}
396
397/**
398 * Set an environment variable to an address in hex
399 *
400 * @param varname Environmet variable to set
401 * @param addr Value to set it to
402 * @return 0 if ok, 1 on error
403 */
404int setenv_addr(const char *varname, const void *addr)
405{
406 char str[17];
407
Simon Glass79afc882011-11-04 06:42:36 +0000408 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000409 return setenv(varname, str);
410}
411
Macpaul Linf3c615b2011-04-26 16:16:45 +0000412int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000413{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200414 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000415 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000416
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200417 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000418}
419
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200420/*
wdenka68d3ed2002-10-11 08:38:32 +0000421 * Prompt for environment variable
422 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500423#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000424int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000425{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200426 char message[CONFIG_SYS_CBSIZE];
427 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200428 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000429 char *local_args[4];
430
431 local_args[0] = argv[0];
432 local_args[1] = argv[1];
433 local_args[2] = NULL;
434 local_args[3] = NULL;
435
wdenka68d3ed2002-10-11 08:38:32 +0000436 /* Check the syntax */
437 switch (argc) {
438 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000439 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000440
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200441 case 2: /* env_ask envname */
442 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000443 break;
444
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200445 case 3: /* env_ask envname size */
446 sprintf(message, "Please enter '%s':", argv[1]);
447 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000448 break;
449
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200450 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000451 for (i = 2, pos = 0; i < argc - 1; i++) {
452 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000453 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000454
Igor Grinbergd09b1782011-11-07 01:13:59 +0000455 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000456 pos += strlen(argv[i]);
457 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000458
wdenka68d3ed2002-10-11 08:38:32 +0000459 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200460 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000461 break;
462 }
463
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200464 if (size >= CONFIG_SYS_CBSIZE)
465 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000466
467 if (size <= 0)
468 return 1;
469
470 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200471 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000472
473 if (size < len)
474 console_buffer[size] = '\0';
475
476 len = 2;
477 if (console_buffer[0] != '\0') {
478 local_args[2] = console_buffer;
479 len = 3;
480 }
481
482 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200483 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000484}
Jon Loeliger90253172007-07-10 11:02:44 -0500485#endif
wdenka68d3ed2002-10-11 08:38:32 +0000486
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200487/*
Peter Tyser246c6922009-10-25 15:12:56 -0500488 * Interactively edit an environment variable
489 */
490#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200491int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500492{
493 char buffer[CONFIG_SYS_CBSIZE];
494 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500495
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200496 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000497 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500498
499 /* Set read buffer to initial value or empty sting */
500 init_val = getenv(argv[1]);
501 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200502 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500503 else
504 buffer[0] = '\0';
505
Heiko Schocher9c348312012-01-16 21:13:05 +0000506 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500507
508 return setenv(argv[1], buffer);
509}
510#endif /* CONFIG_CMD_EDITENV */
511
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200512/*
wdenka68d3ed2002-10-11 08:38:32 +0000513 * Look up variable from environment,
514 * return address of storage for that variable,
515 * or NULL if not found
516 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200517char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000518{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000519 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200520 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000521
Wolfgang Denk91a76752010-07-24 20:22:02 +0200522 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000523
Igor Grinbergd09b1782011-11-07 01:13:59 +0000524 e.key = name;
525 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500526 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000527
Macpaul Linf3c615b2011-04-26 16:16:45 +0000528 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000529 }
530
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200531 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200532 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
533 return (char *)(gd->env_buf);
534
535 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000536}
537
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200538/*
539 * Look up variable from environment for restricted C runtime env.
540 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200541int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000542{
543 int i, nxt;
544
Igor Grinbergd09b1782011-11-07 01:13:59 +0000545 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000546 int val, n;
547
Macpaul Linf3c615b2011-04-26 16:16:45 +0000548 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
549 if (nxt >= CONFIG_ENV_SIZE)
550 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000551 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000552
553 val = envmatch((uchar *)name, i);
554 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000555 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200556
wdenka68d3ed2002-10-11 08:38:32 +0000557 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000558 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000559 *buf = env_get_char(val++);
560 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200561 return n;
562 }
563
564 if (n)
565 *--buf = '\0';
566
Wolfgang Denka02a8842011-05-04 10:29:49 +0000567 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
568 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200569
570 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000571 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000572
Macpaul Linf3c615b2011-04-26 16:16:45 +0000573 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000574}
575
Simon Glass4a9b4132011-10-14 13:25:18 +0000576/**
577 * Decode the integer value of an environment variable and return it.
578 *
579 * @param name Name of environemnt variable
580 * @param base Number base to use (normally 10, or 16 for hex)
581 * @param default_val Default value to return if the variable is not
582 * found
583 * @return the decoded value, or default_val if not found
584 */
585ulong getenv_ulong(const char *name, int base, ulong default_val)
586{
587 /*
588 * We can use getenv() here, even before relocation, since the
589 * environment variable value is an integer and thus short.
590 */
591 const char *str = getenv(name);
592
593 return str ? simple_strtoul(str, NULL, base) : default_val;
594}
595
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500596#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000597int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000598{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000599 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000600
Macpaul Linf3c615b2011-04-26 16:16:45 +0000601 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000602}
wdenk8bde7f72003-06-27 21:31:46 +0000603
Mike Frysingerba69dc22008-12-30 02:59:25 -0500604U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200605 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600606 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200607 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500608);
wdenka68d3ed2002-10-11 08:38:32 +0000609#endif
610
611
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200612/*
wdenka68d3ed2002-10-11 08:38:32 +0000613 * Match a name / name=value pair
614 *
615 * s1 is either a simple 'name', or a 'name=value' pair.
616 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000617 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000618 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000619int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000620{
wdenka68d3ed2002-10-11 08:38:32 +0000621 while (*s1 == env_get_char(i2++))
622 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000623 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000624
wdenka68d3ed2002-10-11 08:38:32 +0000625 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000626 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000627
Macpaul Linf3c615b2011-04-26 16:16:45 +0000628 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000629}
wdenk8bde7f72003-06-27 21:31:46 +0000630
Igor Grinbergd09b1782011-11-07 01:13:59 +0000631static int do_env_default(cmd_tbl_t *cmdtp, int flag,
632 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200633{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000634 if (argc != 2 || strcmp(argv[1], "-f") != 0)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000635 return CMD_RET_USAGE;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000636
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200637 set_default_env("## Resetting to default environment\n");
638 return 0;
639}
wdenk8bde7f72003-06-27 21:31:46 +0000640
Igor Grinbergd09b1782011-11-07 01:13:59 +0000641static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
642 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200643{
644 printf("Not implemented yet\n");
645 return 0;
646}
647
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500648#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200649/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100650 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200651 * -t: export as text format; if size is given, data will be
652 * padded with '\0' bytes; if not, one terminating '\0'
653 * will be added (which is included in the "filesize"
654 * setting so you can for exmple copy this to flash and
655 * keep the termination).
656 * -b: export as binary format (name=value pairs separated by
657 * '\0', list end marked by double "\0\0")
658 * -c: export as checksum protected environment format as
659 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100660 * -s size:
661 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200662 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100663 * var... List of variable names that get included into the
664 * export. Without arguments, the whole environment gets
665 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200666 *
667 * With "-c" and size is NOT given, then the export command will
668 * format the data as currently used for the persistent storage,
669 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
670 * prepend a valid CRC32 checksum and, in case of resundant
671 * environment, a "current" redundancy flag. If size is given, this
672 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
673 * checksum and redundancy flag will be inserted.
674 *
675 * With "-b" and "-t", always only the real data (including a
676 * terminating '\0' byte) will be written; here the optional size
677 * argument will be used to make sure not to overflow the user
678 * provided buffer; the command will abort if the size is not
679 * sufficient. Any remainign space will be '\0' padded.
680 *
681 * On successful return, the variable "filesize" will be set.
682 * Note that filesize includes the trailing/terminating '\0' byte(s).
683 *
684 * Usage szenario: create a text snapshot/backup of the current settings:
685 *
686 * => env export -t 100000
687 * => era ${backup_addr} +${filesize}
688 * => cp.b 100000 ${backup_addr} ${filesize}
689 *
690 * Re-import this snapshot, deleting all other settings:
691 *
692 * => env import -d -t ${backup_addr}
693 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000694static int do_env_export(cmd_tbl_t *cmdtp, int flag,
695 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200696{
697 char buf[32];
698 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100699 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200700 ssize_t len;
701 env_t *envp;
702 char sep = '\n';
703 int chk = 0;
704 int fmt = 0;
705
706 cmd = *argv;
707
708 while (--argc > 0 && **++argv == '-') {
709 char *arg = *argv;
710 while (*++arg) {
711 switch (*arg) {
712 case 'b': /* raw binary format */
713 if (fmt++)
714 goto sep_err;
715 sep = '\0';
716 break;
717 case 'c': /* external checksum format */
718 if (fmt++)
719 goto sep_err;
720 sep = '\0';
721 chk = 1;
722 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100723 case 's': /* size given */
724 if (--argc <= 0)
725 return cmd_usage(cmdtp);
726 size = simple_strtoul(*++argv, NULL, 16);
727 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200728 case 't': /* text format */
729 if (fmt++)
730 goto sep_err;
731 sep = '\n';
732 break;
733 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000734 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200735 }
736 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100737NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200738 }
739
Macpaul Linf3c615b2011-04-26 16:16:45 +0000740 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000741 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200742
743 addr = (char *)simple_strtoul(argv[0], NULL, 16);
744
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100745 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200746 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100747
748 argc--;
749 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200750
751 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100752 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200753 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000754 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200755 return 1;
756 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100757 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200758 setenv("filesize", buf);
759
760 return 0;
761 }
762
763 envp = (env_t *)addr;
764
765 if (chk) /* export as checksum protected block */
766 res = (char *)envp->data;
767 else /* export as raw binary data */
768 res = addr;
769
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100770 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200771 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000772 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200773 return 1;
774 }
775
776 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000777 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200778#ifdef CONFIG_ENV_ADDR_REDUND
779 envp->flags = ACTIVE_FLAG;
780#endif
781 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000782 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200783 setenv("filesize", buf);
784
785 return 0;
786
787sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000788 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200789 return 1;
790}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500791#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200792
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500793#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200794/*
795 * env import [-d] [-t | -b | -c] addr [size]
796 * -d: delete existing environment before importing;
797 * otherwise overwrite / append to existion definitions
798 * -t: assume text format; either "size" must be given or the
799 * text data must be '\0' terminated
800 * -b: assume binary format ('\0' separated, "\0\0" terminated)
801 * -c: assume checksum protected environment format
802 * addr: memory address to read from
803 * size: length of input data; if missing, proper '\0'
804 * termination is mandatory
805 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000806static int do_env_import(cmd_tbl_t *cmdtp, int flag,
807 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200808{
809 char *cmd, *addr;
810 char sep = '\n';
811 int chk = 0;
812 int fmt = 0;
813 int del = 0;
814 size_t size;
815
816 cmd = *argv;
817
818 while (--argc > 0 && **++argv == '-') {
819 char *arg = *argv;
820 while (*++arg) {
821 switch (*arg) {
822 case 'b': /* raw binary format */
823 if (fmt++)
824 goto sep_err;
825 sep = '\0';
826 break;
827 case 'c': /* external checksum format */
828 if (fmt++)
829 goto sep_err;
830 sep = '\0';
831 chk = 1;
832 break;
833 case 't': /* text format */
834 if (fmt++)
835 goto sep_err;
836 sep = '\n';
837 break;
838 case 'd':
839 del = 1;
840 break;
841 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000842 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200843 }
844 }
845 }
846
Macpaul Linf3c615b2011-04-26 16:16:45 +0000847 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000848 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200849
850 if (!fmt)
851 printf("## Warning: defaulting to text format\n");
852
853 addr = (char *)simple_strtoul(argv[0], NULL, 16);
854
855 if (argc == 2) {
856 size = simple_strtoul(argv[1], NULL, 16);
857 } else {
858 char *s = addr;
859
860 size = 0;
861
862 while (size < MAX_ENV_SIZE) {
863 if ((*s == sep) && (*(s+1) == '\0'))
864 break;
865 ++s;
866 ++size;
867 }
868 if (size == MAX_ENV_SIZE) {
869 printf("## Warning: Input data exceeds %d bytes"
870 " - truncated\n", MAX_ENV_SIZE);
871 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000872 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000873 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200874 }
875
876 if (chk) {
877 uint32_t crc;
878 env_t *ep = (env_t *)addr;
879
880 size -= offsetof(env_t, data);
881 memcpy(&crc, &ep->crc, sizeof(crc));
882
883 if (crc32(0, ep->data, size) != crc) {
884 puts("## Error: bad CRC, import failed\n");
885 return 1;
886 }
887 addr = (char *)ep->data;
888 }
889
Mike Frysinger2eb15732010-12-08 06:26:04 -0500890 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200891 error("Environment import failed: errno = %d\n", errno);
892 return 1;
893 }
894 gd->flags |= GD_FLG_ENV_READY;
895
896 return 0;
897
898sep_err:
899 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
900 cmd);
901 return 1;
902}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500903#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200904
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200905/*
906 * New command line interface: "env" command with subcommands
907 */
908static cmd_tbl_t cmd_env_sub[] = {
909#if defined(CONFIG_CMD_ASKENV)
910 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
911#endif
912 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
913 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
914#if defined(CONFIG_CMD_EDITENV)
915 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
916#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500917#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200918 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500919#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000920#if defined(CONFIG_CMD_GREPENV)
921 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
922#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500923#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200924 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500925#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200926 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
927#if defined(CONFIG_CMD_RUN)
928 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
929#endif
930#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
931 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
932#endif
933 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
934};
935
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200936#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200937void env_reloc(void)
938{
939 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
940}
941#endif
942
Macpaul Linf3c615b2011-04-26 16:16:45 +0000943static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200944{
945 cmd_tbl_t *cp;
946
Thomas Weber5904da02010-11-24 13:07:52 +0100947 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000948 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +0100949
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200950 /* drop initial "env" arg */
951 argc--;
952 argv++;
953
954 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
955
956 if (cp)
957 return cp->cmd(cmdtp, flag, argc, argv);
958
Simon Glass4c12eeb2011-12-10 08:44:01 +0000959 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200960}
961
962U_BOOT_CMD(
963 env, CONFIG_SYS_MAXARGS, 1, do_env,
964 "environment handling commands",
965#if defined(CONFIG_CMD_ASKENV)
966 "ask name [message] [size] - ask for environment variable\nenv "
967#endif
968 "default -f - reset default environment\n"
969#if defined(CONFIG_CMD_EDITENV)
970 "env edit name - edit environment variable\n"
971#endif
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100972 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Kim Phillipsa000b792011-04-05 07:15:14 +0000973#if defined(CONFIG_CMD_GREPENV)
974 "env grep string [...] - search environment\n"
975#endif
976 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200977 "env print [name ...] - print environment\n"
978#if defined(CONFIG_CMD_RUN)
979 "env run var [...] - run commands in an environment variable\n"
980#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000981#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200982 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000983#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200984 "env set [-f] name [arg ...]\n"
985);
986
987/*
988 * Old command line interface, kept for compatibility
989 */
wdenk8bde7f72003-06-27 21:31:46 +0000990
Peter Tyser246c6922009-10-25 15:12:56 -0500991#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400992U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200993 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500994 "edit environment variable",
995 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400996 " - edit environment variable 'name'",
997 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500998);
999#endif
1000
Mike Frysinger722b0612010-10-20 03:52:39 -04001001U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001002 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001003 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001004 "\n - print values of all environment variables\n"
1005 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001006 " - print value of environment variable 'name'",
1007 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001008);
1009
Kim Phillipsa000b792011-04-05 07:15:14 +00001010#ifdef CONFIG_CMD_GREPENV
1011U_BOOT_CMD_COMPLETE(
1012 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1013 "search environment variables",
1014 "string ...\n"
1015 " - list environment name=value pairs matching 'string'",
1016 var_complete
1017);
1018#endif
1019
Mike Frysinger722b0612010-10-20 03:52:39 -04001020U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001021 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001022 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001023 "name value ...\n"
1024 " - set environment variable 'name' to 'value ...'\n"
1025 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001026 " - delete environment variable 'name'",
1027 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001028);
1029
Jon Loeligerc76fe472007-07-08 18:02:23 -05001030#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001031
wdenk0d498392003-07-01 21:06:45 +00001032U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001033 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001034 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001035 "name [message] [size]\n"
1036 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1037 "askenv name\n"
1038 " - get environment variable 'name' from stdin\n"
1039 "askenv name size\n"
1040 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1041 "askenv name [message] size\n"
1042 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001043 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001044);
Jon Loeliger90253172007-07-10 11:02:44 -05001045#endif
wdenk8bde7f72003-06-27 21:31:46 +00001046
Jon Loeligerc76fe472007-07-08 18:02:23 -05001047#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001048U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001049 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001050 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001051 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001052 " - run the commands in the environment variable(s) 'var'",
1053 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001054);
Jon Loeliger90253172007-07-10 11:02:44 -05001055#endif