Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 | // SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2000, 2001 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. */ /* * Support for read and write access to EEPROM like memory devices. This * includes regular EEPROM as well as FRAM (ferroelectic nonvolaile RAM). * FRAM devices read and write data at bus speed. In particular, there is no * write delay. Also, there is no limit imposed on the number of bytes that can * be transferred with a single read or write. * * Use the following configuration options to ensure no unneeded performance * degradation (typical for EEPROM) is incured for FRAM memory: * * #define CONFIG_SYS_I2C_FRAM * Set CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS to 0 * */ #include <config.h> #include <command.h> #include <dm.h> #include <eeprom.h> #include <i2c.h> #include <i2c_eeprom.h> #include <eeprom_layout.h> #include <vsprintf.h> #include <linux/delay.h> #ifndef I2C_RXTX_LEN #define I2C_RXTX_LEN 128 #endif #define EEPROM_PAGE_SIZE (1 << CONFIG_SYS_EEPROM_PAGE_WRITE_BITS) #define EEPROM_PAGE_OFFSET(x) ((x) & (EEPROM_PAGE_SIZE - 1)) #if CONFIG_IS_ENABLED(DM_I2C) static int eeprom_i2c_bus; #endif __weak int eeprom_write_enable(unsigned dev_addr, int state) { return 0; } void eeprom_init(int bus) { /* I2C EEPROM */ #if CONFIG_IS_ENABLED(DM_I2C) eeprom_i2c_bus = bus; #elif CONFIG_IS_ENABLED(SYS_I2C_LEGACY) if (bus >= 0) i2c_set_bus_num(bus); i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); #endif } /* * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 2 (16-bit EEPROM address) offset is * 0x000nxxxx for EEPROM address selectors at n, offset xxxx in EEPROM. * * for CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 (8-bit EEPROM page address) offset is * 0x00000nxx for EEPROM address selectors and page number at n. */ static int eeprom_addr(unsigned dev_addr, unsigned offset, uchar *addr) { unsigned blk_off; int alen; blk_off = offset & 0xff; /* block offset */ #if CONFIG_SYS_I2C_EEPROM_ADDR_LEN == 1 addr[0] = offset >> 8; /* block number */ addr[1] = blk_off; /* block offset */ alen = 2; #else addr[0] = offset >> 16; /* block number */ addr[1] = offset >> 8; /* upper address octet */ addr[2] = blk_off; /* lower address octet */ alen = 3; #endif /* CONFIG_SYS_I2C_EEPROM_ADDR_LEN */ addr[0] |= dev_addr; /* insert device address */ return alen; } static int eeprom_len(unsigned offset, unsigned end) { unsigned len = end - offset; /* * For a FRAM device there is no limit on the number of the * bytes that can be accessed with the single read or write * operation. */ #if !defined(CONFIG_SYS_I2C_FRAM) unsigned blk_off = offset & 0xff; unsigned maxlen = EEPROM_PAGE_SIZE - EEPROM_PAGE_OFFSET(blk_off); if (maxlen > I2C_RXTX_LEN) maxlen = I2C_RXTX_LEN; if (len > maxlen) len = maxlen; #endif return len; } static int eeprom_rw_block(unsigned offset, uchar *addr, unsigned alen, uchar *buffer, unsigned len, bool read) { int ret = 0; #if CONFIG_IS_ENABLED(DM_I2C) struct udevice *dev; ret = i2c_get_chip_for_busnum(eeprom_i2c_bus, addr[0], alen - 1, &dev); if (ret) { printf("%s: Cannot find udev for a bus %d\n", __func__, eeprom_i2c_bus); return CMD_RET_FAILURE; } if (read) ret = dm_i2c_read(dev, offset, buffer, len); else ret = dm_i2c_write(dev, offset, buffer, len); #else /* Non DM I2C support - will be removed */ if (read) ret = i2c_read(addr[0], offset, alen - 1, buffer, len); else ret = i2c_write(addr[0], offset, alen - 1, buffer, len); #endif /* CONFIG_DM_I2C */ if (ret) ret = CMD_RET_FAILURE; return ret; } static int eeprom_rw(unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt, bool read) { unsigned end = offset + cnt; unsigned alen, len; int rcode = 0; uchar addr[3]; #if !CONFIG_IS_ENABLED(DM_I2C) && defined(CONFIG_SYS_I2C_EEPROM_BUS) eeprom_init(CONFIG_SYS_I2C_EEPROM_BUS); #endif while (offset < end) { alen = eeprom_addr(dev_addr, offset, addr); len = eeprom_len(offset, end); rcode = eeprom_rw_block(offset, addr, alen, buffer, len, read); buffer += len; offset += len; #if CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS > 0 if (!read) udelay(CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS * 1000); #endif } return rcode; } int eeprom_read(unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt) { /* * Read data until done or would cross a page boundary. * We must write the address again when changing pages * because the next page may be in a different device. */ return eeprom_rw(dev_addr, offset, buffer, cnt, 1); } int eeprom_write(unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt) { int ret; eeprom_write_enable(dev_addr, 1); /* * Write data until done or would cross a write page boundary. * We must write the address again when changing pages * because the address counter only increments within a page. */ ret = eeprom_rw(dev_addr, offset, buffer, cnt, 0); eeprom_write_enable(dev_addr, 0); return ret; } static long parse_numeric_param(char *str) { char *endptr; long value = simple_strtol(str, &endptr, 16); return (*endptr != '\0') ? -1 : value; } struct eeprom_dev_spec { #if CONFIG_IS_ENABLED(I2C_EEPROM) struct udevice *dev; #endif int i2c_bus; ulong i2c_addr; }; static void eeprom_dev_spec_init(struct eeprom_dev_spec *dev) { #if CONFIG_IS_ENABLED(I2C_EEPROM) if (!dev->dev) #endif eeprom_init(dev->i2c_bus); } static int eeprom_dev_spec_read(struct eeprom_dev_spec *dev, unsigned offset, uchar *buffer, unsigned cnt) { #if CONFIG_IS_ENABLED(I2C_EEPROM) if (dev->dev) return i2c_eeprom_read(dev->dev, offset, buffer, cnt); #endif return eeprom_read(dev->i2c_addr, offset, buffer, cnt); } static int eeprom_dev_spec_write(struct eeprom_dev_spec *dev, unsigned offset, uchar *buffer, unsigned cnt) { #if CONFIG_IS_ENABLED(I2C_EEPROM) if (dev->dev) return i2c_eeprom_write(dev->dev, offset, buffer, cnt); #endif return eeprom_write(dev->i2c_addr, offset, buffer, cnt); } /** * parse_eeprom_dev_spec - parse the eeprom device specifier * * @dev: pointer to eeprom device specifier * @argc: count of command line arguments that can be used to parse * the device specifier * @argv: command line arguments left to parse * * @returns: number of arguments parsed or CMD_RET_USAGE if error */ static int parse_eeprom_dev_spec(struct eeprom_dev_spec *dev, int argc, char *const argv[]) { #if CONFIG_IS_ENABLED(I2C_EEPROM) if (argc == 0) { if (!uclass_first_device_err(UCLASS_I2C_EEPROM, &dev->dev)) return 0; } if (argc == 1) { if (!uclass_get_device_by_name(UCLASS_I2C_EEPROM, argv[0], &dev->dev)) return 1; /* * If we could not find the device by name and the parameter is * not numeric (and so won't be handled later), fail. */ if (parse_numeric_param(argv[0]) == -1) { printf("Can't get eeprom device: %s\n", argv[0]); return CMD_RET_USAGE; } } #endif #ifdef CONFIG_SYS_I2C_EEPROM_ADDR if (argc == 0) { dev->i2c_bus = -1; dev->i2c_addr = CONFIG_SYS_I2C_EEPROM_ADDR; return 0; } #endif if (argc == 1) { dev->i2c_bus = -1; dev->i2c_addr = parse_numeric_param(argv[0]); return 1; } if (argc == 2) { dev->i2c_bus = parse_numeric_param(argv[0]); dev->i2c_addr = parse_numeric_param(argv[1]); return 2; } return CMD_RET_USAGE; } #ifdef CONFIG_CMD_EEPROM_LAYOUT #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS __weak int eeprom_parse_layout_version(char *str) { return LAYOUT_VERSION_UNRECOGNIZED; } #endif static unsigned char eeprom_buf[CONFIG_SYS_EEPROM_SIZE]; #endif enum eeprom_action { EEPROM_LIST, EEPROM_READ, EEPROM_WRITE, EEPROM_PRINT, EEPROM_UPDATE, EEPROM_ACTION_INVALID, }; static enum eeprom_action parse_action(char *cmd) { #if CONFIG_IS_ENABLED(I2C_EEPROM) if (!strncmp(cmd, "list", 4)) return EEPROM_LIST; #endif if (!strncmp(cmd, "read", 4)) return EEPROM_READ; if (!strncmp(cmd, "write", 5)) return EEPROM_WRITE; #ifdef CONFIG_CMD_EEPROM_LAYOUT if (!strncmp(cmd, "print", 5)) return EEPROM_PRINT; if (!strncmp(cmd, "update", 6)) return EEPROM_UPDATE; #endif return EEPROM_ACTION_INVALID; } #if CONFIG_IS_ENABLED(I2C_EEPROM) static int do_eeprom_list(void) { struct udevice *dev; struct uclass *uc; int err; err = uclass_get(UCLASS_I2C_EEPROM, &uc); if (err) return CMD_RET_FAILURE; uclass_foreach_dev(dev, uc) printf("%s (%s)\n", dev->name, dev->driver->name); return CMD_RET_SUCCESS; } #endif static int do_eeprom_rw(struct eeprom_dev_spec *dev, bool read, ulong addr, ulong off, ulong cnt) { const char *const fmt = "\nEEPROM @0x%lX %s: addr 0x%08lx off 0x%04lx count %ld ... "; uchar *memloc = (uchar *)addr; int ret; printf(fmt, dev->i2c_addr, read ? "read" : "write", addr, off, cnt); if (read) ret = eeprom_dev_spec_read(dev, off, memloc, cnt); else ret = eeprom_dev_spec_write(dev, off, memloc, cnt); puts("done\n"); return ret; } #ifdef CONFIG_CMD_EEPROM_LAYOUT static int do_eeprom_layout(struct eeprom_dev_spec *dev, int layout_ver, struct eeprom_layout *layout) { eeprom_layout_setup(layout, eeprom_buf, CONFIG_SYS_EEPROM_SIZE, layout_ver); return eeprom_dev_spec_read(dev, 0, eeprom_buf, layout->data_size); } static int do_eeprom_print(struct eeprom_dev_spec *dev, int layout_ver) { struct eeprom_layout layout; int ret; ret = do_eeprom_layout(dev, layout_ver, &layout); if (ret) return ret; layout.print(&layout); return 0; } static int do_eeprom_update(struct eeprom_dev_spec *dev, int layout_ver, char *key, char *value) { struct eeprom_layout layout; int ret; ret = do_eeprom_layout(dev, layout_ver, &layout); if (ret) return ret; ret = layout.update(&layout, key, value); if (ret) return CMD_RET_FAILURE; return eeprom_dev_spec_write(dev, 0, layout.data, layout.data_size); } #endif static int eeprom_action_expected_argc(enum eeprom_action action) { switch (action) { case EEPROM_LIST: return 0; case EEPROM_READ: case EEPROM_WRITE: return 3; case EEPROM_PRINT: return 0; case EEPROM_UPDATE: return 2; default: return CMD_RET_USAGE; } } #define NEXT_PARAM(argc, index) { (argc)--; (index)++; } int do_eeprom(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { enum eeprom_action action = EEPROM_ACTION_INVALID; struct eeprom_dev_spec dev; ulong addr = 0, cnt = 0, off = 0; int ret, index = 0; #ifdef CONFIG_CMD_EEPROM_LAYOUT char *field_name = ""; char *field_value = ""; int layout_ver = LAYOUT_VERSION_AUTODETECT; #endif if (argc <= 1) return CMD_RET_USAGE; NEXT_PARAM(argc, index); /* Skip program name */ action = parse_action(argv[index]); NEXT_PARAM(argc, index); if (action == EEPROM_ACTION_INVALID) return CMD_RET_USAGE; #if CONFIG_IS_ENABLED(I2C_EEPROM) if (action == EEPROM_LIST) return do_eeprom_list(); #endif #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS if (action == EEPROM_PRINT || action == EEPROM_UPDATE) { if (!strcmp(argv[index], "-l")) { NEXT_PARAM(argc, index); layout_ver = eeprom_parse_layout_version(argv[index]); NEXT_PARAM(argc, index); } } #endif ret = parse_eeprom_dev_spec(&dev, argc - eeprom_action_expected_argc(action), argv + index); if (ret == CMD_RET_USAGE) return ret; while (ret--) NEXT_PARAM(argc, index); if (action == EEPROM_READ || action == EEPROM_WRITE) { addr = parse_numeric_param(argv[index]); NEXT_PARAM(argc, index); off = parse_numeric_param(argv[index]); NEXT_PARAM(argc, index); cnt = parse_numeric_param(argv[index]); } #ifdef CONFIG_CMD_EEPROM_LAYOUT if (action == EEPROM_UPDATE) { field_name = argv[index]; NEXT_PARAM(argc, index); field_value = argv[index]; NEXT_PARAM(argc, index); } #endif eeprom_dev_spec_init(&dev); switch (action) { case EEPROM_READ: case EEPROM_WRITE: return do_eeprom_rw(&dev, action == EEPROM_READ, addr, off, cnt); #ifdef CONFIG_CMD_EEPROM_LAYOUT case EEPROM_PRINT: return do_eeprom_print(&dev, layout_ver); case EEPROM_UPDATE: return do_eeprom_update(&dev, layout_ver, field_name, field_value); #endif default: return CMD_RET_USAGE; } } #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS #define EEPROM_LAYOUT_SPEC "[-l <layout_version>] " #else #define EEPROM_LAYOUT_SPEC "" #endif #if CONFIG_IS_ENABLED(I2C_EEPROM) # define EEPROM_DEV_SPEC "[device_specifier]" #else # define EEPROM_DEV_SPEC "[[bus] devaddr]" #endif U_BOOT_CMD( eeprom, 8, 1, do_eeprom, "EEPROM sub-system", #if CONFIG_IS_ENABLED(I2C_EEPROM) "list\n" "eeprom " #endif "read " EEPROM_DEV_SPEC " addr off cnt\n" "eeprom write " EEPROM_DEV_SPEC " addr off cnt\n" " - read/write `cnt' bytes from `devaddr` EEPROM at offset `off'" #ifdef CONFIG_CMD_EEPROM_LAYOUT "\n" "eeprom print " EEPROM_LAYOUT_SPEC EEPROM_DEV_SPEC "\n" " - Print layout fields and their data in human readable format\n" "eeprom update " EEPROM_LAYOUT_SPEC EEPROM_DEV_SPEC " field_name field_value\n" " - Update a specific eeprom field with new data.\n" " The new data must be written in the same human readable format as shown by the print command." #endif #if CONFIG_IS_ENABLED(I2C_EEPROM) "\n\n" "DEVICE SPECIFIER - the eeprom device can be specified\n" " [dev_name] - by device name (devices can listed with the eeprom list command)\n" " [[bus] devaddr] - or by I2C bus and I2C device address\n" "If no device specifier is given, the first driver-model found device is used." #endif #ifdef CONFIG_EEPROM_LAYOUT_VERSIONS "\n\n" "LAYOUT VERSIONS\n" "The -l option can be used to force the command to interpret the EEPROM data using the chosen layout.\n" "If the -l option is omitted, the command will auto detect the layout based on the data in the EEPROM.\n" "The values which can be provided with the -l option are:\n" CONFIG_EEPROM_LAYOUT_HELP_STRING"\n" #endif ); |