]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/env_dataflash.c
Merge branch 'master' of git://www.denx.de/git/u-boot-cfi-flash
[karo-tx-uboot.git] / common / env_dataflash.c
1 /*
2  * LowLevel function for DataFlash environment support
3  * Author : Gilles Gastaldi (Atmel)
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of
8  * the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18  * MA 02111-1307 USA
19  */
20 #include <common.h>
21 #include <command.h>
22 #include <environment.h>
23 #include <linux/stddef.h>
24 #include <dataflash.h>
25 #include <search.h>
26 #include <errno.h>
27
28 DECLARE_GLOBAL_DATA_PTR;
29
30 env_t *env_ptr;
31
32 char *env_name_spec = "dataflash";
33 static char env_buf[CONFIG_ENV_SIZE];
34
35 uchar env_get_char_spec(int index)
36 {
37         uchar c;
38
39         read_dataflash(CONFIG_ENV_ADDR + index + offsetof(env_t, data),
40                         1, (char *)&c);
41         return c;
42 }
43
44 void env_relocate_spec(void)
45 {
46         read_dataflash(CONFIG_ENV_ADDR, CONFIG_ENV_SIZE, env_buf);
47
48         env_import(env_buf, 1);
49 }
50
51 #ifdef CONFIG_ENV_OFFSET_REDUND
52 #error No support for redundant environment on dataflash yet!
53 #endif
54
55 int saveenv(void)
56 {
57         env_t   *env_new = (env_t *)env_buf;
58         ssize_t len;
59         char    *res;
60
61         res = (char *)env_new->data;
62         len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
63         if (len < 0) {
64                 error("Cannot export environment: errno = %d\n", errno);
65                 return 1;
66         }
67         env_new->crc = crc32(0, env_new->data, ENV_SIZE);
68
69         return write_dataflash(CONFIG_ENV_ADDR,
70                                 (unsigned long)env_new,
71                                 CONFIG_ENV_SIZE);
72 }
73
74 /*
75  * Initialize environment use
76  *
77  * We are still running from ROM, so data use is limited.
78  * Use a (moderately small) buffer on the stack
79  */
80 int env_init(void)
81 {
82         ulong crc, len = ENV_SIZE, new = 0;
83         unsigned off;
84         uchar buf[64];
85
86         if (gd->env_valid)
87                 return 0;
88
89         AT91F_DataflashInit();  /* prepare for DATAFLASH read/write */
90
91         /* read old CRC */
92         read_dataflash(CONFIG_ENV_ADDR + offsetof(env_t, crc),
93                 sizeof(ulong), (char *)&crc);
94
95         off = offsetof(env_t, data);
96         while (len > 0) {
97                 int n = (len > sizeof(buf)) ? sizeof(buf) : len;
98
99                 read_dataflash(CONFIG_ENV_ADDR + off, n, (char *)buf);
100
101                 new = crc32(new, buf, n);
102                 len -= n;
103                 off += n;
104         }
105
106         if (crc == new) {
107                 gd->env_addr    = offsetof(env_t, data);
108                 gd->env_valid   = 1;
109         } else {
110                 gd->env_addr    = (ulong)&default_environment[0];
111                 gd->env_valid   = 0;
112         }
113
114         return 0;
115 }