blob: 544ce4711ea210517ca7288b19f361ce39f306ce [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denkea882ba2010-06-20 23:33:59 +02002 * (C) Copyright 2000-2010
wdenkc6097192002-11-03 00:24:07 +00003 * 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 * 09-18-2001 Andreas Heppel, Sysgo RTS GmbH <aheppel@sysgo.de>
29 *
30 * It might not be possible in all cases to use 'memcpy()' to copy
31 * the environment to NVRAM, as the NVRAM might not be mapped into
32 * the memory space. (I.e. this is the case for the BAB750). In those
33 * cases it might be possible to access the NVRAM using a different
34 * method. For example, the RTC on the BAB750 is accessible in IO
35 * space using its address and data registers. To enable usage of
36 * NVRAM in those cases I invented the functions 'nvram_read()' and
37 * 'nvram_write()', which will be activated upon the configuration
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038 * #define CONFIG_SYS_NVRAM_ACCESS_ROUTINE. Note, that those functions are
wdenkc6097192002-11-03 00:24:07 +000039 * strongly dependent on the used HW, and must be redefined for each
40 * board that wants to use them.
41 */
42
43#include <common.h>
wdenkc6097192002-11-03 00:24:07 +000044#include <command.h>
45#include <environment.h>
wdenkc6097192002-11-03 00:24:07 +000046#include <linux/stddef.h>
Wolfgang Denkea882ba2010-06-20 23:33:59 +020047#include <search.h>
48#include <errno.h>
wdenkc6097192002-11-03 00:24:07 +000049
Jean-Christophe PLAGNIOL-VILLARD957a0e62008-09-10 22:47:59 +020050DECLARE_GLOBAL_DATA_PTR;
51
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
wdenkc6097192002-11-03 00:24:07 +000053extern void *nvram_read(void *dest, const long src, size_t count);
54extern void nvram_write(long dest, const void *src, size_t count);
55env_t *env_ptr = NULL;
56#else
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020057env_t *env_ptr = (env_t *)CONFIG_ENV_ADDR;
wdenkc6097192002-11-03 00:24:07 +000058#endif
59
60char * env_name_spec = "NVRAM";
61
62extern uchar default_environment[];
wdenkc6097192002-11-03 00:24:07 +000063
Wolfgang Denkea882ba2010-06-20 23:33:59 +020064uchar env_get_char_spec(int index)
wdenkc6097192002-11-03 00:24:07 +000065{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
wdenkc6097192002-11-03 00:24:07 +000067 uchar c;
68
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020069 nvram_read(&c, CONFIG_ENV_ADDR+index, 1);
wdenkc6097192002-11-03 00:24:07 +000070
71 return c;
72#else
wdenkc6097192002-11-03 00:24:07 +000073 return *((uchar *)(gd->env_addr + index));
74#endif
75}
76
Wolfgang Denkea882ba2010-06-20 23:33:59 +020077void env_relocate_spec(void)
wdenkc6097192002-11-03 00:24:07 +000078{
Wolfgang Denkea882ba2010-06-20 23:33:59 +020079 char buf[CONFIG_ENV_SIZE];
80
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
Wolfgang Denkea882ba2010-06-20 23:33:59 +020082 nvram_read(buf, CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +000083#else
Wolfgang Denkea882ba2010-06-20 23:33:59 +020084 memcpy(buf, (void*)CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +000085#endif
Wolfgang Denkea882ba2010-06-20 23:33:59 +020086 env_import(buf, 1);
wdenkc6097192002-11-03 00:24:07 +000087}
88
Wolfgang Denkea882ba2010-06-20 23:33:59 +020089int saveenv(void)
wdenkc6097192002-11-03 00:24:07 +000090{
Wolfgang Denkea882ba2010-06-20 23:33:59 +020091 env_t env_new;
92 ssize_t len;
93 char *res;
94 int rcode = 0;
95
96 res = (char *)&env_new.data;
Mike Frysinger2eb15732010-12-08 06:26:04 -050097 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
Wolfgang Denkea882ba2010-06-20 23:33:59 +020098 if (len < 0) {
99 error("Cannot export environment: errno = %d\n", errno);
100 return 1;
101 }
102 env_new.crc = crc32(0, env_new.data, ENV_SIZE);
103
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200105 nvram_write(CONFIG_ENV_ADDR, &env_new, CONFIG_ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000106#else
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200107 if (memcpy((char *)CONFIG_ENV_ADDR, &env_new, CONFIG_ENV_SIZE) == NULL)
108 rcode = 1;
wdenkc6097192002-11-03 00:24:07 +0000109#endif
110 return rcode;
111}
112
113
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200114/*
wdenkc6097192002-11-03 00:24:07 +0000115 * Initialize Environment use
116 *
117 * We are still running from ROM, so data use is limited
118 */
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200119int env_init(void)
wdenkc6097192002-11-03 00:24:07 +0000120{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200121#if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
wdenkc6097192002-11-03 00:24:07 +0000122 ulong crc;
123 uchar data[ENV_SIZE];
Wolfgang Denkea882ba2010-06-20 23:33:59 +0200124
125 nvram_read(&crc, CONFIG_ENV_ADDR, sizeof(ulong));
126 nvram_read(data, CONFIG_ENV_ADDR+sizeof(ulong), ENV_SIZE);
wdenkc6097192002-11-03 00:24:07 +0000127
128 if (crc32(0, data, ENV_SIZE) == crc) {
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200129 gd->env_addr = (ulong)CONFIG_ENV_ADDR + sizeof(long);
wdenkc6097192002-11-03 00:24:07 +0000130#else
131 if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {
132 gd->env_addr = (ulong)&(env_ptr->data);
133#endif
134 gd->env_valid = 1;
135 } else {
136 gd->env_addr = (ulong)&default_environment[0];
137 gd->env_valid = 0;
138 }
wdenkc6097192002-11-03 00:24:07 +0000139 return (0);
140}