blob: 4e27ba0b116beb9149fcb2185cbc16eeff93d633 [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 */
82
wdenka68d3ed2002-10-11 08:38:32 +000083/*
84 * Table with supported baudrates (defined in config_xyz.h)
85 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000087#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
88
Heiko Schocherda954272009-04-28 08:36:11 +020089/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020090 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020091 * be used via get_env_id() as an indication, if the environment
92 * has changed or not. So it is possible to reread an environment
93 * variable only if the environment was changed ... done so for
94 * example in NetInitLoop()
95 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010096static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +000097
Macpaul Linf3c615b2011-04-26 16:16:45 +000098int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +010099{
100 return env_id;
101}
wdenka68d3ed2002-10-11 08:38:32 +0000102
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400103/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200104 * Command interface: print one or all environment variables
105 *
106 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400107 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200108static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000109{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200110 char *res = NULL;
111 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000112
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200113 if (name) { /* print a single name */
114 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000115
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200116 e.key = name;
117 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500118 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200119 if (ep == NULL)
120 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000121 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200122 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400123 }
wdenka68d3ed2002-10-11 08:38:32 +0000124
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200125 /* print whole list */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500126 len = hexport_r(&env_htab, '\n', &res, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200127
128 if (len > 0) {
129 puts(res);
130 free(res);
131 return len;
132 }
133
134 /* should never happen */
135 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400136}
137
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200138int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400139{
140 int i;
141 int rcode = 0;
142
143 if (argc == 1) {
144 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200145 rcode = env_print(NULL);
146 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400147 return 1;
148 printf("\nEnvironment size: %d/%ld bytes\n",
149 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000150 return 0;
151 }
152
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400153 /* print selected env vars */
154 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200155 int rc = env_print(argv[i]);
156 if (!rc) {
157 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400158 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000159 }
160 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400161
wdenka68d3ed2002-10-11 08:38:32 +0000162 return rcode;
163}
164
Kim Phillipsa000b792011-04-05 07:15:14 +0000165#ifdef CONFIG_CMD_GREPENV
166static int do_env_grep (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
167{
168 ENTRY *match;
169 unsigned char matched[env_htab.size / 8];
170 int rcode = 1, arg = 1, idx;
171
172 if (argc < 2)
173 return cmd_usage(cmdtp);
174
175 memset(matched, 0, env_htab.size / 8);
176
177 while (arg <= argc) {
178 idx = 0;
179 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
180 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
181 puts(match->key);
182 puts("=");
183 puts(match->data);
184 puts("\n");
185 }
186 matched[idx / 8] |= 1 << (idx & 7);
187 rcode = 0;
188 }
189 arg++;
190 }
191
192 return rcode;
193}
194#endif
195
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200196/*
wdenka68d3ed2002-10-11 08:38:32 +0000197 * Set a new environment variable,
198 * or replace or delete an existing one.
wdenka68d3ed2002-10-11 08:38:32 +0000199 */
200
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200201int _do_env_set (int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000202{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200203 bd_t *bd = gd->bd;
204 int i, len;
wdenka68d3ed2002-10-11 08:38:32 +0000205 int console = -1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200206 char *name, *value, *s;
207 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000208
209 name = argv[1];
210
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200211 if (strchr(name, '=')) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000212 printf("## Error: illegal character '=' in variable name \"%s\"\n", name);
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200213 return 1;
214 }
215
Heiko Schocher2f70c492009-02-10 09:38:52 +0100216 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000217 /*
218 * search if variable with this name already exists
219 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200220 e.key = name;
221 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500222 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000223
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200224 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000225 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200226 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000227 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200228 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000229 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200230 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200231
232 if (console != -1) {
233 if (argc < 3) { /* Cannot delete it! */
234 printf("Can't delete \"%s\"\n", name);
235 return 1;
236 }
237
238#ifdef CONFIG_CONSOLE_MUX
239 i = iomux_doenv(console, argv[2]);
240 if (i)
241 return i;
242#else
243 /* Try assigning specified device */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000244 if (console_assign(console, argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200245 return 1;
246
247#ifdef CONFIG_SERIAL_MULTI
Macpaul Linf3c615b2011-04-26 16:16:45 +0000248 if (serial_assign(argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200249 return 1;
250#endif
251#endif /* CONFIG_CONSOLE_MUX */
252 }
253
wdenka68d3ed2002-10-11 08:38:32 +0000254 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200255 * Some variables like "ethaddr" and "serial#" can be set only
256 * once and cannot be deleted; also, "ver" is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000257 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200258 if (ep) { /* variable exists */
wdenka68d3ed2002-10-11 08:38:32 +0000259#ifndef CONFIG_ENV_OVERWRITE
Macpaul Linf3c615b2011-04-26 16:16:45 +0000260 if ((strcmp(name, "serial#") == 0) ||
261 ((strcmp(name, "ethaddr") == 0)
wdenka68d3ed2002-10-11 08:38:32 +0000262#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000263 && (strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0)
wdenka68d3ed2002-10-11 08:38:32 +0000264#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
265 ) ) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000266 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000267 return 1;
268 }
269#endif
wdenka68d3ed2002-10-11 08:38:32 +0000270 /*
271 * Switch to new baudrate if new baudrate is supported
272 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000273 if (strcmp(name, "baudrate") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000274 int baudrate = simple_strtoul(argv[2], NULL, 10);
275 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000276 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000277 if (baudrate == baudrate_table[i])
278 break;
279 }
280 if (i == N_BAUDRATES) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000281 printf("## Baudrate %d bps not supported\n",
wdenka68d3ed2002-10-11 08:38:32 +0000282 baudrate);
283 return 1;
284 }
285 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
286 baudrate);
287 udelay(50000);
288 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100289#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000290 gd->bd->bi_baudrate = baudrate;
291#endif
292
Macpaul Linf3c615b2011-04-26 16:16:45 +0000293 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000294 udelay(50000);
295 for (;;) {
296 if (getc() == '\r')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000297 break;
wdenka68d3ed2002-10-11 08:38:32 +0000298 }
299 }
wdenka68d3ed2002-10-11 08:38:32 +0000300 }
301
wdenka68d3ed2002-10-11 08:38:32 +0000302 /* Delete only ? */
303 if ((argc < 3) || argv[2] == NULL) {
Mike Frysinger2eb15732010-12-08 06:26:04 -0500304 int rc = hdelete_r(name, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200305 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000306 }
307
308 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200309 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000310 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000311 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000312 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000313
314 value = malloc(len);
315 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200316 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000317 return 1;
318 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000319 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200320 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000321
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200322 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000323 ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200324 *(s-1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000325 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200326 if (s != value)
327 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000328
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200329 e.key = name;
330 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500331 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200332 free(value);
333 if (!ep) {
334 printf("## Error inserting \"%s\" variable, errno=%d\n",
335 name, errno);
336 return 1;
337 }
wdenka68d3ed2002-10-11 08:38:32 +0000338
339 /*
340 * Some variables should be updated when the corresponding
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200341 * entry in the environment is changed
wdenka68d3ed2002-10-11 08:38:32 +0000342 */
343
Macpaul Linf3c615b2011-04-26 16:16:45 +0000344 if (strcmp(name, "ipaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000345 char *s = argv[2]; /* always use only one arg */
346 char *e;
347 unsigned long addr;
348 bd->bi_ip_addr = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000349 for (addr = 0, i = 0; i < 4; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000350 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
351 addr <<= 8;
352 addr |= (val & 0xFF);
353 if (s) s = (*e) ? e+1 : e;
354 }
355 bd->bi_ip_addr = htonl(addr);
356 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000357 } else if (strcmp(argv[1], "loadaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000358 load_addr = simple_strtoul(argv[2], NULL, 16);
359 return 0;
360 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500361#if defined(CONFIG_CMD_NET)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000362 else if (strcmp(argv[1], "bootfile") == 0) {
363 copy_filename(BootFile, argv[2], sizeof(BootFile));
wdenka68d3ed2002-10-11 08:38:32 +0000364 return 0;
365 }
Jon Loeliger90253172007-07-10 11:02:44 -0500366#endif
wdenka68d3ed2002-10-11 08:38:32 +0000367 return 0;
368}
369
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200370int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000371{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200372 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
373
Peter Tyserb0fa8e52009-10-25 15:12:55 -0500374 if ((varvalue == NULL) || (varvalue[0] == '\0'))
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200375 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200376 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200377 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000378}
379
Simon Glassd67f10c2011-10-24 17:59:59 +0000380/**
381 * Set an environment variable to an integer value
382 *
383 * @param varname Environmet variable to set
384 * @param value Value to set it to
385 * @return 0 if ok, 1 on error
386 */
387int setenv_ulong(const char *varname, ulong value)
388{
389 /* TODO: this should be unsigned */
390 char *str = simple_itoa(value);
391
392 return setenv(varname, str);
393}
394
395/**
396 * Set an environment variable to an address in hex
397 *
398 * @param varname Environmet variable to set
399 * @param addr Value to set it to
400 * @return 0 if ok, 1 on error
401 */
402int setenv_addr(const char *varname, const void *addr)
403{
404 char str[17];
405
406 sprintf(str, "%x", (uintptr_t)addr);
407 return setenv(varname, str);
408}
409
Macpaul Linf3c615b2011-04-26 16:16:45 +0000410int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000411{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200412 if (argc < 2)
413 return cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000414
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200415 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000416}
417
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200418/*
wdenka68d3ed2002-10-11 08:38:32 +0000419 * Prompt for environment variable
420 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500421#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000422int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000423{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200424 extern char console_buffer[CONFIG_SYS_CBSIZE];
425 char message[CONFIG_SYS_CBSIZE];
426 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200427 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000428 char *local_args[4];
429
430 local_args[0] = argv[0];
431 local_args[1] = argv[1];
432 local_args[2] = NULL;
433 local_args[3] = NULL;
434
wdenka68d3ed2002-10-11 08:38:32 +0000435 /* Check the syntax */
436 switch (argc) {
437 case 1:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200438 return cmd_usage(cmdtp);
wdenka68d3ed2002-10-11 08:38:32 +0000439
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200440 case 2: /* env_ask envname */
441 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000442 break;
443
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200444 case 3: /* env_ask envname size */
445 sprintf(message, "Please enter '%s':", argv[1]);
446 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000447 break;
448
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200449 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000450 for (i = 2, pos = 0; i < argc - 1; i++) {
451 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000452 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000453
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200454 strcpy(message+pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000455 pos += strlen(argv[i]);
456 }
457 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200458 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000459 break;
460 }
461
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200462 if (size >= CONFIG_SYS_CBSIZE)
463 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000464
465 if (size <= 0)
466 return 1;
467
468 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200469 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000470
471 if (size < len)
472 console_buffer[size] = '\0';
473
474 len = 2;
475 if (console_buffer[0] != '\0') {
476 local_args[2] = console_buffer;
477 len = 3;
478 }
479
480 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200481 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000482}
Jon Loeliger90253172007-07-10 11:02:44 -0500483#endif
wdenka68d3ed2002-10-11 08:38:32 +0000484
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200485/*
Peter Tyser246c6922009-10-25 15:12:56 -0500486 * Interactively edit an environment variable
487 */
488#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200489int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500490{
491 char buffer[CONFIG_SYS_CBSIZE];
492 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500493
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200494 if (argc < 2)
495 return cmd_usage(cmdtp);
Peter Tyser246c6922009-10-25 15:12:56 -0500496
497 /* Set read buffer to initial value or empty sting */
498 init_val = getenv(argv[1]);
499 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200500 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500501 else
502 buffer[0] = '\0';
503
504 readline_into_buffer("edit: ", buffer);
505
506 return setenv(argv[1], buffer);
507}
508#endif /* CONFIG_CMD_EDITENV */
509
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200510/*
wdenka68d3ed2002-10-11 08:38:32 +0000511 * Look up variable from environment,
512 * return address of storage for that variable,
513 * or NULL if not found
514 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200515char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000516{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200517 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
518 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000519
Wolfgang Denk91a76752010-07-24 20:22:02 +0200520 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000521
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200522 e.key = name;
523 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500524 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000525
Macpaul Linf3c615b2011-04-26 16:16:45 +0000526 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000527 }
528
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200529 /* restricted capabilities before import */
Wolfgang Denk91a76752010-07-24 20:22:02 +0200530
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200531 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
532 return (char *)(gd->env_buf);
533
534 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000535}
536
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200537/*
538 * Look up variable from environment for restricted C runtime env.
539 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200540int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000541{
542 int i, nxt;
543
Macpaul Linf3c615b2011-04-26 16:16:45 +0000544 for (i = 0; env_get_char(i) != '\0'; i = nxt+1) {
wdenka68d3ed2002-10-11 08:38:32 +0000545 int val, n;
546
Macpaul Linf3c615b2011-04-26 16:16:45 +0000547 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
548 if (nxt >= CONFIG_ENV_SIZE)
549 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000550 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000551
552 val = envmatch((uchar *)name, i);
553 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000554 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200555
wdenka68d3ed2002-10-11 08:38:32 +0000556 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000557 for (n = 0; n < len; ++n, ++buf) {
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200558 if ((*buf = env_get_char(val++)) == '\0')
559 return n;
560 }
561
562 if (n)
563 *--buf = '\0';
564
Wolfgang Denka02a8842011-05-04 10:29:49 +0000565 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
566 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200567
568 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000569 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000570 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000571}
572
Simon Glass4a9b4132011-10-14 13:25:18 +0000573/**
574 * Decode the integer value of an environment variable and return it.
575 *
576 * @param name Name of environemnt variable
577 * @param base Number base to use (normally 10, or 16 for hex)
578 * @param default_val Default value to return if the variable is not
579 * found
580 * @return the decoded value, or default_val if not found
581 */
582ulong getenv_ulong(const char *name, int base, ulong default_val)
583{
584 /*
585 * We can use getenv() here, even before relocation, since the
586 * environment variable value is an integer and thus short.
587 */
588 const char *str = getenv(name);
589
590 return str ? simple_strtoul(str, NULL, base) : default_val;
591}
592
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500593#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Mike Frysingerba69dc22008-12-30 02:59:25 -0500594
Macpaul Linf3c615b2011-04-26 16:16:45 +0000595int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000596{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000597 extern char *env_name_spec;
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);
609
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.
618 * If the names match, return the index for the value2, else NULL.
619 */
620
Macpaul Linf3c615b2011-04-26 16:16:45 +0000621int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000622{
wdenka68d3ed2002-10-11 08:38:32 +0000623 while (*s1 == env_get_char(i2++))
624 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000625 return i2;
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;
628 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000629}
wdenk8bde7f72003-06-27 21:31:46 +0000630
Macpaul Linf3c615b2011-04-26 16:16:45 +0000631static int do_env_default(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200632{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000633 if ((argc != 2) || (strcmp(argv[1], "-f") != 0))
Thomas Weber0d302af2010-11-25 08:05:28 +0100634 return cmd_usage(cmdtp);
Macpaul Linf3c615b2011-04-26 16:16:45 +0000635
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200636 set_default_env("## Resetting to default environment\n");
637 return 0;
638}
wdenk8bde7f72003-06-27 21:31:46 +0000639
Macpaul Linf3c615b2011-04-26 16:16:45 +0000640static int do_env_delete(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200641{
642 printf("Not implemented yet\n");
643 return 0;
644}
645
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500646#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200647/*
648 * env export [-t | -b | -c] addr [size]
649 * -t: export as text format; if size is given, data will be
650 * padded with '\0' bytes; if not, one terminating '\0'
651 * will be added (which is included in the "filesize"
652 * setting so you can for exmple copy this to flash and
653 * keep the termination).
654 * -b: export as binary format (name=value pairs separated by
655 * '\0', list end marked by double "\0\0")
656 * -c: export as checksum protected environment format as
657 * used for example by "saveenv" command
658 * addr: memory address where environment gets stored
659 * size: size of output buffer
660 *
661 * With "-c" and size is NOT given, then the export command will
662 * format the data as currently used for the persistent storage,
663 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
664 * prepend a valid CRC32 checksum and, in case of resundant
665 * environment, a "current" redundancy flag. If size is given, this
666 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
667 * checksum and redundancy flag will be inserted.
668 *
669 * With "-b" and "-t", always only the real data (including a
670 * terminating '\0' byte) will be written; here the optional size
671 * argument will be used to make sure not to overflow the user
672 * provided buffer; the command will abort if the size is not
673 * sufficient. Any remainign space will be '\0' padded.
674 *
675 * On successful return, the variable "filesize" will be set.
676 * Note that filesize includes the trailing/terminating '\0' byte(s).
677 *
678 * Usage szenario: create a text snapshot/backup of the current settings:
679 *
680 * => env export -t 100000
681 * => era ${backup_addr} +${filesize}
682 * => cp.b 100000 ${backup_addr} ${filesize}
683 *
684 * Re-import this snapshot, deleting all other settings:
685 *
686 * => env import -d -t ${backup_addr}
687 */
688static int do_env_export(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
689{
690 char buf[32];
691 char *addr, *cmd, *res;
692 size_t size;
693 ssize_t len;
694 env_t *envp;
695 char sep = '\n';
696 int chk = 0;
697 int fmt = 0;
698
699 cmd = *argv;
700
701 while (--argc > 0 && **++argv == '-') {
702 char *arg = *argv;
703 while (*++arg) {
704 switch (*arg) {
705 case 'b': /* raw binary format */
706 if (fmt++)
707 goto sep_err;
708 sep = '\0';
709 break;
710 case 'c': /* external checksum format */
711 if (fmt++)
712 goto sep_err;
713 sep = '\0';
714 chk = 1;
715 break;
716 case 't': /* text format */
717 if (fmt++)
718 goto sep_err;
719 sep = '\n';
720 break;
721 default:
Thomas Weber0d302af2010-11-25 08:05:28 +0100722 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200723 }
724 }
725 }
726
Macpaul Linf3c615b2011-04-26 16:16:45 +0000727 if (argc < 1)
Thomas Weber0d302af2010-11-25 08:05:28 +0100728 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200729
730 addr = (char *)simple_strtoul(argv[0], NULL, 16);
731
732 if (argc == 2) {
733 size = simple_strtoul(argv[1], NULL, 16);
734 memset(addr, '\0', size);
735 } else {
736 size = 0;
737 }
738
739 if (sep) { /* export as text file */
Mike Frysinger2eb15732010-12-08 06:26:04 -0500740 len = hexport_r(&env_htab, sep, &addr, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200741 if (len < 0) {
742 error("Cannot export environment: errno = %d\n",
743 errno);
744 return 1;
745 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100746 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200747 setenv("filesize", buf);
748
749 return 0;
750 }
751
752 envp = (env_t *)addr;
753
754 if (chk) /* export as checksum protected block */
755 res = (char *)envp->data;
756 else /* export as raw binary data */
757 res = addr;
758
Mike Frysinger2eb15732010-12-08 06:26:04 -0500759 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200760 if (len < 0) {
761 error("Cannot export environment: errno = %d\n",
762 errno);
763 return 1;
764 }
765
766 if (chk) {
767 envp->crc = crc32(0, envp->data, ENV_SIZE);
768#ifdef CONFIG_ENV_ADDR_REDUND
769 envp->flags = ACTIVE_FLAG;
770#endif
771 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000772 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200773 setenv("filesize", buf);
774
775 return 0;
776
777sep_err:
778 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
779 cmd);
780 return 1;
781}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500782#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200783
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500784#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200785/*
786 * env import [-d] [-t | -b | -c] addr [size]
787 * -d: delete existing environment before importing;
788 * otherwise overwrite / append to existion definitions
789 * -t: assume text format; either "size" must be given or the
790 * text data must be '\0' terminated
791 * -b: assume binary format ('\0' separated, "\0\0" terminated)
792 * -c: assume checksum protected environment format
793 * addr: memory address to read from
794 * size: length of input data; if missing, proper '\0'
795 * termination is mandatory
796 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000797static int do_env_import(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200798{
799 char *cmd, *addr;
800 char sep = '\n';
801 int chk = 0;
802 int fmt = 0;
803 int del = 0;
804 size_t size;
805
806 cmd = *argv;
807
808 while (--argc > 0 && **++argv == '-') {
809 char *arg = *argv;
810 while (*++arg) {
811 switch (*arg) {
812 case 'b': /* raw binary format */
813 if (fmt++)
814 goto sep_err;
815 sep = '\0';
816 break;
817 case 'c': /* external checksum format */
818 if (fmt++)
819 goto sep_err;
820 sep = '\0';
821 chk = 1;
822 break;
823 case 't': /* text format */
824 if (fmt++)
825 goto sep_err;
826 sep = '\n';
827 break;
828 case 'd':
829 del = 1;
830 break;
831 default:
Thomas Weber0d302af2010-11-25 08:05:28 +0100832 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200833 }
834 }
835 }
836
Macpaul Linf3c615b2011-04-26 16:16:45 +0000837 if (argc < 1)
Thomas Weber0d302af2010-11-25 08:05:28 +0100838 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200839
840 if (!fmt)
841 printf("## Warning: defaulting to text format\n");
842
843 addr = (char *)simple_strtoul(argv[0], NULL, 16);
844
845 if (argc == 2) {
846 size = simple_strtoul(argv[1], NULL, 16);
847 } else {
848 char *s = addr;
849
850 size = 0;
851
852 while (size < MAX_ENV_SIZE) {
853 if ((*s == sep) && (*(s+1) == '\0'))
854 break;
855 ++s;
856 ++size;
857 }
858 if (size == MAX_ENV_SIZE) {
859 printf("## Warning: Input data exceeds %d bytes"
860 " - truncated\n", MAX_ENV_SIZE);
861 }
862 ++size;
863 printf("## Info: input data size = %zd = 0x%zX\n", size, size);
864 }
865
866 if (chk) {
867 uint32_t crc;
868 env_t *ep = (env_t *)addr;
869
870 size -= offsetof(env_t, data);
871 memcpy(&crc, &ep->crc, sizeof(crc));
872
873 if (crc32(0, ep->data, size) != crc) {
874 puts("## Error: bad CRC, import failed\n");
875 return 1;
876 }
877 addr = (char *)ep->data;
878 }
879
Mike Frysinger2eb15732010-12-08 06:26:04 -0500880 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200881 error("Environment import failed: errno = %d\n", errno);
882 return 1;
883 }
884 gd->flags |= GD_FLG_ENV_READY;
885
886 return 0;
887
888sep_err:
889 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
890 cmd);
891 return 1;
892}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500893#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200894
895#if defined(CONFIG_CMD_RUN)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000896extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200897#endif
898
899/*
900 * New command line interface: "env" command with subcommands
901 */
902static cmd_tbl_t cmd_env_sub[] = {
903#if defined(CONFIG_CMD_ASKENV)
904 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
905#endif
906 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
907 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
908#if defined(CONFIG_CMD_EDITENV)
909 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
910#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500911#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200912 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500913#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000914#if defined(CONFIG_CMD_GREPENV)
915 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
916#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500917#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200918 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500919#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200920 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
921#if defined(CONFIG_CMD_RUN)
922 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
923#endif
924#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
925 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
926#endif
927 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
928};
929
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200930#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200931void env_reloc(void)
932{
933 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
934}
935#endif
936
Macpaul Linf3c615b2011-04-26 16:16:45 +0000937static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200938{
939 cmd_tbl_t *cp;
940
Thomas Weber5904da02010-11-24 13:07:52 +0100941 if (argc < 2)
942 return cmd_usage(cmdtp);
943
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200944 /* drop initial "env" arg */
945 argc--;
946 argv++;
947
948 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
949
950 if (cp)
951 return cp->cmd(cmdtp, flag, argc, argv);
952
Thomas Weber0d302af2010-11-25 08:05:28 +0100953 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200954}
955
956U_BOOT_CMD(
957 env, CONFIG_SYS_MAXARGS, 1, do_env,
958 "environment handling commands",
959#if defined(CONFIG_CMD_ASKENV)
960 "ask name [message] [size] - ask for environment variable\nenv "
961#endif
962 "default -f - reset default environment\n"
963#if defined(CONFIG_CMD_EDITENV)
964 "env edit name - edit environment variable\n"
965#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000966 "env export [-t | -b | -c] addr [size] - export environment\n"
967#if defined(CONFIG_CMD_GREPENV)
968 "env grep string [...] - search environment\n"
969#endif
970 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200971 "env print [name ...] - print environment\n"
972#if defined(CONFIG_CMD_RUN)
973 "env run var [...] - run commands in an environment variable\n"
974#endif
975 "env save - save environment\n"
976 "env set [-f] name [arg ...]\n"
977);
978
979/*
980 * Old command line interface, kept for compatibility
981 */
wdenk8bde7f72003-06-27 21:31:46 +0000982
Peter Tyser246c6922009-10-25 15:12:56 -0500983#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400984U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200985 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500986 "edit environment variable",
987 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400988 " - edit environment variable 'name'",
989 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500990);
991#endif
992
Mike Frysinger722b0612010-10-20 03:52:39 -0400993U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200994 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -0600995 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000996 "\n - print values of all environment variables\n"
997 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400998 " - print value of environment variable 'name'",
999 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001000);
1001
Kim Phillipsa000b792011-04-05 07:15:14 +00001002#ifdef CONFIG_CMD_GREPENV
1003U_BOOT_CMD_COMPLETE(
1004 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1005 "search environment variables",
1006 "string ...\n"
1007 " - list environment name=value pairs matching 'string'",
1008 var_complete
1009);
1010#endif
1011
Mike Frysinger722b0612010-10-20 03:52:39 -04001012U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001013 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001014 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001015 "name value ...\n"
1016 " - set environment variable 'name' to 'value ...'\n"
1017 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001018 " - delete environment variable 'name'",
1019 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001020);
1021
Jon Loeligerc76fe472007-07-08 18:02:23 -05001022#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001023
wdenk0d498392003-07-01 21:06:45 +00001024U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001025 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001026 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001027 "name [message] [size]\n"
1028 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1029 "askenv name\n"
1030 " - get environment variable 'name' from stdin\n"
1031 "askenv name size\n"
1032 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1033 "askenv name [message] size\n"
1034 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001035 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001036);
Jon Loeliger90253172007-07-10 11:02:44 -05001037#endif
wdenk8bde7f72003-06-27 21:31:46 +00001038
Jon Loeligerc76fe472007-07-08 18:02:23 -05001039#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001040U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001041 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001042 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001043 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001044 " - run the commands in the environment variable(s) 'var'",
1045 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001046);
Jon Loeliger90253172007-07-10 11:02:44 -05001047#endif