2 * (C) Copyright 2000-2010
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Andreas Heppel <aheppel@sysgo.de>
8 * See file CREDITS for list of people who contributed to this
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.
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.
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,
28 * 09-18-2001 Andreas Heppel, Sysgo RTS GmbH <aheppel@sysgo.de>
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
38 * #define CONFIG_SYS_NVRAM_ACCESS_ROUTINE. Note, that those functions are
39 * strongly dependent on the used HW, and must be redefined for each
40 * board that wants to use them.
45 #include <environment.h>
46 #include <linux/stddef.h>
50 DECLARE_GLOBAL_DATA_PTR;
52 #ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
53 extern void *nvram_read(void *dest, const long src, size_t count);
54 extern void nvram_write(long dest, const void *src, size_t count);
57 env_t *env_ptr = (env_t *)CONFIG_ENV_ADDR;
60 char *env_name_spec = "NVRAM";
62 #ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
63 uchar env_get_char_spec(int index)
67 nvram_read(&c, CONFIG_ENV_ADDR + index, 1);
73 void env_relocate_spec(void)
75 char buf[CONFIG_ENV_SIZE];
77 #if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
78 nvram_read(buf, CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
80 memcpy(buf, (void *)CONFIG_ENV_ADDR, CONFIG_ENV_SIZE);
92 res = (char *)&env_new.data;
93 len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
95 error("Cannot export environment: errno = %d\n", errno);
98 env_new.crc = crc32(0, env_new.data, ENV_SIZE);
100 #ifdef CONFIG_SYS_NVRAM_ACCESS_ROUTINE
101 nvram_write(CONFIG_ENV_ADDR, &env_new, CONFIG_ENV_SIZE);
103 if (memcpy((char *)CONFIG_ENV_ADDR, &env_new, CONFIG_ENV_SIZE) == NULL)
110 * Initialize Environment use
112 * We are still running from ROM, so data use is limited
116 #if defined(CONFIG_SYS_NVRAM_ACCESS_ROUTINE)
118 uchar data[ENV_SIZE];
120 nvram_read(&crc, CONFIG_ENV_ADDR, sizeof(ulong));
121 nvram_read(data, CONFIG_ENV_ADDR + sizeof(ulong), ENV_SIZE);
123 if (crc32(0, data, ENV_SIZE) == crc) {
124 gd->env_addr = (ulong)CONFIG_ENV_ADDR + sizeof(long);
126 if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {
127 gd->env_addr = (ulong)&env_ptr->data;
131 gd->env_addr = (ulong)&default_environment[0];