mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-02 17:13:28 +08:00
x86: Convert to use driver model eth on quark/galileo
Convert to use DM version of Designware ethernet driver on Intel quark/galileo. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8b7ee66cec
commit
5841c5b0a7
@ -6,8 +6,6 @@
|
||||
|
||||
#include <common.h>
|
||||
#include <mmc.h>
|
||||
#include <netdev.h>
|
||||
#include <phy.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/irq.h>
|
||||
#include <asm/pci.h>
|
||||
@ -231,23 +229,6 @@ int cpu_mmc_init(bd_t *bis)
|
||||
ARRAY_SIZE(mmc_supported));
|
||||
}
|
||||
|
||||
int cpu_eth_init(bd_t *bis)
|
||||
{
|
||||
u32 base;
|
||||
int ret0, ret1;
|
||||
|
||||
qrk_pci_read_config_dword(QUARK_EMAC0, PCI_BASE_ADDRESS_0, &base);
|
||||
ret0 = designware_initialize(base, PHY_INTERFACE_MODE_RMII);
|
||||
|
||||
qrk_pci_read_config_dword(QUARK_EMAC1, PCI_BASE_ADDRESS_0, &base);
|
||||
ret1 = designware_initialize(base, PHY_INTERFACE_MODE_RMII);
|
||||
|
||||
if (ret0 < 0 && ret1 < 0)
|
||||
return -1;
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
void cpu_irq_init(void)
|
||||
{
|
||||
struct quark_rcba *rcba;
|
||||
|
@ -12,7 +12,7 @@ CONFIG_BOOTSTAGE_REPORT=y
|
||||
CONFIG_CMD_BOOTSTAGE=y
|
||||
CONFIG_OF_CONTROL=y
|
||||
CONFIG_SPI_FLASH=y
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_DM_ETH=y
|
||||
CONFIG_ETH_DESIGNWARE=y
|
||||
CONFIG_DM_PCI=y
|
||||
CONFIG_DM_RTC=y
|
||||
|
Loading…
Reference in New Issue
Block a user