2 * (C) Copyright 2000, 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * SPDX-License-Identifier: GPL-2.0+
9 * Support for read and write access to EEPROM like memory devices. This
10 * includes regular EEPROM as well as FRAM (ferroelectic nonvolaile RAM).
11 * FRAM devices read and write data at bus speed. In particular, there is no
12 * write delay. Also, there is no limit imposed on the number of bytes that can
13 * be transferred with a single read or write.
15 * Use the following configuration options to ensure no unneeded performance
16 * degradation (typical for EEPROM) is incured for FRAM memory:
18 * #define CONFIG_SYS_I2C_FRAM
19 * #undef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
28 #ifndef CONFIG_SYS_I2C_SPEED
29 #define CONFIG_SYS_I2C_SPEED 50000
32 #ifndef CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS
33 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 0
36 #ifndef CONFIG_SYS_EEPROM_PAGE_WRITE_BITS
37 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 8
41 #define I2C_RXTX_LEN 128
44 #define EEPROM_PAGE_SIZE (1 << CONFIG_SYS_EEPROM_PAGE_WRITE_BITS)
45 #define EEPROM_PAGE_OFFSET(x) ((x) & (EEPROM_PAGE_SIZE - 1))
48 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 2 (16-bit EEPROM address) offset is
49 * 0x000nxxxx for EEPROM address selectors at n, offset xxxx in EEPROM.
51 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 (8-bit EEPROM page address) offset is
52 * 0x00000nxx for EEPROM address selectors and page number at n.
54 #if !defined(CONFIG_SPI) || defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
55 #if !defined(CONFIG_SYS_I2C_EEPROM_ADDR_LEN) || \
56 (CONFIG_SYS_I2C_EEPROM_ADDR_LEN < 1) || \
57 (CONFIG_SYS_I2C_EEPROM_ADDR_LEN > 2)
58 #error CONFIG_SYS_I2C_EEPROM_ADDR_LEN must be 1 or 2
62 __weak int eeprom_write_enable(unsigned dev_addr, int state)
67 void eeprom_init(int bus)
70 #if defined(CONFIG_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
75 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SYS_I2C_SOFT)
76 #if defined(CONFIG_SYS_I2C)
80 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
84 static int eeprom_addr(unsigned dev_addr, unsigned offset, uchar *addr)
89 blk_off = offset & 0xff; /* block offset */
90 #if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1
91 addr[0] = offset >> 8; /* block number */
92 addr[1] = blk_off; /* block offset */
95 addr[0] = offset >> 16; /* block number */
96 addr[1] = offset >> 8; /* upper address octet */
97 addr[2] = blk_off; /* lower address octet */
99 #endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN */
101 addr[0] |= dev_addr; /* insert device address */
106 static int eeprom_len(unsigned offset, unsigned end)
108 unsigned len = end - offset;
111 * For a FRAM device there is no limit on the number of the
112 * bytes that can be ccessed with the single read or write
115 #if !defined(CONFIG_SYS_I2C_FRAM)
116 unsigned blk_off = offset & 0xff;
117 unsigned maxlen = EEPROM_PAGE_SIZE - EEPROM_PAGE_OFFSET(blk_off);
119 if (maxlen > I2C_RXTX_LEN)
120 maxlen = I2C_RXTX_LEN;
129 static int eeprom_rw_block(unsigned offset, uchar *addr, unsigned alen,
130 uchar *buffer, unsigned len, bool read)
135 #if defined(CONFIG_SPI) && !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
137 spi_read(addr, alen, buffer, len);
139 spi_write(addr, alen, buffer, len);
142 #if defined(CONFIG_SYS_I2C_EEPROM_BUS)
143 i2c_set_bus_num(CONFIG_SYS_I2C_EEPROM_BUS);
147 ret = i2c_read(addr[0], offset, alen - 1, buffer, len);
149 ret = i2c_write(addr[0], offset, alen - 1, buffer, len);
157 static int eeprom_rw(unsigned dev_addr, unsigned offset, uchar *buffer,
158 unsigned cnt, bool read)
160 unsigned end = offset + cnt;
165 while (offset < end) {
166 alen = eeprom_addr(dev_addr, offset, addr);
168 len = eeprom_len(offset, end);
170 rcode = eeprom_rw_block(offset, addr, alen, buffer, len, read);
176 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
182 int eeprom_read(unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt)
185 * Read data until done or would cross a page boundary.
186 * We must write the address again when changing pages
187 * because the next page may be in a different device.
189 return eeprom_rw(dev_addr, offset, buffer, cnt, 1);
192 int eeprom_write(unsigned dev_addr, unsigned offset,
193 uchar *buffer, unsigned cnt)
197 eeprom_write_enable(dev_addr, 1);
200 * Write data until done or would cross a write page boundary.
201 * We must write the address again when changing pages
202 * because the address counter only increments within a page.
204 ret = eeprom_rw(dev_addr, offset, buffer, cnt, 0);
206 eeprom_write_enable(dev_addr, 0);
210 static int do_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
212 const char *const fmt =
213 "\nEEPROM @0x%lX %s: addr %08lx off %04lx count %ld ... ";
214 char * const *args = &argv[2];
216 ulong dev_addr, addr, off, cnt;
220 #ifdef CONFIG_SYS_DEF_EEPROM_ADDR
223 dev_addr = CONFIG_SYS_DEF_EEPROM_ADDR;
228 dev_addr = simple_strtoul(*args++, NULL, 16);
231 bus_addr = simple_strtoul(*args++, NULL, 16);
232 dev_addr = simple_strtoul(*args++, NULL, 16);
235 return CMD_RET_USAGE;
238 addr = simple_strtoul(*args++, NULL, 16);
239 off = simple_strtoul(*args++, NULL, 16);
240 cnt = simple_strtoul(*args++, NULL, 16);
242 eeprom_init(bus_addr);
244 if (strcmp(argv[1], "read") == 0) {
245 printf(fmt, dev_addr, argv[1], addr, off, cnt);
247 rcode = eeprom_read(dev_addr, off, (uchar *)addr, cnt);
251 } else if (strcmp(argv[1], "write") == 0) {
252 printf(fmt, dev_addr, argv[1], addr, off, cnt);
254 rcode = eeprom_write(dev_addr, off, (uchar *)addr, cnt);
260 return CMD_RET_USAGE;
264 eeprom, 7, 1, do_eeprom,
266 "read <bus> <devaddr> addr off cnt\n"
267 "eeprom write <bus> <devaddr> addr off cnt\n"
268 " - read/write `cnt' bytes from `devaddr` EEPROM at offset `off'"