blob: c404157acc621ab61419001d9249bdc72c021aaf [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 <cmd_nvedit.h>
47#include <linux/stddef.h>
48#include <asm/byteorder.h>
49#if (CONFIG_COMMANDS & CFG_CMD_NET)
50#include <net.h>
51#endif
52
53#if !defined(CFG_ENV_IS_IN_NVRAM) && !defined(CFG_ENV_IS_IN_EEPROM) && !defined(CFG_ENV_IS_IN_FLASH) && !defined(CFG_ENV_IS_NOWHERE)
54# error Define one of CFG_ENV_IS_IN_NVRAM, CFG_ENV_IS_IN_EEPROM, CFG_ENV_IS_IN_FLASH, CFG_ENV_IS_NOWHERE
55#endif
56
57#define XMK_STR(x) #x
58#define MK_STR(x) XMK_STR(x)
59
60/************************************************************************
61************************************************************************/
62
63/* Function that returns a character from the environment */
64extern uchar (*env_get_char)(int);
65
66/* Function that returns a pointer to a value from the environment */
67/* (Only memory version supported / needed). */
68extern uchar *env_get_addr(int);
69
70/* Function that updates CRC of the enironment */
71extern void env_crc_update (void);
72
73/************************************************************************
74************************************************************************/
75
76static int envmatch (uchar *, int);
77
78/*
79 * Table with supported baudrates (defined in config_xyz.h)
80 */
81static const unsigned long baudrate_table[] = CFG_BAUDRATE_TABLE;
82#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
83
84
85/************************************************************************
86 * Command interface: print one or all environment variables
87 */
88
89int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
90{
91 int i, j, k, nxt;
92 int rcode = 0;
93
94 if (argc == 1) { /* Print all env variables */
95 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
96 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt)
97 ;
98 for (k=i; k<nxt; ++k)
99 putc(env_get_char(k));
100 putc ('\n');
101
102 if (ctrlc()) {
103 puts ("\n ** Abort\n");
104 return 1;
105 }
106 }
107
108 printf("\nEnvironment size: %d/%d bytes\n", i, ENV_SIZE);
109
110 return 0;
111 }
112
113 for (i=1; i<argc; ++i) { /* print single env variables */
114 char *name = argv[i];
115
116 k = -1;
117
118 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
119
120 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
121 ;
122 k = envmatch(name, j);
123 if (k < 0) {
124 continue;
125 }
126 puts (name);
127 putc ('=');
128 while (k < nxt)
129 putc(env_get_char(k++));
130 putc ('\n');
131 break;
132 }
133 if (k < 0) {
134 printf ("## Error: \"%s\" not defined\n", name);
135 rcode ++;
136 }
137 }
138 return rcode;
139}
140
141/************************************************************************
142 * Set a new environment variable,
143 * or replace or delete an existing one.
144 *
145 * This function will ONLY work with a in-RAM copy of the environment
146 */
147
148int _do_setenv (int flag, int argc, char *argv[])
149{
150 DECLARE_GLOBAL_DATA_PTR;
151
152 int i, len, oldval;
153 int console = -1;
154 uchar *env, *nxt = NULL;
155 uchar *name;
156 bd_t *bd = gd->bd;
157
158 uchar *env_data = env_get_addr(0);
159
160 if (!env_data) /* need copy in RAM */
161 return 1;
162
163 name = argv[1];
164
165 /*
166 * search if variable with this name already exists
167 */
168 oldval = -1;
169 for (env=env_data; *env; env=nxt+1) {
170 for (nxt=env; *nxt; ++nxt)
171 ;
172 if ((oldval = envmatch(name, env-env_data)) >= 0)
173 break;
174 }
175
176 /*
177 * Delete any existing definition
178 */
179 if (oldval >= 0) {
180#ifndef CONFIG_ENV_OVERWRITE
181
182 /*
183 * Ethernet Address and serial# can be set only once
184 */
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
361#ifdef CONFIG_AMIGAONEG3SE
362 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}
533#endif
534
535
536/************************************************************************
537 * Match a name / name=value pair
538 *
539 * s1 is either a simple 'name', or a 'name=value' pair.
540 * i2 is the environment index for a 'name2=value2' pair.
541 * If the names match, return the index for the value2, else NULL.
542 */
543
544static int
545envmatch (uchar *s1, int i2)
546{
547
548 while (*s1 == env_get_char(i2++))
549 if (*s1++ == '=')
550 return(i2);
551 if (*s1 == '\0' && env_get_char(i2-1) == '=')
552 return(i2);
553 return(-1);
554}