2 * (C) Copyright 2000, 2001, 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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,
27 /*-----------------------------------------------------------------------
28 * Process Hardware Information Block:
30 * If we boot on a system fresh from factory, check if the Hardware
31 * Information Block exists and save the information it contains.
33 * The TQM8xxL / TQM82xx Hardware Information Block is defined as
35 * - located in first flash bank
36 * - starts at offset 0x0003FFC0
40 * - sequence of ASCII character strings
41 * - fields separated by a single space character (0x20)
42 * - last field terminated by NUL character (0x00)
43 * - remaining space filled with NUL characters (0x00)
45 * Fields in Hardware Information Block:
48 * 3) First MAC Address
49 * 4) Number of additional MAC addresses
52 void load_sernum_ethaddr (void)
55 unsigned char serial
[CFG_HWINFO_SIZE
];
56 unsigned char ethaddr
[CFG_HWINFO_SIZE
];
57 unsigned short ih
, is
, ie
, part
;
59 hwi
= (unsigned char *)(CFG_FLASH_BASE
+ CFG_HWINFO_OFFSET
);
62 if (*((unsigned long *)hwi
) != (unsigned long)CFG_HWINFO_MAGIC
) {
68 /* copy serial # / MAC address */
69 while ((hwi
[ih
] != '\0') && (ih
< CFG_HWINFO_SIZE
)) {
70 if (hwi
[ih
] < ' ' || hwi
[ih
] > '~') { /* ASCII strings! */
74 default: /* Copy serial # */
78 serial
[is
++] = hwi
[ih
];
80 case 3: /* Copy MAC address */
85 ethaddr
[ie
++] = hwi
[ih
];
93 if (ie
&& ethaddr
[ie
-1] == ':')
97 /* set serial# and ethaddr if not yet defined */
98 if (getenv("serial#") == NULL
) {
99 setenv ((char *)"serial#", (char *)serial
);
102 if (getenv("ethaddr") == NULL
) {
103 setenv ((char *)"ethaddr", (char *)ethaddr
);