blob: fd05e725d7648740e3d3c0b07c170484011da440 [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
242 i = iomux_doenv(console, argv[2]);
243 if (i)
244 return i;
245#else
246 /* Try assigning specified device */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000247 if (console_assign(console, argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200248 return 1;
249
250#ifdef CONFIG_SERIAL_MULTI
Macpaul Linf3c615b2011-04-26 16:16:45 +0000251 if (serial_assign(argv[2]) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200252 return 1;
253#endif
254#endif /* CONFIG_CONSOLE_MUX */
255 }
256
wdenka68d3ed2002-10-11 08:38:32 +0000257 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200258 * Some variables like "ethaddr" and "serial#" can be set only
259 * once and cannot be deleted; also, "ver" is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000260 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200261 if (ep) { /* variable exists */
wdenka68d3ed2002-10-11 08:38:32 +0000262#ifndef CONFIG_ENV_OVERWRITE
Igor Grinbergd09b1782011-11-07 01:13:59 +0000263 if (strcmp(name, "serial#") == 0 ||
264 (strcmp(name, "ethaddr") == 0
wdenka68d3ed2002-10-11 08:38:32 +0000265#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Igor Grinbergd09b1782011-11-07 01:13:59 +0000266 && strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000267#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000268 )) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000269 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000270 return 1;
271 }
272#endif
wdenka68d3ed2002-10-11 08:38:32 +0000273 /*
274 * Switch to new baudrate if new baudrate is supported
275 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000276 if (strcmp(name, "baudrate") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000277 int baudrate = simple_strtoul(argv[2], NULL, 10);
278 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000279 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000280 if (baudrate == baudrate_table[i])
281 break;
282 }
283 if (i == N_BAUDRATES) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000284 printf("## Baudrate %d bps not supported\n",
wdenka68d3ed2002-10-11 08:38:32 +0000285 baudrate);
286 return 1;
287 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000288 printf("## Switch baudrate to %d bps and"
289 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000290 udelay(50000);
291 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100292#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000293 gd->bd->bi_baudrate = baudrate;
294#endif
295
Macpaul Linf3c615b2011-04-26 16:16:45 +0000296 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000297 udelay(50000);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000298 while (getc() != '\r')
299 ;
wdenka68d3ed2002-10-11 08:38:32 +0000300 }
wdenka68d3ed2002-10-11 08:38:32 +0000301 }
302
wdenka68d3ed2002-10-11 08:38:32 +0000303 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000304 if (argc < 3 || argv[2] == NULL) {
Mike Frysinger2eb15732010-12-08 06:26:04 -0500305 int rc = hdelete_r(name, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200306 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000307 }
308
309 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200310 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000311 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000312 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000313 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000314
315 value = malloc(len);
316 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200317 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000318 return 1;
319 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000320 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200321 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000322
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200323 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000324 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000325 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000326 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200327 if (s != value)
328 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000329
Igor Grinbergd09b1782011-11-07 01:13:59 +0000330 e.key = name;
331 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500332 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200333 free(value);
334 if (!ep) {
335 printf("## Error inserting \"%s\" variable, errno=%d\n",
336 name, errno);
337 return 1;
338 }
wdenka68d3ed2002-10-11 08:38:32 +0000339
340 /*
341 * Some variables should be updated when the corresponding
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200342 * entry in the environment is changed
wdenka68d3ed2002-10-11 08:38:32 +0000343 */
Mike Frysinger50a47d02012-04-04 18:53:40 +0000344 if (strcmp(argv[1], "loadaddr") == 0) {
wdenka68d3ed2002-10-11 08:38:32 +0000345 load_addr = simple_strtoul(argv[2], NULL, 16);
346 return 0;
347 }
Jon Loeligerc76fe472007-07-08 18:02:23 -0500348#if defined(CONFIG_CMD_NET)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000349 else if (strcmp(argv[1], "bootfile") == 0) {
350 copy_filename(BootFile, argv[2], sizeof(BootFile));
wdenka68d3ed2002-10-11 08:38:32 +0000351 return 0;
352 }
Jon Loeliger90253172007-07-10 11:02:44 -0500353#endif
wdenka68d3ed2002-10-11 08:38:32 +0000354 return 0;
355}
356
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200357int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000358{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200359 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
360
Igor Grinbergd09b1782011-11-07 01:13:59 +0000361 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200362 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200363 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200364 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000365}
366
Simon Glassd67f10c2011-10-24 17:59:59 +0000367/**
368 * Set an environment variable to an integer value
369 *
370 * @param varname Environmet variable to set
371 * @param value Value to set it to
372 * @return 0 if ok, 1 on error
373 */
374int setenv_ulong(const char *varname, ulong value)
375{
376 /* TODO: this should be unsigned */
377 char *str = simple_itoa(value);
378
379 return setenv(varname, str);
380}
381
382/**
383 * Set an environment variable to an address in hex
384 *
385 * @param varname Environmet variable to set
386 * @param addr Value to set it to
387 * @return 0 if ok, 1 on error
388 */
389int setenv_addr(const char *varname, const void *addr)
390{
391 char str[17];
392
Simon Glass79afc882011-11-04 06:42:36 +0000393 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000394 return setenv(varname, str);
395}
396
Macpaul Linf3c615b2011-04-26 16:16:45 +0000397int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000398{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200399 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000400 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000401
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200402 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000403}
404
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200405/*
wdenka68d3ed2002-10-11 08:38:32 +0000406 * Prompt for environment variable
407 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500408#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000409int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000410{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200411 char message[CONFIG_SYS_CBSIZE];
412 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200413 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000414 char *local_args[4];
415
416 local_args[0] = argv[0];
417 local_args[1] = argv[1];
418 local_args[2] = NULL;
419 local_args[3] = NULL;
420
wdenka68d3ed2002-10-11 08:38:32 +0000421 /* Check the syntax */
422 switch (argc) {
423 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000424 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000425
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200426 case 2: /* env_ask envname */
427 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000428 break;
429
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200430 case 3: /* env_ask envname size */
431 sprintf(message, "Please enter '%s':", argv[1]);
432 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000433 break;
434
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200435 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000436 for (i = 2, pos = 0; i < argc - 1; i++) {
437 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000438 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000439
Igor Grinbergd09b1782011-11-07 01:13:59 +0000440 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000441 pos += strlen(argv[i]);
442 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000443
wdenka68d3ed2002-10-11 08:38:32 +0000444 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200445 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000446 break;
447 }
448
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200449 if (size >= CONFIG_SYS_CBSIZE)
450 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000451
452 if (size <= 0)
453 return 1;
454
455 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200456 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000457
458 if (size < len)
459 console_buffer[size] = '\0';
460
461 len = 2;
462 if (console_buffer[0] != '\0') {
463 local_args[2] = console_buffer;
464 len = 3;
465 }
466
467 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200468 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000469}
Jon Loeliger90253172007-07-10 11:02:44 -0500470#endif
wdenka68d3ed2002-10-11 08:38:32 +0000471
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200472/*
Peter Tyser246c6922009-10-25 15:12:56 -0500473 * Interactively edit an environment variable
474 */
475#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200476int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500477{
478 char buffer[CONFIG_SYS_CBSIZE];
479 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500480
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200481 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000482 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500483
484 /* Set read buffer to initial value or empty sting */
485 init_val = getenv(argv[1]);
486 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200487 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500488 else
489 buffer[0] = '\0';
490
Heiko Schocher9c348312012-01-16 21:13:05 +0000491 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500492
493 return setenv(argv[1], buffer);
494}
495#endif /* CONFIG_CMD_EDITENV */
496
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200497/*
wdenka68d3ed2002-10-11 08:38:32 +0000498 * Look up variable from environment,
499 * return address of storage for that variable,
500 * or NULL if not found
501 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200502char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000503{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000504 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200505 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000506
Wolfgang Denk91a76752010-07-24 20:22:02 +0200507 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000508
Igor Grinbergd09b1782011-11-07 01:13:59 +0000509 e.key = name;
510 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500511 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000512
Macpaul Linf3c615b2011-04-26 16:16:45 +0000513 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000514 }
515
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200516 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200517 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
518 return (char *)(gd->env_buf);
519
520 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000521}
522
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200523/*
524 * Look up variable from environment for restricted C runtime env.
525 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200526int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000527{
528 int i, nxt;
529
Igor Grinbergd09b1782011-11-07 01:13:59 +0000530 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000531 int val, n;
532
Macpaul Linf3c615b2011-04-26 16:16:45 +0000533 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
534 if (nxt >= CONFIG_ENV_SIZE)
535 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000536 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000537
538 val = envmatch((uchar *)name, i);
539 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000540 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200541
wdenka68d3ed2002-10-11 08:38:32 +0000542 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000543 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000544 *buf = env_get_char(val++);
545 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200546 return n;
547 }
548
549 if (n)
550 *--buf = '\0';
551
Wolfgang Denka02a8842011-05-04 10:29:49 +0000552 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
553 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200554
555 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000556 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000557
Macpaul Linf3c615b2011-04-26 16:16:45 +0000558 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000559}
560
Simon Glass4a9b4132011-10-14 13:25:18 +0000561/**
562 * Decode the integer value of an environment variable and return it.
563 *
564 * @param name Name of environemnt variable
565 * @param base Number base to use (normally 10, or 16 for hex)
566 * @param default_val Default value to return if the variable is not
567 * found
568 * @return the decoded value, or default_val if not found
569 */
570ulong getenv_ulong(const char *name, int base, ulong default_val)
571{
572 /*
573 * We can use getenv() here, even before relocation, since the
574 * environment variable value is an integer and thus short.
575 */
576 const char *str = getenv(name);
577
578 return str ? simple_strtoul(str, NULL, base) : default_val;
579}
580
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500581#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000582int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000583{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000584 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000585
Macpaul Linf3c615b2011-04-26 16:16:45 +0000586 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000587}
wdenk8bde7f72003-06-27 21:31:46 +0000588
Mike Frysingerba69dc22008-12-30 02:59:25 -0500589U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200590 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600591 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200592 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500593);
wdenka68d3ed2002-10-11 08:38:32 +0000594#endif
595
596
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200597/*
wdenka68d3ed2002-10-11 08:38:32 +0000598 * Match a name / name=value pair
599 *
600 * s1 is either a simple 'name', or a 'name=value' pair.
601 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000602 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000603 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000604int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000605{
wdenka68d3ed2002-10-11 08:38:32 +0000606 while (*s1 == env_get_char(i2++))
607 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000608 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000609
wdenka68d3ed2002-10-11 08:38:32 +0000610 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000611 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000612
Macpaul Linf3c615b2011-04-26 16:16:45 +0000613 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000614}
wdenk8bde7f72003-06-27 21:31:46 +0000615
Igor Grinbergd09b1782011-11-07 01:13:59 +0000616static int do_env_default(cmd_tbl_t *cmdtp, int flag,
617 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200618{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000619 if (argc != 2 || strcmp(argv[1], "-f") != 0)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000620 return CMD_RET_USAGE;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000621
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200622 set_default_env("## Resetting to default environment\n");
623 return 0;
624}
wdenk8bde7f72003-06-27 21:31:46 +0000625
Igor Grinbergd09b1782011-11-07 01:13:59 +0000626static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
627 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200628{
629 printf("Not implemented yet\n");
630 return 0;
631}
632
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500633#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200634/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100635 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200636 * -t: export as text format; if size is given, data will be
637 * padded with '\0' bytes; if not, one terminating '\0'
638 * will be added (which is included in the "filesize"
639 * setting so you can for exmple copy this to flash and
640 * keep the termination).
641 * -b: export as binary format (name=value pairs separated by
642 * '\0', list end marked by double "\0\0")
643 * -c: export as checksum protected environment format as
644 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100645 * -s size:
646 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200647 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100648 * var... List of variable names that get included into the
649 * export. Without arguments, the whole environment gets
650 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200651 *
652 * With "-c" and size is NOT given, then the export command will
653 * format the data as currently used for the persistent storage,
654 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
655 * prepend a valid CRC32 checksum and, in case of resundant
656 * environment, a "current" redundancy flag. If size is given, this
657 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
658 * checksum and redundancy flag will be inserted.
659 *
660 * With "-b" and "-t", always only the real data (including a
661 * terminating '\0' byte) will be written; here the optional size
662 * argument will be used to make sure not to overflow the user
663 * provided buffer; the command will abort if the size is not
664 * sufficient. Any remainign space will be '\0' padded.
665 *
666 * On successful return, the variable "filesize" will be set.
667 * Note that filesize includes the trailing/terminating '\0' byte(s).
668 *
669 * Usage szenario: create a text snapshot/backup of the current settings:
670 *
671 * => env export -t 100000
672 * => era ${backup_addr} +${filesize}
673 * => cp.b 100000 ${backup_addr} ${filesize}
674 *
675 * Re-import this snapshot, deleting all other settings:
676 *
677 * => env import -d -t ${backup_addr}
678 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000679static int do_env_export(cmd_tbl_t *cmdtp, int flag,
680 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200681{
682 char buf[32];
683 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100684 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200685 ssize_t len;
686 env_t *envp;
687 char sep = '\n';
688 int chk = 0;
689 int fmt = 0;
690
691 cmd = *argv;
692
693 while (--argc > 0 && **++argv == '-') {
694 char *arg = *argv;
695 while (*++arg) {
696 switch (*arg) {
697 case 'b': /* raw binary format */
698 if (fmt++)
699 goto sep_err;
700 sep = '\0';
701 break;
702 case 'c': /* external checksum format */
703 if (fmt++)
704 goto sep_err;
705 sep = '\0';
706 chk = 1;
707 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100708 case 's': /* size given */
709 if (--argc <= 0)
710 return cmd_usage(cmdtp);
711 size = simple_strtoul(*++argv, NULL, 16);
712 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200713 case 't': /* text format */
714 if (fmt++)
715 goto sep_err;
716 sep = '\n';
717 break;
718 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000719 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200720 }
721 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100722NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200723 }
724
Macpaul Linf3c615b2011-04-26 16:16:45 +0000725 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000726 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200727
728 addr = (char *)simple_strtoul(argv[0], NULL, 16);
729
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100730 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200731 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100732
733 argc--;
734 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200735
736 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100737 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200738 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000739 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200740 return 1;
741 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100742 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200743 setenv("filesize", buf);
744
745 return 0;
746 }
747
748 envp = (env_t *)addr;
749
750 if (chk) /* export as checksum protected block */
751 res = (char *)envp->data;
752 else /* export as raw binary data */
753 res = addr;
754
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100755 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200756 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000757 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200758 return 1;
759 }
760
761 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000762 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200763#ifdef CONFIG_ENV_ADDR_REDUND
764 envp->flags = ACTIVE_FLAG;
765#endif
766 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000767 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200768 setenv("filesize", buf);
769
770 return 0;
771
772sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000773 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200774 return 1;
775}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500776#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200777
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500778#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200779/*
780 * env import [-d] [-t | -b | -c] addr [size]
781 * -d: delete existing environment before importing;
782 * otherwise overwrite / append to existion definitions
783 * -t: assume text format; either "size" must be given or the
784 * text data must be '\0' terminated
785 * -b: assume binary format ('\0' separated, "\0\0" terminated)
786 * -c: assume checksum protected environment format
787 * addr: memory address to read from
788 * size: length of input data; if missing, proper '\0'
789 * termination is mandatory
790 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000791static int do_env_import(cmd_tbl_t *cmdtp, int flag,
792 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200793{
794 char *cmd, *addr;
795 char sep = '\n';
796 int chk = 0;
797 int fmt = 0;
798 int del = 0;
799 size_t size;
800
801 cmd = *argv;
802
803 while (--argc > 0 && **++argv == '-') {
804 char *arg = *argv;
805 while (*++arg) {
806 switch (*arg) {
807 case 'b': /* raw binary format */
808 if (fmt++)
809 goto sep_err;
810 sep = '\0';
811 break;
812 case 'c': /* external checksum format */
813 if (fmt++)
814 goto sep_err;
815 sep = '\0';
816 chk = 1;
817 break;
818 case 't': /* text format */
819 if (fmt++)
820 goto sep_err;
821 sep = '\n';
822 break;
823 case 'd':
824 del = 1;
825 break;
826 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000827 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200828 }
829 }
830 }
831
Macpaul Linf3c615b2011-04-26 16:16:45 +0000832 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000833 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200834
835 if (!fmt)
836 printf("## Warning: defaulting to text format\n");
837
838 addr = (char *)simple_strtoul(argv[0], NULL, 16);
839
840 if (argc == 2) {
841 size = simple_strtoul(argv[1], NULL, 16);
842 } else {
843 char *s = addr;
844
845 size = 0;
846
847 while (size < MAX_ENV_SIZE) {
848 if ((*s == sep) && (*(s+1) == '\0'))
849 break;
850 ++s;
851 ++size;
852 }
853 if (size == MAX_ENV_SIZE) {
854 printf("## Warning: Input data exceeds %d bytes"
855 " - truncated\n", MAX_ENV_SIZE);
856 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000857 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000858 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200859 }
860
861 if (chk) {
862 uint32_t crc;
863 env_t *ep = (env_t *)addr;
864
865 size -= offsetof(env_t, data);
866 memcpy(&crc, &ep->crc, sizeof(crc));
867
868 if (crc32(0, ep->data, size) != crc) {
869 puts("## Error: bad CRC, import failed\n");
870 return 1;
871 }
872 addr = (char *)ep->data;
873 }
874
Mike Frysinger2eb15732010-12-08 06:26:04 -0500875 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200876 error("Environment import failed: errno = %d\n", errno);
877 return 1;
878 }
879 gd->flags |= GD_FLG_ENV_READY;
880
881 return 0;
882
883sep_err:
884 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
885 cmd);
886 return 1;
887}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500888#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200889
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200890/*
891 * New command line interface: "env" command with subcommands
892 */
893static cmd_tbl_t cmd_env_sub[] = {
894#if defined(CONFIG_CMD_ASKENV)
895 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
896#endif
897 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
898 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
899#if defined(CONFIG_CMD_EDITENV)
900 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
901#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500902#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200903 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500904#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000905#if defined(CONFIG_CMD_GREPENV)
906 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
907#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500908#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200909 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500910#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200911 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
912#if defined(CONFIG_CMD_RUN)
913 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
914#endif
915#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
916 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
917#endif
918 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
919};
920
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200921#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +0200922void env_reloc(void)
923{
924 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
925}
926#endif
927
Macpaul Linf3c615b2011-04-26 16:16:45 +0000928static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200929{
930 cmd_tbl_t *cp;
931
Thomas Weber5904da02010-11-24 13:07:52 +0100932 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000933 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +0100934
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200935 /* drop initial "env" arg */
936 argc--;
937 argv++;
938
939 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
940
941 if (cp)
942 return cp->cmd(cmdtp, flag, argc, argv);
943
Simon Glass4c12eeb2011-12-10 08:44:01 +0000944 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200945}
946
947U_BOOT_CMD(
948 env, CONFIG_SYS_MAXARGS, 1, do_env,
949 "environment handling commands",
950#if defined(CONFIG_CMD_ASKENV)
951 "ask name [message] [size] - ask for environment variable\nenv "
952#endif
953 "default -f - reset default environment\n"
954#if defined(CONFIG_CMD_EDITENV)
955 "env edit name - edit environment variable\n"
956#endif
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100957 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Kim Phillipsa000b792011-04-05 07:15:14 +0000958#if defined(CONFIG_CMD_GREPENV)
959 "env grep string [...] - search environment\n"
960#endif
961 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200962 "env print [name ...] - print environment\n"
963#if defined(CONFIG_CMD_RUN)
964 "env run var [...] - run commands in an environment variable\n"
965#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000966#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200967 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +0000968#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200969 "env set [-f] name [arg ...]\n"
970);
971
972/*
973 * Old command line interface, kept for compatibility
974 */
wdenk8bde7f72003-06-27 21:31:46 +0000975
Peter Tyser246c6922009-10-25 15:12:56 -0500976#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -0400977U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200978 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -0500979 "edit environment variable",
980 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400981 " - edit environment variable 'name'",
982 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -0500983);
984#endif
985
Mike Frysinger722b0612010-10-20 03:52:39 -0400986U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200987 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -0600988 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +0000989 "\n - print values of all environment variables\n"
990 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -0400991 " - print value of environment variable 'name'",
992 var_complete
wdenk8bde7f72003-06-27 21:31:46 +0000993);
994
Kim Phillipsa000b792011-04-05 07:15:14 +0000995#ifdef CONFIG_CMD_GREPENV
996U_BOOT_CMD_COMPLETE(
997 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
998 "search environment variables",
999 "string ...\n"
1000 " - list environment name=value pairs matching 'string'",
1001 var_complete
1002);
1003#endif
1004
Mike Frysinger722b0612010-10-20 03:52:39 -04001005U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001006 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001007 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001008 "name value ...\n"
1009 " - set environment variable 'name' to 'value ...'\n"
1010 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001011 " - delete environment variable 'name'",
1012 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001013);
1014
Jon Loeligerc76fe472007-07-08 18:02:23 -05001015#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001016
wdenk0d498392003-07-01 21:06:45 +00001017U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001018 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001019 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001020 "name [message] [size]\n"
1021 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1022 "askenv name\n"
1023 " - get environment variable 'name' from stdin\n"
1024 "askenv name size\n"
1025 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1026 "askenv name [message] size\n"
1027 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001028 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001029);
Jon Loeliger90253172007-07-10 11:02:44 -05001030#endif
wdenk8bde7f72003-06-27 21:31:46 +00001031
Jon Loeligerc76fe472007-07-08 18:02:23 -05001032#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001033U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001034 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001035 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001036 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001037 " - run the commands in the environment variable(s) 'var'",
1038 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001039);
Jon Loeliger90253172007-07-10 11:02:44 -05001040#endif