blob: 53df582cfa1829bc188f20b6e50910e4d7bb77b2 [file] [log] [blame]
wdenka68d3ed2002-10-11 08:38:32 +00001/*
2 * (C) Copyright 2000-2002
3 * 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>
7
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
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.
15 *
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.
20 *
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,
24 * MA 02111-1307 USA
25 */
26
27/**************************************************************************
28 *
29 * Support for persistent environment data
30 *
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.
36 *
37 * The environment is preceeded by a 32 bit CRC over the data part.
38 *
39 **************************************************************************
40 */
41
42#include <common.h>
43#include <command.h>
44#include <environment.h>
wdenk2a3cb022002-11-05 21:01:48 +000045#include <watchdog.h>
wdenka68d3ed2002-10-11 08:38:32 +000046#include <linux/stddef.h>
47#include <asm/byteorder.h>
48#if (CONFIG_COMMANDS & CFG_CMD_NET)
49#include <net.h>
50#endif
51
52#if !defined(CFG_ENV_IS_IN_NVRAM) && !defined(CFG_ENV_IS_IN_EEPROM) && !defined(CFG_ENV_IS_IN_FLASH) && !defined(CFG_ENV_IS_NOWHERE)
53# error Define one of CFG_ENV_IS_IN_NVRAM, CFG_ENV_IS_IN_EEPROM, CFG_ENV_IS_IN_FLASH, CFG_ENV_IS_NOWHERE
54#endif
55
56#define XMK_STR(x) #x
57#define MK_STR(x) XMK_STR(x)
58
59/************************************************************************
60************************************************************************/
61
62/* Function that returns a character from the environment */
63extern uchar (*env_get_char)(int);
64
65/* Function that returns a pointer to a value from the environment */
66/* (Only memory version supported / needed). */
67extern uchar *env_get_addr(int);
68
69/* Function that updates CRC of the enironment */
70extern void env_crc_update (void);
71
72/************************************************************************
73************************************************************************/
74
75static int envmatch (uchar *, int);
76
77/*
78 * Table with supported baudrates (defined in config_xyz.h)
79 */
80static const unsigned long baudrate_table[] = CFG_BAUDRATE_TABLE;
81#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
82
83
84/************************************************************************
85 * Command interface: print one or all environment variables
86 */
87
88int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
89{
90 int i, j, k, nxt;
91 int rcode = 0;
92
93 if (argc == 1) { /* Print all env variables */
94 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
95 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt)
96 ;
97 for (k=i; k<nxt; ++k)
98 putc(env_get_char(k));
99 putc ('\n');
100
101 if (ctrlc()) {
102 puts ("\n ** Abort\n");
103 return 1;
104 }
105 }
106
107 printf("\nEnvironment size: %d/%d bytes\n", i, ENV_SIZE);
108
109 return 0;
110 }
111
112 for (i=1; i<argc; ++i) { /* print single env variables */
113 char *name = argv[i];
114
115 k = -1;
116
117 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
118
119 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
120 ;
121 k = envmatch(name, j);
122 if (k < 0) {
123 continue;
124 }
125 puts (name);
126 putc ('=');
127 while (k < nxt)
128 putc(env_get_char(k++));
129 putc ('\n');
130 break;
131 }
132 if (k < 0) {
133 printf ("## Error: \"%s\" not defined\n", name);
134 rcode ++;
135 }
136 }
137 return rcode;
138}
139
140/************************************************************************
141 * Set a new environment variable,
142 * or replace or delete an existing one.
143 *
144 * This function will ONLY work with a in-RAM copy of the environment
145 */
146
147int _do_setenv (int flag, int argc, char *argv[])
148{
149 DECLARE_GLOBAL_DATA_PTR;
150
151 int i, len, oldval;
152 int console = -1;
153 uchar *env, *nxt = NULL;
154 uchar *name;
155 bd_t *bd = gd->bd;
156
157 uchar *env_data = env_get_addr(0);
158
159 if (!env_data) /* need copy in RAM */
160 return 1;
161
162 name = argv[1];
163
164 /*
165 * search if variable with this name already exists
166 */
167 oldval = -1;
168 for (env=env_data; *env; env=nxt+1) {
169 for (nxt=env; *nxt; ++nxt)
170 ;
171 if ((oldval = envmatch(name, env-env_data)) >= 0)
172 break;
173 }
174
175 /*
176 * Delete any existing definition
177 */
178 if (oldval >= 0) {
179#ifndef CONFIG_ENV_OVERWRITE
180
181 /*
stroese05875972003-04-04 15:44:49 +0000182 * Ethernet Address and serial# can be set only once,
183 * ver is readonly.
wdenka68d3ed2002-10-11 08:38:32 +0000184 */
185 if ( (strcmp (name, "serial#") == 0) ||
186 ((strcmp (name, "ethaddr") == 0)
187#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
188 && (strcmp (env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
189#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
190 ) ) {
191 printf ("Can't overwrite \"%s\"\n", name);
192 return 1;
193 }
194#endif
195
196 /* Check for console redirection */
197 if (strcmp(name,"stdin") == 0) {
198 console = stdin;
199 } else if (strcmp(name,"stdout") == 0) {
200 console = stdout;
201 } else if (strcmp(name,"stderr") == 0) {
202 console = stderr;
203 }
204
205 if (console != -1) {
206 if (argc < 3) { /* Cannot delete it! */
207 printf("Can't delete \"%s\"\n", name);
208 return 1;
209 }
210
211 /* Try assigning specified device */
212 if (console_assign (console, argv[2]) < 0)
213 return 1;
214 }
215
216 /*
217 * Switch to new baudrate if new baudrate is supported
218 */
219 if (strcmp(argv[1],"baudrate") == 0) {
220 int baudrate = simple_strtoul(argv[2], NULL, 10);
221 int i;
222 for (i=0; i<N_BAUDRATES; ++i) {
223 if (baudrate == baudrate_table[i])
224 break;
225 }
226 if (i == N_BAUDRATES) {
227 printf ("## Baudrate %d bps not supported\n",
228 baudrate);
229 return 1;
230 }
231 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
232 baudrate);
233 udelay(50000);
234 gd->baudrate = baudrate;
wdenkd0fb80c2003-01-11 09:48:40 +0000235#ifdef CONFIG_PPC
236 gd->bd->bi_baudrate = baudrate;
237#endif
238
wdenka68d3ed2002-10-11 08:38:32 +0000239 serial_setbrg ();
240 udelay(50000);
241 for (;;) {
242 if (getc() == '\r')
243 break;
244 }
245 }
246
247 if (*++nxt == '\0') {
248 if (env > env_data) {
249 env--;
250 } else {
251 *env = '\0';
252 }
253 } else {
254 for (;;) {
255 *env = *nxt++;
256 if ((*env == '\0') && (*nxt == '\0'))
257 break;
258 ++env;
259 }
260 }
261 *++env = '\0';
262 }
263
264#ifdef CONFIG_NET_MULTI
265 if (strncmp(name, "eth", 3) == 0) {
266 char *end;
267 int num = simple_strtoul(name+3, &end, 10);
268
269 if (strcmp(end, "addr") == 0) {
270 eth_set_enetaddr(num, argv[2]);
271 }
272 }
273#endif
274
275
276 /* Delete only ? */
277 if ((argc < 3) || argv[2] == NULL) {
278 env_crc_update ();
279 return 0;
280 }
281
282 /*
283 * Append new definition at the end
284 */
285 for (env=env_data; *env || *(env+1); ++env)
286 ;
287 if (env > env_data)
288 ++env;
289 /*
290 * Overflow when:
291 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
292 */
293 len = strlen(name) + 2;
294 /* add '=' for first arg, ' ' for all others */
295 for (i=2; i<argc; ++i) {
296 len += strlen(argv[i]) + 1;
297 }
298 if (len > (&env_data[ENV_SIZE]-env)) {
299 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
300 return 1;
301 }
302 while ((*env = *name++) != '\0')
303 env++;
304 for (i=2; i<argc; ++i) {
305 char *val = argv[i];
306
307 *env = (i==2) ? '=' : ' ';
308 while ((*++env = *val++) != '\0')
309 ;
310 }
311
312 /* end is marked with double '\0' */
313 *++env = '\0';
314
315 /* Update CRC */
316 env_crc_update ();
317
318 /*
319 * Some variables should be updated when the corresponding
320 * entry in the enviornment is changed
321 */
322
323 if (strcmp(argv[1],"ethaddr") == 0) {
324 char *s = argv[2]; /* always use only one arg */
325 char *e;
326 for (i=0; i<6; ++i) {
327 bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0;
328 if (s) s = (*e) ? e+1 : e;
329 }
330#ifdef CONFIG_NET_MULTI
331 eth_set_enetaddr(0, argv[2]);
332#endif
333 return 0;
334 }
335
336 if (strcmp(argv[1],"ipaddr") == 0) {
337 char *s = argv[2]; /* always use only one arg */
338 char *e;
339 unsigned long addr;
340 bd->bi_ip_addr = 0;
341 for (addr=0, i=0; i<4; ++i) {
342 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
343 addr <<= 8;
344 addr |= (val & 0xFF);
345 if (s) s = (*e) ? e+1 : e;
346 }
347 bd->bi_ip_addr = htonl(addr);
348 return 0;
349 }
350 if (strcmp(argv[1],"loadaddr") == 0) {
351 load_addr = simple_strtoul(argv[2], NULL, 16);
352 return 0;
353 }
354#if (CONFIG_COMMANDS & CFG_CMD_NET)
355 if (strcmp(argv[1],"bootfile") == 0) {
356 copy_filename (BootFile, argv[2], sizeof(BootFile));
357 return 0;
358 }
359#endif /* CFG_CMD_NET */
wdenkc7de8292002-11-19 11:04:11 +0000360
stroese05875972003-04-04 15:44:49 +0000361#ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000362 if (strcmp(argv[1], "vga_fg_color") == 0 ||
363 strcmp(argv[1], "vga_bg_color") == 0 ) {
364 extern void video_set_color(unsigned char attr);
365 extern unsigned char video_get_attr(void);
366
367 video_set_color(video_get_attr());
368 return 0;
369 }
370#endif /* CONFIG_AMIGAONEG3SE */
371
wdenka68d3ed2002-10-11 08:38:32 +0000372 return 0;
373}
374
375void setenv (char *varname, char *varvalue)
376{
377 char *argv[4] = { "setenv", varname, varvalue, NULL };
378 _do_setenv (0, 3, argv);
379}
380
381int do_setenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
382{
383 if (argc < 2) {
384 printf ("Usage:\n%s\n", cmdtp->usage);
385 return 1;
386 }
387
388 return _do_setenv (flag, argc, argv);
389}
390
391/************************************************************************
392 * Prompt for environment variable
393 */
394
395#if (CONFIG_COMMANDS & CFG_CMD_ASKENV)
396int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
397{
398 extern char console_buffer[CFG_CBSIZE];
399 char message[CFG_CBSIZE];
400 int size = CFG_CBSIZE - 1;
401 int len;
402 char *local_args[4];
403
404 local_args[0] = argv[0];
405 local_args[1] = argv[1];
406 local_args[2] = NULL;
407 local_args[3] = NULL;
408
409 if (argc < 2) {
410 printf ("Usage:\n%s\n", cmdtp->usage);
411 return 1;
412 }
413 /* Check the syntax */
414 switch (argc) {
415 case 1:
416 printf ("Usage:\n%s\n", cmdtp->usage);
417 return 1;
418
419 case 2: /* askenv envname */
420 sprintf (message, "Please enter '%s':", argv[1]);
421 break;
422
423 case 3: /* askenv envname size */
424 sprintf (message, "Please enter '%s':", argv[1]);
425 size = simple_strtoul (argv[2], NULL, 10);
426 break;
427
428 default: /* askenv envname message1 ... messagen size */
429 {
430 int i;
431 int pos = 0;
432
433 for (i = 2; i < argc - 1; i++) {
434 if (pos) {
435 message[pos++] = ' ';
436 }
437 strcpy (message+pos, argv[i]);
438 pos += strlen(argv[i]);
439 }
440 message[pos] = '\0';
441 size = simple_strtoul (argv[argc - 1], NULL, 10);
442 }
443 break;
444 }
445
446 if (size >= CFG_CBSIZE)
447 size = CFG_CBSIZE - 1;
448
449 if (size <= 0)
450 return 1;
451
452 /* prompt for input */
453 len = readline (message);
454
455 if (size < len)
456 console_buffer[size] = '\0';
457
458 len = 2;
459 if (console_buffer[0] != '\0') {
460 local_args[2] = console_buffer;
461 len = 3;
462 }
463
464 /* Continue calling setenv code */
465 return _do_setenv (flag, len, local_args);
466}
467#endif /* CFG_CMD_ASKENV */
468
469/************************************************************************
470 * Look up variable from environment,
471 * return address of storage for that variable,
472 * or NULL if not found
473 */
474
475char *getenv (uchar *name)
476{
477 int i, nxt;
478
wdenk2a3cb022002-11-05 21:01:48 +0000479 WATCHDOG_RESET();
480
wdenka68d3ed2002-10-11 08:38:32 +0000481 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
482 int val;
483
484 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
485 if (nxt >= CFG_ENV_SIZE) {
486 return (NULL);
487 }
488 }
489 if ((val=envmatch(name, i)) < 0)
490 continue;
491 return (env_get_addr(val));
492 }
493
494 return (NULL);
495}
496
497int getenv_r (uchar *name, uchar *buf, unsigned len)
498{
499 int i, nxt;
500
501 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
502 int val, n;
503
504 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
505 if (nxt >= CFG_ENV_SIZE) {
506 return (-1);
507 }
508 }
509 if ((val=envmatch(name, i)) < 0)
510 continue;
511 /* found; copy out */
512 n = 0;
513 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
514 ;
515 if (len == n)
516 *buf = '\0';
517 return (n);
518 }
519 return (-1);
520}
521
522#if defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) || \
523 ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_FLASH)) == \
524 (CFG_CMD_ENV|CFG_CMD_FLASH))
525int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
526{
527 extern char * env_name_spec;
528
529 printf ("Saving Environment to %s...\n", env_name_spec);
530
531 return (saveenv() ? 1 : 0);
532}
wdenk8bde7f72003-06-27 21:31:46 +0000533
534
wdenka68d3ed2002-10-11 08:38:32 +0000535#endif
536
537
538/************************************************************************
539 * Match a name / name=value pair
540 *
541 * s1 is either a simple 'name', or a 'name=value' pair.
542 * i2 is the environment index for a 'name2=value2' pair.
543 * If the names match, return the index for the value2, else NULL.
544 */
545
546static int
547envmatch (uchar *s1, int i2)
548{
549
550 while (*s1 == env_get_char(i2++))
551 if (*s1++ == '=')
552 return(i2);
553 if (*s1 == '\0' && env_get_char(i2-1) == '=')
554 return(i2);
555 return(-1);
556}
wdenk8bde7f72003-06-27 21:31:46 +0000557
558
559/**************************************************/
560
wdenk0d498392003-07-01 21:06:45 +0000561U_BOOT_CMD(
562 printenv, CFG_MAXARGS, 1, do_printenv,
wdenk8bde7f72003-06-27 21:31:46 +0000563 "printenv- print environment variables\n",
564 "\n - print values of all environment variables\n"
565 "printenv name ...\n"
566 " - print value of environment variable 'name'\n"
567);
568
wdenk0d498392003-07-01 21:06:45 +0000569U_BOOT_CMD(
570 setenv, CFG_MAXARGS, 0, do_setenv,
wdenk8bde7f72003-06-27 21:31:46 +0000571 "setenv - set environment variables\n",
572 "name value ...\n"
573 " - set environment variable 'name' to 'value ...'\n"
574 "setenv name\n"
575 " - delete environment variable 'name'\n"
576);
577
578#if ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_FLASH)) == (CFG_CMD_ENV|CFG_CMD_FLASH))
579
wdenk0d498392003-07-01 21:06:45 +0000580U_BOOT_CMD(
581 saveenv, 1, 0, do_saveenv,
wdenk8bde7f72003-06-27 21:31:46 +0000582 "saveenv - save environment variables to persistent storage\n",
583 NULL
584);
585
586#endif /* CFG_CMD_ENV */
587
588#if (CONFIG_COMMANDS & CFG_CMD_ASKENV)
589
wdenk0d498392003-07-01 21:06:45 +0000590U_BOOT_CMD(
591 askenv, CFG_MAXARGS, 1, do_askenv,
wdenk8bde7f72003-06-27 21:31:46 +0000592 "askenv - get environment variables from stdin\n",
593 "name [message] [size]\n"
594 " - get environment variable 'name' from stdin (max 'size' chars)\n"
595 "askenv name\n"
596 " - get environment variable 'name' from stdin\n"
597 "askenv name size\n"
598 " - get environment variable 'name' from stdin (max 'size' chars)\n"
599 "askenv name [message] size\n"
600 " - display 'message' string and get environment variable 'name'"
601 "from stdin (max 'size' chars)\n"
602);
603#endif /* CFG_CMD_ASKENV */
604
605#if (CONFIG_COMMANDS & CFG_CMD_RUN)
606int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk0d498392003-07-01 21:06:45 +0000607U_BOOT_CMD(
608 run, CFG_MAXARGS, 1, do_run,
wdenk8bde7f72003-06-27 21:31:46 +0000609 "run - run commands in an environment variable\n",
610 "var [...]\n"
611 " - run the commands in the environment variable(s) 'var'\n"
612);
613#endif /* CFG_CMD_RUN */