2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 /**************************************************************************
29 * Support for persistent environment data
31 * The "environment" is stored as a list of '\0' terminated
32 * "name=value" strings. The end of the list is marked by a double
33 * '\0'. New entries are always added at the end. Deleting an entry
34 * shifts the remaining entries to the front. Replacing an entry is a
35 * combination of deleting the old value and adding the new one.
37 * The environment is preceeded by a 32 bit CRC over the data part.
39 **************************************************************************
44 #include <environment.h>
47 #include <linux/stddef.h>
48 #include <asm/byteorder.h>
49 #if defined(CONFIG_CMD_NET)
53 DECLARE_GLOBAL_DATA_PTR;
55 #if !defined(CFG_ENV_IS_IN_NVRAM) && \
56 !defined(CFG_ENV_IS_IN_EEPROM) && \
57 !defined(CFG_ENV_IS_IN_FLASH) && \
58 !defined(CFG_ENV_IS_IN_DATAFLASH) && \
59 !defined(CFG_ENV_IS_IN_NAND) && \
60 !defined(CFG_ENV_IS_IN_ONENAND) && \
61 !defined(CFG_ENV_IS_IN_SPI_FLASH) && \
62 !defined(CFG_ENV_IS_NOWHERE)
63 # error Define one of CFG_ENV_IS_IN_{NVRAM|EEPROM|FLASH|DATAFLASH|ONENAND|SPI_FLASH|NOWHERE}
67 #define MK_STR(x) XMK_STR(x)
69 /************************************************************************
70 ************************************************************************/
73 * Table with supported baudrates (defined in config_xyz.h)
75 static const unsigned long baudrate_table[] = CFG_BAUDRATE_TABLE;
76 #define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
79 /************************************************************************
80 * Command interface: print one or all environment variables
83 int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
88 if (argc == 1) { /* Print all env variables */
89 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
90 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt)
93 putc(env_get_char(k));
97 puts ("\n ** Abort\n");
102 printf("\nEnvironment size: %d/%d bytes\n", i, ENV_SIZE);
107 for (i=1; i<argc; ++i) { /* print single env variables */
108 char *name = argv[i];
112 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
114 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
116 k = envmatch((uchar *)name, j);
123 putc(env_get_char(k++));
128 printf ("## Error: \"%s\" not defined\n", name);
135 /************************************************************************
136 * Set a new environment variable,
137 * or replace or delete an existing one.
139 * This function will ONLY work with a in-RAM copy of the environment
142 int _do_setenv (int flag, int argc, char *argv[])
146 uchar *env, *nxt = NULL;
150 uchar *env_data = env_get_addr(0);
152 if (!env_data) /* need copy in RAM */
157 if (strchr(name, '=')) {
158 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
163 * search if variable with this name already exists
166 for (env=env_data; *env; env=nxt+1) {
167 for (nxt=env; *nxt; ++nxt)
169 if ((oldval = envmatch((uchar *)name, env-env_data)) >= 0)
174 * Delete any existing definition
177 #ifndef CONFIG_ENV_OVERWRITE
180 * Ethernet Address and serial# can be set only once,
183 #ifdef CONFIG_HAS_UID
184 /* Allow serial# forced overwrite with 0xdeaf4add flag */
185 if ( ((strcmp (name, "serial#") == 0) && (flag != 0xdeaf4add)) ||
187 if ( (strcmp (name, "serial#") == 0) ||
189 ((strcmp (name, "ethaddr") == 0)
190 #if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
191 && (strcmp ((char *)env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
192 #endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
194 printf ("Can't overwrite \"%s\"\n", name);
199 /* Check for console redirection */
200 if (strcmp(name,"stdin") == 0) {
202 } else if (strcmp(name,"stdout") == 0) {
204 } else if (strcmp(name,"stderr") == 0) {
209 if (argc < 3) { /* Cannot delete it! */
210 printf("Can't delete \"%s\"\n", name);
214 /* Try assigning specified device */
215 if (console_assign (console, argv[2]) < 0)
218 #ifdef CONFIG_SERIAL_MULTI
219 if (serial_assign (argv[2]) < 0)
225 * Switch to new baudrate if new baudrate is supported
227 if (strcmp(argv[1],"baudrate") == 0) {
228 int baudrate = simple_strtoul(argv[2], NULL, 10);
230 for (i=0; i<N_BAUDRATES; ++i) {
231 if (baudrate == baudrate_table[i])
234 if (i == N_BAUDRATES) {
235 printf ("## Baudrate %d bps not supported\n",
239 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
242 gd->baudrate = baudrate;
243 #if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
244 gd->bd->bi_baudrate = baudrate;
255 if (*++nxt == '\0') {
256 if (env > env_data) {
264 if ((*env == '\0') && (*nxt == '\0'))
272 #ifdef CONFIG_NET_MULTI
273 if (strncmp(name, "eth", 3) == 0) {
275 int num = simple_strtoul(name+3, &end, 10);
277 if (strcmp(end, "addr") == 0) {
278 eth_set_enetaddr(num, argv[2]);
285 if ((argc < 3) || argv[2] == NULL) {
291 * Append new definition at the end
293 for (env=env_data; *env || *(env+1); ++env)
299 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
301 len = strlen(name) + 2;
302 /* add '=' for first arg, ' ' for all others */
303 for (i=2; i<argc; ++i) {
304 len += strlen(argv[i]) + 1;
306 if (len > (&env_data[ENV_SIZE]-env)) {
307 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
310 while ((*env = *name++) != '\0')
312 for (i=2; i<argc; ++i) {
315 *env = (i==2) ? '=' : ' ';
316 while ((*++env = *val++) != '\0')
320 /* end is marked with double '\0' */
327 * Some variables should be updated when the corresponding
328 * entry in the enviornment is changed
331 if (strcmp(argv[1],"ethaddr") == 0) {
332 char *s = argv[2]; /* always use only one arg */
334 for (i=0; i<6; ++i) {
335 bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0;
336 if (s) s = (*e) ? e+1 : e;
338 #ifdef CONFIG_NET_MULTI
339 eth_set_enetaddr(0, argv[2]);
344 if (strcmp(argv[1],"ipaddr") == 0) {
345 char *s = argv[2]; /* always use only one arg */
349 for (addr=0, i=0; i<4; ++i) {
350 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
352 addr |= (val & 0xFF);
353 if (s) s = (*e) ? e+1 : e;
355 bd->bi_ip_addr = htonl(addr);
358 if (strcmp(argv[1],"loadaddr") == 0) {
359 load_addr = simple_strtoul(argv[2], NULL, 16);
362 #if defined(CONFIG_CMD_NET)
363 if (strcmp(argv[1],"bootfile") == 0) {
364 copy_filename (BootFile, argv[2], sizeof(BootFile));
369 #ifdef CONFIG_AMIGAONEG3SE
370 if (strcmp(argv[1], "vga_fg_color") == 0 ||
371 strcmp(argv[1], "vga_bg_color") == 0 ) {
372 extern void video_set_color(unsigned char attr);
373 extern unsigned char video_get_attr(void);
375 video_set_color(video_get_attr());
378 #endif /* CONFIG_AMIGAONEG3SE */
383 void setenv (char *varname, char *varvalue)
385 char *argv[4] = { "setenv", varname, varvalue, NULL };
386 if (varvalue == NULL)
387 _do_setenv (0, 2, argv);
389 _do_setenv (0, 3, argv);
392 #ifdef CONFIG_HAS_UID
393 void forceenv (char *varname, char *varvalue)
395 char *argv[4] = { "forceenv", varname, varvalue, NULL };
396 _do_setenv (0xdeaf4add, 3, argv);
400 int do_setenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
403 printf ("Usage:\n%s\n", cmdtp->usage);
407 return _do_setenv (flag, argc, argv);
410 /************************************************************************
411 * Prompt for environment variable
414 #if defined(CONFIG_CMD_ASKENV)
415 int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
417 extern char console_buffer[CFG_CBSIZE];
418 char message[CFG_CBSIZE];
419 int size = CFG_CBSIZE - 1;
423 local_args[0] = argv[0];
424 local_args[1] = argv[1];
425 local_args[2] = NULL;
426 local_args[3] = NULL;
429 printf ("Usage:\n%s\n", cmdtp->usage);
432 /* Check the syntax */
435 printf ("Usage:\n%s\n", cmdtp->usage);
438 case 2: /* askenv envname */
439 sprintf (message, "Please enter '%s':", argv[1]);
442 case 3: /* askenv envname size */
443 sprintf (message, "Please enter '%s':", argv[1]);
444 size = simple_strtoul (argv[2], NULL, 10);
447 default: /* askenv envname message1 ... messagen size */
452 for (i = 2; i < argc - 1; i++) {
454 message[pos++] = ' ';
456 strcpy (message+pos, argv[i]);
457 pos += strlen(argv[i]);
460 size = simple_strtoul (argv[argc - 1], NULL, 10);
465 if (size >= CFG_CBSIZE)
466 size = CFG_CBSIZE - 1;
471 /* prompt for input */
472 len = readline (message);
475 console_buffer[size] = '\0';
478 if (console_buffer[0] != '\0') {
479 local_args[2] = console_buffer;
483 /* Continue calling setenv code */
484 return _do_setenv (flag, len, local_args);
488 /************************************************************************
489 * Look up variable from environment,
490 * return address of storage for that variable,
491 * or NULL if not found
494 char *getenv (char *name)
500 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
503 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
504 if (nxt >= CFG_ENV_SIZE) {
508 if ((val=envmatch((uchar *)name, i)) < 0)
510 return ((char *)env_get_addr(val));
516 int getenv_r (char *name, char *buf, unsigned len)
520 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
523 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
524 if (nxt >= CFG_ENV_SIZE) {
528 if ((val=envmatch((uchar *)name, i)) < 0)
530 /* found; copy out */
532 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
541 #if ((defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) \
542 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)) \
543 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_NAND)) \
544 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_ONENAND))) \
545 && !defined(CFG_ENV_IS_NOWHERE))
546 int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
548 extern char * env_name_spec;
550 printf ("Saving Environment to %s...\n", env_name_spec);
552 return (saveenv() ? 1 : 0);
558 /************************************************************************
559 * Match a name / name=value pair
561 * s1 is either a simple 'name', or a 'name=value' pair.
562 * i2 is the environment index for a 'name2=value2' pair.
563 * If the names match, return the index for the value2, else NULL.
566 int envmatch (uchar *s1, int i2)
569 while (*s1 == env_get_char(i2++))
572 if (*s1 == '\0' && env_get_char(i2-1) == '=')
578 /**************************************************/
581 printenv, CFG_MAXARGS, 1, do_printenv,
582 "printenv- print environment variables\n",
583 "\n - print values of all environment variables\n"
584 "printenv name ...\n"
585 " - print value of environment variable 'name'\n"
589 setenv, CFG_MAXARGS, 0, do_setenv,
590 "setenv - set environment variables\n",
592 " - set environment variable 'name' to 'value ...'\n"
594 " - delete environment variable 'name'\n"
597 #if ((defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) \
598 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)) \
599 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_NAND)) \
600 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_ONENAND))) \
601 && !defined(CFG_ENV_IS_NOWHERE))
603 saveenv, 1, 0, do_saveenv,
604 "saveenv - save environment variables to persistent storage\n",
610 #if defined(CONFIG_CMD_ASKENV)
613 askenv, CFG_MAXARGS, 1, do_askenv,
614 "askenv - get environment variables from stdin\n",
615 "name [message] [size]\n"
616 " - get environment variable 'name' from stdin (max 'size' chars)\n"
618 " - get environment variable 'name' from stdin\n"
620 " - get environment variable 'name' from stdin (max 'size' chars)\n"
621 "askenv name [message] size\n"
622 " - display 'message' string and get environment variable 'name'"
623 "from stdin (max 'size' chars)\n"
627 #if defined(CONFIG_CMD_RUN)
628 int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
630 run, CFG_MAXARGS, 1, do_run,
631 "run - run commands in an environment variable\n",
633 " - run the commands in the environment variable(s) 'var'\n"