blob: 5a8f4f5810a000bc37aa3ee7852b59e630a94c3f [file] [log] [blame]
Haiying Wangbea3f282006-07-12 10:48:05 -04001/*
Haiying Wang9a611082009-06-04 16:12:40 -04002 * Copyright 2006, 2008-2009 Freescale Semiconductor
Haiying Wangbea3f282006-07-12 10:48:05 -04003 * York Sun (yorksun@freescale.com)
4 * Haiying Wang (haiying.wang@freescale.com)
Timur Tabie2d31fb2008-06-19 17:56:11 -05005 * Timur Tabi (timur@freescale.com)
Haiying Wangbea3f282006-07-12 10:48:05 -04006 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <command.h>
28#include <i2c.h>
29#include <linux/ctype.h>
30
Timur Tabie2d31fb2008-06-19 17:56:11 -050031#include "../common/eeprom.h"
Haiying Wangbea3f282006-07-12 10:48:05 -040032
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020033#if !defined(CONFIG_SYS_I2C_EEPROM_CCID) && !defined(CONFIG_SYS_I2C_EEPROM_NXID)
34#error "Please define either CONFIG_SYS_I2C_EEPROM_CCID or CONFIG_SYS_I2C_EEPROM_NXID"
Timur Tabie2d31fb2008-06-19 17:56:11 -050035#endif
Haiying Wangbea3f282006-07-12 10:48:05 -040036
Haiying Wang9a611082009-06-04 16:12:40 -040037#define MAX_NUM_PORTS 8 /* This value must be 8 as defined in doc */
38
Timur Tabie2d31fb2008-06-19 17:56:11 -050039/**
40 * static eeprom: EEPROM layout for CCID or NXID formats
41 *
42 * See application note AN3638 for details.
43 */
44static struct __attribute__ ((__packed__)) eeprom {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#ifdef CONFIG_SYS_I2C_EEPROM_CCID
Timur Tabie2d31fb2008-06-19 17:56:11 -050046 u8 id[4]; /* 0x00 - 0x03 EEPROM Tag 'CCID' */
47 u8 major; /* 0x04 Board revision, major */
48 u8 minor; /* 0x05 Board revision, minor */
49 u8 sn[10]; /* 0x06 - 0x0F Serial Number*/
50 u8 errata[2]; /* 0x10 - 0x11 Errata Level */
51 u8 date[6]; /* 0x12 - 0x17 Build Date */
52 u8 res_0[40]; /* 0x18 - 0x3f Reserved */
53 u8 mac_count; /* 0x40 Number of MAC addresses */
54 u8 mac_flag; /* 0x41 MAC table flags */
Haiying Wang9a611082009-06-04 16:12:40 -040055 u8 mac[MAX_NUM_PORTS][6]; /* 0x42 - 0x71 MAC addresses */
Timur Tabie2d31fb2008-06-19 17:56:11 -050056 u32 crc; /* 0x72 CRC32 checksum */
57#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058#ifdef CONFIG_SYS_I2C_EEPROM_NXID
Timur Tabie2d31fb2008-06-19 17:56:11 -050059 u8 id[4]; /* 0x00 - 0x03 EEPROM Tag 'NXID' */
60 u8 sn[12]; /* 0x04 - 0x0F Serial Number */
61 u8 errata[5]; /* 0x10 - 0x14 Errata Level */
62 u8 date[6]; /* 0x15 - 0x1a Build Date */
63 u8 res_0; /* 0x1b Reserved */
64 u32 version; /* 0x1c - 0x1f NXID Version */
65 u8 tempcal[8]; /* 0x20 - 0x27 Temperature Calibration Factors */
66 u8 tempcalsys[2]; /* 0x28 - 0x29 System Temperature Calibration Factors */
67 u8 tempcalflags; /* 0x2a Temperature Calibration Flags */
68 u8 res_1[21]; /* 0x2b - 0x3f Reserved */
69 u8 mac_count; /* 0x40 Number of MAC addresses */
70 u8 mac_flag; /* 0x41 MAC table flags */
Haiying Wang9a611082009-06-04 16:12:40 -040071 u8 mac[MAX_NUM_PORTS][6]; /* 0x42 - 0x71 MAC addresses */
Timur Tabie2d31fb2008-06-19 17:56:11 -050072 u32 crc; /* 0x72 CRC32 checksum */
73#endif
74} e;
75
76/* Set to 1 if we've read EEPROM into memory */
77static int has_been_read = 0;
78
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020079#ifdef CONFIG_SYS_I2C_EEPROM_NXID
Timur Tabie2d31fb2008-06-19 17:56:11 -050080/* Is this a valid NXID EEPROM? */
Kumar Galaafb0b1312009-07-03 12:45:44 -050081#define is_valid ((e.id[0] == 'N') || (e.id[1] == 'X') || \
82 (e.id[2] == 'I') || (e.id[3] == 'D'))
Timur Tabie2d31fb2008-06-19 17:56:11 -050083#endif
84
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085#ifdef CONFIG_SYS_I2C_EEPROM_CCID
Timur Tabie2d31fb2008-06-19 17:56:11 -050086/* Is this a valid CCID EEPROM? */
Kumar Galaafb0b1312009-07-03 12:45:44 -050087#define is_valid ((e.id[0] == 'C') || (e.id[1] == 'C') || \
88 (e.id[2] == 'I') || (e.id[3] == 'D'))
Timur Tabie2d31fb2008-06-19 17:56:11 -050089#endif
90
91/**
92 * show_eeprom - display the contents of the EEPROM
93 */
94static void show_eeprom(void)
Haiying Wangbea3f282006-07-12 10:48:05 -040095{
96 int i;
Timur Tabie2d31fb2008-06-19 17:56:11 -050097 unsigned int crc;
Haiying Wangbea3f282006-07-12 10:48:05 -040098
Timur Tabie2d31fb2008-06-19 17:56:11 -050099 /* EEPROM tag ID, either CCID or NXID */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200100#ifdef CONFIG_SYS_I2C_EEPROM_NXID
Timur Tabie2d31fb2008-06-19 17:56:11 -0500101 printf("ID: %c%c%c%c v%u\n", e.id[0], e.id[1], e.id[2], e.id[3],
102 be32_to_cpu(e.version));
103#else
104 printf("ID: %c%c%c%c\n", e.id[0], e.id[1], e.id[2], e.id[3]);
105#endif
Haiying Wangd59feff2008-01-16 17:12:12 -0500106
Timur Tabie2d31fb2008-06-19 17:56:11 -0500107 /* Serial number */
108 printf("SN: %s\n", e.sn);
Haiying Wangd59feff2008-01-16 17:12:12 -0500109
Timur Tabie2d31fb2008-06-19 17:56:11 -0500110 /* Errata level. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111#ifdef CONFIG_SYS_I2C_EEPROM_NXID
Timur Tabie2d31fb2008-06-19 17:56:11 -0500112 printf("Errata: %s\n", e.errata);
113#else
114 printf("Errata: %c%c\n",
115 e.errata[0] ? e.errata[0] : '.',
116 e.errata[1] ? e.errata[1] : '.');
117#endif
Haiying Wangd59feff2008-01-16 17:12:12 -0500118
Timur Tabie2d31fb2008-06-19 17:56:11 -0500119 /* Build date, BCD date values, as YYMMDDhhmmss */
120 printf("Build date: 20%02x/%02x/%02x %02x:%02x:%02x %s\n",
121 e.date[0], e.date[1], e.date[2],
122 e.date[3] & 0x7F, e.date[4], e.date[5],
123 e.date[3] & 0x80 ? "PM" : "");
Haiying Wangd59feff2008-01-16 17:12:12 -0500124
Timur Tabie2d31fb2008-06-19 17:56:11 -0500125 /* Show MAC addresses */
Haiying Wang9a611082009-06-04 16:12:40 -0400126 for (i = 0; i < min(e.mac_count, MAX_NUM_PORTS); i++) {
127
Timur Tabie2d31fb2008-06-19 17:56:11 -0500128 u8 *p = e.mac[i];
129
130 printf("Eth%u: %02x:%02x:%02x:%02x:%02x:%02x\n", i,
131 p[0], p[1], p[2], p[3], p[4], p[5]);
132 }
133
134 crc = crc32(0, (void *)&e, sizeof(e) - 4);
135
136 if (crc == be32_to_cpu(e.crc))
137 printf("CRC: %08x\n", be32_to_cpu(e.crc));
Haiying Wangd59feff2008-01-16 17:12:12 -0500138 else
Timur Tabie2d31fb2008-06-19 17:56:11 -0500139 printf("CRC: %08x (should be %08x)\n",
140 be32_to_cpu(e.crc), crc);
Haiying Wangd59feff2008-01-16 17:12:12 -0500141
Timur Tabie2d31fb2008-06-19 17:56:11 -0500142#ifdef DEBUG
143 printf("EEPROM dump: (0x%x bytes)\n", sizeof(e));
144 for (i = 0; i < sizeof(e); i++) {
145 if ((i % 16) == 0)
146 printf("%02X: ", i);
147 printf("%02X ", ((u8 *)&e)[i]);
148 if (((i % 16) == 15) || (i == sizeof(e) - 1))
149 printf("\n");
Haiying Wangd59feff2008-01-16 17:12:12 -0500150 }
Timur Tabie2d31fb2008-06-19 17:56:11 -0500151#endif
Haiying Wangbea3f282006-07-12 10:48:05 -0400152}
153
Timur Tabie2d31fb2008-06-19 17:56:11 -0500154/**
155 * read_eeprom - read the EEPROM into memory
156 */
157static int read_eeprom(void)
Haiying Wangbea3f282006-07-12 10:48:05 -0400158{
Timur Tabie2d31fb2008-06-19 17:56:11 -0500159 int ret;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160#ifdef CONFIG_SYS_EEPROM_BUS_NUM
Timur Tabie2d31fb2008-06-19 17:56:11 -0500161 unsigned int bus;
162#endif
Haiying Wangbea3f282006-07-12 10:48:05 -0400163
Timur Tabie2d31fb2008-06-19 17:56:11 -0500164 if (has_been_read)
165 return 0;
Haiying Wangbea3f282006-07-12 10:48:05 -0400166
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167#ifdef CONFIG_SYS_EEPROM_BUS_NUM
Timur Tabie2d31fb2008-06-19 17:56:11 -0500168 bus = i2c_get_bus_num();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169 i2c_set_bus_num(CONFIG_SYS_EEPROM_BUS_NUM);
Timur Tabie2d31fb2008-06-19 17:56:11 -0500170#endif
171
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 ret = i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, CONFIG_SYS_I2C_EEPROM_ADDR_LEN,
Timur Tabie2d31fb2008-06-19 17:56:11 -0500173 (void *)&e, sizeof(e));
174
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200175#ifdef CONFIG_SYS_EEPROM_BUS_NUM
Timur Tabie2d31fb2008-06-19 17:56:11 -0500176 i2c_set_bus_num(bus);
177#endif
178
179#ifdef DEBUG
180 show_eeprom();
181#endif
182
183 has_been_read = (ret == 0) ? 1 : 0;
184
185 return ret;
Haiying Wangbea3f282006-07-12 10:48:05 -0400186}
187
Timur Tabie2d31fb2008-06-19 17:56:11 -0500188/**
Timur Tabi2d04db02009-08-28 16:56:45 -0500189 * update_crc - update the CRC
190 *
191 * This function should be called after each update to the EEPROM structure,
192 * to make sure the CRC is always correct.
193 */
194static void update_crc(void)
195{
196 u32 crc;
197
198 crc = crc32(0, (void *)&e, sizeof(e) - 4);
199 e.crc = cpu_to_be32(crc);
200}
201
202/**
Timur Tabie2d31fb2008-06-19 17:56:11 -0500203 * prog_eeprom - write the EEPROM from memory
204 */
205static int prog_eeprom(void)
Haiying Wangbea3f282006-07-12 10:48:05 -0400206{
Anton Vorontsov9c671e72009-09-02 02:17:24 +0400207 int ret = 0; /* shut up gcc */
208 int i;
Timur Tabie2d31fb2008-06-19 17:56:11 -0500209 void *p;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200210#ifdef CONFIG_SYS_EEPROM_BUS_NUM
Timur Tabie2d31fb2008-06-19 17:56:11 -0500211 unsigned int bus;
212#endif
Haiying Wangbea3f282006-07-12 10:48:05 -0400213
Timur Tabie2d31fb2008-06-19 17:56:11 -0500214 /* Set the reserved values to 0xFF */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200215#ifdef CONFIG_SYS_I2C_EEPROM_NXID
Timur Tabie2d31fb2008-06-19 17:56:11 -0500216 e.res_0 = 0xFF;
217 memset(e.res_1, 0xFF, sizeof(e.res_1));
218#else
219 memset(e.res_0, 0xFF, sizeof(e.res_0));
220#endif
Timur Tabi2d04db02009-08-28 16:56:45 -0500221 update_crc();
Timur Tabie2d31fb2008-06-19 17:56:11 -0500222
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200223#ifdef CONFIG_SYS_EEPROM_BUS_NUM
Timur Tabie2d31fb2008-06-19 17:56:11 -0500224 bus = i2c_get_bus_num();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225 i2c_set_bus_num(CONFIG_SYS_EEPROM_BUS_NUM);
Timur Tabie2d31fb2008-06-19 17:56:11 -0500226#endif
227
Timur Tabi2d04db02009-08-28 16:56:45 -0500228 for (i = 0, p = &e; i < sizeof(e); i += 8, p += 8) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200229 ret = i2c_write(CONFIG_SYS_I2C_EEPROM_ADDR, i, CONFIG_SYS_I2C_EEPROM_ADDR_LEN,
Timur Tabi2d04db02009-08-28 16:56:45 -0500230 p, min((sizeof(e) - i), 8));
Haiying Wangbea3f282006-07-12 10:48:05 -0400231 if (ret)
232 break;
Timur Tabie2d31fb2008-06-19 17:56:11 -0500233 udelay(5000); /* 5ms write cycle timing */
Haiying Wangbea3f282006-07-12 10:48:05 -0400234 }
Timur Tabie2d31fb2008-06-19 17:56:11 -0500235
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200236#ifdef CONFIG_SYS_EEPROM_BUS_NUM
Timur Tabie2d31fb2008-06-19 17:56:11 -0500237 i2c_set_bus_num(bus);
238#endif
239
Haiying Wangbea3f282006-07-12 10:48:05 -0400240 if (ret) {
241 printf("Programming failed.\n");
242 return -1;
Haiying Wangbea3f282006-07-12 10:48:05 -0400243 }
Timur Tabie2d31fb2008-06-19 17:56:11 -0500244
245 printf("Programming passed.\n");
Haiying Wangbea3f282006-07-12 10:48:05 -0400246 return 0;
247}
248
Timur Tabie2d31fb2008-06-19 17:56:11 -0500249/**
250 * h2i - converts hex character into a number
251 *
252 * This function takes a hexadecimal character (e.g. '7' or 'C') and returns
253 * the integer equivalent.
254 */
255static inline u8 h2i(char p)
256{
257 if ((p >= '0') && (p <= '9'))
258 return p - '0';
259
260 if ((p >= 'A') && (p <= 'F'))
261 return (p - 'A') + 10;
262
263 if ((p >= 'a') && (p <= 'f'))
264 return (p - 'a') + 10;
265
266 return 0;
267}
268
269/**
270 * set_date - stores the build date into the EEPROM
271 *
272 * This function takes a pointer to a string in the format "YYMMDDhhmmss"
273 * (2-digit year, 2-digit month, etc), converts it to a 6-byte BCD string,
274 * and stores it in the build date field of the EEPROM local copy.
275 */
276static void set_date(const char *string)
277{
278 unsigned int i;
279
280 if (strlen(string) != 12) {
281 printf("Usage: mac date YYMMDDhhmmss\n");
282 return;
283 }
284
285 for (i = 0; i < 6; i++)
286 e.date[i] = h2i(string[2 * i]) << 4 | h2i(string[2 * i + 1]);
Timur Tabi2d04db02009-08-28 16:56:45 -0500287
288 update_crc();
Timur Tabie2d31fb2008-06-19 17:56:11 -0500289}
290
291/**
292 * set_mac_address - stores a MAC address into the EEPROM
293 *
294 * This function takes a pointer to MAC address string
295 * (i.e."XX:XX:XX:XX:XX:XX", where "XX" is a two-digit hex number) and
296 * stores it in one of the MAC address fields of the EEPROM local copy.
297 */
298static void set_mac_address(unsigned int index, const char *string)
299{
300 char *p = (char *) string;
301 unsigned int i;
302
303 if (!string) {
304 printf("Usage: mac <n> XX:XX:XX:XX:XX:XX\n");
305 return;
306 }
307
308 for (i = 0; *p && (i < 6); i++) {
309 e.mac[index][i] = simple_strtoul(p, &p, 16);
310 if (*p == ':')
311 p++;
312 }
Timur Tabi2d04db02009-08-28 16:56:45 -0500313
314 update_crc();
Timur Tabie2d31fb2008-06-19 17:56:11 -0500315}
316
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200317int do_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Haiying Wangbea3f282006-07-12 10:48:05 -0400318{
Timur Tabie2d31fb2008-06-19 17:56:11 -0500319 char cmd;
Haiying Wangbea3f282006-07-12 10:48:05 -0400320
Timur Tabie2d31fb2008-06-19 17:56:11 -0500321 if (argc == 1) {
322 show_eeprom();
323 return 0;
324 }
Haiying Wangbea3f282006-07-12 10:48:05 -0400325
Timur Tabie2d31fb2008-06-19 17:56:11 -0500326 cmd = argv[1][0];
327
328 if (cmd == 'r') {
329 read_eeprom();
330 return 0;
331 }
332
Timur Tabi2d04db02009-08-28 16:56:45 -0500333 if (cmd == 'i') {
334#ifdef CONFIG_SYS_I2C_EEPROM_NXID
335 memcpy(e.id, "NXID", sizeof(e.id));
336 e.version = 0;
337#else
338 memcpy(e.id, "CCID", sizeof(e.id));
339#endif
Timur Tabie2d31fb2008-06-19 17:56:11 -0500340 return 0;
341 }
342
343 if (!is_valid) {
344 printf("Please read the EEPROM ('r') and/or set the ID ('i') first.\n");
345 return 0;
346 }
347
348 if (argc == 2) {
Haiying Wangbea3f282006-07-12 10:48:05 -0400349 switch (cmd) {
Jon Loeliger80e955c2006-08-22 12:25:27 -0500350 case 's': /* save */
Timur Tabie2d31fb2008-06-19 17:56:11 -0500351 prog_eeprom();
Jon Loeliger80e955c2006-08-22 12:25:27 -0500352 break;
Jon Loeliger80e955c2006-08-22 12:25:27 -0500353 default:
Peter Tyser62c3ae72009-01-27 18:03:10 -0600354 cmd_usage(cmdtp);
Jon Loeliger80e955c2006-08-22 12:25:27 -0500355 break;
Haiying Wangbea3f282006-07-12 10:48:05 -0400356 }
Timur Tabie2d31fb2008-06-19 17:56:11 -0500357
358 return 0;
Haiying Wangbea3f282006-07-12 10:48:05 -0400359 }
Timur Tabie2d31fb2008-06-19 17:56:11 -0500360
361 /* We know we have at least one parameter */
362
363 switch (cmd) {
364 case 'n': /* serial number */
365 memset(e.sn, 0, sizeof(e.sn));
366 strncpy((char *)e.sn, argv[2], sizeof(e.sn) - 1);
Timur Tabi2d04db02009-08-28 16:56:45 -0500367 update_crc();
Timur Tabie2d31fb2008-06-19 17:56:11 -0500368 break;
369 case 'e': /* errata */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370#ifdef CONFIG_SYS_I2C_EEPROM_NXID
Timur Tabie2d31fb2008-06-19 17:56:11 -0500371 memset(e.errata, 0, 5);
372 strncpy((char *)e.errata, argv[2], 4);
373#else
374 e.errata[0] = argv[2][0];
375 e.errata[1] = argv[2][1];
376#endif
Timur Tabi2d04db02009-08-28 16:56:45 -0500377 update_crc();
Timur Tabie2d31fb2008-06-19 17:56:11 -0500378 break;
379 case 'd': /* date BCD format YYMMDDhhmmss */
380 set_date(argv[2]);
381 break;
382 case 'p': /* MAC table size */
383 e.mac_count = simple_strtoul(argv[2], NULL, 16);
Timur Tabi2d04db02009-08-28 16:56:45 -0500384 update_crc();
Timur Tabie2d31fb2008-06-19 17:56:11 -0500385 break;
386 case '0' ... '7': /* "mac 0" through "mac 7" */
387 set_mac_address(cmd - '0', argv[2]);
388 break;
389 case 'h': /* help */
390 default:
Peter Tyser62c3ae72009-01-27 18:03:10 -0600391 cmd_usage(cmdtp);
Timur Tabie2d31fb2008-06-19 17:56:11 -0500392 break;
393 }
394
Haiying Wangbea3f282006-07-12 10:48:05 -0400395 return 0;
396}
397
Timur Tabie2d31fb2008-06-19 17:56:11 -0500398/**
399 * mac_read_from_eeprom - read the MAC addresses from EEPROM
400 *
401 * This function reads the MAC addresses from EEPROM and sets the
402 * appropriate environment variables for each one read.
403 *
404 * The environment variables are only set if they haven't been set already.
405 * This ensures that any user-saved variables are never overwritten.
406 *
407 * This function must be called after relocation.
408 */
Haiying Wangbea3f282006-07-12 10:48:05 -0400409int mac_read_from_eeprom(void)
410{
Timur Tabie2d31fb2008-06-19 17:56:11 -0500411 unsigned int i;
Timur Tabi2d04db02009-08-28 16:56:45 -0500412 u32 crc;
413
414 puts("EEPROM: ");
Haiying Wangbea3f282006-07-12 10:48:05 -0400415
Timur Tabie2d31fb2008-06-19 17:56:11 -0500416 if (read_eeprom()) {
Haiying Wangbea3f282006-07-12 10:48:05 -0400417 printf("Read failed.\n");
418 return -1;
419 }
420
Timur Tabie2d31fb2008-06-19 17:56:11 -0500421 if (!is_valid) {
Timur Tabi2d04db02009-08-28 16:56:45 -0500422 printf("Invalid ID (%02x %02x %02x %02x)\n",
423 e.id[0], e.id[1], e.id[2], e.id[3]);
Haiying Wangbea3f282006-07-12 10:48:05 -0400424 return -1;
Timur Tabie2d31fb2008-06-19 17:56:11 -0500425 }
426
Timur Tabi2d04db02009-08-28 16:56:45 -0500427 crc = crc32(0, (void *)&e, sizeof(e) - 4);
428 if (crc != be32_to_cpu(e.crc)) {
429 printf("CRC mismatch (%08x != %08x)\n", crc, be32_to_cpu(e.crc));
430 return -1;
Haiying Wangbea3f282006-07-12 10:48:05 -0400431 }
Timur Tabie2d31fb2008-06-19 17:56:11 -0500432
Timur Tabi2d04db02009-08-28 16:56:45 -0500433 for (i = 0; i < min(e.mac_count, MAX_NUM_PORTS); i++) {
Timur Tabie2d31fb2008-06-19 17:56:11 -0500434 if (memcmp(&e.mac[i], "\0\0\0\0\0\0", 6) &&
435 memcmp(&e.mac[i], "\xFF\xFF\xFF\xFF\xFF\xFF", 6)) {
436 char ethaddr[18];
437 char enetvar[9];
438
439 sprintf(ethaddr, "%02X:%02X:%02X:%02X:%02X:%02X",
440 e.mac[i][0],
441 e.mac[i][1],
442 e.mac[i][2],
443 e.mac[i][3],
444 e.mac[i][4],
445 e.mac[i][5]);
446 sprintf(enetvar, i ? "eth%daddr" : "ethaddr", i);
447 /* Only initialize environment variables that are blank
448 * (i.e. have not yet been set)
449 */
450 if (!getenv(enetvar))
451 setenv(enetvar, ethaddr);
452 }
453 }
454
Timur Tabi2d04db02009-08-28 16:56:45 -0500455#ifdef CONFIG_SYS_I2C_EEPROM_NXID
456 printf("%c%c%c%c v%u\n", e.id[0], e.id[1], e.id[2], e.id[3],
457 be32_to_cpu(e.version));
458#else
459 printf("%c%c%c%c\n", e.id[0], e.id[1], e.id[2], e.id[3]);
460#endif
461
Haiying Wangbea3f282006-07-12 10:48:05 -0400462 return 0;
463}
Timur Tabie2d31fb2008-06-19 17:56:11 -0500464
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200465#ifdef CONFIG_SYS_I2C_EEPROM_CCID
Timur Tabie2d31fb2008-06-19 17:56:11 -0500466
467/**
468 * get_cpu_board_revision - get the CPU board revision on 85xx boards
469 *
470 * Read the EEPROM to determine the board revision.
471 *
472 * This function is called before relocation, so we need to read a private
473 * copy of the EEPROM into a local variable on the stack.
474 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200475 * Also, we assume that CONFIG_SYS_EEPROM_BUS_NUM == CONFIG_SYS_SPD_BUS_NUM. The global
476 * variable i2c_bus_num must be compile-time initialized to CONFIG_SYS_SPD_BUS_NUM,
Timur Tabie2d31fb2008-06-19 17:56:11 -0500477 * so that the SPD code will work. This means that all pre-relocation I2C
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200478 * operations can only occur on the CONFIG_SYS_SPD_BUS_NUM bus. So if
479 * CONFIG_SYS_EEPROM_BUS_NUM != CONFIG_SYS_SPD_BUS_NUM, then we can't read the EEPROM when
Timur Tabie2d31fb2008-06-19 17:56:11 -0500480 * this function is called. Oh well.
481 */
482unsigned int get_cpu_board_revision(void)
483{
484 struct board_eeprom {
485 u32 id; /* 0x00 - 0x03 EEPROM Tag 'CCID' */
486 u8 major; /* 0x04 Board revision, major */
487 u8 minor; /* 0x05 Board revision, minor */
488 } be;
489
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200490 i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, CONFIG_SYS_I2C_EEPROM_ADDR_LEN,
Timur Tabie2d31fb2008-06-19 17:56:11 -0500491 (void *)&be, sizeof(be));
492
493 if (be.id != (('C' << 24) | ('C' << 16) | ('I' << 8) | 'D'))
494 return MPC85XX_CPU_BOARD_REV(0, 0);
495
496 if ((be.major == 0xff) && (be.minor == 0xff))
497 return MPC85XX_CPU_BOARD_REV(0, 0);
498
Rafal Czubake46c7bf2008-10-08 13:41:30 +0200499 return MPC85XX_CPU_BOARD_REV(be.major, be.minor);
Timur Tabie2d31fb2008-06-19 17:56:11 -0500500}
Timur Tabie2d31fb2008-06-19 17:56:11 -0500501#endif