]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_nvedit.c
* Switch LWMON board default config from FRAM to EEPROM;
[karo-tx-uboot.git] / common / cmd_nvedit.c
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>
45 #include <watchdog.h>
46 #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 */
64 extern uchar (*env_get_char)(int);
65
66 /* Function that returns a pointer to a value from the environment */
67 /* (Only memory version supported / needed). */
68 extern uchar *env_get_addr(int);
69
70 /* Function that updates CRC of the enironment */
71 extern void env_crc_update (void);
72
73 /************************************************************************
74 ************************************************************************/
75
76 static int envmatch (uchar *, int);
77
78 /*
79  * Table with supported baudrates (defined in config_xyz.h)
80  */
81 static 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
89 int 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
148 int _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;
235                         serial_setbrg ();
236                         udelay(50000);
237                         for (;;) {
238                                 if (getc() == '\r')
239                                       break;
240                         }
241                 }
242
243                 if (*++nxt == '\0') {
244                         if (env > env_data) {
245                                 env--;
246                         } else {
247                                 *env = '\0';
248                         }
249                 } else {
250                         for (;;) {
251                                 *env = *nxt++;
252                                 if ((*env == '\0') && (*nxt == '\0'))
253                                         break;
254                                 ++env;
255                         }
256                 }
257                 *++env = '\0';
258         }
259
260 #ifdef CONFIG_NET_MULTI
261         if (strncmp(name, "eth", 3) == 0) {
262                 char *end;
263                 int   num = simple_strtoul(name+3, &end, 10);
264
265                 if (strcmp(end, "addr") == 0) {
266                         eth_set_enetaddr(num, argv[2]);
267                 }
268         }
269 #endif
270
271
272         /* Delete only ? */
273         if ((argc < 3) || argv[2] == NULL) {
274                 env_crc_update ();
275                 return 0;
276         }
277
278         /*
279          * Append new definition at the end
280          */
281         for (env=env_data; *env || *(env+1); ++env)
282                 ;
283         if (env > env_data)
284                 ++env;
285         /*
286          * Overflow when:
287          * "name" + "=" + "val" +"\0\0"  > ENV_SIZE - (env-env_data)
288          */
289         len = strlen(name) + 2;
290         /* add '=' for first arg, ' ' for all others */
291         for (i=2; i<argc; ++i) {
292                 len += strlen(argv[i]) + 1;
293         }
294         if (len > (&env_data[ENV_SIZE]-env)) {
295                 printf ("## Error: environment overflow, \"%s\" deleted\n", name);
296                 return 1;
297         }
298         while ((*env = *name++) != '\0')
299                 env++;
300         for (i=2; i<argc; ++i) {
301                 char *val = argv[i];
302
303                 *env = (i==2) ? '=' : ' ';
304                 while ((*++env = *val++) != '\0')
305                         ;
306         }
307
308         /* end is marked with double '\0' */
309         *++env = '\0';
310
311         /* Update CRC */
312         env_crc_update ();
313
314         /*
315          * Some variables should be updated when the corresponding
316          * entry in the enviornment is changed
317          */
318
319         if (strcmp(argv[1],"ethaddr") == 0) {
320                 char *s = argv[2];      /* always use only one arg */
321                 char *e;
322                 for (i=0; i<6; ++i) {
323                         bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0;
324                         if (s) s = (*e) ? e+1 : e;
325                 }
326 #ifdef CONFIG_NET_MULTI
327                 eth_set_enetaddr(0, argv[2]);
328 #endif
329                 return 0;
330         }
331
332         if (strcmp(argv[1],"ipaddr") == 0) {
333                 char *s = argv[2];      /* always use only one arg */
334                 char *e;
335                 unsigned long addr;
336                 bd->bi_ip_addr = 0;
337                 for (addr=0, i=0; i<4; ++i) {
338                         ulong val = s ? simple_strtoul(s, &e, 10) : 0;
339                         addr <<= 8;
340                         addr  |= (val & 0xFF);
341                         if (s) s = (*e) ? e+1 : e;
342                 }
343                 bd->bi_ip_addr = htonl(addr);
344                 return 0;
345         }
346         if (strcmp(argv[1],"loadaddr") == 0) {
347                 load_addr = simple_strtoul(argv[2], NULL, 16);
348                 return 0;
349         }
350 #if (CONFIG_COMMANDS & CFG_CMD_NET)
351         if (strcmp(argv[1],"bootfile") == 0) {
352                 copy_filename (BootFile, argv[2], sizeof(BootFile));
353                 return 0;
354         }
355 #endif  /* CFG_CMD_NET */
356
357 #ifdef CONFIG_AMIGAONEG3SE 
358         if (strcmp(argv[1], "vga_fg_color") == 0 ||
359             strcmp(argv[1], "vga_bg_color") == 0 ) {
360                 extern void video_set_color(unsigned char attr);
361                 extern unsigned char video_get_attr(void);
362
363                 video_set_color(video_get_attr());
364                 return 0;
365         }
366 #endif  /* CONFIG_AMIGAONEG3SE */
367
368         return 0;
369 }
370
371 void setenv (char *varname, char *varvalue)
372 {
373         char *argv[4] = { "setenv", varname, varvalue, NULL };
374         _do_setenv (0, 3, argv);
375 }
376
377 int do_setenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
378 {
379         if (argc < 2) {
380                 printf ("Usage:\n%s\n", cmdtp->usage);
381                 return 1;
382         }
383
384         return _do_setenv (flag, argc, argv);
385 }
386
387 /************************************************************************
388  * Prompt for environment variable
389  */
390
391 #if (CONFIG_COMMANDS & CFG_CMD_ASKENV)
392 int do_askenv ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
393 {
394         extern char console_buffer[CFG_CBSIZE];
395         char message[CFG_CBSIZE];
396         int size = CFG_CBSIZE - 1;
397         int len;
398         char *local_args[4];
399
400         local_args[0] = argv[0];
401         local_args[1] = argv[1];
402         local_args[2] = NULL;
403         local_args[3] = NULL;
404
405         if (argc < 2) {
406                 printf ("Usage:\n%s\n", cmdtp->usage);
407                 return 1;
408         }
409         /* Check the syntax */
410         switch (argc) {
411         case 1:
412                 printf ("Usage:\n%s\n", cmdtp->usage);
413                 return 1;
414
415         case 2:         /* askenv envname */
416                 sprintf (message, "Please enter '%s':", argv[1]);
417                 break;
418
419         case 3:         /* askenv envname size */
420                 sprintf (message, "Please enter '%s':", argv[1]);
421                 size = simple_strtoul (argv[2], NULL, 10);
422                 break;
423
424         default:        /* askenv envname message1 ... messagen size */
425             {
426                 int i;
427                 int pos = 0;
428
429                 for (i = 2; i < argc - 1; i++) {
430                         if (pos) {
431                                 message[pos++] = ' ';
432                         }
433                         strcpy (message+pos, argv[i]);
434                         pos += strlen(argv[i]);
435                 }
436                 message[pos] = '\0';
437                 size = simple_strtoul (argv[argc - 1], NULL, 10);
438             }
439                 break;
440         }
441
442         if (size >= CFG_CBSIZE)
443                 size = CFG_CBSIZE - 1;
444
445         if (size <= 0)
446                 return 1;
447
448         /* prompt for input */
449         len = readline (message);
450
451         if (size < len)
452                 console_buffer[size] = '\0';
453
454         len = 2;
455         if (console_buffer[0] != '\0') {
456                 local_args[2] = console_buffer;
457                 len = 3;
458         }
459
460         /* Continue calling setenv code */
461         return _do_setenv (flag, len, local_args);
462 }
463 #endif  /* CFG_CMD_ASKENV */
464
465 /************************************************************************
466  * Look up variable from environment,
467  * return address of storage for that variable,
468  * or NULL if not found
469  */
470
471 char *getenv (uchar *name)
472 {
473         int i, nxt;
474
475         WATCHDOG_RESET();
476
477         for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
478                 int val;
479
480                 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
481                         if (nxt >= CFG_ENV_SIZE) {
482                                 return (NULL);
483                         }
484                 }
485                 if ((val=envmatch(name, i)) < 0)
486                         continue;
487                 return (env_get_addr(val));
488         }
489
490         return (NULL);
491 }
492
493 int getenv_r (uchar *name, uchar *buf, unsigned len)
494 {
495         int i, nxt;
496
497         for (i=0; env_get_char(i) != '\0'; i=nxt+1) {
498                 int val, n;
499
500                 for (nxt=i; env_get_char(nxt) != '\0'; ++nxt) {
501                         if (nxt >= CFG_ENV_SIZE) {
502                                 return (-1);
503                         }
504                 }
505                 if ((val=envmatch(name, i)) < 0)
506                         continue;
507                 /* found; copy out */
508                 n = 0;
509                 while ((len > n++) && (*buf++ = env_get_char(val++)) != '\0')
510                         ;
511                 if (len == n)
512                         *buf = '\0';
513                 return (n);
514         }
515         return (-1);
516 }
517
518 #if defined(CFG_ENV_IS_IN_NVRAM) || defined(CFG_ENV_IS_IN_EEPROM) || \
519     ((CONFIG_COMMANDS & (CFG_CMD_ENV|CFG_CMD_FLASH)) == \
520       (CFG_CMD_ENV|CFG_CMD_FLASH))
521 int do_saveenv (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
522 {
523         extern char * env_name_spec;
524
525         printf ("Saving Environment to %s...\n", env_name_spec);
526
527         return (saveenv() ? 1 : 0);
528 }
529 #endif
530
531
532 /************************************************************************
533  * Match a name / name=value pair
534  *
535  * s1 is either a simple 'name', or a 'name=value' pair.
536  * i2 is the environment index for a 'name2=value2' pair.
537  * If the names match, return the index for the value2, else NULL.
538  */
539
540 static int
541 envmatch (uchar *s1, int i2)
542 {
543
544         while (*s1 == env_get_char(i2++))
545                 if (*s1++ == '=')
546                         return(i2);
547         if (*s1 == '\0' && env_get_char(i2-1) == '=')
548                 return(i2);
549         return(-1);
550 }