sys_eeprom.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. /*
  2. * Based on board/freescale/common/sys_eeprom.c
  3. * Copyright 2006, 2008-2009, 2011 Freescale Semiconductor
  4. *
  5. * This defines the API for storing board information in the
  6. * eeprom. It has been adapted from an earlier version of the
  7. * Freescale API, but has a number of key differences. Because
  8. * the two APIs are independent and may diverge further, the
  9. * Varisys version of the API is implemented separately here.
  10. *
  11. * SPDX-License-Identifier: GPL-2.0+
  12. */
  13. #include <common.h>
  14. #include <command.h>
  15. #include <i2c.h>
  16. #include <linux/ctype.h>
  17. #include "eeprom.h"
  18. #ifdef CONFIG_SYS_I2C_EEPROM_NXID_MAC
  19. #define MAX_NUM_PORTS CONFIG_SYS_I2C_EEPROM_NXID_MAC
  20. #else
  21. #define MAX_NUM_PORTS 8
  22. #endif
  23. #define NXID_VERSION 0
  24. /**
  25. * static eeprom: EEPROM layout for NXID formats
  26. *
  27. * See Freescale application note AN3638 for details.
  28. */
  29. static struct __attribute__ ((__packed__)) eeprom {
  30. u8 id[4]; /* 0x00 - 0x03 EEPROM Tag 'NXID' */
  31. u8 sn[12]; /* 0x04 - 0x0F Serial Number */
  32. u8 errata[5]; /* 0x10 - 0x14 Errata Level */
  33. u8 date[6]; /* 0x15 - 0x1a Build Date */
  34. u8 res_0; /* 0x1b Reserved */
  35. u32 version; /* 0x1c - 0x1f NXID Version */
  36. u8 tempcal[8]; /* 0x20 - 0x27 Temperature Calibration Factors */
  37. u8 tempcalsys[2]; /* 0x28 - 0x29 System Temperature Calibration Factors */
  38. u8 tempcalflags; /* 0x2a Temperature Calibration Flags */
  39. u8 res_1[21]; /* 0x2b - 0x3f Reserved */
  40. u8 mac_count; /* 0x40 Number of MAC addresses */
  41. u8 mac_flag; /* 0x41 MAC table flags */
  42. u8 mac[MAX_NUM_PORTS][6]; /* 0x42 - x MAC addresses */
  43. u32 crc; /* x+1 CRC32 checksum */
  44. } e;
  45. /* Set to 1 if we've read EEPROM into memory */
  46. static int has_been_read;
  47. /* Is this a valid NXID EEPROM? */
  48. #define is_valid ((e.id[0] == 'N') || (e.id[1] == 'X') || \
  49. (e.id[2] == 'I') || (e.id[3] == 'D'))
  50. /** Fixed ID field in EEPROM */
  51. static unsigned char uid[16];
  52. static int eeprom_bus_num = -1;
  53. static int eeprom_addr;
  54. static int eeprom_addr_len;
  55. /**
  56. * This must be called before any eeprom access.
  57. */
  58. void init_eeprom(int bus_num, int addr, int addr_len)
  59. {
  60. eeprom_bus_num = bus_num;
  61. eeprom_addr = addr;
  62. eeprom_addr_len = addr_len;
  63. }
  64. /**
  65. * show_eeprom - display the contents of the EEPROM
  66. */
  67. void show_eeprom(void)
  68. {
  69. int i;
  70. unsigned int crc;
  71. /* EEPROM tag ID, either CCID or NXID */
  72. printf("ID: %c%c%c%c v%u\n", e.id[0], e.id[1], e.id[2], e.id[3],
  73. be32_to_cpu(e.version));
  74. /* Serial number */
  75. printf("SN: %s\n", e.sn);
  76. printf("UID: ");
  77. for (i = 0; i < 16; i++)
  78. printf("%02x", uid[i]);
  79. printf("\n");
  80. /* Errata level. */
  81. printf("Errata: %s\n", e.errata);
  82. /* Build date, BCD date values, as YYMMDDhhmmss */
  83. printf("Build date: 20%02x/%02x/%02x %02x:%02x:%02x %s\n",
  84. e.date[0], e.date[1], e.date[2],
  85. e.date[3] & 0x7F, e.date[4], e.date[5],
  86. e.date[3] & 0x80 ? "PM" : "");
  87. /* Show MAC addresses */
  88. for (i = 0; i < min(e.mac_count, (u8)MAX_NUM_PORTS); i++) {
  89. u8 *p = e.mac[i];
  90. printf("Eth%u: %02x:%02x:%02x:%02x:%02x:%02x\n", i,
  91. p[0], p[1], p[2], p[3], p[4], p[5]);
  92. }
  93. crc = crc32(0, (void *)&e, sizeof(e) - 4);
  94. if (crc == be32_to_cpu(e.crc))
  95. printf("CRC: %08x\n", be32_to_cpu(e.crc));
  96. else
  97. printf("CRC: %08x (should be %08x)\n",
  98. be32_to_cpu(e.crc), crc);
  99. #ifdef DEBUG
  100. printf("EEPROM dump: (0x%x bytes)\n", sizeof(e));
  101. for (i = 0; i < sizeof(e); i++) {
  102. if ((i % 16) == 0)
  103. printf("%02X: ", i);
  104. printf("%02X ", ((u8 *)&e)[i]);
  105. if (((i % 16) == 15) || (i == sizeof(e) - 1))
  106. printf("\n");
  107. }
  108. #endif
  109. }
  110. /**
  111. * read_eeprom - read the EEPROM into memory
  112. */
  113. int read_eeprom(void)
  114. {
  115. int ret;
  116. unsigned int bus;
  117. if (eeprom_bus_num < 0) {
  118. printf("EEPROM not configured\n");
  119. return -1;
  120. }
  121. if (has_been_read)
  122. return 0;
  123. bus = i2c_get_bus_num();
  124. i2c_set_bus_num(eeprom_bus_num);
  125. ret = i2c_read(eeprom_addr, 0, eeprom_addr_len,
  126. (void *)&e, sizeof(e));
  127. /* Fixed address of ID field */
  128. i2c_read(0x5f, 0x80, 1, uid, 16);
  129. i2c_set_bus_num(bus);
  130. #ifdef DEBUG
  131. show_eeprom();
  132. #endif
  133. has_been_read = (ret == 0) ? 1 : 0;
  134. return ret;
  135. }
  136. /**
  137. * update_crc - update the CRC
  138. *
  139. * This function should be called after each update to the EEPROM structure,
  140. * to make sure the CRC is always correct.
  141. */
  142. static void update_crc(void)
  143. {
  144. u32 crc, crc_offset = offsetof(struct eeprom, crc);
  145. crc = crc32(0, (void *)&e, crc_offset);
  146. e.crc = cpu_to_be32(crc);
  147. }
  148. /**
  149. * prog_eeprom - write the EEPROM from memory
  150. */
  151. static int prog_eeprom(void)
  152. {
  153. int ret = 0;
  154. int i;
  155. void *p;
  156. unsigned int bus;
  157. if (eeprom_bus_num < 0) {
  158. printf("EEPROM not configured\n");
  159. return -1;
  160. }
  161. /* Set the reserved values to 0xFF */
  162. e.res_0 = 0xFF;
  163. memset(e.res_1, 0xFF, sizeof(e.res_1));
  164. update_crc();
  165. bus = i2c_get_bus_num();
  166. i2c_set_bus_num(eeprom_bus_num);
  167. /*
  168. * The AT24C02 datasheet says that data can only be written in page
  169. * mode, which means 8 bytes at a time, and it takes up to 5ms to
  170. * complete a given write.
  171. */
  172. for (i = 0, p = &e; i < sizeof(e); i += 8, p += 8) {
  173. ret = i2c_write(eeprom_addr, i, eeprom_addr_len,
  174. p, min((int)(sizeof(e) - i), 8));
  175. if (ret)
  176. break;
  177. udelay(5000); /* 5ms write cycle timing */
  178. }
  179. if (!ret) {
  180. /* Verify the write by reading back the EEPROM and comparing */
  181. struct eeprom e2;
  182. ret = i2c_read(eeprom_addr, 0,
  183. eeprom_addr_len, (void *)&e2, sizeof(e2));
  184. if (!ret && memcmp(&e, &e2, sizeof(e)))
  185. ret = -1;
  186. }
  187. i2c_set_bus_num(bus);
  188. if (ret) {
  189. printf("Programming failed.\n");
  190. has_been_read = 0;
  191. return -1;
  192. }
  193. printf("Programming passed.\n");
  194. return 0;
  195. }
  196. /**
  197. * h2i - converts hex character into a number
  198. *
  199. * This function takes a hexadecimal character (e.g. '7' or 'C') and returns
  200. * the integer equivalent.
  201. */
  202. static inline u8 h2i(char p)
  203. {
  204. if ((p >= '0') && (p <= '9'))
  205. return p - '0';
  206. if ((p >= 'A') && (p <= 'F'))
  207. return (p - 'A') + 10;
  208. if ((p >= 'a') && (p <= 'f'))
  209. return (p - 'a') + 10;
  210. return 0;
  211. }
  212. /**
  213. * set_date - stores the build date into the EEPROM
  214. *
  215. * This function takes a pointer to a string in the format "YYMMDDhhmmss"
  216. * (2-digit year, 2-digit month, etc), converts it to a 6-byte BCD string,
  217. * and stores it in the build date field of the EEPROM local copy.
  218. */
  219. static void set_date(const char *string)
  220. {
  221. unsigned int i;
  222. if (strlen(string) != 12) {
  223. printf("Usage: mac date YYMMDDhhmmss\n");
  224. return;
  225. }
  226. for (i = 0; i < 6; i++)
  227. e.date[i] = h2i(string[2 * i]) << 4 | h2i(string[2 * i + 1]);
  228. update_crc();
  229. }
  230. /**
  231. * set_mac_address - stores a MAC address into the EEPROM
  232. *
  233. * This function takes a pointer to MAC address string
  234. * (i.e."XX:XX:XX:XX:XX:XX", where "XX" is a two-digit hex number) and
  235. * stores it in one of the MAC address fields of the EEPROM local copy.
  236. */
  237. static void set_mac_address(unsigned int index, const char *string)
  238. {
  239. char *p = (char *)string;
  240. unsigned int i;
  241. if ((index >= MAX_NUM_PORTS) || !string) {
  242. printf("Usage: mac <n> XX:XX:XX:XX:XX:XX\n");
  243. return;
  244. }
  245. for (i = 0; *p && (i < 6); i++) {
  246. e.mac[index][i] = simple_strtoul(p, &p, 16);
  247. if (*p == ':')
  248. p++;
  249. }
  250. update_crc();
  251. }
  252. int do_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  253. {
  254. char cmd;
  255. if (argc == 1) {
  256. show_eeprom();
  257. return 0;
  258. }
  259. cmd = argv[1][0];
  260. if (cmd == 'r') {
  261. read_eeprom();
  262. return 0;
  263. }
  264. if (cmd == 'i') {
  265. memcpy(e.id, "NXID", sizeof(e.id));
  266. e.version = NXID_VERSION;
  267. update_crc();
  268. return 0;
  269. }
  270. if (!is_valid) {
  271. printf("Please read the EEPROM ('r') and/or set the ID ('i') first.\n");
  272. return 0;
  273. }
  274. if (argc == 2) {
  275. switch (cmd) {
  276. case 's': /* save */
  277. prog_eeprom();
  278. break;
  279. default:
  280. return cmd_usage(cmdtp);
  281. }
  282. return 0;
  283. }
  284. /* We know we have at least one parameter */
  285. switch (cmd) {
  286. case 'n': /* serial number */
  287. memset(e.sn, 0, sizeof(e.sn));
  288. strncpy((char *)e.sn, argv[2], sizeof(e.sn) - 1);
  289. update_crc();
  290. break;
  291. case 'e': /* errata */
  292. memset(e.errata, 0, 5);
  293. strncpy((char *)e.errata, argv[2], 4);
  294. update_crc();
  295. break;
  296. case 'd': /* date BCD format YYMMDDhhmmss */
  297. set_date(argv[2]);
  298. break;
  299. case 'p': /* MAC table size */
  300. e.mac_count = simple_strtoul(argv[2], NULL, 16);
  301. update_crc();
  302. break;
  303. case '0' ... '9': /* "mac 0" through "mac 22" */
  304. set_mac_address(simple_strtoul(argv[1], NULL, 10), argv[2]);
  305. break;
  306. case 'h': /* help */
  307. default:
  308. return cmd_usage(cmdtp);
  309. }
  310. return 0;
  311. }
  312. int mac_read_from_generic_eeprom(const char *envvar, int chip,
  313. int address, int mac_bus)
  314. {
  315. int ret;
  316. unsigned int bus;
  317. unsigned char mac[6];
  318. char ethaddr[18];
  319. bus = i2c_get_bus_num();
  320. i2c_set_bus_num(mac_bus);
  321. ret = i2c_read(chip, address, 1, mac, 6);
  322. i2c_set_bus_num(bus);
  323. if (!ret) {
  324. sprintf(ethaddr, "%02X:%02X:%02X:%02X:%02X:%02X",
  325. mac[0],
  326. mac[1],
  327. mac[2],
  328. mac[3],
  329. mac[4],
  330. mac[5]);
  331. printf("MAC: %s\n", ethaddr);
  332. setenv(envvar, ethaddr);
  333. }
  334. return ret;
  335. }
  336. void mac_read_from_fixed_id(void)
  337. {
  338. #ifdef CONFIG_SYS_I2C_MAC1_CHIP_ADDR
  339. mac_read_from_generic_eeprom("ethaddr", CONFIG_SYS_I2C_MAC1_CHIP_ADDR,
  340. CONFIG_SYS_I2C_MAC1_DATA_ADDR, CONFIG_SYS_I2C_MAC1_BUS);
  341. #endif
  342. #ifdef CONFIG_SYS_I2C_MAC2_CHIP_ADDR
  343. mac_read_from_generic_eeprom("eth1addr", CONFIG_SYS_I2C_MAC2_CHIP_ADDR,
  344. CONFIG_SYS_I2C_MAC2_DATA_ADDR, CONFIG_SYS_I2C_MAC2_BUS);
  345. #endif
  346. }
  347. /**
  348. * mac_read_from_eeprom - read the MAC addresses from EEPROM
  349. *
  350. * This function reads the MAC addresses from EEPROM and sets the
  351. * appropriate environment variables for each one read.
  352. *
  353. * The environment variables are only set if they haven't been set already.
  354. * This ensures that any user-saved variables are never overwritten.
  355. *
  356. * This function must be called after relocation.
  357. *
  358. * For NXID v1 EEPROMs, we support loading and up-converting the older NXID v0
  359. * format. In a v0 EEPROM, there are only eight MAC addresses and the CRC is
  360. * located at a different offset.
  361. */
  362. int mac_read_from_eeprom_common(void)
  363. {
  364. unsigned int i;
  365. u32 crc, crc_offset = offsetof(struct eeprom, crc);
  366. u32 *crcp; /* Pointer to the CRC in the data read from the EEPROM */
  367. puts("EEPROM: ");
  368. if (read_eeprom()) {
  369. printf("Read failed.\n");
  370. return 0;
  371. }
  372. if (!is_valid) {
  373. printf("Invalid ID (%02x %02x %02x %02x)\n",
  374. e.id[0], e.id[1], e.id[2], e.id[3]);
  375. return 0;
  376. }
  377. crc = crc32(0, (void *)&e, crc_offset);
  378. crcp = (void *)&e + crc_offset;
  379. if (crc != be32_to_cpu(*crcp)) {
  380. printf("CRC mismatch (%08x != %08x)\n", crc,
  381. be32_to_cpu(e.crc));
  382. return 0;
  383. }
  384. /*
  385. * MAC address #9 in v1 occupies the same position as the CRC in v0.
  386. * Erase it so that it's not mistaken for a MAC address. We'll
  387. * update the CRC later.
  388. */
  389. if (e.version == 0)
  390. memset(e.mac[8], 0xff, 6);
  391. for (i = 0; i < min(e.mac_count, (u8)MAX_NUM_PORTS); i++) {
  392. if (memcmp(&e.mac[i], "\0\0\0\0\0\0", 6) &&
  393. memcmp(&e.mac[i], "\xFF\xFF\xFF\xFF\xFF\xFF", 6)) {
  394. char ethaddr[18];
  395. char enetvar[9];
  396. sprintf(ethaddr, "%02X:%02X:%02X:%02X:%02X:%02X",
  397. e.mac[i][0],
  398. e.mac[i][1],
  399. e.mac[i][2],
  400. e.mac[i][3],
  401. e.mac[i][4],
  402. e.mac[i][5]);
  403. sprintf(enetvar, i ? "eth%daddr" : "ethaddr", i);
  404. /* Only initialize environment variables that are blank
  405. * (i.e. have not yet been set)
  406. */
  407. if (!getenv(enetvar))
  408. setenv(enetvar, ethaddr);
  409. }
  410. }
  411. printf("%c%c%c%c v%u\n", e.id[0], e.id[1], e.id[2], e.id[3],
  412. be32_to_cpu(e.version));
  413. return 0;
  414. }