diff options
author | Simon Glass <sjg@chromium.org> | 2017-07-04 13:31:32 -0600 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-08-01 11:58:01 +0900 |
commit | 3936514b82e8a00115c56bf58e8745f73bfb119f (patch) | |
tree | 0a0acb003db5097001c982322b7f5916f9de6e44 | |
parent | cf7b2e10c90e09d6f290b7886722b20680b79731 (diff) | |
download | u-boot-3936514b82e8a00115c56bf58e8745f73bfb119f.tar.gz u-boot-3936514b82e8a00115c56bf58e8745f73bfb119f.tar.xz u-boot-3936514b82e8a00115c56bf58e8745f73bfb119f.zip |
dm: sunxi: Move Linksprite_pcDuino3 to use DM for MMC, SATA
Move this board over to driver model for MMC and SATA. This means that it
uses CONFIG_BLK as well. In SPL these options remain turned off since it
increases the code size. One option would be to use CONFIG_SPL_OF_PLATDATA
to avoid device-tree overhead.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | configs/Linksprite_pcDuino3_defconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configs/Linksprite_pcDuino3_defconfig b/configs/Linksprite_pcDuino3_defconfig index 6f4a02f8d4..f0d382c002 100644 --- a/configs/Linksprite_pcDuino3_defconfig +++ b/configs/Linksprite_pcDuino3_defconfig @@ -15,7 +15,12 @@ CONFIG_SPL_I2C_SUPPORT=y # CONFIG_SPL_DOS_PARTITION is not set # CONFIG_SPL_ISO_PARTITION is not set # CONFIG_SPL_EFI_PARTITION is not set -CONFIG_SCSI=y +# CONFIG_SPL_BLK is not set +CONFIG_DM_MMC=y +# CONFIG_SPL_DM_MMC is not set +# CONFIG_SPL_DM_MMC_OPS is not set CONFIG_ETH_DESIGNWARE=y CONFIG_SUN7I_GMAC=y +CONFIG_SCSI=y +CONFIG_DM_SCSI=y CONFIG_USB_EHCI_HCD=y |