mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
eNET: Add support for onboard RTL8100B (RTL8139) chips
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
This commit is contained in:
parent
21e67e796b
commit
8fd805632f
@ -24,6 +24,8 @@
|
|||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/ic/sc520.h>
|
#include <asm/ic/sc520.h>
|
||||||
|
#include <net.h>
|
||||||
|
#include <netdev.h>
|
||||||
|
|
||||||
#ifdef CONFIG_HW_WATCHDOG
|
#ifdef CONFIG_HW_WATCHDOG
|
||||||
#include <watchdog.h>
|
#include <watchdog.h>
|
||||||
@ -173,3 +175,8 @@ ulong board_flash_get_legacy (ulong base, int banknum, flash_info_t * info)
|
|||||||
} else
|
} else
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int board_eth_init(bd_t *bis)
|
||||||
|
{
|
||||||
|
return pci_eth_init(bis);
|
||||||
|
}
|
||||||
|
@ -105,9 +105,10 @@
|
|||||||
#define CONFIG_CMD_LOADS /* loads */
|
#define CONFIG_CMD_LOADS /* loads */
|
||||||
#define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop mtest */
|
#define CONFIG_CMD_MEMORY /* md mm nm mw cp cmp crc base loop mtest */
|
||||||
#define CONFIG_CMD_MISC /* Misc functions like sleep etc*/
|
#define CONFIG_CMD_MISC /* Misc functions like sleep etc*/
|
||||||
#undef CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
|
#define CONFIG_CMD_NET /* bootp, tftpboot, rarpboot */
|
||||||
#undef CONFIG_CMD_NFS /* NFS support */
|
#undef CONFIG_CMD_NFS /* NFS support */
|
||||||
#define CONFIG_CMD_PCI /* PCI support */
|
#define CONFIG_CMD_PCI /* PCI support */
|
||||||
|
#define CONFIG_CMD_PING /* ICMP echo support */
|
||||||
#define CONFIG_CMD_RUN /* run command in env variable */
|
#define CONFIG_CMD_RUN /* run command in env variable */
|
||||||
#define CONFIG_CMD_SAVEENV /* saveenv */
|
#define CONFIG_CMD_SAVEENV /* saveenv */
|
||||||
#define CONFIG_CMD_SETGETDCR /* DCR support on 4xx */
|
#define CONFIG_CMD_SETGETDCR /* DCR support on 4xx */
|
||||||
@ -226,6 +227,12 @@
|
|||||||
#define CONFIG_SYS_THIRD_PCI_IRQ 11
|
#define CONFIG_SYS_THIRD_PCI_IRQ 11
|
||||||
#define CONFIG_SYS_FORTH_PCI_IRQ 15
|
#define CONFIG_SYS_FORTH_PCI_IRQ 15
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Network device (TRL8100B) support
|
||||||
|
*/
|
||||||
|
#define CONFIG_NET_MULTI
|
||||||
|
#define CONFIG_RTL8139
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------
|
/*-----------------------------------------------------------------------
|
||||||
* Hardware watchdog configuration
|
* Hardware watchdog configuration
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user