load_sernum_ethaddr.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. /* #define DEBUG */
  27. #include <common.h>
  28. #define I2C_CHIP 0x50 /* I2C bus address of onboard EEPROM */
  29. #define I2C_ALEN 1 /* length of EEPROM addresses in bytes */
  30. #define I2C_OFFSET 0x0 /* start address of manufacturere data block
  31. * in EEPROM */
  32. /* 64 Byte manufacturer data block in EEPROM */
  33. struct manufacturer_data {
  34. unsigned int serial_number; /* serial number (0...999999) */
  35. unsigned short hardware; /* hardware version (e.g. V1.02) */
  36. unsigned short manuf_date; /* manufacture date (e.g. 25/02) */
  37. unsigned char name[20]; /* device name (in CHIP.INI) */
  38. unsigned char macadr[6]; /* MAC address */
  39. signed char a_kal[4]; /* calibration value for U */
  40. signed char i_kal[4]; /* calibration value for I */
  41. unsigned char reserve[18]; /* reserved */
  42. unsigned short save_nr; /* save count */
  43. unsigned short chksum; /* checksum */
  44. };
  45. int i2c_read (unsigned char chip, unsigned int addr, int alen,
  46. unsigned char *buffer, int len);
  47. /*-----------------------------------------------------------------------
  48. * Process manufacturer data block in EEPROM:
  49. *
  50. * If we boot on a system fresh from factory, check if the manufacturer data
  51. * in the EEPROM is valid and save some information it contains.
  52. *
  53. * CMC manufacturer data is defined as follows:
  54. *
  55. * - located in the onboard EEPROM
  56. * - starts at offset 0x0
  57. * - size 0x00000040
  58. *
  59. * Internal structure: see struct definition
  60. */
  61. void misc_init_r(void)
  62. {
  63. struct manufacturer_data data;
  64. char serial [9];
  65. unsigned short chksum;
  66. unsigned char *p;
  67. unsigned short i;
  68. #if !defined(CONFIG_HARD_I2C) && !defined(CONFIG_SOFT_I2C)
  69. #error you must define some I2C support (CONFIG_HARD_I2C or CONFIG_SOFT_I2C)
  70. #endif
  71. if (i2c_read(I2C_CHIP, I2C_OFFSET, I2C_ALEN, (unsigned char *)&data,
  72. sizeof(data)) != 0) {
  73. puts ("Error reading manufacturer data from EEPROM\n");
  74. return;
  75. }
  76. /* check if manufacturer data block is valid */
  77. p = (unsigned char *)&data;
  78. chksum = 0;
  79. for (i = 0; i < (sizeof(data) - sizeof(data.chksum)); i++)
  80. chksum += *p++;
  81. debug ("checksum of manufacturer data block: %#.4x\n", chksum);
  82. if (chksum != data.chksum) {
  83. puts ("Error: manufacturer data block has invalid checksum\n");
  84. return;
  85. }
  86. /* copy serial number */
  87. sprintf (serial, "%d", data.serial_number);
  88. /* set serial# and ethaddr if not yet defined */
  89. if (getenv("serial#") == NULL) {
  90. setenv ("serial#", serial);
  91. }
  92. if (getenv("ethaddr") == NULL) {
  93. eth_setenv_enetaddr("ethaddr", data.macadr);
  94. }
  95. }