blob: 741e9a5369c99d10761e7bf22a620c332bb69d6d [file] [log] [blame]
wdenk02b11f82004-05-12 22:54:36 +00001/*
2 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
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.
12 *
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.
17 *
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,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <mpc8xx.h>
26
27/*-----------------------------------------------------------------------
28 * Process Hardware Information Block:
29 *
30 * If we boot on a system fresh from factory, check if the Hardware
31 * Information Block exists and save the information it contains.
32 *
33 * The KUP Hardware Information Block is defined as
34 * follows:
35 * - located in first flash bank
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020036 * - starts at offset CONFIG_SYS_HWINFO_OFFSET
37 * - size CONFIG_SYS_HWINFO_SIZE
wdenk02b11f82004-05-12 22:54:36 +000038 *
39 * Internal structure:
40 * - sequence of ASCII character lines
41 * - fields separated by <CR><LF>
42 * - last field terminated by NUL character (0x00)
43 *
44 * Fields in Hardware Information Block:
45 * 1) Module Type
46 * 2) MAC Address
47 * 3) ....
48 */
49
50
51#define ETHADDR_TOKEN "ethaddr="
52#define LCD_TOKEN "lcd="
53
54void load_sernum_ethaddr (void)
55{
56 unsigned char *hwi;
Wolfgang Denk77ddac92005-10-13 16:45:02 +020057 char *var;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058 unsigned char hwi_stack[CONFIG_SYS_HWINFO_SIZE];
Wolfgang Denk77ddac92005-10-13 16:45:02 +020059 char *p;
wdenk02b11f82004-05-12 22:54:36 +000060
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061 hwi = (unsigned char *) (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_HWINFO_OFFSET);
62 if (*((unsigned long *) hwi) != (unsigned long) CONFIG_SYS_HWINFO_MAGIC) {
wdenk02b11f82004-05-12 22:54:36 +000063 printf ("HardwareInfo not found!\n");
64 return;
65 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066 memcpy (hwi_stack, hwi, CONFIG_SYS_HWINFO_SIZE);
wdenk02b11f82004-05-12 22:54:36 +000067
68 /*
69 ** ethaddr
70 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +020071 var = strstr ((char *)hwi_stack, ETHADDR_TOKEN);
wdenk02b11f82004-05-12 22:54:36 +000072 if (var) {
73 var += sizeof (ETHADDR_TOKEN) - 1;
74 p = strchr (var, '\r');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075 if ((unsigned char *)p < hwi + CONFIG_SYS_HWINFO_SIZE) {
wdenk02b11f82004-05-12 22:54:36 +000076 *p = '\0';
77 setenv ("ethaddr", var);
78 *p = '\r';
79 }
80 }
81 /*
82 ** lcd
83 */
Wolfgang Denk77ddac92005-10-13 16:45:02 +020084 var = strstr ((char *)hwi_stack, LCD_TOKEN);
wdenk02b11f82004-05-12 22:54:36 +000085 if (var) {
86 var += sizeof (LCD_TOKEN) - 1;
87 p = strchr (var, '\r');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088 if ((unsigned char *)p < hwi + CONFIG_SYS_HWINFO_SIZE) {
wdenk02b11f82004-05-12 22:54:36 +000089 *p = '\0';
90 setenv ("lcd", var);
91 *p = '\r';
92 }
93 }
94}