blob: bb1d4ec3e54df90a6df9d8ce7de7add30b1b3b90 [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
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000106#ifndef CONFIG_SPL_BUILD
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400107/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200108 * Command interface: print one or all environment variables
109 *
110 * Returns 0 in case of error, or length of printed string
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400111 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200112static int env_print(char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000113{
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200114 char *res = NULL;
115 size_t len;
wdenka68d3ed2002-10-11 08:38:32 +0000116
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200117 if (name) { /* print a single name */
118 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000119
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200120 e.key = name;
121 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500122 hsearch_r(e, FIND, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200123 if (ep == NULL)
124 return 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000125 len = printf("%s=%s\n", ep->key, ep->data);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200126 return len;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400127 }
wdenka68d3ed2002-10-11 08:38:32 +0000128
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200129 /* print whole list */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100130 len = hexport_r(&env_htab, '\n', &res, 0, 0, NULL);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200131
132 if (len > 0) {
133 puts(res);
134 free(res);
135 return len;
136 }
137
138 /* should never happen */
139 return 0;
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400140}
141
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200142int do_env_print (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400143{
144 int i;
145 int rcode = 0;
146
147 if (argc == 1) {
148 /* print all env vars */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200149 rcode = env_print(NULL);
150 if (!rcode)
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400151 return 1;
152 printf("\nEnvironment size: %d/%ld bytes\n",
153 rcode, (ulong)ENV_SIZE);
wdenka68d3ed2002-10-11 08:38:32 +0000154 return 0;
155 }
156
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400157 /* print selected env vars */
158 for (i = 1; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200159 int rc = env_print(argv[i]);
160 if (!rc) {
161 printf("## Error: \"%s\" not defined\n", argv[i]);
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400162 ++rcode;
wdenka68d3ed2002-10-11 08:38:32 +0000163 }
164 }
Mike Frysinger4c94f6c2009-05-24 02:26:19 -0400165
wdenka68d3ed2002-10-11 08:38:32 +0000166 return rcode;
167}
168
Kim Phillipsa000b792011-04-05 07:15:14 +0000169#ifdef CONFIG_CMD_GREPENV
Igor Grinbergd09b1782011-11-07 01:13:59 +0000170static int do_env_grep(cmd_tbl_t *cmdtp, int flag,
171 int argc, char * const argv[])
Kim Phillipsa000b792011-04-05 07:15:14 +0000172{
173 ENTRY *match;
174 unsigned char matched[env_htab.size / 8];
175 int rcode = 1, arg = 1, idx;
176
177 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000178 return CMD_RET_USAGE;
Kim Phillipsa000b792011-04-05 07:15:14 +0000179
180 memset(matched, 0, env_htab.size / 8);
181
182 while (arg <= argc) {
183 idx = 0;
Kumar Gala068f1582011-11-23 09:48:02 +0000184 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
Kim Phillipsa000b792011-04-05 07:15:14 +0000185 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
186 puts(match->key);
187 puts("=");
188 puts(match->data);
189 puts("\n");
190 }
191 matched[idx / 8] |= 1 << (idx & 7);
192 rcode = 0;
193 }
194 arg++;
195 }
196
197 return rcode;
198}
199#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000200#endif /* CONFIG_SPL_BUILD */
Kim Phillipsa000b792011-04-05 07:15:14 +0000201
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200202/*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000203 * Perform consistency checking before setting, replacing, or deleting an
204 * environment variable, then (if successful) apply the changes to internals so
205 * to make them effective. Code for this function was taken out of
206 * _do_env_set(), which now calls it instead.
Gerlando Falautoc5983592012-08-24 00:11:39 +0000207 * Also called as a callback function by himport_r().
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000208 * Returns 0 in case of success, 1 in case of failure.
209 * When (flag & H_FORCE) is set, do not print out any error message and force
210 * overwriting of write-once variables.
wdenka68d3ed2002-10-11 08:38:32 +0000211 */
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000212
213int env_check_apply(const char *name, const char *oldval,
214 const char *newval, int flag)
wdenka68d3ed2002-10-11 08:38:32 +0000215{
wdenka68d3ed2002-10-11 08:38:32 +0000216 int console = -1;
wdenka68d3ed2002-10-11 08:38:32 +0000217
Gerlando Falauto7ac80552012-10-05 00:46:10 +0000218 /* Default value for NULL to protect string-manipulating functions */
219 newval = newval ? : "";
220
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200221 /* Check for console redirection */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000222 if (strcmp(name, "stdin") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200223 console = stdin;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000224 else if (strcmp(name, "stdout") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200225 console = stdout;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000226 else if (strcmp(name, "stderr") == 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200227 console = stderr;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200228
229 if (console != -1) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000230 if ((newval == NULL) || (*newval == '\0')) {
231 /* We cannot delete stdin/stdout/stderr */
232 if ((flag & H_FORCE) == 0)
233 printf("Can't delete \"%s\"\n", name);
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200234 return 1;
235 }
236
237#ifdef CONFIG_CONSOLE_MUX
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000238 if (iomux_doenv(console, newval))
Gerlando Falautoc2ba2ff2012-08-24 00:11:36 +0000239 return 1;
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200240#else
241 /* Try assigning specified device */
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000242 if (console_assign(console, newval) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200243 return 1;
244
245#ifdef CONFIG_SERIAL_MULTI
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000246 if (serial_assign(newval) < 0)
Alessandro Rubini9c5586a2009-10-08 14:29:14 +0200247 return 1;
248#endif
249#endif /* CONFIG_CONSOLE_MUX */
250 }
251
wdenka68d3ed2002-10-11 08:38:32 +0000252 /*
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000253 * Some variables like "ethaddr" and "serial#" can be set only once and
254 * cannot be deleted, unless CONFIG_ENV_OVERWRITE is defined.
wdenka68d3ed2002-10-11 08:38:32 +0000255 */
wdenka68d3ed2002-10-11 08:38:32 +0000256#ifndef CONFIG_ENV_OVERWRITE
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000257 if (oldval != NULL && /* variable exists */
258 (flag & H_FORCE) == 0) { /* and we are not forced */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000259 if (strcmp(name, "serial#") == 0 ||
260 (strcmp(name, "ethaddr") == 0
wdenka68d3ed2002-10-11 08:38:32 +0000261#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000262 && strcmp(oldval, MK_STR(CONFIG_ETHADDR)) != 0
wdenka68d3ed2002-10-11 08:38:32 +0000263#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000264 )) {
Macpaul Linf3c615b2011-04-26 16:16:45 +0000265 printf("Can't overwrite \"%s\"\n", name);
wdenka68d3ed2002-10-11 08:38:32 +0000266 return 1;
267 }
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000268 }
wdenka68d3ed2002-10-11 08:38:32 +0000269#endif
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000270 /*
271 * When we change baudrate, or we are doing an env default -a
272 * (which will erase all variables prior to calling this),
273 * we want the baudrate to actually change - for real.
274 */
275 if (oldval != NULL || /* variable exists */
276 (flag & H_NOCLEAR) == 0) { /* or env is clear */
wdenka68d3ed2002-10-11 08:38:32 +0000277 /*
278 * Switch to new baudrate if new baudrate is supported
279 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000280 if (strcmp(name, "baudrate") == 0) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000281 int baudrate = simple_strtoul(newval, NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000282 int i;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000283 for (i = 0; i < N_BAUDRATES; ++i) {
wdenka68d3ed2002-10-11 08:38:32 +0000284 if (baudrate == baudrate_table[i])
285 break;
286 }
287 if (i == N_BAUDRATES) {
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000288 if ((flag & H_FORCE) == 0)
289 printf("## Baudrate %d bps not "
290 "supported\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000291 return 1;
292 }
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000293 if (gd->baudrate == baudrate) {
294 /* If unchanged, we just say it's OK */
295 return 0;
296 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000297 printf("## Switch baudrate to %d bps and"
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000298 "press ENTER ...\n", baudrate);
wdenka68d3ed2002-10-11 08:38:32 +0000299 udelay(50000);
300 gd->baudrate = baudrate;
Bartlomiej Siekac84bad02006-12-20 00:29:43 +0100301#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
wdenkd0fb80c2003-01-11 09:48:40 +0000302 gd->bd->bi_baudrate = baudrate;
303#endif
304
Macpaul Linf3c615b2011-04-26 16:16:45 +0000305 serial_setbrg();
wdenka68d3ed2002-10-11 08:38:32 +0000306 udelay(50000);
Igor Grinbergd09b1782011-11-07 01:13:59 +0000307 while (getc() != '\r')
308 ;
wdenka68d3ed2002-10-11 08:38:32 +0000309 }
wdenka68d3ed2002-10-11 08:38:32 +0000310 }
311
Gerlando Falautoc3f65252012-08-24 00:11:37 +0000312 /*
313 * Some variables should be updated when the corresponding
314 * entry in the environment is changed
315 */
316 if (strcmp(name, "loadaddr") == 0) {
317 load_addr = simple_strtoul(newval, NULL, 16);
318 return 0;
319 }
320#if defined(CONFIG_CMD_NET)
321 else if (strcmp(name, "bootfile") == 0) {
322 copy_filename(BootFile, newval, sizeof(BootFile));
323 return 0;
324 }
325#endif
326 return 0;
327}
328
329/*
330 * Set a new environment variable,
331 * or replace or delete an existing one.
332*/
333int _do_env_set(int flag, int argc, char * const argv[])
334{
335 int i, len;
336 char *name, *value, *s;
337 ENTRY e, *ep;
338
339 name = argv[1];
340 value = argv[2];
341
342 if (strchr(name, '=')) {
343 printf("## Error: illegal character '='"
344 "in variable name \"%s\"\n", name);
345 return 1;
346 }
347
348 env_id++;
349 /*
350 * search if variable with this name already exists
351 */
352 e.key = name;
353 e.data = NULL;
354 hsearch_r(e, FIND, &ep, &env_htab);
355
356 /*
357 * Perform requested checks. Notice how since we are overwriting
358 * a single variable, we need to set H_NOCLEAR
359 */
360 if (env_check_apply(name, ep ? ep->data : NULL, value, H_NOCLEAR)) {
361 debug("check function did not approve, refusing\n");
362 return 1;
363 }
364
wdenka68d3ed2002-10-11 08:38:32 +0000365 /* Delete only ? */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000366 if (argc < 3 || argv[2] == NULL) {
Gerlando Falauto152874b2012-08-24 00:11:40 +0000367 int rc = hdelete_r(name, &env_htab, 0);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200368 return !rc;
wdenka68d3ed2002-10-11 08:38:32 +0000369 }
370
371 /*
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200372 * Insert / replace new value
wdenka68d3ed2002-10-11 08:38:32 +0000373 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000374 for (i = 2, len = 0; i < argc; ++i)
wdenka68d3ed2002-10-11 08:38:32 +0000375 len += strlen(argv[i]) + 1;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000376
377 value = malloc(len);
378 if (value == NULL) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200379 printf("## Can't malloc %d bytes\n", len);
wdenka68d3ed2002-10-11 08:38:32 +0000380 return 1;
381 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000382 for (i = 2, s = value; i < argc; ++i) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200383 char *v = argv[i];
wdenka68d3ed2002-10-11 08:38:32 +0000384
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200385 while ((*s++ = *v++) != '\0')
wdenka68d3ed2002-10-11 08:38:32 +0000386 ;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000387 *(s - 1) = ' ';
wdenka68d3ed2002-10-11 08:38:32 +0000388 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200389 if (s != value)
390 *--s = '\0';
wdenka68d3ed2002-10-11 08:38:32 +0000391
Igor Grinbergd09b1782011-11-07 01:13:59 +0000392 e.key = name;
393 e.data = value;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500394 hsearch_r(e, ENTER, &ep, &env_htab);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200395 free(value);
396 if (!ep) {
397 printf("## Error inserting \"%s\" variable, errno=%d\n",
398 name, errno);
399 return 1;
400 }
wdenka68d3ed2002-10-11 08:38:32 +0000401
wdenka68d3ed2002-10-11 08:38:32 +0000402 return 0;
403}
404
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200405int setenv(const char *varname, const char *varvalue)
wdenka68d3ed2002-10-11 08:38:32 +0000406{
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200407 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
408
Igor Grinbergd09b1782011-11-07 01:13:59 +0000409 if (varvalue == NULL || varvalue[0] == '\0')
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200410 return _do_env_set(0, 2, (char * const *)argv);
Jeffrey Mann9ffd4512007-04-23 14:00:11 +0200411 else
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200412 return _do_env_set(0, 3, (char * const *)argv);
wdenka68d3ed2002-10-11 08:38:32 +0000413}
414
Simon Glassd67f10c2011-10-24 17:59:59 +0000415/**
416 * Set an environment variable to an integer value
417 *
418 * @param varname Environmet variable to set
419 * @param value Value to set it to
420 * @return 0 if ok, 1 on error
421 */
422int setenv_ulong(const char *varname, ulong value)
423{
424 /* TODO: this should be unsigned */
425 char *str = simple_itoa(value);
426
427 return setenv(varname, str);
428}
429
430/**
431 * Set an environment variable to an address in hex
432 *
433 * @param varname Environmet variable to set
434 * @param addr Value to set it to
435 * @return 0 if ok, 1 on error
436 */
437int setenv_addr(const char *varname, const void *addr)
438{
439 char str[17];
440
Simon Glass79afc882011-11-04 06:42:36 +0000441 sprintf(str, "%lx", (uintptr_t)addr);
Simon Glassd67f10c2011-10-24 17:59:59 +0000442 return setenv(varname, str);
443}
444
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000445#ifndef CONFIG_SPL_BUILD
Macpaul Linf3c615b2011-04-26 16:16:45 +0000446int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000447{
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200448 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000449 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000450
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200451 return _do_env_set(flag, argc, argv);
wdenka68d3ed2002-10-11 08:38:32 +0000452}
453
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200454/*
wdenka68d3ed2002-10-11 08:38:32 +0000455 * Prompt for environment variable
456 */
Jon Loeligerc76fe472007-07-08 18:02:23 -0500457#if defined(CONFIG_CMD_ASKENV)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000458int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000459{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200460 char message[CONFIG_SYS_CBSIZE];
461 int size = CONFIG_SYS_CBSIZE - 1;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200462 int i, len, pos;
wdenka68d3ed2002-10-11 08:38:32 +0000463 char *local_args[4];
464
465 local_args[0] = argv[0];
466 local_args[1] = argv[1];
467 local_args[2] = NULL;
468 local_args[3] = NULL;
469
wdenka68d3ed2002-10-11 08:38:32 +0000470 /* Check the syntax */
471 switch (argc) {
472 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000473 return CMD_RET_USAGE;
wdenka68d3ed2002-10-11 08:38:32 +0000474
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200475 case 2: /* env_ask envname */
476 sprintf(message, "Please enter '%s':", argv[1]);
wdenka68d3ed2002-10-11 08:38:32 +0000477 break;
478
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200479 case 3: /* env_ask envname size */
480 sprintf(message, "Please enter '%s':", argv[1]);
481 size = simple_strtoul(argv[2], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000482 break;
483
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200484 default: /* env_ask envname message1 ... messagen size */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000485 for (i = 2, pos = 0; i < argc - 1; i++) {
486 if (pos)
wdenka68d3ed2002-10-11 08:38:32 +0000487 message[pos++] = ' ';
Macpaul Linf3c615b2011-04-26 16:16:45 +0000488
Igor Grinbergd09b1782011-11-07 01:13:59 +0000489 strcpy(message + pos, argv[i]);
wdenka68d3ed2002-10-11 08:38:32 +0000490 pos += strlen(argv[i]);
491 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000492
wdenka68d3ed2002-10-11 08:38:32 +0000493 message[pos] = '\0';
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200494 size = simple_strtoul(argv[argc - 1], NULL, 10);
wdenka68d3ed2002-10-11 08:38:32 +0000495 break;
496 }
497
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200498 if (size >= CONFIG_SYS_CBSIZE)
499 size = CONFIG_SYS_CBSIZE - 1;
wdenka68d3ed2002-10-11 08:38:32 +0000500
501 if (size <= 0)
502 return 1;
503
504 /* prompt for input */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200505 len = readline(message);
wdenka68d3ed2002-10-11 08:38:32 +0000506
507 if (size < len)
508 console_buffer[size] = '\0';
509
510 len = 2;
511 if (console_buffer[0] != '\0') {
512 local_args[2] = console_buffer;
513 len = 3;
514 }
515
516 /* Continue calling setenv code */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200517 return _do_env_set(flag, len, local_args);
wdenka68d3ed2002-10-11 08:38:32 +0000518}
Jon Loeliger90253172007-07-10 11:02:44 -0500519#endif
wdenka68d3ed2002-10-11 08:38:32 +0000520
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200521/*
Peter Tyser246c6922009-10-25 15:12:56 -0500522 * Interactively edit an environment variable
523 */
524#if defined(CONFIG_CMD_EDITENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200525int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Peter Tyser246c6922009-10-25 15:12:56 -0500526{
527 char buffer[CONFIG_SYS_CBSIZE];
528 char *init_val;
Peter Tyser246c6922009-10-25 15:12:56 -0500529
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200530 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000531 return CMD_RET_USAGE;
Peter Tyser246c6922009-10-25 15:12:56 -0500532
533 /* Set read buffer to initial value or empty sting */
534 init_val = getenv(argv[1]);
535 if (init_val)
Marek Vasut7fcd9bb2011-09-26 02:26:03 +0200536 sprintf(buffer, "%s", init_val);
Peter Tyser246c6922009-10-25 15:12:56 -0500537 else
538 buffer[0] = '\0';
539
Heiko Schocher9c348312012-01-16 21:13:05 +0000540 readline_into_buffer("edit: ", buffer, 0);
Peter Tyser246c6922009-10-25 15:12:56 -0500541
542 return setenv(argv[1], buffer);
543}
544#endif /* CONFIG_CMD_EDITENV */
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000545#endif /* CONFIG_SPL_BUILD */
Peter Tyser246c6922009-10-25 15:12:56 -0500546
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200547/*
wdenka68d3ed2002-10-11 08:38:32 +0000548 * Look up variable from environment,
549 * return address of storage for that variable,
550 * or NULL if not found
551 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200552char *getenv(const char *name)
wdenka68d3ed2002-10-11 08:38:32 +0000553{
Igor Grinbergd09b1782011-11-07 01:13:59 +0000554 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200555 ENTRY e, *ep;
wdenka68d3ed2002-10-11 08:38:32 +0000556
Wolfgang Denk91a76752010-07-24 20:22:02 +0200557 WATCHDOG_RESET();
wdenk2a3cb022002-11-05 21:01:48 +0000558
Igor Grinbergd09b1782011-11-07 01:13:59 +0000559 e.key = name;
560 e.data = NULL;
Mike Frysinger2eb15732010-12-08 06:26:04 -0500561 hsearch_r(e, FIND, &ep, &env_htab);
wdenka68d3ed2002-10-11 08:38:32 +0000562
Macpaul Linf3c615b2011-04-26 16:16:45 +0000563 return ep ? ep->data : NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000564 }
565
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200566 /* restricted capabilities before import */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200567 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
568 return (char *)(gd->env_buf);
569
570 return NULL;
wdenka68d3ed2002-10-11 08:38:32 +0000571}
572
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200573/*
574 * Look up variable from environment for restricted C runtime env.
575 */
Wolfgang Denk84b5e802011-07-29 14:42:18 +0200576int getenv_f(const char *name, char *buf, unsigned len)
wdenka68d3ed2002-10-11 08:38:32 +0000577{
578 int i, nxt;
579
Igor Grinbergd09b1782011-11-07 01:13:59 +0000580 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
wdenka68d3ed2002-10-11 08:38:32 +0000581 int val, n;
582
Macpaul Linf3c615b2011-04-26 16:16:45 +0000583 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
584 if (nxt >= CONFIG_ENV_SIZE)
585 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000586 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000587
588 val = envmatch((uchar *)name, i);
589 if (val < 0)
wdenka68d3ed2002-10-11 08:38:32 +0000590 continue;
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200591
wdenka68d3ed2002-10-11 08:38:32 +0000592 /* found; copy out */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000593 for (n = 0; n < len; ++n, ++buf) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000594 *buf = env_get_char(val++);
595 if (*buf == '\0')
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200596 return n;
597 }
598
599 if (n)
600 *--buf = '\0';
601
Wolfgang Denka02a8842011-05-04 10:29:49 +0000602 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
603 len, name);
Wolfgang Denk9ed4a952010-07-24 22:16:20 +0200604
605 return n;
wdenka68d3ed2002-10-11 08:38:32 +0000606 }
Igor Grinbergd09b1782011-11-07 01:13:59 +0000607
Macpaul Linf3c615b2011-04-26 16:16:45 +0000608 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000609}
610
Simon Glass4a9b4132011-10-14 13:25:18 +0000611/**
612 * Decode the integer value of an environment variable and return it.
613 *
614 * @param name Name of environemnt variable
615 * @param base Number base to use (normally 10, or 16 for hex)
616 * @param default_val Default value to return if the variable is not
617 * found
618 * @return the decoded value, or default_val if not found
619 */
620ulong getenv_ulong(const char *name, int base, ulong default_val)
621{
622 /*
623 * We can use getenv() here, even before relocation, since the
624 * environment variable value is an integer and thus short.
625 */
626 const char *str = getenv(name);
627
628 return str ? simple_strtoul(str, NULL, base) : default_val;
629}
630
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000631#ifndef CONFIG_SPL_BUILD
Mike Frysingerbdab39d2009-01-28 19:08:14 -0500632#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Macpaul Linf3c615b2011-04-26 16:16:45 +0000633int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenka68d3ed2002-10-11 08:38:32 +0000634{
Macpaul Linf3c615b2011-04-26 16:16:45 +0000635 printf("Saving Environment to %s...\n", env_name_spec);
wdenka68d3ed2002-10-11 08:38:32 +0000636
Macpaul Linf3c615b2011-04-26 16:16:45 +0000637 return saveenv() ? 1 : 0;
wdenka68d3ed2002-10-11 08:38:32 +0000638}
wdenk8bde7f72003-06-27 21:31:46 +0000639
Mike Frysingerba69dc22008-12-30 02:59:25 -0500640U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200641 saveenv, 1, 0, do_env_save,
Peter Tyser2fb26042009-01-27 18:03:12 -0600642 "save environment variables to persistent storage",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200643 ""
Mike Frysingerba69dc22008-12-30 02:59:25 -0500644);
wdenka68d3ed2002-10-11 08:38:32 +0000645#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000646#endif /* CONFIG_SPL_BUILD */
wdenka68d3ed2002-10-11 08:38:32 +0000647
648
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200649/*
wdenka68d3ed2002-10-11 08:38:32 +0000650 * Match a name / name=value pair
651 *
652 * s1 is either a simple 'name', or a 'name=value' pair.
653 * i2 is the environment index for a 'name2=value2' pair.
Igor Grinbergd09b1782011-11-07 01:13:59 +0000654 * If the names match, return the index for the value2, else -1.
wdenka68d3ed2002-10-11 08:38:32 +0000655 */
Macpaul Linf3c615b2011-04-26 16:16:45 +0000656int envmatch(uchar *s1, int i2)
wdenka68d3ed2002-10-11 08:38:32 +0000657{
wdenka68d3ed2002-10-11 08:38:32 +0000658 while (*s1 == env_get_char(i2++))
659 if (*s1++ == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000660 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000661
wdenka68d3ed2002-10-11 08:38:32 +0000662 if (*s1 == '\0' && env_get_char(i2-1) == '=')
Macpaul Linf3c615b2011-04-26 16:16:45 +0000663 return i2;
Igor Grinbergd09b1782011-11-07 01:13:59 +0000664
Macpaul Linf3c615b2011-04-26 16:16:45 +0000665 return -1;
wdenka68d3ed2002-10-11 08:38:32 +0000666}
wdenk8bde7f72003-06-27 21:31:46 +0000667
Ilya Yanok7ac2fe22012-09-18 00:22:50 +0000668#ifndef CONFIG_SPL_BUILD
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000669static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
Igor Grinbergd09b1782011-11-07 01:13:59 +0000670 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200671{
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000672 int all = 0, flag = 0;
Macpaul Linf3c615b2011-04-26 16:16:45 +0000673
Gerlando Falautob64b7c32012-08-24 00:11:41 +0000674 debug("Initial value for argc=%d\n", argc);
675 while (--argc > 0 && **++argv == '-') {
676 char *arg = *argv;
677
678 while (*++arg) {
679 switch (*arg) {
680 case 'a': /* default all */
681 all = 1;
682 break;
683 case 'f': /* force */
684 flag |= H_FORCE;
685 break;
686 default:
687 return cmd_usage(cmdtp);
688 }
689 }
690 }
691 debug("Final value for argc=%d\n", argc);
692 if (all && (argc == 0)) {
693 /* Reset the whole environment */
694 set_default_env("## Resetting to default environment\n");
695 return 0;
696 }
697 if (!all && (argc > 0)) {
698 /* Reset individual variables */
699 set_default_vars(argc, argv);
700 return 0;
701 }
702
703 return cmd_usage(cmdtp);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200704}
wdenk8bde7f72003-06-27 21:31:46 +0000705
Igor Grinbergd09b1782011-11-07 01:13:59 +0000706static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
707 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200708{
709 printf("Not implemented yet\n");
710 return 0;
711}
712
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500713#ifdef CONFIG_CMD_EXPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200714/*
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100715 * env export [-t | -b | -c] [-s size] addr [var ...]
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200716 * -t: export as text format; if size is given, data will be
717 * padded with '\0' bytes; if not, one terminating '\0'
718 * will be added (which is included in the "filesize"
719 * setting so you can for exmple copy this to flash and
720 * keep the termination).
721 * -b: export as binary format (name=value pairs separated by
722 * '\0', list end marked by double "\0\0")
723 * -c: export as checksum protected environment format as
724 * used for example by "saveenv" command
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100725 * -s size:
726 * size of output buffer
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200727 * addr: memory address where environment gets stored
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100728 * var... List of variable names that get included into the
729 * export. Without arguments, the whole environment gets
730 * exported.
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200731 *
732 * With "-c" and size is NOT given, then the export command will
733 * format the data as currently used for the persistent storage,
734 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
735 * prepend a valid CRC32 checksum and, in case of resundant
736 * environment, a "current" redundancy flag. If size is given, this
737 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
738 * checksum and redundancy flag will be inserted.
739 *
740 * With "-b" and "-t", always only the real data (including a
741 * terminating '\0' byte) will be written; here the optional size
742 * argument will be used to make sure not to overflow the user
743 * provided buffer; the command will abort if the size is not
744 * sufficient. Any remainign space will be '\0' padded.
745 *
746 * On successful return, the variable "filesize" will be set.
747 * Note that filesize includes the trailing/terminating '\0' byte(s).
748 *
749 * Usage szenario: create a text snapshot/backup of the current settings:
750 *
751 * => env export -t 100000
752 * => era ${backup_addr} +${filesize}
753 * => cp.b 100000 ${backup_addr} ${filesize}
754 *
755 * Re-import this snapshot, deleting all other settings:
756 *
757 * => env import -d -t ${backup_addr}
758 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000759static int do_env_export(cmd_tbl_t *cmdtp, int flag,
760 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200761{
762 char buf[32];
763 char *addr, *cmd, *res;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100764 size_t size = 0;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200765 ssize_t len;
766 env_t *envp;
767 char sep = '\n';
768 int chk = 0;
769 int fmt = 0;
770
771 cmd = *argv;
772
773 while (--argc > 0 && **++argv == '-') {
774 char *arg = *argv;
775 while (*++arg) {
776 switch (*arg) {
777 case 'b': /* raw binary format */
778 if (fmt++)
779 goto sep_err;
780 sep = '\0';
781 break;
782 case 'c': /* external checksum format */
783 if (fmt++)
784 goto sep_err;
785 sep = '\0';
786 chk = 1;
787 break;
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100788 case 's': /* size given */
789 if (--argc <= 0)
790 return cmd_usage(cmdtp);
791 size = simple_strtoul(*++argv, NULL, 16);
792 goto NXTARG;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200793 case 't': /* text format */
794 if (fmt++)
795 goto sep_err;
796 sep = '\n';
797 break;
798 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000799 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200800 }
801 }
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100802NXTARG: ;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200803 }
804
Macpaul Linf3c615b2011-04-26 16:16:45 +0000805 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000806 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200807
808 addr = (char *)simple_strtoul(argv[0], NULL, 16);
809
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100810 if (size)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200811 memset(addr, '\0', size);
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100812
813 argc--;
814 argv++;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200815
816 if (sep) { /* export as text file */
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100817 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200818 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000819 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200820 return 1;
821 }
Andreas Bießmann8c3aff52011-02-09 15:10:29 +0100822 sprintf(buf, "%zX", (size_t)len);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200823 setenv("filesize", buf);
824
825 return 0;
826 }
827
828 envp = (env_t *)addr;
829
830 if (chk) /* export as checksum protected block */
831 res = (char *)envp->data;
832 else /* export as raw binary data */
833 res = addr;
834
Wolfgang Denk37f2fe72011-11-06 22:49:44 +0100835 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200836 if (len < 0) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000837 error("Cannot export environment: errno = %d\n", errno);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200838 return 1;
839 }
840
841 if (chk) {
Igor Grinbergd09b1782011-11-07 01:13:59 +0000842 envp->crc = crc32(0, envp->data, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200843#ifdef CONFIG_ENV_ADDR_REDUND
844 envp->flags = ACTIVE_FLAG;
845#endif
846 }
Macpaul Linf3c615b2011-04-26 16:16:45 +0000847 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200848 setenv("filesize", buf);
849
850 return 0;
851
852sep_err:
Igor Grinbergd09b1782011-11-07 01:13:59 +0000853 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200854 return 1;
855}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500856#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200857
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500858#ifdef CONFIG_CMD_IMPORTENV
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200859/*
860 * env import [-d] [-t | -b | -c] addr [size]
861 * -d: delete existing environment before importing;
862 * otherwise overwrite / append to existion definitions
863 * -t: assume text format; either "size" must be given or the
864 * text data must be '\0' terminated
865 * -b: assume binary format ('\0' separated, "\0\0" terminated)
866 * -c: assume checksum protected environment format
867 * addr: memory address to read from
868 * size: length of input data; if missing, proper '\0'
869 * termination is mandatory
870 */
Igor Grinbergd09b1782011-11-07 01:13:59 +0000871static int do_env_import(cmd_tbl_t *cmdtp, int flag,
872 int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200873{
874 char *cmd, *addr;
875 char sep = '\n';
876 int chk = 0;
877 int fmt = 0;
878 int del = 0;
879 size_t size;
880
881 cmd = *argv;
882
883 while (--argc > 0 && **++argv == '-') {
884 char *arg = *argv;
885 while (*++arg) {
886 switch (*arg) {
887 case 'b': /* raw binary format */
888 if (fmt++)
889 goto sep_err;
890 sep = '\0';
891 break;
892 case 'c': /* external checksum format */
893 if (fmt++)
894 goto sep_err;
895 sep = '\0';
896 chk = 1;
897 break;
898 case 't': /* text format */
899 if (fmt++)
900 goto sep_err;
901 sep = '\n';
902 break;
903 case 'd':
904 del = 1;
905 break;
906 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000907 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200908 }
909 }
910 }
911
Macpaul Linf3c615b2011-04-26 16:16:45 +0000912 if (argc < 1)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000913 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200914
915 if (!fmt)
916 printf("## Warning: defaulting to text format\n");
917
918 addr = (char *)simple_strtoul(argv[0], NULL, 16);
919
920 if (argc == 2) {
921 size = simple_strtoul(argv[1], NULL, 16);
922 } else {
923 char *s = addr;
924
925 size = 0;
926
927 while (size < MAX_ENV_SIZE) {
928 if ((*s == sep) && (*(s+1) == '\0'))
929 break;
930 ++s;
931 ++size;
932 }
933 if (size == MAX_ENV_SIZE) {
934 printf("## Warning: Input data exceeds %d bytes"
935 " - truncated\n", MAX_ENV_SIZE);
936 }
Horst Kronstorferd3f80c72011-12-16 23:33:10 +0000937 size += 2;
Simon Glass79afc882011-11-04 06:42:36 +0000938 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200939 }
940
941 if (chk) {
942 uint32_t crc;
943 env_t *ep = (env_t *)addr;
944
945 size -= offsetof(env_t, data);
946 memcpy(&crc, &ep->crc, sizeof(crc));
947
948 if (crc32(0, ep->data, size) != crc) {
949 puts("## Error: bad CRC, import failed\n");
950 return 1;
951 }
952 addr = (char *)ep->data;
953 }
954
Gerlando Falauto348b1f12012-08-24 00:11:38 +0000955 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR,
Gerlando Falautoc5983592012-08-24 00:11:39 +0000956 0, NULL, 0 /* do_apply */) == 0) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200957 error("Environment import failed: errno = %d\n", errno);
958 return 1;
959 }
960 gd->flags |= GD_FLG_ENV_READY;
961
962 return 0;
963
964sep_err:
965 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
966 cmd);
967 return 1;
968}
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500969#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200970
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200971/*
972 * New command line interface: "env" command with subcommands
973 */
974static cmd_tbl_t cmd_env_sub[] = {
975#if defined(CONFIG_CMD_ASKENV)
976 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
977#endif
978 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
979 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
980#if defined(CONFIG_CMD_EDITENV)
981 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
982#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500983#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200984 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500985#endif
Kim Phillipsa000b792011-04-05 07:15:14 +0000986#if defined(CONFIG_CMD_GREPENV)
987 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
988#endif
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500989#if defined(CONFIG_CMD_IMPORTENV)
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200990 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
Mike Frysinger0c79cda2010-12-26 23:09:45 -0500991#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200992 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
993#if defined(CONFIG_CMD_RUN)
994 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
995#endif
996#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
997 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
998#endif
999 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
1000};
1001
Wolfgang Denk2e5167c2010-10-28 20:00:11 +02001002#if defined(CONFIG_NEEDS_MANUAL_RELOC)
Heiko Schocher60f7da12010-10-05 14:17:00 +02001003void env_reloc(void)
1004{
1005 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1006}
1007#endif
1008
Macpaul Linf3c615b2011-04-26 16:16:45 +00001009static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001010{
1011 cmd_tbl_t *cp;
1012
Thomas Weber5904da02010-11-24 13:07:52 +01001013 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001014 return CMD_RET_USAGE;
Thomas Weber5904da02010-11-24 13:07:52 +01001015
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001016 /* drop initial "env" arg */
1017 argc--;
1018 argv++;
1019
1020 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1021
1022 if (cp)
1023 return cp->cmd(cmdtp, flag, argc, argv);
1024
Simon Glass4c12eeb2011-12-10 08:44:01 +00001025 return CMD_RET_USAGE;
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001026}
1027
1028U_BOOT_CMD(
1029 env, CONFIG_SYS_MAXARGS, 1, do_env,
1030 "environment handling commands",
1031#if defined(CONFIG_CMD_ASKENV)
1032 "ask name [message] [size] - ask for environment variable\nenv "
1033#endif
Gerlando Falautob64b7c32012-08-24 00:11:41 +00001034 "default [-f] -a - [forcibly] reset default environment\n"
1035 "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001036#if defined(CONFIG_CMD_EDITENV)
1037 "env edit name - edit environment variable\n"
1038#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001039#if defined(CONFIG_CMD_EXPORTENV)
Wolfgang Denk37f2fe72011-11-06 22:49:44 +01001040 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001041#endif
Kim Phillipsa000b792011-04-05 07:15:14 +00001042#if defined(CONFIG_CMD_GREPENV)
1043 "env grep string [...] - search environment\n"
1044#endif
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001045#if defined(CONFIG_CMD_IMPORTENV)
Kim Phillipsa000b792011-04-05 07:15:14 +00001046 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
Benoît Thébaudeau4796bc42012-08-10 07:45:44 +00001047#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001048 "env print [name ...] - print environment\n"
1049#if defined(CONFIG_CMD_RUN)
1050 "env run var [...] - run commands in an environment variable\n"
1051#endif
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001052#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001053 "env save - save environment\n"
Horst Kronstorferd798a9b2011-12-10 02:25:19 +00001054#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001055 "env set [-f] name [arg ...]\n"
1056);
1057
1058/*
1059 * Old command line interface, kept for compatibility
1060 */
wdenk8bde7f72003-06-27 21:31:46 +00001061
Peter Tyser246c6922009-10-25 15:12:56 -05001062#if defined(CONFIG_CMD_EDITENV)
Mike Frysinger722b0612010-10-20 03:52:39 -04001063U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001064 editenv, 2, 0, do_env_edit,
Peter Tyser246c6922009-10-25 15:12:56 -05001065 "edit environment variable",
1066 "name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001067 " - edit environment variable 'name'",
1068 var_complete
Peter Tyser246c6922009-10-25 15:12:56 -05001069);
1070#endif
1071
Mike Frysinger722b0612010-10-20 03:52:39 -04001072U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001073 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
Peter Tyser2fb26042009-01-27 18:03:12 -06001074 "print environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001075 "\n - print values of all environment variables\n"
1076 "printenv name ...\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001077 " - print value of environment variable 'name'",
1078 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001079);
1080
Kim Phillipsa000b792011-04-05 07:15:14 +00001081#ifdef CONFIG_CMD_GREPENV
1082U_BOOT_CMD_COMPLETE(
1083 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1084 "search environment variables",
1085 "string ...\n"
1086 " - list environment name=value pairs matching 'string'",
1087 var_complete
1088);
1089#endif
1090
Mike Frysinger722b0612010-10-20 03:52:39 -04001091U_BOOT_CMD_COMPLETE(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001092 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
Peter Tyser2fb26042009-01-27 18:03:12 -06001093 "set environment variables",
wdenk8bde7f72003-06-27 21:31:46 +00001094 "name value ...\n"
1095 " - set environment variable 'name' to 'value ...'\n"
1096 "setenv name\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001097 " - delete environment variable 'name'",
1098 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001099);
1100
Jon Loeligerc76fe472007-07-08 18:02:23 -05001101#if defined(CONFIG_CMD_ASKENV)
wdenk8bde7f72003-06-27 21:31:46 +00001102
wdenk0d498392003-07-01 21:06:45 +00001103U_BOOT_CMD(
Wolfgang Denkea882ba2010-06-20 23:33:59 +02001104 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
Peter Tyser2fb26042009-01-27 18:03:12 -06001105 "get environment variables from stdin",
wdenk8bde7f72003-06-27 21:31:46 +00001106 "name [message] [size]\n"
1107 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1108 "askenv name\n"
1109 " - get environment variable 'name' from stdin\n"
1110 "askenv name size\n"
1111 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1112 "askenv name [message] size\n"
1113 " - display 'message' string and get environment variable 'name'"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001114 "from stdin (max 'size' chars)"
wdenk8bde7f72003-06-27 21:31:46 +00001115);
Jon Loeliger90253172007-07-10 11:02:44 -05001116#endif
wdenk8bde7f72003-06-27 21:31:46 +00001117
Jon Loeligerc76fe472007-07-08 18:02:23 -05001118#if defined(CONFIG_CMD_RUN)
Mike Frysinger722b0612010-10-20 03:52:39 -04001119U_BOOT_CMD_COMPLETE(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001120 run, CONFIG_SYS_MAXARGS, 1, do_run,
Peter Tyser2fb26042009-01-27 18:03:12 -06001121 "run commands in an environment variable",
wdenk8bde7f72003-06-27 21:31:46 +00001122 "var [...]\n"
Mike Frysinger722b0612010-10-20 03:52:39 -04001123 " - run the commands in the environment variable(s) 'var'",
1124 var_complete
wdenk8bde7f72003-06-27 21:31:46 +00001125);
Jon Loeliger90253172007-07-10 11:02:44 -05001126#endif
Ilya Yanok7ac2fe22012-09-18 00:22:50 +00001127#endif /* CONFIG_SPL_BUILD */