cmc_pu2: fix misc_init_r prototype
[oweals/u-boot.git] / board / cmc_pu2 / load_sernum_ethaddr.c
1 /*
2  * (C) Copyright 2000, 2001, 2002
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2005
6  * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de
7  *
8  * See file CREDITS for list of people who contributed to this
9  * project.
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License as
13  * published by the Free Software Foundation; either version 2 of
14  * the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24  * MA 02111-1307 USA
25  */
26
27 /* #define DEBUG */
28
29 #include <common.h>
30
31 #define I2C_CHIP        0x50    /* I2C bus address of onboard EEPROM */
32 #define I2C_ALEN        1       /* length of EEPROM addresses in bytes */
33 #define I2C_OFFSET      0x0     /* start address of manufacturere data block
34                                  * in EEPROM */
35
36 /* 64 Byte manufacturer data block in EEPROM */
37 struct manufacturer_data {
38         unsigned int    serial_number;  /* serial number (0...999999) */
39         unsigned short  hardware;       /* hardware version (e.g. V1.02) */
40         unsigned short  manuf_date;     /* manufacture date (e.g. 25/02) */
41         unsigned char   name[20];       /* device name (in CHIP.INI) */
42         unsigned char   macadr[6];      /* MAC address */
43         signed char     a_kal[4];       /* calibration value for U */
44         signed char     i_kal[4];       /* calibration value for I */
45         unsigned char   reserve[18];    /* reserved */
46         unsigned short  save_nr;        /* save count */
47         unsigned short  chksum;         /* checksum */
48 };
49
50
51 int i2c_read (unsigned char chip, unsigned int addr, int alen,
52               unsigned char *buffer, int len);
53
54 /*-----------------------------------------------------------------------
55  * Process manufacturer data block in EEPROM:
56  *
57  * If we boot on a system fresh from factory, check if the manufacturer data
58  * in the EEPROM is valid and save some information it contains.
59  *
60  * CMC manufacturer data is defined as follows:
61  *
62  * - located in the onboard EEPROM
63  * - starts at offset 0x0
64  * - size 0x00000040
65  *
66  * Internal structure: see struct definition
67  */
68
69 int misc_init_r(void)
70 {
71         struct manufacturer_data data;
72         char  serial [9];
73         unsigned short chksum;
74         unsigned char *p;
75         unsigned short i;
76
77 #if !defined(CONFIG_HARD_I2C) && !defined(CONFIG_SOFT_I2C)
78 #error you must define some I2C support (CONFIG_HARD_I2C or CONFIG_SOFT_I2C)
79 #endif
80         if (i2c_read(I2C_CHIP, I2C_OFFSET, I2C_ALEN, (unsigned char *)&data,
81                      sizeof(data)) != 0) {
82                 puts ("Error reading manufacturer data from EEPROM\n");
83                 return -1;
84         }
85
86         /* check if manufacturer data block is valid  */
87         p = (unsigned char *)&data;
88         chksum = 0;
89         for (i = 0; i < (sizeof(data) - sizeof(data.chksum)); i++)
90                 chksum += *p++;
91
92         debug ("checksum of manufacturer data block: %#.4x\n", chksum);
93
94         if (chksum != data.chksum) {
95                 puts ("Error: manufacturer data block has invalid checksum\n");
96                 return -1;
97         }
98
99         /* copy serial number */
100         sprintf (serial, "%d", data.serial_number);
101
102         /* set serial# and ethaddr if not yet defined */
103         if (getenv("serial#") == NULL) {
104                 setenv ("serial#", serial);
105         }
106
107         if (getenv("ethaddr") == NULL) {
108                 eth_setenv_enetaddr("ethaddr", data.macadr);
109         }
110
111         return 0;
112 }