]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/env_nvram.c
* Patch by Hans-Joerg Frieden, 06 Dec 2002
[karo-tx-uboot.git] / common / env_nvram.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  * 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
38  * #define CFG_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.
41  */
42
43 #include <common.h>
44
45 #ifdef CFG_ENV_IS_IN_NVRAM /* Environment is in NVRAM */
46
47 #include <command.h>
48 #include <environment.h>
49 #include <cmd_nvedit.h>
50 #include <linux/stddef.h>
51 #include <malloc.h>
52
53 #ifdef CFG_NVRAM_ACCESS_ROUTINE
54 extern void *nvram_read(void *dest, const long src, size_t count);
55 extern void nvram_write(long dest, const void *src, size_t count);
56 env_t *env_ptr = NULL;
57 #else
58 env_t *env_ptr = (env_t *)CFG_ENV_ADDR;
59 #endif
60
61 char * env_name_spec = "NVRAM";
62
63 extern uchar default_environment[];
64 extern int default_environment_size;
65
66 extern uchar (*env_get_char)(int);
67 extern uchar env_get_char_memory (int index);
68
69 #ifdef CONFIG_AMIGAONEG3SE
70 uchar env_get_char_spec (int index)
71 {
72 #ifdef CFG_NVRAM_ACCESS_ROUTINE
73         uchar c;
74
75         nvram_read(&c, CFG_ENV_ADDR+index, 1);
76
77         return c;
78 #else
79         DECLARE_GLOBAL_DATA_PTR;
80         uchar retval;
81         enable_nvram();
82         retval = *((uchar *)(gd->env_addr + index));
83         disable_nvram();
84         return retval;
85 #endif
86 }
87 #else
88 uchar env_get_char_spec (int index)
89 {
90 #ifdef CFG_NVRAM_ACCESS_ROUTINE
91         uchar c;
92
93         nvram_read(&c, CFG_ENV_ADDR+index, 1);
94
95         return c;
96 #else
97         DECLARE_GLOBAL_DATA_PTR;
98
99         return *((uchar *)(gd->env_addr + index));
100 #endif
101 }
102 #endif
103
104 void env_relocate_spec (void)
105 {
106 #if defined(CFG_NVRAM_ACCESS_ROUTINE)
107         nvram_read(env_ptr, CFG_ENV_ADDR, CFG_ENV_SIZE);
108 #else
109         memcpy (env_ptr, (void*)CFG_ENV_ADDR, CFG_ENV_SIZE);
110 #endif
111 }
112
113 int saveenv (void)
114 {
115         int rcode = 0;
116 #ifdef CONFIG_AMIGAONEG3SE
117         enable_nvram();
118 #endif
119 #ifdef CFG_NVRAM_ACCESS_ROUTINE
120         nvram_write(CFG_ENV_ADDR, env_ptr, CFG_ENV_SIZE);
121 #else
122         if (memcpy ((char *)CFG_ENV_ADDR, env_ptr, CFG_ENV_SIZE) == NULL)
123                     rcode = 1 ;
124 #endif
125 #ifdef CONFIG_AMIGAONEG3SE
126         udelay(10000);
127         disable_nvram();
128 #endif
129         return rcode;
130 }
131
132
133 /************************************************************************
134  * Initialize Environment use
135  *
136  * We are still running from ROM, so data use is limited
137  */
138 int env_init (void)
139 {
140         DECLARE_GLOBAL_DATA_PTR;
141 #ifdef CONFIG_AMIGAONEG3SE
142         enable_nvram();
143 #endif
144 #if defined(CFG_NVRAM_ACCESS_ROUTINE)
145         ulong crc;
146         uchar data[ENV_SIZE];
147         nvram_read (&crc, CFG_ENV_ADDR, sizeof(ulong));
148         nvram_read (data, CFG_ENV_ADDR+sizeof(ulong), ENV_SIZE);
149
150         if (crc32(0, data, ENV_SIZE) == crc) {
151                 gd->env_addr  = (ulong)CFG_ENV_ADDR + sizeof(long);
152 #else
153         if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {
154                 gd->env_addr  = (ulong)&(env_ptr->data);
155 #endif
156                 gd->env_valid = 1;
157         } else {
158                 gd->env_addr  = (ulong)&default_environment[0];
159                 gd->env_valid = 0;
160         }
161 #ifdef CONFIG_AMIGAONEG3SE
162         disable_nvram();
163 #endif
164         return (0);
165 }
166
167 #endif /* CFG_ENV_IS_IN_NVRAM */