diff options
author | Adam Ford <aford173@gmail.com> | 2017-04-17 13:09:45 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-10 00:35:38 (GMT) |
commit | 15fde737fc1dd1b796903dd33989defff3598f19 (patch) | |
tree | 14d18db8472b00d5fd5eab52dd4f01e40de23cd3 /configs | |
parent | 4c8a9f2311cb45f1c6a1ec2dfa4b5cc2d6f4b4b4 (diff) | |
download | u-boot-15fde737fc1dd1b796903dd33989defff3598f19.tar.xz |
omap3_logic: Add Device Tree Support and more DM drivers
This patch also removes all the excessive code for NS16550 intiailization
as the device tree can do that now. This also adds DM_I2C and DM_MMC
since the overlying drivers have the built-in support already. The
corresponding include/config/omap3_logic.h also reduced in size
due to the new device tree support.
Signed-off-by: Adam Ford <aford173@gmail.com>
Changes in V2:
Retain Auto-detect ability between SOM-LV and Torpedo
Split this off from the device sub submissions
Diffstat (limited to 'configs')
-rw-r--r-- | configs/omap3_logic_defconfig | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configs/omap3_logic_defconfig b/configs/omap3_logic_defconfig index 5a88d29..561bdfb 100644 --- a/configs/omap3_logic_defconfig +++ b/configs/omap3_logic_defconfig @@ -4,6 +4,8 @@ CONFIG_SYS_MALLOC_F_LEN=0x2000 CONFIG_OMAP34XX=y CONFIG_TARGET_OMAP3_LOGIC=y CONFIG_SPL_STACK_R_ADDR=0x82000000 +CONFIG_DEFAULT_DEVICE_TREE="logicpd-torpedo-37xx-devkit" +CONFIG_FIT=y CONFIG_SYS_EXTRA_OPTIONS="NAND" CONFIG_SYS_CONSOLE_INFO_QUIET=y CONFIG_VERSION_VARIABLE=y @@ -37,6 +39,11 @@ CONFIG_CMD_FS_GENERIC=y CONFIG_CMD_UBI=y CONFIG_ISO_PARTITION=y CONFIG_EFI_PARTITION=y +CONFIG_OF_CONTROL=y +# CONFIG_BLK is not set +CONFIG_DM_I2C=y +CONFIG_DM_MMC=y +# CONFIG_DM_MMC_OPS is not set CONFIG_MMC_OMAP_HS=y CONFIG_MMC_OMAP36XX_PINS=y CONFIG_SYS_NS16550=y @@ -47,4 +54,3 @@ CONFIG_USB_GADGET_DOWNLOAD=y CONFIG_G_DNL_MANUFACTURER="TI" CONFIG_G_DNL_VENDOR_NUM=0x0451 CONFIG_G_DNL_PRODUCT_NUM=0xd022 -CONFIG_OF_LIBFDT=y |