1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000, 2001
8 * Support for read and write access to EEPROM like memory devices. This
9 * includes regular EEPROM as well as FRAM (ferroelectic nonvolaile RAM).
10 * FRAM devices read and write data at bus speed. In particular, there is no
11 * write delay. Also, there is no limit imposed on the number of bytes that can
12 * be transferred with a single read or write.
14 * Use the following configuration options to ensure no unneeded performance
15 * degradation (typical for EEPROM) is incured for FRAM memory:
17 * #define CONFIG_SYS_I2C_FRAM
18 * Set CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS to 0
27 #include <eeprom_layout.h>
28 #include <linux/delay.h>
31 #define I2C_RXTX_LEN 128
34 #define EEPROM_PAGE_SIZE (1 << CONFIG_SYS_EEPROM_PAGE_WRITE_BITS)
35 #define EEPROM_PAGE_OFFSET(x) ((x) & (EEPROM_PAGE_SIZE - 1))
37 #if CONFIG_IS_ENABLED(DM_I2C)
38 static int eeprom_i2c_bus;
41 __weak int eeprom_write_enable(unsigned dev_addr, int state)
46 void eeprom_init(int bus)
49 #if CONFIG_IS_ENABLED(DM_I2C)
51 #elif CONFIG_IS_ENABLED(SYS_I2C_LEGACY)
54 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
59 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 2 (16-bit EEPROM address) offset is
60 * 0x000nxxxx for EEPROM address selectors at n, offset xxxx in EEPROM.
62 * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 (8-bit EEPROM page address) offset is
63 * 0x00000nxx for EEPROM address selectors and page number at n.
65 static int eeprom_addr(unsigned dev_addr, unsigned offset, uchar *addr)
70 blk_off = offset & 0xff; /* block offset */
71 #if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1
72 addr[0] = offset >> 8; /* block number */
73 addr[1] = blk_off; /* block offset */
76 addr[0] = offset >> 16; /* block number */
77 addr[1] = offset >> 8; /* upper address octet */
78 addr[2] = blk_off; /* lower address octet */
80 #endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN */
82 addr[0] |= dev_addr; /* insert device address */
87 static int eeprom_len(unsigned offset, unsigned end)
89 unsigned len = end - offset;
92 * For a FRAM device there is no limit on the number of the
93 * bytes that can be accessed with the single read or write
96 #if !defined(CONFIG_SYS_I2C_FRAM)
97 unsigned blk_off = offset & 0xff;
98 unsigned maxlen = EEPROM_PAGE_SIZE - EEPROM_PAGE_OFFSET(blk_off);
100 if (maxlen > I2C_RXTX_LEN)
101 maxlen = I2C_RXTX_LEN;
110 static int eeprom_rw_block(unsigned offset, uchar *addr, unsigned alen,
111 uchar *buffer, unsigned len, bool read)
115 #if CONFIG_IS_ENABLED(DM_I2C)
118 ret = i2c_get_chip_for_busnum(eeprom_i2c_bus, addr[0],
121 printf("%s: Cannot find udev for a bus %d\n", __func__,
123 return CMD_RET_FAILURE;
127 ret = dm_i2c_read(dev, offset, buffer, len);
129 ret = dm_i2c_write(dev, offset, buffer, len);
131 #else /* Non DM I2C support - will be removed */
134 ret = i2c_read(addr[0], offset, alen - 1, buffer, len);
136 ret = i2c_write(addr[0], offset, alen - 1, buffer, len);
137 #endif /* CONFIG_DM_I2C */
139 ret = CMD_RET_FAILURE;
144 static int eeprom_rw(unsigned dev_addr, unsigned offset, uchar *buffer,
145 unsigned cnt, bool read)
147 unsigned end = offset + cnt;
152 #if !CONFIG_IS_ENABLED(DM_I2C) && defined(CONFIG_SYS_I2C_EEPROM_BUS)
153 eeprom_init(CONFIG_SYS_I2C_EEPROM_BUS);
156 while (offset < end) {
157 alen = eeprom_addr(dev_addr, offset, addr);
159 len = eeprom_len(offset, end);
161 rcode = eeprom_rw_block(offset, addr, alen, buffer, len, read);
166 #if CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS > 0
168 udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000);
175 int eeprom_read(unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt)
178 * Read data until done or would cross a page boundary.
179 * We must write the address again when changing pages
180 * because the next page may be in a different device.
182 return eeprom_rw(dev_addr, offset, buffer, cnt, 1);
185 int eeprom_write(unsigned dev_addr, unsigned offset,
186 uchar *buffer, unsigned cnt)
190 eeprom_write_enable(dev_addr, 1);
193 * Write data until done or would cross a write page boundary.
194 * We must write the address again when changing pages
195 * because the address counter only increments within a page.
197 ret = eeprom_rw(dev_addr, offset, buffer, cnt, 0);
199 eeprom_write_enable(dev_addr, 0);
203 static long parse_numeric_param(char *str)
206 long value = simple_strtol(str, &endptr, 16);
208 return (*endptr != '\0') ? -1 : value;
211 struct eeprom_dev_spec {
217 * parse_eeprom_dev_spec - parse the eeprom device specifier
219 * @dev: pointer to eeprom device specifier
220 * @argc: count of command line arguments that can be used to parse
221 * the device specifier
222 * @argv: command line arguments left to parse
224 * @returns: number of arguments parsed or CMD_RET_USAGE if error
226 static int parse_eeprom_dev_spec(struct eeprom_dev_spec *dev, int argc,
229 #ifdef CONFIG_SYS_I2C_EEPROM_ADDR
232 dev->i2c_addr = CONFIG_SYS_I2C_EEPROM_ADDR;
239 dev->i2c_addr = parse_numeric_param(argv[0]);
245 dev->i2c_bus = parse_numeric_param(argv[0]);
246 dev->i2c_addr = parse_numeric_param(argv[1]);
251 return CMD_RET_USAGE;
254 #ifdef CONFIG_CMD_EEPROM_LAYOUT
256 #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS
257 __weak int eeprom_parse_layout_version(char *str)
259 return LAYOUT_VERSION_UNRECOGNIZED;
263 static unsigned char eeprom_buf[CONFIG_SYS_EEPROM_SIZE];
272 EEPROM_ACTION_INVALID,
275 static enum eeprom_action parse_action(char *cmd)
277 if (!strncmp(cmd, "read", 4))
279 if (!strncmp(cmd, "write", 5))
281 #ifdef CONFIG_CMD_EEPROM_LAYOUT
282 if (!strncmp(cmd, "print", 5))
284 if (!strncmp(cmd, "update", 6))
285 return EEPROM_UPDATE;
288 return EEPROM_ACTION_INVALID;
291 static int eeprom_execute_command(enum eeprom_action action,
292 struct eeprom_dev_spec *dev,
293 int layout_ver, char *key, char *value,
294 ulong addr, ulong off, ulong cnt)
297 const char *const fmt =
298 "\nEEPROM @0x%lX %s: addr 0x%08lx off 0x%04lx count %ld ... ";
299 #ifdef CONFIG_CMD_EEPROM_LAYOUT
300 struct eeprom_layout layout;
303 if (action == EEPROM_ACTION_INVALID)
304 return CMD_RET_USAGE;
306 eeprom_init(dev->i2c_bus);
307 if (action == EEPROM_READ) {
308 printf(fmt, dev->i2c_addr, "read", addr, off, cnt);
310 rcode = eeprom_read(dev->i2c_addr, off, (uchar *)addr, cnt);
314 } else if (action == EEPROM_WRITE) {
315 printf(fmt, dev->i2c_addr, "write", addr, off, cnt);
317 rcode = eeprom_write(dev->i2c_addr, off, (uchar *)addr, cnt);
323 #ifdef CONFIG_CMD_EEPROM_LAYOUT
324 rcode = eeprom_read(dev->i2c_addr, 0, eeprom_buf,
325 CONFIG_SYS_EEPROM_SIZE);
329 eeprom_layout_setup(&layout, eeprom_buf, CONFIG_SYS_EEPROM_SIZE,
332 if (action == EEPROM_PRINT) {
333 layout.print(&layout);
337 layout.update(&layout, key, value);
339 rcode = eeprom_write(dev->i2c_addr, 0, layout.data,
340 CONFIG_SYS_EEPROM_SIZE);
346 static int eeprom_action_expected_argc(enum eeprom_action action)
357 return CMD_RET_USAGE;
361 #define NEXT_PARAM(argc, index) { (argc)--; (index)++; }
362 int do_eeprom(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
364 int layout_ver = LAYOUT_VERSION_AUTODETECT;
365 enum eeprom_action action = EEPROM_ACTION_INVALID;
366 struct eeprom_dev_spec dev;
367 ulong addr = 0, cnt = 0, off = 0;
369 char *field_name = "";
370 char *field_value = "";
373 return CMD_RET_USAGE;
375 NEXT_PARAM(argc, index); /* Skip program name */
377 action = parse_action(argv[index]);
378 NEXT_PARAM(argc, index);
380 if (action == EEPROM_ACTION_INVALID)
381 return CMD_RET_USAGE;
383 #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS
384 if (action == EEPROM_PRINT || action == EEPROM_UPDATE) {
385 if (!strcmp(argv[index], "-l")) {
386 NEXT_PARAM(argc, index);
387 layout_ver = eeprom_parse_layout_version(argv[index]);
388 NEXT_PARAM(argc, index);
393 ret = parse_eeprom_dev_spec(&dev,
394 argc - eeprom_action_expected_argc(action),
396 if (ret == CMD_RET_USAGE)
400 NEXT_PARAM(argc, index);
402 if (action == EEPROM_READ || action == EEPROM_WRITE) {
403 addr = parse_numeric_param(argv[index]);
404 NEXT_PARAM(argc, index);
405 off = parse_numeric_param(argv[index]);
406 NEXT_PARAM(argc, index);
407 cnt = parse_numeric_param(argv[index]);
410 #ifdef CONFIG_CMD_EEPROM_LAYOUT
411 if (action == EEPROM_UPDATE) {
412 field_name = argv[index];
413 NEXT_PARAM(argc, index);
414 field_value = argv[index];
415 NEXT_PARAM(argc, index);
419 return eeprom_execute_command(action, &dev, layout_ver, field_name,
420 field_value, addr, off, cnt);
423 #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS
424 #define EEPROM_LAYOUT_SPEC "[-l <layout_version>] "
426 #define EEPROM_LAYOUT_SPEC ""
430 eeprom, 8, 1, do_eeprom,
432 "read [[bus] devaddr] addr off cnt\n"
433 "eeprom write [[bus] devaddr] addr off cnt\n"
434 " - read/write `cnt' bytes from `devaddr` EEPROM at offset `off'"
435 #ifdef CONFIG_CMD_EEPROM_LAYOUT
437 "eeprom print " EEPROM_LAYOUT_SPEC "[[bus] devaddr]\n"
438 " - Print layout fields and their data in human readable format\n"
439 "eeprom update " EEPROM_LAYOUT_SPEC "[[bus] devaddr] field_name field_value\n"
440 " - Update a specific eeprom field with new data.\n"
441 " The new data must be written in the same human readable format as shown by the print command."
442 #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS
445 "The -l option can be used to force the command to interpret the EEPROM data using the chosen layout.\n"
446 "If the -l option is omitted, the command will auto detect the layout based on the data in the EEPROM.\n"
447 "The values which can be provided with the -l option are:\n"
448 CONFIG_EEPROM_LAYOUT_HELP_STRING"\n"