2 * smc911x_eeprom.c - EEPROM interface to SMC911x parts.
3 * Only tested on SMSC9118 though ...
5 * Copyright 2004-2008 Analog Devices Inc.
7 * Licensed under the GPL-2 or later.
9 * Based on smc91111_eeprom.c which:
10 * Heavily borrowed from the following peoples GPL'ed software:
11 * - Wolfgang Denk, DENX Software Engineering, wd@denx.de
13 * - Ladislav Michl ladis@linux-mips.org
14 * A rejected patch on the U-Boot mailing list
20 #ifdef CONFIG_DRIVER_SMC911X
22 #include "../drivers/net/smc911x.h"
25 * smsc_ctrlc - detect press of CTRL+C (common ctrlc() isnt exported!?)
27 static int smsc_ctrlc(void)
29 return (tstc() && getc() == 0x03);
33 * usage - dump usage information
35 static void usage(void)
38 "MAC/EEPROM Commands:\n"
39 " P : Print the MAC addresses\n"
40 " D : Dump the EEPROM contents\n"
41 " M : Dump the MAC contents\n"
42 " C : Copy the MAC address from the EEPROM to the MAC\n"
43 " W : Write a register in the EEPROM or in the MAC\n"
46 "Some commands take arguments:\n"
47 " W <E|M> <register> <value>\n"
53 * dump_regs - dump the MAC registers
55 * Registers 0x00 - 0x50 are FIFOs. The 0x50+ are the control registers
56 * and they're all 32bits long. 0xB8+ are reserved, so don't bother.
58 static void dump_regs(void)
61 for (i = 0x50; i < 0xB8; i += sizeof(u32))
62 printf("%02x: 0x%08x %c", i,
63 smc911x_reg_read(CONFIG_DRIVER_SMC911X_BASE + i),
64 (j++ % 2 ? '\n' : ' '));
68 * do_eeprom_cmd - handle eeprom communication
70 static int do_eeprom_cmd(int cmd, u8 reg)
72 if (smc911x_reg_read(E2P_CMD) & E2P_CMD_EPC_BUSY) {
73 printf("eeprom_cmd: busy at start (E2P_CMD = 0x%08x)\n",
74 smc911x_reg_read(E2P_CMD));
78 smc911x_reg_write(E2P_CMD, E2P_CMD_EPC_BUSY | cmd | reg);
80 while (smc911x_reg_read(E2P_CMD) & E2P_CMD_EPC_BUSY)
82 printf("eeprom_cmd: timeout (E2P_CMD = 0x%08x)\n",
83 smc911x_reg_read(E2P_CMD));
91 * read_eeprom_reg - read specified register in EEPROM
93 static u8 read_eeprom_reg(u8 reg)
95 int ret = do_eeprom_cmd(E2P_CMD_EPC_CMD_READ, reg);
96 return (ret ? : smc911x_reg_read(E2P_DATA));
100 * write_eeprom_reg - write specified value into specified register in EEPROM
102 static int write_eeprom_reg(u8 value, u8 reg)
106 /* enable erasing/writing */
107 ret = do_eeprom_cmd(E2P_CMD_EPC_CMD_EWEN, reg);
111 /* erase the eeprom reg */
112 ret = do_eeprom_cmd(E2P_CMD_EPC_CMD_ERASE, reg);
116 /* write the eeprom reg */
117 smc911x_reg_write(E2P_DATA, value);
118 ret = do_eeprom_cmd(E2P_CMD_EPC_CMD_WRITE, reg);
122 /* disable erasing/writing */
123 ret = do_eeprom_cmd(E2P_CMD_EPC_CMD_EWDS, reg);
130 * skip_space - find first non-whitespace in given pointer
132 static char *skip_space(char *buf)
134 while (buf[0] == ' ' || buf[0] == '\t')
140 * write_stuff - handle writing of MAC registers / eeprom
142 static void write_stuff(char *line)
149 /* Skip over the "W " part of the command */
150 line = skip_space(line + 1);
152 /* Figure out destination */
160 printf("ERROR: Invalid write usage\n");
165 /* Get the register to write */
166 line = skip_space(line + 1);
167 reg = simple_strtoul(line, &endp, 16);
171 /* Get the value to write */
172 line = skip_space(endp);
173 value = simple_strtoul(line, &endp, 16);
177 /* Check for trailing cruft */
178 line = skip_space(endp);
182 /* Finally, execute the command */
184 printf("Writing EEPROM register %02x with %02x\n", reg, value);
185 write_eeprom_reg(value, reg);
187 printf("Writing MAC register %02x with %08x\n", reg, value);
188 smc911x_reg_write(CONFIG_DRIVER_SMC911X_BASE + reg, value);
193 * copy_from_eeprom - copy MAC address in eeprom to address registers
195 static void copy_from_eeprom(void)
198 read_eeprom_reg(0x01) |
199 read_eeprom_reg(0x02) << 8 |
200 read_eeprom_reg(0x03) << 16 |
201 read_eeprom_reg(0x04) << 24;
203 read_eeprom_reg(0x05) |
204 read_eeprom_reg(0x06) << 8;
205 smc911x_set_mac_csr(ADDRL, addrl);
206 smc911x_set_mac_csr(ADDRH, addrh);
207 puts("EEPROM contents copied to MAC\n");
211 * print_macaddr - print MAC address registers and MAC address in eeprom
213 static void print_macaddr(void)
215 puts("Current MAC Address in MAC: ");
216 ulong addrl = smc911x_get_mac_csr(ADDRL);
217 ulong addrh = smc911x_get_mac_csr(ADDRH);
218 printf("%02x:%02x:%02x:%02x:%02x:%02x\n",
219 (u8)(addrl), (u8)(addrl >> 8), (u8)(addrl >> 16),
220 (u8)(addrl >> 24), (u8)(addrh), (u8)(addrh >> 8));
222 puts("Current MAC Address in EEPROM: ");
224 for (i = 1; i < 6; ++i)
225 printf("%02x:", read_eeprom_reg(i));
226 printf("%02x\n", read_eeprom_reg(i));
230 * dump_eeprom - dump the whole content of the EEPROM
232 static void dump_eeprom(void)
236 for (i = 0; i < 7; ++i)
237 printf("%02x: 0x%02x\n", i, read_eeprom_reg(i));
241 * smc911x_init - get the MAC/EEPROM up and ready for use
243 static int smc911x_init(void)
245 /* See if there is anything there */
246 if (!smc911x_detect_chip())
251 /* Make sure we set EEDIO/EECLK to the EEPROM */
252 if (smc911x_reg_read(GPIO_CFG) & GPIO_CFG_EEPR_EN) {
253 while (smc911x_reg_read(E2P_CMD) & E2P_CMD_EPC_BUSY)
255 printf("init: timeout (E2P_CMD = 0x%08x)\n",
256 smc911x_reg_read(E2P_CMD));
259 smc911x_reg_write(GPIO_CFG, smc911x_reg_read(GPIO_CFG) & ~GPIO_CFG_EEPR_EN);
266 * getline - consume a line of input and handle some escape sequences
268 static char *getline(void)
270 static char buffer[100];
281 /* Convert to uppercase */
282 if (c >= 'a' && c <= 'z')
286 case '\r': /* Enter/Return key */
291 case 0x03: /* ^C - break */
295 case 0x08: /* ^H - backspace */
296 case 0x7F: /* DEL - backspace */
304 /* Ignore control characters */
307 /* Queue up all other characters */
316 * smc911x_eeprom - our application's main() function
318 int smc911x_eeprom(int argc, char *argv[])
320 /* Print the ABI version */
322 if (XF_VERSION != get_version()) {
323 printf("Expects ABI version %d\n", XF_VERSION);
324 printf("Actual U-Boot ABI version %lu\n", get_version());
325 printf("Can't run\n\n");
329 /* Initialize the MAC/EEPROM somewhat */
334 /* Dump helpful usage information */
342 /* Send the prompt and wait for a line */
350 /* Eat leading space */
351 line = skip_space(line);
353 /* Empty line, try again */
357 /* Only accept 1 letter commands */
358 if (line[0] && line[1] && line[1] != ' ' && line[1] != '\t')
361 /* Now parse the command */
363 case 'W': write_stuff(line); break;
364 case 'D': dump_eeprom(); break;
365 case 'M': dump_regs(); break;
366 case 'C': copy_from_eeprom(); break;
367 case 'P': print_macaddr(); break;
369 default: puts("ERROR: Unknown command!\n\n");
371 case 'H': usage(); break;
378 int smc911x_eeprom(int argc, char *argv[])
380 puts("Not supported for this board\n");