2 * (C) Copyright 2000, 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * Support for read and write access to EEPROM like memory devices. This
27 * includes regular EEPROM as well as FRAM (ferroelectic nonvolaile RAM).
28 * FRAM devices read and write data at bus speed. In particular, there is no
29 * write delay. Also, there is no limit imposed on the number of bytes that can
30 * be transferred with a single read or write.
32 * Use the following configuration options to ensure no unneeded performance
33 * degradation (typical for EEPROM) is incured for FRAM memory:
35 * #define CONFIG_SYS_I2C_FRAM
36 * #undef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
45 extern void eeprom_init (void);
46 extern int eeprom_read (unsigned dev_addr, unsigned offset,
47 uchar *buffer, unsigned cnt);
48 extern int eeprom_write (unsigned dev_addr, unsigned offset,
49 uchar *buffer, unsigned cnt);
50 #if defined(CONFIG_SYS_EEPROM_WREN)
51 extern int eeprom_write_enable (unsigned dev_addr, int state);
55 #if defined(CONFIG_SYS_EEPROM_X40430)
56 /* Maximum number of times to poll for acknowledge after write */
57 #define MAX_ACKNOWLEDGE_POLLS 10
60 /* ------------------------------------------------------------------------- */
62 #if defined(CONFIG_CMD_EEPROM)
63 int do_eeprom ( cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
65 const char *const fmt =
66 "\nEEPROM @0x%lX %s: addr %08lx off %04lx count %ld ... ";
68 #if defined(CONFIG_SYS_I2C_MULTI_EEPROMS)
70 ulong dev_addr = simple_strtoul (argv[2], NULL, 16);
71 ulong addr = simple_strtoul (argv[3], NULL, 16);
72 ulong off = simple_strtoul (argv[4], NULL, 16);
73 ulong cnt = simple_strtoul (argv[5], NULL, 16);
76 ulong dev_addr = CONFIG_SYS_DEF_EEPROM_ADDR;
77 ulong addr = simple_strtoul (argv[2], NULL, 16);
78 ulong off = simple_strtoul (argv[3], NULL, 16);
79 ulong cnt = simple_strtoul (argv[4], NULL, 16);
80 #endif /* CONFIG_SYS_I2C_MULTI_EEPROMS */
82 # if !defined(CONFIG_SPI) || defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
84 # endif /* !CONFIG_SPI */
86 if (strcmp (argv[1], "read") == 0) {
89 printf (fmt, dev_addr, argv[1], addr, off, cnt);
91 rcode = eeprom_read (dev_addr, off, (uchar *) addr, cnt);
95 } else if (strcmp (argv[1], "write") == 0) {
98 printf (fmt, dev_addr, argv[1], addr, off, cnt);
100 rcode = eeprom_write (dev_addr, off, (uchar *) addr, cnt);
107 return CMD_RET_USAGE;
111 /*-----------------------------------------------------------------------
113 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 2 (16-bit EEPROM address) offset is
114 * 0x000nxxxx for EEPROM address selectors at n, offset xxxx in EEPROM.
116 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 (8-bit EEPROM page address) offset is
117 * 0x00000nxx for EEPROM address selectors and page number at n.
120 #if !defined(CONFIG_SPI) || defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
121 #if !defined(CONFIG_SYS_I2C_EEPROM_ADDR_LEN) || CONFIG_SYS_I2C_EEPROM_ADDR_LEN < 1 || CONFIG_SYS_I2C_EEPROM_ADDR_LEN > 2
122 #error CONFIG_SYS_I2C_EEPROM_ADDR_LEN must be 1 or 2
126 int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt)
128 unsigned end = offset + cnt;
132 /* Read data until done or would cross a page boundary.
133 * We must write the address again when changing pages
134 * because the next page may be in a different device.
136 while (offset < end) {
138 #if !defined(CONFIG_SYS_I2C_FRAM)
142 #if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 && !defined(CONFIG_SPI_X)
145 blk_off = offset & 0xFF; /* block offset */
147 addr[0] = offset >> 8; /* block number */
148 addr[1] = blk_off; /* block offset */
153 blk_off = offset & 0xFF; /* block offset */
155 addr[0] = offset >> 16; /* block number */
156 addr[1] = offset >> 8; /* upper address octet */
157 addr[2] = blk_off; /* lower address octet */
159 #endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN, CONFIG_SPI_X */
161 addr[0] |= dev_addr; /* insert device address */
166 * For a FRAM device there is no limit on the number of the
167 * bytes that can be ccessed with the single read or write
170 #if !defined(CONFIG_SYS_I2C_FRAM)
171 maxlen = 0x100 - blk_off;
172 if (maxlen > I2C_RXTX_LEN)
173 maxlen = I2C_RXTX_LEN;
178 #if defined(CONFIG_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
179 spi_read (addr, alen, buffer, len);
181 if (i2c_read (addr[0], offset, alen-1, buffer, len) != 0)
191 /*-----------------------------------------------------------------------
193 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 2 (16-bit EEPROM address) offset is
194 * 0x000nxxxx for EEPROM address selectors at n, offset xxxx in EEPROM.
196 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 (8-bit EEPROM page address) offset is
197 * 0x00000nxx for EEPROM address selectors and page number at n.
200 int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt)
202 unsigned end = offset + cnt;
206 #if defined(CONFIG_SYS_EEPROM_X40430)
207 uchar contr_r_addr[2];
214 #if defined(CONFIG_SYS_EEPROM_WREN)
215 eeprom_write_enable (dev_addr,1);
217 /* Write data until done or would cross a write page boundary.
218 * We must write the address again when changing pages
219 * because the address counter only increments within a page.
222 while (offset < end) {
224 #if !defined(CONFIG_SYS_I2C_FRAM)
228 #if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 && !defined(CONFIG_SPI_X)
231 blk_off = offset & 0xFF; /* block offset */
233 addr[0] = offset >> 8; /* block number */
234 addr[1] = blk_off; /* block offset */
239 blk_off = offset & 0xFF; /* block offset */
241 addr[0] = offset >> 16; /* block number */
242 addr[1] = offset >> 8; /* upper address octet */
243 addr[2] = blk_off; /* lower address octet */
245 #endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN, CONFIG_SPI_X */
247 addr[0] |= dev_addr; /* insert device address */
252 * For a FRAM device there is no limit on the number of the
253 * bytes that can be accessed with the single read or write
256 #if !defined(CONFIG_SYS_I2C_FRAM)
258 #if defined(CONFIG_SYS_EEPROM_PAGE_WRITE_BITS)
260 #define EEPROM_PAGE_SIZE (1 << CONFIG_SYS_EEPROM_PAGE_WRITE_BITS)
261 #define EEPROM_PAGE_OFFSET(x) ((x) & (EEPROM_PAGE_SIZE - 1))
263 maxlen = EEPROM_PAGE_SIZE - EEPROM_PAGE_OFFSET(blk_off);
265 maxlen = 0x100 - blk_off;
267 if (maxlen > I2C_RXTX_LEN)
268 maxlen = I2C_RXTX_LEN;
274 #if defined(CONFIG_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
275 spi_write (addr, alen, buffer, len);
277 #if defined(CONFIG_SYS_EEPROM_X40430)
278 /* Get the value of the control register.
279 * Set current address (internal pointer in the x40430)
283 contr_r_addr[1] = 0xff;
285 addr_void[1] = addr[1];
286 #ifdef CONFIG_SYS_I2C_EEPROM_ADDR
287 contr_r_addr[0] |= CONFIG_SYS_I2C_EEPROM_ADDR;
288 addr_void[0] |= CONFIG_SYS_I2C_EEPROM_ADDR;
291 if (i2c_read (contr_r_addr[0], contr_r_addr[1], 1, contr_reg, 1) != 0) {
294 ctrl_reg_v = contr_reg[0];
296 /* Are any of the eeprom blocks write protected?
298 if (ctrl_reg_v & 0x18) {
299 ctrl_reg_v &= ~0x18; /* reset block protect bits */
300 ctrl_reg_v |= 0x02; /* set write enable latch */
301 ctrl_reg_v &= ~0x04; /* clear RWEL */
303 /* Set write enable latch.
306 if (i2c_write (contr_r_addr[0], 0xff, 1, contr_reg, 1) != 0) {
310 /* Set register write enable latch.
313 if (i2c_write (contr_r_addr[0], 0xFF, 1, contr_reg, 1) != 0) {
317 /* Modify ctrl register.
319 contr_reg[0] = ctrl_reg_v;
320 if (i2c_write (contr_r_addr[0], 0xFF, 1, contr_reg, 1) != 0) {
324 /* The write (above) is an operation on NV memory.
325 * These can take some time (~5ms), and the device
326 * will not respond to further I2C messages till
327 * it's completed the write.
328 * So poll device for an I2C acknowledge.
329 * When we get one we know we can continue with other
333 for (i = 0; i < MAX_ACKNOWLEDGE_POLLS; i++) {
334 if (i2c_read (addr_void[0], addr_void[1], 1, contr_reg, 1) == 0)
336 #if defined(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
337 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
340 if (i == MAX_ACKNOWLEDGE_POLLS) {
341 puts ("EEPROM poll acknowledge failed\n");
346 /* Is the write enable latch on?.
348 else if (!(ctrl_reg_v & 0x02)) {
349 /* Set write enable latch.
352 if (i2c_write (contr_r_addr[0], 0xFF, 1, contr_reg, 1) != 0) {
356 /* Write is enabled ... now write eeprom value.
359 if (i2c_write (addr[0], offset, alen-1, buffer, len) != 0)
366 #if defined(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
367 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
370 #if defined(CONFIG_SYS_EEPROM_WREN)
371 eeprom_write_enable (dev_addr,0);
376 #if !defined(CONFIG_SPI) || defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
378 eeprom_probe (unsigned dev_addr, unsigned offset)
382 /* Probe the chip address
384 #if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 && !defined(CONFIG_SPI_X)
385 chip = offset >> 8; /* block number */
387 chip = offset >> 16; /* block number */
388 #endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN, CONFIG_SPI_X */
390 chip |= dev_addr; /* insert device address */
392 return (i2c_probe (chip));
396 /*-----------------------------------------------------------------------
399 #ifndef CONFIG_SYS_I2C_SPEED
400 #define CONFIG_SYS_I2C_SPEED 50000
403 void eeprom_init (void)
406 #if defined(CONFIG_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
409 #if defined(CONFIG_HARD_I2C) || \
410 defined(CONFIG_SOFT_I2C)
411 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
415 /*-----------------------------------------------------------------------
418 /***************************************************/
420 #if defined(CONFIG_CMD_EEPROM)
422 #ifdef CONFIG_SYS_I2C_MULTI_EEPROMS
424 eeprom, 6, 1, do_eeprom,
426 "read devaddr addr off cnt\n"
427 "eeprom write devaddr addr off cnt\n"
428 " - read/write `cnt' bytes from `devaddr` EEPROM at offset `off'"
430 #else /* One EEPROM */
432 eeprom, 5, 1, do_eeprom,
434 "read addr off cnt\n"
435 "eeprom write addr off cnt\n"
436 " - read/write `cnt' bytes at EEPROM offset `off'"
438 #endif /* CONFIG_SYS_I2C_MULTI_EEPROMS */