3 * Robin Getz rgetz@blacfin.uclinux.org
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * Heavily borrowed from the following peoples GPL'ed software:
24 * - Wolfgang Denk, DENX Software Engineering, wd@denx.de
26 * - Ladislav Michl ladis@linux-mips.org
27 * A rejected patch on the U-Boot mailing list
32 #include "../drivers/smc91111.h"
34 #define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE
40 void dump_eeprom (void);
41 int write_eeprom_reg (int, int);
42 void copy_from_eeprom (void);
43 void print_MAC (void);
44 int read_eeprom_reg (int);
45 void print_macaddr (void);
47 int smc91111_eeprom (int argc, char *argv[])
49 int c, i, j, done, line, reg, value, start, what;
52 /* Print the ABI version */
54 if (XF_VERSION != (int) get_version ()) {
55 printf ("Expects ABI version %d\n", XF_VERSION);
56 printf ("Actual U-Boot ABI version %d\n",
57 (int) get_version ());
58 printf ("Can't run\n\n");
62 asm ("p2.h = 0xFFC0;");
63 asm ("p2.l = 0x0730;");
68 asm ("p2.h = 0xffc0;");
69 asm ("p2.l = 0x0708;");
74 if ((SMC_inw (BANK_SELECT) & 0xFF00) != 0x3300) {
75 printf ("Can't find SMSC91111\n");
83 /* print the prompt */
84 printf ("SMC91111> ");
89 /* Wait for a keystroke */
96 /* printf(" |%02x| ",c); */
99 case '\r': /* Enter */
108 case 0x03: /* ^C - break */
116 case 0x08: /* ^H - backspace */
117 case 0x7F: /* DEL - backspace */
125 if ((c == 'W') || (c == 'D')
126 || (c == 'M') || (c == 'C')
135 if ((c >= '0' && c <= '9')
136 || (c >= 'A' && c <= 'F')
137 || (c == 'E') || (c == 'M')
155 /* Line should be w reg value */
159 /* Skip to the next space or end) */
160 while ((input[i] != ' ') && (input[i] != 0))
166 /* Are we writing to EEPROM or MAC */
179 /* skip to the next space or end */
180 while ((input[i] != ' ') && (input[i] != 0))
185 /* Find register to write into */
187 while ((input[i] != ' ') && (input[i] != 0)) {
192 reg = (reg * 0x10) + j;
196 while ((input[i] != ' ') && (input[i] != 0))
204 /* Get the value to write */
206 while ((input[i] != ' ') && (input[i] != 0)) {
211 value = (value * 0x10) + j;
217 printf ("Writing EEPROM register %02x with %04x\n",
219 write_eeprom_reg (value, reg);
222 printf ("Writing MAC register bank %i,
223 reg %02x with %04x\n", reg >> 4, reg & 0xE, value);
224 SMC_SELECT_BANK (reg >> 4);
225 SMC_outw (value, reg & 0xE);
253 void copy_from_eeprom (void)
258 SMC_outw ((SMC_inw (CTL_REG) & !CTL_EEPROM_SELECT) | CTL_RELOAD,
261 while ((SMC_inw (CTL_REG) & CTL_RELOAD) && --i)
264 printf ("Timeout Refreshing EEPROM registers\n");
266 printf ("EEPROM contents copied to MAC\n");
271 void print_macaddr (void)
275 printf ("Current MAC Address in SMSC91111 ");
277 for (i = 0; i < 5; i++) {
278 printf ("%02x:", SMC_inb (ADDR0_REG + i));
281 printf ("%02x\n", SMC_inb (ADDR0_REG + 5));
284 for (j = 0x20; j < 0x23; j++) {
285 k = read_eeprom_reg (j);
292 printf ("Current MAC Address in EEPROM ");
293 for (i = 0; i < 5; i++)
294 printf ("%02x:", mac[i]);
295 printf ("%02x\n", mac[5]);
298 void dump_eeprom (void)
303 for (j = 0; j < 8; j++) {
308 for (k = 0; k < 4; k++) {
313 if ((k == 2) || (k == 3))
315 for (j = 0; j < 0x20; j += 4) {
316 printf ("%02x:%04x ", j + k, read_eeprom_reg (j + k));
321 for (j = 0x20; j < 0x40; j++) {
324 printf ("%02x:%04x ", j, read_eeprom_reg (j));
330 int read_eeprom_reg (int reg)
335 SMC_outw (reg, PTR_REG);
338 SMC_outw (SMC_inw (CTL_REG) | CTL_EEPROM_SELECT | CTL_RELOAD,
341 while ((SMC_inw (CTL_REG) & CTL_RELOAD) && --timeout)
344 printf ("Timeout Reading EEPROM register %02x\n", reg);
348 return SMC_inw (GP_REG);
352 int write_eeprom_reg (int value, int reg)
357 SMC_outw (reg, PTR_REG);
360 SMC_outw (value, GP_REG);
361 SMC_outw (SMC_inw (CTL_REG) | CTL_EEPROM_SELECT | CTL_STORE, CTL_REG);
363 while ((SMC_inw (CTL_REG) & CTL_STORE) && --timeout)
366 printf ("Timeout Writing EEPROM register %02x\n", reg);
379 for (j = 0; j < 4; j++) {
380 printf ("Bank%i ", j);
383 for (i = 0; i < 0xF; i += 2) {
385 for (j = 0; j < 4; j++) {
387 printf ("%04x ", SMC_inw (i));