blob: 396a17135eb558205ff226d12d54389c6635b4a8 [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) && \
64 !defined(CONFIG_ENV_IS_IN_NAND) && \
65 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
66 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
67 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
68 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090069# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Loïc Minier31e41392011-03-24 17:21:42 +010070SPI_FLASH|MG_DISK|NVRAM|MMC} or CONFIG_ENV_IS_NOWHERE
wdenka68d3ed2002-10-11 08:38:32 +000071#endif
72
73#define XMK_STR(x) #x
74#define MK_STR(x) XMK_STR(x)
75
Wolfgang Denkea882ba2010-06-20 23:33:59 +020076/*
77 * Maximum expected input data size for import command
78 */
79#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000080
Mike Frysinger558605c2010-12-21 14:08:27 -050081ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Simon Glass1aec2442011-10-21 18:51:38 +000082ulong save_addr; /* Default Save Address */
83ulong save_size; /* Default Save Size (in bytes) */
Mike Frysinger558605c2010-12-21 14:08:27 -050084
wdenka68d3ed2002-10-11 08:38:32 +000085/*
86 * Table with supported baudrates (defined in config_xyz.h)
87 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000089#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
90
Heiko Schocherda954272009-04-28 08:36:11 +020091/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020092 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020093 * be used via get_env_id() as an indication, if the environment
94 * has changed or not. So it is possible to reread an environment
95 * variable only if the environment was changed ... done so for
96 * example in NetInitLoop()
97 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010098static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000099
Macpaul Linf3c615b2011-04-26 16:16:45 +0000100int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100101{
102 return env_id;
103}
wdenka68d3ed2002-10-11 08:38:32 +0000104
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400105/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200106 * Command interface: print one or all environment variables
107 *
108 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400109 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200110static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000111{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200112 char *res = NULL;
113 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000114
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200115 if (name) { /* print a single name */
116 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000117
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200118 e.key = name;
119 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500120 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200121 if (ep == NULL)
122 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000123 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200124 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400125 }
wdenka68d3ed2002-10-11 08:38:32 +0000126
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200127 /* print whole list */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500128 len = hexport_r(&env_htab, '\n', &res, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200129
130 if (len > 0) {
131 puts(res);
132 free(res);
133 return len;
134 }
135
136 /* should never happen */
137 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400138}
139
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200140int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400141{
142 int i;
143 int rcode = 0;
144
145 if (argc == 1) {
146 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200147 rcode = env_print(NULL);
148 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400149 return 1;
150 printf("\nEnvironment size: %d/%ld bytes\n",
151 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000152 return 0;
153 }
154
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400155 /* print selected env vars */
156 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200157 int rc = env_print(argv[i]);
158 if (!rc) {
159 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400160 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000161 }
162 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400163
wdenka68d3ed2002-10-11 08:38:32 +0000164 return rcode;
165}
166
Kim Phillipsa000b792011-04-05 07:15:14 +0000167#ifdef CONFIG_CMD_GREPENV
168static int do_env_grep (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
169{
170 ENTRY *match;
171 unsigned char matched[env_htab.size / 8];
172 int rcode = 1, arg = 1, idx;
173
174 if (argc < 2)
175 return cmd_usage(cmdtp);
176
177 memset(matched, 0, env_htab.size / 8);
178
179 while (arg <= argc) {
180 idx = 0;
181 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
182 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
183 puts(match->key);
184 puts("=");
185 puts(match->data);
186 puts("\n");
187 }
188 matched[idx / 8] |= 1 << (idx & 7);
189 rcode = 0;
190 }
191 arg++;
192 }
193
194 return rcode;
195}
196#endif
197
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200198/*
wdenka68d3ed2002-10-11 08:38:32 +0000199 * Set a new environment variable,
200 * or replace or delete an existing one.
wdenka68d3ed2002-10-11 08:38:32 +0000201 */
202
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200203int _do_env_set (int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000204{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200205 bd_t *bd = gd->bd;
206 int i, len;
wdenka68d3ed2002-10-11 08:38:32 +0000207 int console = -1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200208 char *name, *value, *s;
209 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000210
211 name = argv[1];
212
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200213 if (strchr(name, '=')) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000214 printf("## Error: illegal character '=' in variable name \"%s\"\n", name);
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200215 return 1;
216 }
217
Heiko Schocher2f70c492009-02-10 09:38:52 +0100218 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000219 /*
220 * search if variable with this name already exists
221 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200222 e.key = name;
223 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500224 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000225
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200226 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000227 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200228 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000229 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200230 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000231 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200232 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200233
234 if (console != -1) {
235 if (argc < 3) { /* Cannot delete it! */
236 printf("Can't delete \"%s\"\n", name);
237 return 1;
238 }
239
240#ifdef CONFIG_CONSOLE_MUX
241 i = iomux_doenv(console, argv[2]);
242 if (i)
243 return i;
244#else
245 /* Try assigning specified device */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000246 if (console_assign(console, argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200247 return 1;
248
249#ifdef CONFIG_SERIAL_MULTI
Macpaul Linf3c615b2011-04-26 16:16:45 +0000250 if (serial_assign(argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200251 return 1;
252#endif
253#endif /* CONFIG_CONSOLE_MUX */
254 }
255
wdenka68d3ed2002-10-11 08:38:32 +0000256 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200257 * Some variables like "ethaddr" and "serial#" can be set only
258 * once and cannot be deleted; also, "ver" is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000259 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200260 if (ep) { /* variable exists */
wdenka68d3ed2002-10-11 08:38:32 +0000261#ifndef CONFIG_ENV_OVERWRITE
Macpaul Linf3c615b2011-04-26 16:16:45 +0000262 if ((strcmp(name, "serial#") == 0) ||
263 ((strcmp(name, "ethaddr") == 0)
wdenka68d3ed2002-10-11 08:38:32 +0000264#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000265 && (strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0)
wdenka68d3ed2002-10-11 08:38:32 +0000266#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
267 ) ) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000268 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000269 return 1;
270 }
271#endif
wdenka68d3ed2002-10-11 08:38:32 +0000272 /*
273 * Switch to new baudrate if new baudrate is supported
274 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000275 if (strcmp(name, "baudrate") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000276 int baudrate = simple_strtoul(argv[2], NULL, 10);
277 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000278 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000279 if (baudrate == baudrate_table[i])
280 break;
281 }
282 if (i == N_BAUDRATES) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000283 printf("## Baudrate %d bps not supported\n",
wdenka68d3ed2002-10-11 08:38:32 +0000284 baudrate);
285 return 1;
286 }
287 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
288 baudrate);
289 udelay(50000);
290 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100291#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000292 gd->bd->bi_baudrate = baudrate;
293#endif
294
Macpaul Linf3c615b2011-04-26 16:16:45 +0000295 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000296 udelay(50000);
297 for (;;) {
298 if (getc() == '\r')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000299 break;
wdenka68d3ed2002-10-11 08:38:32 +0000300 }
301 }
wdenka68d3ed2002-10-11 08:38:32 +0000302 }
303
wdenka68d3ed2002-10-11 08:38:32 +0000304 /* Delete only ? */
305 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 ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200326 *(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
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200331 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 */
345
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;
354 addr |= (val & 0xFF);
355 if (s) s = (*e) ? e+1 : e;
356 }
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
Peter Tyserb0fa8e52009-10-25 15:12:55 -0500376 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
408 sprintf(str, "%x", (uintptr_t)addr);
409 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)
415 return cmd_usage(cmdtp);
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 extern char console_buffer[CONFIG_SYS_CBSIZE];
427 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:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200440 return cmd_usage(cmdtp);
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
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200456 strcpy(message+pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000457 pos += strlen(argv[i]);
458 }
459 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)
497 return cmd_usage(cmdtp);
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
506 readline_into_buffer("edit: ", buffer);
507
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{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200519 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
520 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
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200524 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 Denk91a76752010-07-24 20:22:02 +0200532
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
Macpaul Linf3c615b2011-04-26 16:16:45 +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) {
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200560 if ((*buf = env_get_char(val++)) == '\0')
561 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 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000572 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000573}
574
Simon Glass4a9b4132011-10-14 13:25:18 +0000575/**
576 * Decode the integer value of an environment variable and return it.
577 *
578 * @param name Name of environemnt variable
579 * @param base Number base to use (normally 10, or 16 for hex)
580 * @param default_val Default value to return if the variable is not
581 * found
582 * @return the decoded value, or default_val if not found
583 */
584ulong getenv_ulong(const char *name, int base, ulong default_val)
585{
586 /*
587 * We can use getenv() here, even before relocation, since the
588 * environment variable value is an integer and thus short.
589 */
590 const char *str = getenv(name);
591
592 return str ? simple_strtoul(str, NULL, base) : default_val;
593}
594
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500595#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Mike Frysingerba69dc22008-12-30 02:59:25 -0500596
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 extern char *env_name_spec;
wdenka68d3ed2002-10-11 08:38:32 +0000600
Macpaul Linf3c615b2011-04-26 16:16:45 +0000601 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000602
Macpaul Linf3c615b2011-04-26 16:16:45 +0000603 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000604}
wdenk8bde7f72003-06-27 21:31:46 +0000605
Mike Frysingerba69dc22008-12-30 02:59:25 -0500606U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200607 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600608 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200609 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500610);
611
wdenka68d3ed2002-10-11 08:38:32 +0000612#endif
613
614
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200615/*
wdenka68d3ed2002-10-11 08:38:32 +0000616 * Match a name / name=value pair
617 *
618 * s1 is either a simple 'name', or a 'name=value' pair.
619 * i2 is the environment index for a 'name2=value2' pair.
620 * If the names match, return the index for the value2, else NULL.
621 */
622
Macpaul Linf3c615b2011-04-26 16:16:45 +0000623int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000624{
wdenka68d3ed2002-10-11 08:38:32 +0000625 while (*s1 == env_get_char(i2++))
626 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000627 return i2;
wdenka68d3ed2002-10-11 08:38:32 +0000628 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000629 return i2;
630 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000631}
wdenk8bde7f72003-06-27 21:31:46 +0000632
Macpaul Linf3c615b2011-04-26 16:16:45 +0000633static int do_env_default(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200634{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000635 if ((argc != 2) || (strcmp(argv[1], "-f") != 0))
Thomas Weber0d302af2010-11-25 08:05:28 +0100636 return cmd_usage(cmdtp);
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
Macpaul Linf3c615b2011-04-26 16:16:45 +0000642static int do_env_delete(cmd_tbl_t *cmdtp, int flag, 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/*
650 * env export [-t | -b | -c] addr [size]
651 * -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
660 * addr: memory address where environment gets stored
661 * size: size of output buffer
662 *
663 * With "-c" and size is NOT given, then the export command will
664 * format the data as currently used for the persistent storage,
665 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
666 * prepend a valid CRC32 checksum and, in case of resundant
667 * environment, a "current" redundancy flag. If size is given, this
668 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
669 * checksum and redundancy flag will be inserted.
670 *
671 * With "-b" and "-t", always only the real data (including a
672 * terminating '\0' byte) will be written; here the optional size
673 * argument will be used to make sure not to overflow the user
674 * provided buffer; the command will abort if the size is not
675 * sufficient. Any remainign space will be '\0' padded.
676 *
677 * On successful return, the variable "filesize" will be set.
678 * Note that filesize includes the trailing/terminating '\0' byte(s).
679 *
680 * Usage szenario: create a text snapshot/backup of the current settings:
681 *
682 * => env export -t 100000
683 * => era ${backup_addr} +${filesize}
684 * => cp.b 100000 ${backup_addr} ${filesize}
685 *
686 * Re-import this snapshot, deleting all other settings:
687 *
688 * => env import -d -t ${backup_addr}
689 */
690static int do_env_export(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
691{
692 char buf[32];
693 char *addr, *cmd, *res;
694 size_t size;
695 ssize_t len;
696 env_t *envp;
697 char sep = '\n';
698 int chk = 0;
699 int fmt = 0;
700
701 cmd = *argv;
702
703 while (--argc > 0 && **++argv == '-') {
704 char *arg = *argv;
705 while (*++arg) {
706 switch (*arg) {
707 case 'b': /* raw binary format */
708 if (fmt++)
709 goto sep_err;
710 sep = '\0';
711 break;
712 case 'c': /* external checksum format */
713 if (fmt++)
714 goto sep_err;
715 sep = '\0';
716 chk = 1;
717 break;
718 case 't': /* text format */
719 if (fmt++)
720 goto sep_err;
721 sep = '\n';
722 break;
723 default:
Thomas Weber0d302af2010-11-25 08:05:28 +0100724 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200725 }
726 }
727 }
728
Macpaul Linf3c615b2011-04-26 16:16:45 +0000729 if (argc < 1)
Thomas Weber0d302af2010-11-25 08:05:28 +0100730 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200731
732 addr = (char *)simple_strtoul(argv[0], NULL, 16);
733
734 if (argc == 2) {
735 size = simple_strtoul(argv[1], NULL, 16);
736 memset(addr, '\0', size);
737 } else {
738 size = 0;
739 }
740
741 if (sep) { /* export as text file */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500742 len = hexport_r(&env_htab, sep, &addr, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200743 if (len < 0) {
744 error("Cannot export environment: errno = %d\n",
745 errno);
746 return 1;
747 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100748 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200749 setenv("filesize", buf);
750
751 return 0;
752 }
753
754 envp = (env_t *)addr;
755
756 if (chk) /* export as checksum protected block */
757 res = (char *)envp->data;
758 else /* export as raw binary data */
759 res = addr;
760
Mike Frysinger2eb15732010-12-08 06:26:04 -0500761 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200762 if (len < 0) {
763 error("Cannot export environment: errno = %d\n",
764 errno);
765 return 1;
766 }
767
768 if (chk) {
769 envp->crc = crc32(0, envp->data, ENV_SIZE);
770#ifdef CONFIG_ENV_ADDR_REDUND
771 envp->flags = ACTIVE_FLAG;
772#endif
773 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000774 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200775 setenv("filesize", buf);
776
777 return 0;
778
779sep_err:
780 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
781 cmd);
782 return 1;
783}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500784#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200785
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500786#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200787/*
788 * env import [-d] [-t | -b | -c] addr [size]
789 * -d: delete existing environment before importing;
790 * otherwise overwrite / append to existion definitions
791 * -t: assume text format; either "size" must be given or the
792 * text data must be '\0' terminated
793 * -b: assume binary format ('\0' separated, "\0\0" terminated)
794 * -c: assume checksum protected environment format
795 * addr: memory address to read from
796 * size: length of input data; if missing, proper '\0'
797 * termination is mandatory
798 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000799static int do_env_import(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200800{
801 char *cmd, *addr;
802 char sep = '\n';
803 int chk = 0;
804 int fmt = 0;
805 int del = 0;
806 size_t size;
807
808 cmd = *argv;
809
810 while (--argc > 0 && **++argv == '-') {
811 char *arg = *argv;
812 while (*++arg) {
813 switch (*arg) {
814 case 'b': /* raw binary format */
815 if (fmt++)
816 goto sep_err;
817 sep = '\0';
818 break;
819 case 'c': /* external checksum format */
820 if (fmt++)
821 goto sep_err;
822 sep = '\0';
823 chk = 1;
824 break;
825 case 't': /* text format */
826 if (fmt++)
827 goto sep_err;
828 sep = '\n';
829 break;
830 case 'd':
831 del = 1;
832 break;
833 default:
Thomas Weber0d302af2010-11-25 08:05:28 +0100834 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200835 }
836 }
837 }
838
Macpaul Linf3c615b2011-04-26 16:16:45 +0000839 if (argc < 1)
Thomas Weber0d302af2010-11-25 08:05:28 +0100840 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200841
842 if (!fmt)
843 printf("## Warning: defaulting to text format\n");
844
845 addr = (char *)simple_strtoul(argv[0], NULL, 16);
846
847 if (argc == 2) {
848 size = simple_strtoul(argv[1], NULL, 16);
849 } else {
850 char *s = addr;
851
852 size = 0;
853
854 while (size < MAX_ENV_SIZE) {
855 if ((*s == sep) && (*(s+1) == '\0'))
856 break;
857 ++s;
858 ++size;
859 }
860 if (size == MAX_ENV_SIZE) {
861 printf("## Warning: Input data exceeds %d bytes"
862 " - truncated\n", MAX_ENV_SIZE);
863 }
864 ++size;
865 printf("## Info: input data size = %zd = 0x%zX\n", size, size);
866 }
867
868 if (chk) {
869 uint32_t crc;
870 env_t *ep = (env_t *)addr;
871
872 size -= offsetof(env_t, data);
873 memcpy(&crc, &ep->crc, sizeof(crc));
874
875 if (crc32(0, ep->data, size) != crc) {
876 puts("## Error: bad CRC, import failed\n");
877 return 1;
878 }
879 addr = (char *)ep->data;
880 }
881
Mike Frysinger2eb15732010-12-08 06:26:04 -0500882 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200883 error("Environment import failed: errno = %d\n", errno);
884 return 1;
885 }
886 gd->flags |= GD_FLG_ENV_READY;
887
888 return 0;
889
890sep_err:
891 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
892 cmd);
893 return 1;
894}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500895#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200896
897#if defined(CONFIG_CMD_RUN)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000898extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200899#endif
900
901/*
902 * New command line interface: "env" command with subcommands
903 */
904static cmd_tbl_t cmd_env_sub[] = {
905#if defined(CONFIG_CMD_ASKENV)
906 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
907#endif
908 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
909 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
910#if defined(CONFIG_CMD_EDITENV)
911 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
912#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500913#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200914 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500915#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000916#if defined(CONFIG_CMD_GREPENV)
917 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
918#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500919#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200920 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500921#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200922 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
923#if defined(CONFIG_CMD_RUN)
924 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
925#endif
926#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
927 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
928#endif
929 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
930};
931
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200932#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200933void env_reloc(void)
934{
935 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
936}
937#endif
938
Macpaul Linf3c615b2011-04-26 16:16:45 +0000939static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200940{
941 cmd_tbl_t *cp;
942
Thomas Weber5904da02010-11-24 13:07:52 +0100943 if (argc < 2)
944 return cmd_usage(cmdtp);
945
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200946 /* drop initial "env" arg */
947 argc--;
948 argv++;
949
950 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
951
952 if (cp)
953 return cp->cmd(cmdtp, flag, argc, argv);
954
Thomas Weber0d302af2010-11-25 08:05:28 +0100955 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200956}
957
958U_BOOT_CMD(
959 env, CONFIG_SYS_MAXARGS, 1, do_env,
960 "environment handling commands",
961#if defined(CONFIG_CMD_ASKENV)
962 "ask name [message] [size] - ask for environment variable\nenv "
963#endif
964 "default -f - reset default environment\n"
965#if defined(CONFIG_CMD_EDITENV)
966 "env edit name - edit environment variable\n"
967#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000968 "env export [-t | -b | -c] addr [size] - export environment\n"
969#if defined(CONFIG_CMD_GREPENV)
970 "env grep string [...] - search environment\n"
971#endif
972 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200973 "env print [name ...] - print environment\n"
974#if defined(CONFIG_CMD_RUN)
975 "env run var [...] - run commands in an environment variable\n"
976#endif
977 "env save - save environment\n"
978 "env set [-f] name [arg ...]\n"
979);
980
981/*
982 * Old command line interface, kept for compatibility
983 */
wdenk8bde7f72003-06-27 21:31:46 +0000984
Peter Tyser246c6922009-10-25 15:12:56 -0500985#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400986U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200987 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500988 "edit environment variable",
989 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400990 " - edit environment variable 'name'",
991 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500992);
993#endif
994
Mike Frysinger722b0612010-10-20 03:52:39 -0400995U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200996 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -0600997 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000998 "\n - print values of all environment variables\n"
999 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001000 " - print value of environment variable 'name'",
1001 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001002);
1003
Kim Phillipsa000b792011-04-05 07:15:14 +00001004#ifdef CONFIG_CMD_GREPENV
1005U_BOOT_CMD_COMPLETE(
1006 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1007 "search environment variables",
1008 "string ...\n"
1009 " - list environment name=value pairs matching 'string'",
1010 var_complete
1011);
1012#endif
1013
Mike Frysinger722b0612010-10-20 03:52:39 -04001014U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001015 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001016 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001017 "name value ...\n"
1018 " - set environment variable 'name' to 'value ...'\n"
1019 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001020 " - delete environment variable 'name'",
1021 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001022);
1023
Jon Loeligerc76fe472007-07-08 18:02:23 -05001024#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001025
wdenk0d498392003-07-01 21:06:45 +00001026U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001027 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001028 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001029 "name [message] [size]\n"
1030 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1031 "askenv name\n"
1032 " - get environment variable 'name' from stdin\n"
1033 "askenv name size\n"
1034 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1035 "askenv name [message] size\n"
1036 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001037 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001038);
Jon Loeliger90253172007-07-10 11:02:44 -05001039#endif
wdenk8bde7f72003-06-27 21:31:46 +00001040
Jon Loeligerc76fe472007-07-08 18:02:23 -05001041#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001042U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001043 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001044 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001045 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001046 " - run the commands in the environment variable(s) 'var'",
1047 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001048);
Jon Loeliger90253172007-07-10 11:02:44 -05001049#endif