blob: eef6c101d826d86acba6456bb19bec0356771d85 [file] [log] [blame]
wdenka68d3ed2002-10-11 08:38:32 +00001/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02002 * (C) Copyright 2000-2010
wdenka68d3ed2002-10-11 08:38:32 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
Kim Phillipsa000b792011-04-05 07:15:14 +00007 *
8 * Copyright 2011 Freescale Semiconductor, Inc.
9 *
wdenka68d3ed2002-10-11 08:38:32 +000010 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * MA 02111-1307 USA
27 */
28
Wolfgang Denkea882ba2010-06-20 23:33:59 +020029/*
wdenka68d3ed2002-10-11 08:38:32 +000030 * Support for persistent environment data
31 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020032 * The "environment" is stored on external storage as a list of '\0'
33 * terminated "name=value" strings. The end of the list is marked by
34 * a double '\0'. The environment is preceeded by a 32 bit CRC over
35 * the data part and, in case of redundant environment, a byte of
36 * flags.
wdenka68d3ed2002-10-11 08:38:32 +000037 *
Wolfgang Denkea882ba2010-06-20 23:33:59 +020038 * This linearized representation will also be used before
39 * relocation, i. e. as long as we don't have a full C runtime
40 * environment. After that, we use a hash table.
wdenka68d3ed2002-10-11 08:38:32 +000041 */
42
43#include <common.h>
44#include <command.h>
45#include <environment.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020046#include <search.h>
47#include <errno.h>
Peter Tyser246c6922009-10-25 15:12:56 -050048#include <malloc.h>
wdenk2a3cb022002-11-05 21:01:48 +000049#include <watchdog.h>
wdenk281e00a2004-08-01 22:48:16 +000050#include <serial.h>
wdenka68d3ed2002-10-11 08:38:32 +000051#include <linux/stddef.h>
52#include <asm/byteorder.h>
Jon Loeligerc76fe472007-07-08 18:02:23 -050053#if defined(CONFIG_CMD_NET)
wdenka68d3ed2002-10-11 08:38:32 +000054#include <net.h>
55#endif
56
Wolfgang Denkd87080b2006-03-31 18:32:53 +020057DECLARE_GLOBAL_DATA_PTR;
58
Macpaul Linf3c615b2011-04-26 16:16:45 +000059#if !defined(CONFIG_ENV_IS_IN_EEPROM) && \
60 !defined(CONFIG_ENV_IS_IN_FLASH) && \
61 !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000062 !defined(CONFIG_ENV_IS_IN_MMC) && \
Maximilian Schwerin57210c72012-03-12 23:57:50 +000063 !defined(CONFIG_ENV_IS_IN_FAT) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000064 !defined(CONFIG_ENV_IS_IN_NAND) && \
65 !defined(CONFIG_ENV_IS_IN_NVRAM) && \
66 !defined(CONFIG_ENV_IS_IN_ONENAND) && \
67 !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \
Liu Gang0a85a9e2012-03-08 00:33:20 +000068 !defined(CONFIG_ENV_IS_IN_REMOTE) && \
Macpaul Linf3c615b2011-04-26 16:16:45 +000069 !defined(CONFIG_ENV_IS_NOWHERE)
unsik Kim75eb82e2009-02-25 11:31:24 +090070# error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
Marek Vasutb37d41a2012-03-04 15:11:32 +000071SPI_FLASH|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE
wdenka68d3ed2002-10-11 08:38:32 +000072#endif
73
74#define XMK_STR(x) #x
75#define MK_STR(x) XMK_STR(x)
76
Wolfgang Denkea882ba2010-06-20 23:33:59 +020077/*
78 * Maximum expected input data size for import command
79 */
80#define MAX_ENV_SIZE (1 << 20) /* 1 MiB */
wdenka68d3ed2002-10-11 08:38:32 +000081
Mike Frysinger558605c2010-12-21 14:08:27 -050082ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Simon Glass1aec2442011-10-21 18:51:38 +000083ulong save_addr; /* Default Save Address */
84ulong save_size; /* Default Save Size (in bytes) */
Mike Frysinger558605c2010-12-21 14:08:27 -050085
wdenka68d3ed2002-10-11 08:38:32 +000086/*
87 * Table with supported baudrates (defined in config_xyz.h)
88 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
wdenka68d3ed2002-10-11 08:38:32 +000090#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
91
Heiko Schocherda954272009-04-28 08:36:11 +020092/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +020093 * This variable is incremented on each do_env_set(), so it can
Heiko Schocherda954272009-04-28 08:36:11 +020094 * be used via get_env_id() as an indication, if the environment
95 * has changed or not. So it is possible to reread an environment
96 * variable only if the environment was changed ... done so for
97 * example in NetInitLoop()
98 */
Heiko Schocher2f70c492009-02-10 09:38:52 +010099static int env_id = 1;
wdenka68d3ed2002-10-11 08:38:32 +0000100
Macpaul Linf3c615b2011-04-26 16:16:45 +0000101int get_env_id(void)
Heiko Schocher2f70c492009-02-10 09:38:52 +0100102{
103 return env_id;
104}
wdenka68d3ed2002-10-11 08:38:32 +0000105
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400106/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200107 * Command interface: print one or all environment variables
108 *
109 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400110 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200111static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000112{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200113 char *res = NULL;
114 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000115
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200116 if (name) { /* print a single name */
117 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000118
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200119 e.key = name;
120 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500121 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200122 if (ep == NULL)
123 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000124 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200125 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400126 }
wdenka68d3ed2002-10-11 08:38:32 +0000127
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200128 /* print whole list */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100129 len = hexport_r(&env_htab, '\n', &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200130
131 if (len > 0) {
132 puts(res);
133 free(res);
134 return len;
135 }
136
137 /* should never happen */
138 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400139}
140
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200141int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400142{
143 int i;
144 int rcode = 0;
145
146 if (argc == 1) {
147 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200148 rcode = env_print(NULL);
149 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400150 return 1;
151 printf("\nEnvironment size: %d/%ld bytes\n",
152 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000153 return 0;
154 }
155
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400156 /* print selected env vars */
157 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200158 int rc = env_print(argv[i]);
159 if (!rc) {
160 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400161 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000162 }
163 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400164
wdenka68d3ed2002-10-11 08:38:32 +0000165 return rcode;
166}
167
Kim Phillipsa000b792011-04-05 07:15:14 +0000168#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000169static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
170 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000171{
172 ENTRY *match;
173 unsigned char matched[env_htab.size / 8];
174 int rcode = 1, arg = 1, idx;
175
176 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000177 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000178
179 memset(matched, 0, env_htab.size / 8);
180
181 while (arg <= argc) {
182 idx = 0;
Kumar Gala068f1582011-11-23 09:48:02 +0000183 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
Kim Phillipsa000b792011-04-05 07:15:14 +0000184 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
185 puts(match->key);
186 puts("=");
187 puts(match->data);
188 puts("\n");
189 }
190 matched[idx / 8] |= 1 << (idx & 7);
191 rcode = 0;
192 }
193 arg++;
194 }
195
196 return rcode;
197}
198#endif
199
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200200/*
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 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, '=')) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000214 printf("## Error: illegal character '=' in variable name"
215 "\"%s\"\n", name);
Wolfgang Denk471a7be2006-10-28 01:14:32 +0200216 return 1;
217 }
218
Heiko Schocher2f70c492009-02-10 09:38:52 +0100219 env_id++;
wdenka68d3ed2002-10-11 08:38:32 +0000220 /*
221 * search if variable with this name already exists
222 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200223 e.key = name;
224 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500225 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000226
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200227 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000228 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200229 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000230 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200231 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000232 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200233 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200234
235 if (console != -1) {
236 if (argc < 3) { /* Cannot delete it! */
237 printf("Can't delete \"%s\"\n", name);
238 return 1;
239 }
240
241#ifdef CONFIG_CONSOLE_MUX
Gerlando Falautoc2ba2ff2012-08-24 00:11:36 +0000242 if (iomux_doenv(console, argv[2]))
243 return 1;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200244#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
Igor Grinbergd09b1782011-11-07 01:13:59 +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)
Igor Grinbergd09b1782011-11-07 01:13:59 +0000265 && strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000266#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000267 )) {
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 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000287 printf("## Switch baudrate to %d bps and"
288 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000289 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);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000297 while (getc() != '\r')
298 ;
wdenka68d3ed2002-10-11 08:38:32 +0000299 }
wdenka68d3ed2002-10-11 08:38:32 +0000300 }
301
wdenka68d3ed2002-10-11 08:38:32 +0000302 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000303 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 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000324 *(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
Igor Grinbergd09b1782011-11-07 01:13:59 +0000329 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 */
Mike Frysinger50a47d02012-04-04 18:53:40 +0000343 if (strcmp(argv[1], "loadaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000344 load_addr = simple_strtoul(argv[2], NULL, 16);
345 return 0;
346 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500347#if defined(CONFIG_CMD_NET)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000348 else if (strcmp(argv[1], "bootfile") == 0) {
349 copy_filename(BootFile, argv[2], sizeof(BootFile));
wdenka68d3ed2002-10-11 08:38:32 +0000350 return 0;
351 }
Jon Loeliger90253172007-07-10 11:02:44 -0500352#endif
wdenka68d3ed2002-10-11 08:38:32 +0000353 return 0;
354}
355
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200356int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000357{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200358 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
359
Igor Grinbergd09b1782011-11-07 01:13:59 +0000360 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200361 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200362 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200363 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000364}
365
Simon Glassd67f10c2011-10-24 17:59:59 +0000366/**
367 * Set an environment variable to an integer value
368 *
369 * @param varname Environmet variable to set
370 * @param value Value to set it to
371 * @return 0 if ok, 1 on error
372 */
373int setenv_ulong(const char *varname, ulong value)
374{
375 /* TODO: this should be unsigned */
376 char *str = simple_itoa(value);
377
378 return setenv(varname, str);
379}
380
381/**
382 * Set an environment variable to an address in hex
383 *
384 * @param varname Environmet variable to set
385 * @param addr Value to set it to
386 * @return 0 if ok, 1 on error
387 */
388int setenv_addr(const char *varname, const void *addr)
389{
390 char str[17];
391
Simon Glass79afc882011-11-04 06:42:36 +0000392 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000393 return setenv(varname, str);
394}
395
Macpaul Linf3c615b2011-04-26 16:16:45 +0000396int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000397{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200398 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000399 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000400
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200401 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000402}
403
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200404/*
wdenka68d3ed2002-10-11 08:38:32 +0000405 * Prompt for environment variable
406 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500407#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000408int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000409{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200410 char message[CONFIG_SYS_CBSIZE];
411 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200412 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000413 char *local_args[4];
414
415 local_args[0] = argv[0];
416 local_args[1] = argv[1];
417 local_args[2] = NULL;
418 local_args[3] = NULL;
419
wdenka68d3ed2002-10-11 08:38:32 +0000420 /* Check the syntax */
421 switch (argc) {
422 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000423 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000424
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200425 case 2: /* env_ask envname */
426 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000427 break;
428
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200429 case 3: /* env_ask envname size */
430 sprintf(message, "Please enter '%s':", argv[1]);
431 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000432 break;
433
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200434 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000435 for (i = 2, pos = 0; i < argc - 1; i++) {
436 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000437 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000438
Igor Grinbergd09b1782011-11-07 01:13:59 +0000439 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000440 pos += strlen(argv[i]);
441 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000442
wdenka68d3ed2002-10-11 08:38:32 +0000443 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200444 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000445 break;
446 }
447
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200448 if (size >= CONFIG_SYS_CBSIZE)
449 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000450
451 if (size <= 0)
452 return 1;
453
454 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200455 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000456
457 if (size < len)
458 console_buffer[size] = '\0';
459
460 len = 2;
461 if (console_buffer[0] != '\0') {
462 local_args[2] = console_buffer;
463 len = 3;
464 }
465
466 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200467 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000468}
Jon Loeliger90253172007-07-10 11:02:44 -0500469#endif
wdenka68d3ed2002-10-11 08:38:32 +0000470
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200471/*
Peter Tyser246c6922009-10-25 15:12:56 -0500472 * Interactively edit an environment variable
473 */
474#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200475int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500476{
477 char buffer[CONFIG_SYS_CBSIZE];
478 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500479
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200480 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000481 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500482
483 /* Set read buffer to initial value or empty sting */
484 init_val = getenv(argv[1]);
485 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200486 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500487 else
488 buffer[0] = '\0';
489
Heiko Schocher9c348312012-01-16 21:13:05 +0000490 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500491
492 return setenv(argv[1], buffer);
493}
494#endif /* CONFIG_CMD_EDITENV */
495
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200496/*
wdenka68d3ed2002-10-11 08:38:32 +0000497 * Look up variable from environment,
498 * return address of storage for that variable,
499 * or NULL if not found
500 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200501char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000502{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000503 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200504 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000505
Wolfgang Denk91a76752010-07-24 20:22:02 +0200506 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000507
Igor Grinbergd09b1782011-11-07 01:13:59 +0000508 e.key = name;
509 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500510 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000511
Macpaul Linf3c615b2011-04-26 16:16:45 +0000512 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000513 }
514
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200515 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200516 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
517 return (char *)(gd->env_buf);
518
519 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000520}
521
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200522/*
523 * Look up variable from environment for restricted C runtime env.
524 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200525int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000526{
527 int i, nxt;
528
Igor Grinbergd09b1782011-11-07 01:13:59 +0000529 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000530 int val, n;
531
Macpaul Linf3c615b2011-04-26 16:16:45 +0000532 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
533 if (nxt >= CONFIG_ENV_SIZE)
534 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000535 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000536
537 val = envmatch((uchar *)name, i);
538 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000539 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200540
wdenka68d3ed2002-10-11 08:38:32 +0000541 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000542 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000543 *buf = env_get_char(val++);
544 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200545 return n;
546 }
547
548 if (n)
549 *--buf = '\0';
550
Wolfgang Denka02a8842011-05-04 10:29:49 +0000551 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
552 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200553
554 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000555 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000556
Macpaul Linf3c615b2011-04-26 16:16:45 +0000557 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000558}
559
Simon Glass4a9b4132011-10-14 13:25:18 +0000560/**
561 * Decode the integer value of an environment variable and return it.
562 *
563 * @param name Name of environemnt variable
564 * @param base Number base to use (normally 10, or 16 for hex)
565 * @param default_val Default value to return if the variable is not
566 * found
567 * @return the decoded value, or default_val if not found
568 */
569ulong getenv_ulong(const char *name, int base, ulong default_val)
570{
571 /*
572 * We can use getenv() here, even before relocation, since the
573 * environment variable value is an integer and thus short.
574 */
575 const char *str = getenv(name);
576
577 return str ? simple_strtoul(str, NULL, base) : default_val;
578}
579
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500580#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000581int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000582{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000583 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000584
Macpaul Linf3c615b2011-04-26 16:16:45 +0000585 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000586}
wdenk8bde7f72003-06-27 21:31:46 +0000587
Mike Frysingerba69dc22008-12-30 02:59:25 -0500588U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200589 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600590 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200591 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500592);
wdenka68d3ed2002-10-11 08:38:32 +0000593#endif
594
595
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200596/*
wdenka68d3ed2002-10-11 08:38:32 +0000597 * Match a name / name=value pair
598 *
599 * s1 is either a simple 'name', or a 'name=value' pair.
600 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000601 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000602 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000603int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000604{
wdenka68d3ed2002-10-11 08:38:32 +0000605 while (*s1 == env_get_char(i2++))
606 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000607 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000608
wdenka68d3ed2002-10-11 08:38:32 +0000609 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000610 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000611
Macpaul Linf3c615b2011-04-26 16:16:45 +0000612 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000613}
wdenk8bde7f72003-06-27 21:31:46 +0000614
Igor Grinbergd09b1782011-11-07 01:13:59 +0000615static int do_env_default(cmd_tbl_t *cmdtp, int flag,
616 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200617{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000618 if (argc != 2 || strcmp(argv[1], "-f") != 0)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000619 return CMD_RET_USAGE;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000620
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200621 set_default_env("## Resetting to default environment\n");
622 return 0;
623}
wdenk8bde7f72003-06-27 21:31:46 +0000624
Igor Grinbergd09b1782011-11-07 01:13:59 +0000625static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
626 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200627{
628 printf("Not implemented yet\n");
629 return 0;
630}
631
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500632#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200633/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100634 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200635 * -t: export as text format; if size is given, data will be
636 * padded with '\0' bytes; if not, one terminating '\0'
637 * will be added (which is included in the "filesize"
638 * setting so you can for exmple copy this to flash and
639 * keep the termination).
640 * -b: export as binary format (name=value pairs separated by
641 * '\0', list end marked by double "\0\0")
642 * -c: export as checksum protected environment format as
643 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100644 * -s size:
645 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200646 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100647 * var... List of variable names that get included into the
648 * export. Without arguments, the whole environment gets
649 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200650 *
651 * With "-c" and size is NOT given, then the export command will
652 * format the data as currently used for the persistent storage,
653 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
654 * prepend a valid CRC32 checksum and, in case of resundant
655 * environment, a "current" redundancy flag. If size is given, this
656 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
657 * checksum and redundancy flag will be inserted.
658 *
659 * With "-b" and "-t", always only the real data (including a
660 * terminating '\0' byte) will be written; here the optional size
661 * argument will be used to make sure not to overflow the user
662 * provided buffer; the command will abort if the size is not
663 * sufficient. Any remainign space will be '\0' padded.
664 *
665 * On successful return, the variable "filesize" will be set.
666 * Note that filesize includes the trailing/terminating '\0' byte(s).
667 *
668 * Usage szenario: create a text snapshot/backup of the current settings:
669 *
670 * => env export -t 100000
671 * => era ${backup_addr} +${filesize}
672 * => cp.b 100000 ${backup_addr} ${filesize}
673 *
674 * Re-import this snapshot, deleting all other settings:
675 *
676 * => env import -d -t ${backup_addr}
677 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000678static int do_env_export(cmd_tbl_t *cmdtp, int flag,
679 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200680{
681 char buf[32];
682 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100683 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200684 ssize_t len;
685 env_t *envp;
686 char sep = '\n';
687 int chk = 0;
688 int fmt = 0;
689
690 cmd = *argv;
691
692 while (--argc > 0 && **++argv == '-') {
693 char *arg = *argv;
694 while (*++arg) {
695 switch (*arg) {
696 case 'b': /* raw binary format */
697 if (fmt++)
698 goto sep_err;
699 sep = '\0';
700 break;
701 case 'c': /* external checksum format */
702 if (fmt++)
703 goto sep_err;
704 sep = '\0';
705 chk = 1;
706 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100707 case 's': /* size given */
708 if (--argc <= 0)
709 return cmd_usage(cmdtp);
710 size = simple_strtoul(*++argv, NULL, 16);
711 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200712 case 't': /* text format */
713 if (fmt++)
714 goto sep_err;
715 sep = '\n';
716 break;
717 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000718 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200719 }
720 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100721NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200722 }
723
Macpaul Linf3c615b2011-04-26 16:16:45 +0000724 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000725 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200726
727 addr = (char *)simple_strtoul(argv[0], NULL, 16);
728
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100729 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200730 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100731
732 argc--;
733 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200734
735 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100736 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200737 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000738 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200739 return 1;
740 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100741 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200742 setenv("filesize", buf);
743
744 return 0;
745 }
746
747 envp = (env_t *)addr;
748
749 if (chk) /* export as checksum protected block */
750 res = (char *)envp->data;
751 else /* export as raw binary data */
752 res = addr;
753
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100754 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200755 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000756 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200757 return 1;
758 }
759
760 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000761 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200762#ifdef CONFIG_ENV_ADDR_REDUND
763 envp->flags = ACTIVE_FLAG;
764#endif
765 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000766 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200767 setenv("filesize", buf);
768
769 return 0;
770
771sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000772 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200773 return 1;
774}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500775#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200776
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500777#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200778/*
779 * env import [-d] [-t | -b | -c] addr [size]
780 * -d: delete existing environment before importing;
781 * otherwise overwrite / append to existion definitions
782 * -t: assume text format; either "size" must be given or the
783 * text data must be '\0' terminated
784 * -b: assume binary format ('\0' separated, "\0\0" terminated)
785 * -c: assume checksum protected environment format
786 * addr: memory address to read from
787 * size: length of input data; if missing, proper '\0'
788 * termination is mandatory
789 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000790static int do_env_import(cmd_tbl_t *cmdtp, int flag,
791 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200792{
793 char *cmd, *addr;
794 char sep = '\n';
795 int chk = 0;
796 int fmt = 0;
797 int del = 0;
798 size_t size;
799
800 cmd = *argv;
801
802 while (--argc > 0 && **++argv == '-') {
803 char *arg = *argv;
804 while (*++arg) {
805 switch (*arg) {
806 case 'b': /* raw binary format */
807 if (fmt++)
808 goto sep_err;
809 sep = '\0';
810 break;
811 case 'c': /* external checksum format */
812 if (fmt++)
813 goto sep_err;
814 sep = '\0';
815 chk = 1;
816 break;
817 case 't': /* text format */
818 if (fmt++)
819 goto sep_err;
820 sep = '\n';
821 break;
822 case 'd':
823 del = 1;
824 break;
825 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000826 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200827 }
828 }
829 }
830
Macpaul Linf3c615b2011-04-26 16:16:45 +0000831 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000832 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200833
834 if (!fmt)
835 printf("## Warning: defaulting to text format\n");
836
837 addr = (char *)simple_strtoul(argv[0], NULL, 16);
838
839 if (argc == 2) {
840 size = simple_strtoul(argv[1], NULL, 16);
841 } else {
842 char *s = addr;
843
844 size = 0;
845
846 while (size < MAX_ENV_SIZE) {
847 if ((*s == sep) && (*(s+1) == '\0'))
848 break;
849 ++s;
850 ++size;
851 }
852 if (size == MAX_ENV_SIZE) {
853 printf("## Warning: Input data exceeds %d bytes"
854 " - truncated\n", MAX_ENV_SIZE);
855 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000856 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000857 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200858 }
859
860 if (chk) {
861 uint32_t crc;
862 env_t *ep = (env_t *)addr;
863
864 size -= offsetof(env_t, data);
865 memcpy(&crc, &ep->crc, sizeof(crc));
866
867 if (crc32(0, ep->data, size) != crc) {
868 puts("## Error: bad CRC, import failed\n");
869 return 1;
870 }
871 addr = (char *)ep->data;
872 }
873
Mike Frysinger2eb15732010-12-08 06:26:04 -0500874 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200875 error("Environment import failed: errno = %d\n", errno);
876 return 1;
877 }
878 gd->flags |= GD_FLG_ENV_READY;
879
880 return 0;
881
882sep_err:
883 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
884 cmd);
885 return 1;
886}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500887#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200888
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200889/*
890 * New command line interface: "env" command with subcommands
891 */
892static cmd_tbl_t cmd_env_sub[] = {
893#if defined(CONFIG_CMD_ASKENV)
894 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
895#endif
896 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
897 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
898#if defined(CONFIG_CMD_EDITENV)
899 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
900#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500901#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200902 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500903#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000904#if defined(CONFIG_CMD_GREPENV)
905 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
906#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500907#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200908 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500909#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200910 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
911#if defined(CONFIG_CMD_RUN)
912 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
913#endif
914#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
915 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
916#endif
917 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
918};
919
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200920#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200921void env_reloc(void)
922{
923 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
924}
925#endif
926
Macpaul Linf3c615b2011-04-26 16:16:45 +0000927static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200928{
929 cmd_tbl_t *cp;
930
Thomas Weber5904da02010-11-24 13:07:52 +0100931 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000932 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +0100933
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200934 /* drop initial "env" arg */
935 argc--;
936 argv++;
937
938 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
939
940 if (cp)
941 return cp->cmd(cmdtp, flag, argc, argv);
942
Simon Glass4c12eeb2011-12-10 08:44:01 +0000943 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200944}
945
946U_BOOT_CMD(
947 env, CONFIG_SYS_MAXARGS, 1, do_env,
948 "environment handling commands",
949#if defined(CONFIG_CMD_ASKENV)
950 "ask name [message] [size] - ask for environment variable\nenv "
951#endif
952 "default -f - reset default environment\n"
953#if defined(CONFIG_CMD_EDITENV)
954 "env edit name - edit environment variable\n"
955#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +0000956#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100957 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +0000958#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000959#if defined(CONFIG_CMD_GREPENV)
960 "env grep string [...] - search environment\n"
961#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +0000962#if defined(CONFIG_CMD_IMPORTENV)
Kim Phillipsa000b792011-04-05 07:15:14 +0000963 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +0000964#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200965 "env print [name ...] - print environment\n"
966#if defined(CONFIG_CMD_RUN)
967 "env run var [...] - run commands in an environment variable\n"
968#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000969#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200970 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000971#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200972 "env set [-f] name [arg ...]\n"
973);
974
975/*
976 * Old command line interface, kept for compatibility
977 */
wdenk8bde7f72003-06-27 21:31:46 +0000978
Peter Tyser246c6922009-10-25 15:12:56 -0500979#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400980U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200981 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500982 "edit environment variable",
983 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400984 " - edit environment variable 'name'",
985 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500986);
987#endif
988
Mike Frysinger722b0612010-10-20 03:52:39 -0400989U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200990 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -0600991 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000992 "\n - print values of all environment variables\n"
993 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400994 " - print value of environment variable 'name'",
995 var_complete
wdenk8bde7f72003-06-27 21:31:46 +0000996);
997
Kim Phillipsa000b792011-04-05 07:15:14 +0000998#ifdef CONFIG_CMD_GREPENV
999U_BOOT_CMD_COMPLETE(
1000 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1001 "search environment variables",
1002 "string ...\n"
1003 " - list environment name=value pairs matching 'string'",
1004 var_complete
1005);
1006#endif
1007
Mike Frysinger722b0612010-10-20 03:52:39 -04001008U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001009 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001010 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001011 "name value ...\n"
1012 " - set environment variable 'name' to 'value ...'\n"
1013 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001014 " - delete environment variable 'name'",
1015 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001016);
1017
Jon Loeligerc76fe472007-07-08 18:02:23 -05001018#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001019
wdenk0d498392003-07-01 21:06:45 +00001020U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001021 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001022 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001023 "name [message] [size]\n"
1024 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1025 "askenv name\n"
1026 " - get environment variable 'name' from stdin\n"
1027 "askenv name size\n"
1028 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1029 "askenv name [message] size\n"
1030 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001031 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001032);
Jon Loeliger90253172007-07-10 11:02:44 -05001033#endif
wdenk8bde7f72003-06-27 21:31:46 +00001034
Jon Loeligerc76fe472007-07-08 18:02:23 -05001035#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001036U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001037 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001038 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001039 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001040 " - run the commands in the environment variable(s) 'var'",
1041 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001042);
Jon Loeliger90253172007-07-10 11:02:44 -05001043#endif