]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_nvedit.c
ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
[people/ms/u-boot.git] / common / cmd_nvedit.c
CommitLineData
a68d3ed0
WD
1/*
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>
2a3cb020 45#include <watchdog.h>
281e00a3 46#include <serial.h>
a68d3ed0
WD
47#include <linux/stddef.h>
48#include <asm/byteorder.h>
c76fe474 49#if defined(CONFIG_CMD_NET)
a68d3ed0
WD
50#include <net.h>
51#endif
52
d87080b7
WD
53DECLARE_GLOBAL_DATA_PTR;
54
5779d8d9
WD
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) && \
13a5695b 59 !defined(CFG_ENV_IS_IN_NAND) && \
d7e8ce10 60 !defined(CFG_ENV_IS_IN_ONENAND) && \
8c66497e 61 !defined(CFG_ENV_IS_IN_SPI_FLASH) && \
5779d8d9 62 !defined(CFG_ENV_IS_NOWHERE)
8c66497e 63# error Define one of CFG_ENV_IS_IN_{NVRAM|EEPROM|FLASH|DATAFLASH|ONENAND|SPI_FLASH|NOWHERE}
a68d3ed0
WD
64#endif
65
66#define XMK_STR(x) #x
67#define MK_STR(x) XMK_STR(x)
68
69/************************************************************************
70************************************************************************/
71
a68d3ed0
WD
72/*
73 * Table with supported baudrates (defined in config_xyz.h)
74 */
75static const unsigned long baudrate_table[] = CFG_BAUDRATE_TABLE;
76#define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
77
78
79/************************************************************************
80 * Command interface: print one or all environment variables
81 */
82
83int do_printenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
84{
85 int i, j, k, nxt;
86 int rcode = 0;
87
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)
91 ;
92 for (k=i; k<nxt; ++k)
93 putc(env_get_char(k));
94 putc ('\n');
95
96 if (ctrlc()) {
97 puts ("\n ** Abort\n");
98 return 1;
99 }
100 }
101
0a5676be 102 printf("\nEnvironment size: %d/%ld bytes\n", i, ENV_SIZE);
a68d3ed0
WD
103
104 return 0;
105 }
106
107 for (i=1; i<argc; ++i) { /* print single env variables */
108 char *name = argv[i];
109
110 k = -1;
111
112 for (j=0; env_get_char(j) != '\0'; j=nxt+1) {
113
114 for (nxt=j; env_get_char(nxt) != '\0'; ++nxt)
115 ;
77ddac94 116 k = envmatch((uchar *)name, j);
a68d3ed0
WD
117 if (k < 0) {
118 continue;
119 }
120 puts (name);
121 putc ('=');
122 while (k < nxt)
123 putc(env_get_char(k++));
124 putc ('\n');
125 break;
126 }
127 if (k < 0) {
128 printf ("## Error: \"%s\" not defined\n", name);
129 rcode ++;
130 }
131 }
132 return rcode;
133}
134
135/************************************************************************
136 * Set a new environment variable,
137 * or replace or delete an existing one.
138 *
139 * This function will ONLY work with a in-RAM copy of the environment
140 */
141
142int _do_setenv (int flag, int argc, char *argv[])
143{
a68d3ed0
WD
144 int i, len, oldval;
145 int console = -1;
146 uchar *env, *nxt = NULL;
77ddac94 147 char *name;
a68d3ed0
WD
148 bd_t *bd = gd->bd;
149
150 uchar *env_data = env_get_addr(0);
151
152 if (!env_data) /* need copy in RAM */
153 return 1;
154
155 name = argv[1];
156
471a7be7
WD
157 if (strchr(name, '=')) {
158 printf ("## Error: illegal character '=' in variable name \"%s\"\n", name);
159 return 1;
160 }
161
a68d3ed0
WD
162 /*
163 * search if variable with this name already exists
164 */
165 oldval = -1;
166 for (env=env_data; *env; env=nxt+1) {
167 for (nxt=env; *nxt; ++nxt)
168 ;
77ddac94 169 if ((oldval = envmatch((uchar *)name, env-env_data)) >= 0)
a68d3ed0
WD
170 break;
171 }
172
173 /*
174 * Delete any existing definition
175 */
176 if (oldval >= 0) {
177#ifndef CONFIG_ENV_OVERWRITE
178
179 /*
0587597c
SR
180 * Ethernet Address and serial# can be set only once,
181 * ver is readonly.
a68d3ed0 182 */
f6a69559 183 if (
c74b2108
SK
184#ifdef CONFIG_HAS_UID
185 /* Allow serial# forced overwrite with 0xdeaf4add flag */
f6a69559 186 ((strcmp (name, "serial#") == 0) && (flag != 0xdeaf4add)) ||
c74b2108 187#else
f6a69559 188 (strcmp (name, "serial#") == 0) ||
c74b2108 189#endif
a68d3ed0
WD
190 ((strcmp (name, "ethaddr") == 0)
191#if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
77ddac94 192 && (strcmp ((char *)env_get_addr(oldval),MK_STR(CONFIG_ETHADDR)) != 0)
a68d3ed0
WD
193#endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
194 ) ) {
195 printf ("Can't overwrite \"%s\"\n", name);
196 return 1;
197 }
198#endif
199
200 /* Check for console redirection */
201 if (strcmp(name,"stdin") == 0) {
202 console = stdin;
203 } else if (strcmp(name,"stdout") == 0) {
204 console = stdout;
205 } else if (strcmp(name,"stderr") == 0) {
206 console = stderr;
207 }
208
209 if (console != -1) {
210 if (argc < 3) { /* Cannot delete it! */
211 printf("Can't delete \"%s\"\n", name);
212 return 1;
213 }
214
215 /* Try assigning specified device */
216 if (console_assign (console, argv[2]) < 0)
217 return 1;
281e00a3
WD
218
219#ifdef CONFIG_SERIAL_MULTI
220 if (serial_assign (argv[2]) < 0)
221 return 1;
222#endif
a68d3ed0
WD
223 }
224
225 /*
226 * Switch to new baudrate if new baudrate is supported
227 */
228 if (strcmp(argv[1],"baudrate") == 0) {
229 int baudrate = simple_strtoul(argv[2], NULL, 10);
230 int i;
231 for (i=0; i<N_BAUDRATES; ++i) {
232 if (baudrate == baudrate_table[i])
233 break;
234 }
235 if (i == N_BAUDRATES) {
236 printf ("## Baudrate %d bps not supported\n",
237 baudrate);
238 return 1;
239 }
240 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
241 baudrate);
242 udelay(50000);
243 gd->baudrate = baudrate;
c84bad0e 244#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
d0fb80c3
WD
245 gd->bd->bi_baudrate = baudrate;
246#endif
247
a68d3ed0
WD
248 serial_setbrg ();
249 udelay(50000);
250 for (;;) {
251 if (getc() == '\r')
252 break;
253 }
254 }
255
256 if (*++nxt == '\0') {
257 if (env > env_data) {
258 env--;
259 } else {
260 *env = '\0';
261 }
262 } else {
263 for (;;) {
264 *env = *nxt++;
265 if ((*env == '\0') && (*nxt == '\0'))
266 break;
267 ++env;
268 }
269 }
270 *++env = '\0';
271 }
272
273#ifdef CONFIG_NET_MULTI
274 if (strncmp(name, "eth", 3) == 0) {
275 char *end;
276 int num = simple_strtoul(name+3, &end, 10);
277
278 if (strcmp(end, "addr") == 0) {
279 eth_set_enetaddr(num, argv[2]);
280 }
281 }
282#endif
283
284
285 /* Delete only ? */
286 if ((argc < 3) || argv[2] == NULL) {
287 env_crc_update ();
288 return 0;
289 }
290
291 /*
292 * Append new definition at the end
293 */
294 for (env=env_data; *env || *(env+1); ++env)
295 ;
296 if (env > env_data)
297 ++env;
298 /*
299 * Overflow when:
300 * "name" + "=" + "val" +"\0\0" > ENV_SIZE - (env-env_data)
301 */
302 len = strlen(name) + 2;
303 /* add '=' for first arg, ' ' for all others */
304 for (i=2; i<argc; ++i) {
305 len += strlen(argv[i]) + 1;
306 }
307 if (len > (&env_data[ENV_SIZE]-env)) {
308 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
309 return 1;
310 }
311 while ((*env = *name++) != '\0')
312 env++;
313 for (i=2; i<argc; ++i) {
314 char *val = argv[i];
315
316 *env = (i==2) ? '=' : ' ';
317 while ((*++env = *val++) != '\0')
318 ;
319 }
320
321 /* end is marked with double '\0' */
322 *++env = '\0';
323
324 /* Update CRC */
325 env_crc_update ();
326
327 /*
328 * Some variables should be updated when the corresponding
329 * entry in the enviornment is changed
330 */
331
332 if (strcmp(argv[1],"ethaddr") == 0) {
333 char *s = argv[2]; /* always use only one arg */
334 char *e;
335 for (i=0; i<6; ++i) {
336 bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0;
337 if (s) s = (*e) ? e+1 : e;
338 }
339#ifdef CONFIG_NET_MULTI
340 eth_set_enetaddr(0, argv[2]);
341#endif
342 return 0;
343 }
344
345 if (strcmp(argv[1],"ipaddr") == 0) {
346 char *s = argv[2]; /* always use only one arg */
347 char *e;
348 unsigned long addr;
349 bd->bi_ip_addr = 0;
350 for (addr=0, i=0; i<4; ++i) {
351 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
352 addr <<= 8;
353 addr |= (val & 0xFF);
354 if (s) s = (*e) ? e+1 : e;
355 }
356 bd->bi_ip_addr = htonl(addr);
357 return 0;
358 }
359 if (strcmp(argv[1],"loadaddr") == 0) {
360 load_addr = simple_strtoul(argv[2], NULL, 16);
361 return 0;
362 }
c76fe474 363#if defined(CONFIG_CMD_NET)
a68d3ed0
WD
364 if (strcmp(argv[1],"bootfile") == 0) {
365 copy_filename (BootFile, argv[2], sizeof(BootFile));
366 return 0;
367 }
90253178 368#endif
c7de829c 369
0587597c 370#ifdef CONFIG_AMIGAONEG3SE
c7de829c
WD
371 if (strcmp(argv[1], "vga_fg_color") == 0 ||
372 strcmp(argv[1], "vga_bg_color") == 0 ) {
373 extern void video_set_color(unsigned char attr);
374 extern unsigned char video_get_attr(void);
375
376 video_set_color(video_get_attr());
377 return 0;
378 }
379#endif /* CONFIG_AMIGAONEG3SE */
380
a68d3ed0
WD
381 return 0;
382}
383
75678c80 384int setenv (char *varname, char *varvalue)
a68d3ed0
WD
385{
386 char *argv[4] = { "setenv", varname, varvalue, NULL };
9ffd451a 387 if (varvalue == NULL)
75678c80 388 return _do_setenv (0, 2, argv);
9ffd451a 389 else
75678c80 390 return _do_setenv (0, 3, argv);
a68d3ed0
WD
391}
392
c74b2108
SK
393#ifdef CONFIG_HAS_UID
394void forceenv (char *varname, char *varvalue)
395{
396 char *argv[4] = { "forceenv", varname, varvalue, NULL };
397 _do_setenv (0xdeaf4add, 3, argv);
398}
399#endif
400
401int do_setenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
a68d3ed0
WD
402{
403 if (argc < 2) {
404 printf ("Usage:\n%s\n", cmdtp->usage);
405 return 1;
406 }
407
408 return _do_setenv (flag, argc, argv);
409}
410
411/************************************************************************
412 * Prompt for environment variable
413 */
414
c76fe474 415#if defined(CONFIG_CMD_ASKENV)
a68d3ed0
WD
416int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
417{
418 extern char console_buffer[CFG_CBSIZE];
419 char message[CFG_CBSIZE];
420 int size = CFG_CBSIZE - 1;
421 int len;
422 char *local_args[4];
423
424 local_args[0] = argv[0];
425 local_args[1] = argv[1];
426 local_args[2] = NULL;
427 local_args[3] = NULL;
428
429 if (argc < 2) {
430 printf ("Usage:\n%s\n", cmdtp->usage);
431 return 1;
432 }
433 /* Check the syntax */
434 switch (argc) {
435 case 1:
436 printf ("Usage:\n%s\n", cmdtp->usage);
437 return 1;
438
439 case 2: /* askenv envname */
440 sprintf (message, "Please enter '%s':", argv[1]);
441 break;
442
443 case 3: /* askenv envname size */
444 sprintf (message, "Please enter '%s':", argv[1]);
445 size = simple_strtoul (argv[2], NULL, 10);
446 break;
447
448 default: /* askenv envname message1 ... messagen size */
449 {
450 int i;
451 int pos = 0;
452
453 for (i = 2; i < argc - 1; i++) {
454 if (pos) {
455 message[pos++] = ' ';
456 }
457 strcpy (message+pos, argv[i]);
458 pos += strlen(argv[i]);
459 }
460 message[pos] = '\0';
461 size = simple_strtoul (argv[argc - 1], NULL, 10);
462 }
463 break;
464 }
465
466 if (size >= CFG_CBSIZE)
467 size = CFG_CBSIZE - 1;
468
469 if (size <= 0)
470 return 1;
471
472 /* prompt for input */
473 len = readline (message);
474
475 if (size < len)
476 console_buffer[size] = '\0';
477
478 len = 2;
479 if (console_buffer[0] != '\0') {
480 local_args[2] = console_buffer;
481 len = 3;
482 }
483
484 /* Continue calling setenv code */
485 return _do_setenv (flag, len, local_args);
486}
90253178 487#endif
a68d3ed0
WD
488
489/************************************************************************
490 * Look up variable from environment,
491 * return address of storage for that variable,
492 * or NULL if not found
493 */
494
77ddac94 495char *getenv (char *name)
a68d3ed0
WD
496{
497 int i, nxt;
498
2a3cb020
WD
499 WATCHDOG_RESET();
500
a68d3ed0
WD
501 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
502 int val;
503
504 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
505 if (nxt >= CFG_ENV_SIZE) {
506 return (NULL);
507 }
508 }
77ddac94 509 if ((val=envmatch((uchar *)name, i)) < 0)
a68d3ed0 510 continue;
77ddac94 511 return ((char *)env_get_addr(val));
a68d3ed0
WD
512 }
513
514 return (NULL);
515}
516
77ddac94 517int getenv_r (char *name, char *buf, unsigned len)
a68d3ed0
WD
518{
519 int i, nxt;
520
521 for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
522 int val, n;
523
524 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
525 if (nxt >= CFG_ENV_SIZE) {
526 return (-1);
527 }
528 }
77ddac94 529 if ((val=envmatch((uchar *)name, i)) < 0)
a68d3ed0
WD
530 continue;
531 /* found; copy out */
532 n = 0;
533 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
534 ;
535 if (len == n)
536 *buf = '\0';
537 return (n);
538 }
539 return (-1);
540}
541
00b48a48 542#if ((defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) \
65c450b4 543 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)) \
d7e8ce10 544 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_NAND)) \
00b48a48
JCPV
545 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_ONENAND))) \
546 && !defined(CFG_ENV_IS_NOWHERE))
a68d3ed0
WD
547int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
548{
549 extern char * env_name_spec;
550
551 printf ("Saving Environment to %s...\n", env_name_spec);
552
553 return (saveenv() ? 1 : 0);
554}
8bde7f77 555
a68d3ed0
WD
556#endif
557
558
559/************************************************************************
560 * Match a name / name=value pair
561 *
562 * s1 is either a simple 'name', or a 'name=value' pair.
563 * i2 is the environment index for a 'name2=value2' pair.
564 * If the names match, return the index for the value2, else NULL.
565 */
566
26a41790 567int envmatch (uchar *s1, int i2)
a68d3ed0
WD
568{
569
570 while (*s1 == env_get_char(i2++))
571 if (*s1++ == '=')
572 return(i2);
573 if (*s1 == '\0' && env_get_char(i2-1) == '=')
574 return(i2);
575 return(-1);
576}
8bde7f77
WD
577
578
579/**************************************************/
580
0d498393
WD
581U_BOOT_CMD(
582 printenv, CFG_MAXARGS, 1, do_printenv,
8bde7f77
WD
583 "printenv- print environment variables\n",
584 "\n - print values of all environment variables\n"
585 "printenv name ...\n"
586 " - print value of environment variable 'name'\n"
587);
588
0d498393
WD
589U_BOOT_CMD(
590 setenv, CFG_MAXARGS, 0, do_setenv,
8bde7f77
WD
591 "setenv - set environment variables\n",
592 "name value ...\n"
593 " - set environment variable 'name' to 'value ...'\n"
594 "setenv name\n"
595 " - delete environment variable 'name'\n"
596);
597
00b48a48 598#if ((defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) \
65c450b4 599 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_FLASH)) \
d7e8ce10 600 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_NAND)) \
00b48a48
JCPV
601 || (defined(CONFIG_CMD_ENV) && defined(CONFIG_CMD_ONENAND))) \
602 && !defined(CFG_ENV_IS_NOWHERE))
0d498393
WD
603U_BOOT_CMD(
604 saveenv, 1, 0, do_saveenv,
8bde7f77
WD
605 "saveenv - save environment variables to persistent storage\n",
606 NULL
607);
608
90253178 609#endif
8bde7f77 610
c76fe474 611#if defined(CONFIG_CMD_ASKENV)
8bde7f77 612
0d498393
WD
613U_BOOT_CMD(
614 askenv, CFG_MAXARGS, 1, do_askenv,
8bde7f77
WD
615 "askenv - get environment variables from stdin\n",
616 "name [message] [size]\n"
617 " - get environment variable 'name' from stdin (max 'size' chars)\n"
618 "askenv name\n"
619 " - get environment variable 'name' from stdin\n"
620 "askenv name size\n"
621 " - get environment variable 'name' from stdin (max 'size' chars)\n"
622 "askenv name [message] size\n"
623 " - display 'message' string and get environment variable 'name'"
624 "from stdin (max 'size' chars)\n"
625);
90253178 626#endif
8bde7f77 627
c76fe474 628#if defined(CONFIG_CMD_RUN)
8bde7f77 629int do_run (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
0d498393
WD
630U_BOOT_CMD(
631 run, CFG_MAXARGS, 1, do_run,
8bde7f77
WD
632 "run - run commands in an environment variable\n",
633 "var [...]\n"
634 " - run the commands in the environment variable(s) 'var'\n"
635);
90253178 636#endif