summaryrefslogtreecommitdiffstats
path: root/lib_ppc
diff options
context:
space:
mode:
authorHaiying Wang <haiying.wang@freescale.com>2006-07-12 10:48:05 -0400
committerJon Loeliger <jdl@freescale.com>2006-07-13 10:57:37 -0500
commitbea3f28d285942bf3f7ab339ce85178ded544225 (patch)
treeeb3ef76fa25a4dcd89d09dbbaa7f7772fa4e662f /lib_ppc
parentfcb28e763415e0e4e66b0f45842d1557ae198e5e (diff)
downloadblackbird-obmc-uboot-bea3f28d285942bf3f7ab339ce85178ded544225.tar.gz
blackbird-obmc-uboot-bea3f28d285942bf3f7ab339ce85178ded544225.zip
Add support for reading and writing mac addresses to or from ID EEPROM.
Added code for reading and writing Mac addresses to/from ID EEPROM(0x57). With attached patch, we can use command "mac/mac read/mac save/" to read and write EEPROM under u-boot prompt. U-boot will calculate the checksum of EEPROM while bootup, if it is right, then u-boot will check whether the mac address of eTSEC0/1/2/3 is availalbe (non-zero). If there is mac address availabe in EEPROM, u-boot will use it, otherewise, u-boot will use the mac address defined in MPC8641HPCN.h. This matches the requirement to set unique mac address for each TSEC port. Signed-off-by: Haiying Wang <haiying.wang@freescale.com> Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'lib_ppc')
-rw-r--r--lib_ppc/board.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c
index c367b3ef9f..2c29f467ec 100644
--- a/lib_ppc/board.c
+++ b/lib_ppc/board.c
@@ -862,6 +862,10 @@ void board_init_r (gd_t *id, ulong dest_addr)
}
#endif
+#ifdef CFG_ID_EEPROM
+ mac_read_from_eeprom();
+#endif
+
#if defined(CONFIG_TQM8xxL) || defined(CONFIG_TQM8260) || \
defined(CONFIG_CCM) || defined(CONFIG_KUP4K) || defined(CONFIG_KUP4X)
load_sernum_ethaddr ();
OpenPOWER on IntegriCloud