wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2010 |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 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> |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 7 | * |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 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 | #include <common.h> |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 28 | #include <command.h> |
| 29 | #include <environment.h> |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 30 | #include <linux/stddef.h> |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 31 | #if defined(CONFIG_I2C_ENV_EEPROM_BUS) |
| 32 | #include <i2c.h> |
| 33 | #endif |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 34 | #include <search.h> |
| 35 | #include <errno.h> |
| 36 | #include <linux/compiler.h> /* for BUG_ON */ |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 37 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 38 | DECLARE_GLOBAL_DATA_PTR; |
| 39 | |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 40 | env_t *env_ptr = NULL; |
| 41 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 42 | char *env_name_spec = "EEPROM"; |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 43 | int env_eeprom_bus = -1; |
| 44 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 45 | static int eeprom_bus_read(unsigned dev_addr, unsigned offset, |
| 46 | uchar *buffer, unsigned cnt) |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 47 | { |
| 48 | int rcode; |
| 49 | #if defined(CONFIG_I2C_ENV_EEPROM_BUS) |
| 50 | int old_bus = i2c_get_bus_num(); |
| 51 | |
| 52 | if (gd->flags & GD_FLG_RELOC) { |
| 53 | if (env_eeprom_bus == -1) { |
| 54 | I2C_MUX_DEVICE *dev = NULL; |
| 55 | dev = i2c_mux_ident_muxstring( |
| 56 | (uchar *)CONFIG_I2C_ENV_EEPROM_BUS); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 57 | if (dev != NULL) |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 58 | env_eeprom_bus = dev->busid; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 59 | else |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 60 | printf ("error adding env eeprom bus.\n"); |
| 61 | } |
| 62 | if (old_bus != env_eeprom_bus) { |
| 63 | i2c_set_bus_num(env_eeprom_bus); |
| 64 | old_bus = env_eeprom_bus; |
| 65 | } |
| 66 | } else { |
| 67 | rcode = i2c_mux_ident_muxstring_f( |
| 68 | (uchar *)CONFIG_I2C_ENV_EEPROM_BUS); |
| 69 | } |
| 70 | #endif |
| 71 | |
| 72 | rcode = eeprom_read (dev_addr, offset, buffer, cnt); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 73 | |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 74 | #if defined(CONFIG_I2C_ENV_EEPROM_BUS) |
| 75 | if (old_bus != env_eeprom_bus) |
| 76 | i2c_set_bus_num(old_bus); |
| 77 | #endif |
| 78 | return rcode; |
| 79 | } |
| 80 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 81 | static int eeprom_bus_write(unsigned dev_addr, unsigned offset, |
| 82 | uchar *buffer, unsigned cnt) |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 83 | { |
| 84 | int rcode; |
| 85 | #if defined(CONFIG_I2C_ENV_EEPROM_BUS) |
| 86 | int old_bus = i2c_get_bus_num(); |
| 87 | |
| 88 | rcode = i2c_mux_ident_muxstring_f((uchar *)CONFIG_I2C_ENV_EEPROM_BUS); |
| 89 | #endif |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 90 | rcode = eeprom_write(dev_addr, offset, buffer, cnt); |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 91 | #if defined(CONFIG_I2C_ENV_EEPROM_BUS) |
| 92 | i2c_set_bus_num(old_bus); |
| 93 | #endif |
| 94 | return rcode; |
| 95 | } |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 96 | |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 97 | uchar env_get_char_spec (int index) |
| 98 | { |
| 99 | uchar c; |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 100 | unsigned int off; |
| 101 | off = CONFIG_ENV_OFFSET; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 102 | |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 103 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 104 | if (gd->env_valid == 2) |
| 105 | off = CONFIG_ENV_OFFSET_REDUND; |
| 106 | #endif |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 107 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 108 | off + index + offsetof(env_t,data), |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 109 | &c, 1); |
| 110 | |
| 111 | return (c); |
| 112 | } |
| 113 | |
| 114 | void env_relocate_spec (void) |
| 115 | { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 116 | char buf[CONFIG_ENV_SIZE]; |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 117 | unsigned int off = CONFIG_ENV_OFFSET; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 118 | |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 119 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 120 | if (gd->env_valid == 2) |
| 121 | off = CONFIG_ENV_OFFSET_REDUND; |
| 122 | #endif |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 123 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 124 | off, |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 125 | (uchar *)buf, |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 126 | CONFIG_ENV_SIZE); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 127 | |
| 128 | env_import(buf, 1); |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | int saveenv(void) |
| 132 | { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 133 | env_t env_new; |
| 134 | ssize_t len; |
| 135 | char *res; |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 136 | int rc; |
| 137 | unsigned int off = CONFIG_ENV_OFFSET; |
| 138 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 139 | unsigned int off_red = CONFIG_ENV_OFFSET_REDUND; |
| 140 | char flag_obsolete = OBSOLETE_FLAG; |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 141 | #endif |
| 142 | |
| 143 | BUG_ON(env_ptr != NULL); |
| 144 | |
| 145 | res = (char *)&env_new.data; |
Mike Frysinger | 2eb1573 | 2010-12-08 06:26:04 -0500 | [diff] [blame] | 146 | len = hexport_r(&env_htab, '\0', &res, ENV_SIZE); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 147 | if (len < 0) { |
| 148 | error("Cannot export environment: errno = %d\n", errno); |
| 149 | return 1; |
| 150 | } |
| 151 | env_new.crc = crc32(0, env_new.data, ENV_SIZE); |
| 152 | |
| 153 | #ifdef CONFIG_ENV_OFFSET_REDUND |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 154 | if (gd->env_valid == 1) { |
| 155 | off = CONFIG_ENV_OFFSET_REDUND; |
| 156 | off_red = CONFIG_ENV_OFFSET; |
| 157 | } |
| 158 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 159 | env_new.flags = ACTIVE_FLAG; |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 160 | #endif |
| 161 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 162 | rc = eeprom_bus_write(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 163 | off, |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 164 | (uchar *)&env_new, |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 165 | CONFIG_ENV_SIZE); |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 166 | |
| 167 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 168 | if (rc == 0) { |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 169 | eeprom_bus_write(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 170 | off_red + offsetof(env_t,flags), |
| 171 | (uchar *)&flag_obsolete, |
| 172 | 1); |
| 173 | if (gd->env_valid == 1) |
| 174 | gd->env_valid = 2; |
| 175 | else |
| 176 | gd->env_valid = 1; |
| 177 | |
| 178 | } |
| 179 | #endif |
| 180 | |
| 181 | return rc; |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 184 | /* |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 185 | * Initialize Environment use |
| 186 | * |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 187 | * We are still running from ROM, so data use is limited. |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 188 | * Use a (moderately small) buffer on the stack |
| 189 | */ |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 190 | |
| 191 | #ifdef CONFIG_ENV_OFFSET_REDUND |
| 192 | int env_init(void) |
| 193 | { |
| 194 | ulong len; |
| 195 | ulong crc[2], crc_tmp; |
| 196 | unsigned int off, off_env[2]; |
| 197 | uchar buf[64]; |
| 198 | int crc_ok[2] = {0,0}; |
| 199 | unsigned char flags[2]; |
| 200 | int i; |
| 201 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 202 | eeprom_init(); /* prepare for EEPROM read/write */ |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 203 | |
| 204 | off_env[0] = CONFIG_ENV_OFFSET; |
| 205 | off_env[1] = CONFIG_ENV_OFFSET_REDUND; |
| 206 | |
| 207 | for (i = 0; i < 2; i++) { |
| 208 | /* read CRC */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 209 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 210 | off_env[i] + offsetof(env_t,crc), |
| 211 | (uchar *)&crc[i], sizeof(ulong)); |
| 212 | /* read FLAGS */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 213 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 214 | off_env[i] + offsetof(env_t,flags), |
| 215 | (uchar *)&flags[i], sizeof(uchar)); |
| 216 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 217 | crc_tmp = 0; |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 218 | len = ENV_SIZE; |
| 219 | off = off_env[i] + offsetof(env_t,data); |
| 220 | while (len > 0) { |
| 221 | int n = (len > sizeof(buf)) ? sizeof(buf) : len; |
| 222 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 223 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, off, |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 224 | buf, n); |
| 225 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 226 | crc_tmp = crc32(crc_tmp, buf, n); |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 227 | len -= n; |
| 228 | off += n; |
| 229 | } |
| 230 | if (crc_tmp == crc[i]) |
| 231 | crc_ok[i] = 1; |
| 232 | } |
| 233 | |
| 234 | if (!crc_ok[0] && !crc_ok[1]) { |
| 235 | gd->env_addr = 0; |
| 236 | gd->env_valid = 0; |
| 237 | |
| 238 | return 0; |
| 239 | } else if (crc_ok[0] && !crc_ok[1]) { |
| 240 | gd->env_valid = 1; |
| 241 | } |
| 242 | else if (!crc_ok[0] && crc_ok[1]) { |
| 243 | gd->env_valid = 2; |
| 244 | } else { |
| 245 | /* both ok - check serial */ |
| 246 | if (flags[0] == ACTIVE_FLAG && flags[1] == OBSOLETE_FLAG) |
| 247 | gd->env_valid = 1; |
| 248 | else if (flags[0] == OBSOLETE_FLAG && flags[1] == ACTIVE_FLAG) |
| 249 | gd->env_valid = 2; |
| 250 | else if (flags[0] == 0xFF && flags[1] == 0) |
| 251 | gd->env_valid = 2; |
| 252 | else if(flags[1] == 0xFF && flags[0] == 0) |
| 253 | gd->env_valid = 1; |
| 254 | else /* flags are equal - almost impossible */ |
| 255 | gd->env_valid = 1; |
| 256 | } |
| 257 | |
| 258 | if (gd->env_valid == 2) |
| 259 | gd->env_addr = off_env[1] + offsetof(env_t,data); |
| 260 | else if (gd->env_valid == 1) |
| 261 | gd->env_addr = off_env[0] + offsetof(env_t,data); |
| 262 | |
| 263 | return (0); |
| 264 | } |
| 265 | #else |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 266 | int env_init(void) |
| 267 | { |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 268 | ulong crc, len, new; |
| 269 | unsigned off; |
| 270 | uchar buf[64]; |
| 271 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 272 | eeprom_init(); /* prepare for EEPROM read/write */ |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 273 | |
| 274 | /* read old CRC */ |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 275 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 276 | CONFIG_ENV_OFFSET+offsetof(env_t,crc), |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 277 | (uchar *)&crc, sizeof(ulong)); |
| 278 | |
| 279 | new = 0; |
| 280 | len = ENV_SIZE; |
| 281 | off = offsetof(env_t,data); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 282 | |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 283 | while (len > 0) { |
| 284 | int n = (len > sizeof(buf)) ? sizeof(buf) : len; |
| 285 | |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 286 | eeprom_bus_read(CONFIG_SYS_DEF_EEPROM_ADDR, |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 287 | CONFIG_ENV_OFFSET + off, buf, n); |
Wolfgang Denk | ea882ba | 2010-06-20 23:33:59 +0200 | [diff] [blame] | 288 | new = crc32(new, buf, n); |
wdenk | 0bc4a1a | 2002-09-18 11:09:59 +0000 | [diff] [blame] | 289 | len -= n; |
| 290 | off += n; |
| 291 | } |
| 292 | |
| 293 | if (crc == new) { |
| 294 | gd->env_addr = offsetof(env_t,data); |
| 295 | gd->env_valid = 1; |
| 296 | } else { |
| 297 | gd->env_addr = 0; |
| 298 | gd->env_valid = 0; |
| 299 | } |
| 300 | |
| 301 | return (0); |
| 302 | } |
Heiko Schocher | 1567b59 | 2010-01-07 08:55:44 +0100 | [diff] [blame] | 303 | #endif |