]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
x86: coreboot: Convert to use more dm drivers
authorBin Meng <bmeng.cn@gmail.com>
Fri, 28 Aug 2015 09:22:38 +0000 (02:22 -0700)
committerSimon Glass <sjg@chromium.org>
Wed, 9 Sep 2015 13:48:03 +0000 (07:48 -0600)
Move to driver model for RTC, USB and ETH on coreboot.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/coreboot/coreboot.c
configs/coreboot-x86_defconfig

index 0e9f15fef68a7eec36421645e2af511280cd05fb..845f86a1766c15afd9da5c0630978dcd3930b40d 100644 (file)
@@ -8,7 +8,6 @@
 
 #include <common.h>
 #include <fdtdec.h>
-#include <netdev.h>
 #include <asm/io.h>
 #include <asm/msr.h>
 #include <asm/mtrr.h>
@@ -48,11 +47,6 @@ int last_stage_init(void)
        return 0;
 }
 
-int board_eth_init(bd_t *bis)
-{
-       return pci_eth_init(bis);
-}
-
 void board_final_cleanup(void)
 {
        /*
index ebaf86bc7fb80a5a9e4dea3bfa47b169ad64e87b..e95f96d77953d4084a59d547f802cbbaebb91888 100644 (file)
@@ -14,10 +14,13 @@ CONFIG_CMD_TPM_TEST=y
 CONFIG_OF_CONTROL=y
 CONFIG_DM_PCI=y
 CONFIG_SPI_FLASH=y
-CONFIG_NETDEVICES=y
+CONFIG_DM_ETH=y
 CONFIG_E1000=y
 CONFIG_DM_TPM=y
 CONFIG_TPM_TIS_LPC=y
+CONFIG_USB=y
+CONFIG_DM_USB=y
+CONFIG_DM_RTC=y
 CONFIG_USE_PRIVATE_LIBGCC=y
 CONFIG_SYS_VSNPRINTF=y
 CONFIG_TPM=y