[U-Boot] [PATCH] Add pci E1000 Ethernet support for P2020 board

From: Roy Zang tie-fei.zang@freescale.com
Add pci E1000 Ethernet support for P2020 board. Signed-off-by: Roy Zang tie-fei.zang@freescale.com
--- board/freescale/p2020ds/p2020ds.c | 3 ++- include/configs/P2020DS.h | 1 + 2 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/board/freescale/p2020ds/p2020ds.c b/board/freescale/p2020ds/p2020ds.c index 6b72d61..293e5a4 100644 --- a/board/freescale/p2020ds/p2020ds.c +++ b/board/freescale/p2020ds/p2020ds.c @@ -36,6 +36,7 @@ #include <tsec.h> #include <asm/fsl_law.h> #include <asm/mp.h> +#include <netdev.h>
#include "../common/pixis.h" #include "../common/sgmii_riser.h" @@ -594,7 +595,7 @@ int board_eth_init(bd_t *bis)
tsec_eth_init(bis, tsec_info, num);
- return 0; + return pci_eth_init(bis); } #endif
diff --git a/include/configs/P2020DS.h b/include/configs/P2020DS.h index a39ff26..7fd2f5c 100644 --- a/include/configs/P2020DS.h +++ b/include/configs/P2020DS.h @@ -46,6 +46,7 @@ #define CONFIG_SYS_PCI_64BIT 1 /* enable 64-bit PCI resources */
#define CONFIG_FSL_LAW 1 /* Use common FSL init code */ +#define CONFIG_E1000 1 /* Defind e1000 pci Ethernet card*/
#define CONFIG_TSEC_ENET /* tsec ethernet support */ #define CONFIG_ENV_OVERWRITE

On Jun 30, 2009, at 12:56 AM, Roy Zang wrote:
From: Roy Zang tie-fei.zang@freescale.com
Add pci E1000 Ethernet support for P2020 board. Signed-off-by: Roy Zang tie-fei.zang@freescale.com
board/freescale/p2020ds/p2020ds.c | 3 ++- include/configs/P2020DS.h | 1 + 2 files changed, 3 insertions(+), 1 deletions(-)
applied
- k
participants (2)
-
Kumar Gala
-
Roy Zang