diff options
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/am33xx/Kconfig | 6 | ||||
-rw-r--r-- | arch/arm/mach-omap2/config.mk | 38 | ||||
-rw-r--r-- | arch/arm/mach-omap2/omap3/Kconfig | 2 | ||||
-rw-r--r-- | arch/arm/mach-omap2/omap5/Kconfig | 2 |
4 files changed, 38 insertions, 10 deletions
diff --git a/arch/arm/mach-omap2/am33xx/Kconfig b/arch/arm/mach-omap2/am33xx/Kconfig index 56c44062c41..ae1c3cf5edb 100644 --- a/arch/arm/mach-omap2/am33xx/Kconfig +++ b/arch/arm/mach-omap2/am33xx/Kconfig @@ -6,6 +6,7 @@ choice config TARGET_AM335X_EVM bool "Support am335x_evm" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO @@ -20,6 +21,7 @@ config TARGET_AM335X_EVM config TARGET_AM335X_BALTOS bool "Support am335x_baltos" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO @@ -32,18 +34,21 @@ config TARGET_AM335X_IGEP0033 config TARGET_AM335X_SHC bool "Support am335x based shc board from bosch" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO config TARGET_AM335X_SL50 bool "Support am335x_sl50" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO config TARGET_BAV335X bool "Support bav335x" + select BOARD_LATE_INIT select DM select DM_SERIAL help @@ -96,6 +101,7 @@ config SPL_I2C_SUPPORT config TARGET_AM43XX_EVM bool "Support am43xx_evm" + select BOARD_LATE_INIT select TI_I2C_BOARD_DETECT help This option specifies support for the AM43xx diff --git a/arch/arm/mach-omap2/config.mk b/arch/arm/mach-omap2/config.mk index 20b555357a0..af455366ed9 100644 --- a/arch/arm/mach-omap2/config.mk +++ b/arch/arm/mach-omap2/config.mk @@ -6,34 +6,52 @@ include $(srctree)/arch/arm/mach-omap2/config_secure.mk ifdef CONFIG_SPL_BUILD -ifeq ($(CONFIG_TI_SECURE_DEVICE),y) +ifeq ($(CONFIG_TI_SECURE_DEVICE),y) # Refer to README.ti-secure for more info +# On DRA7xx/AM57xx: +# +# For booting spl from SD/MMC/eMMC use +# u-boot-spl_HS_MLO # -# For booting from SPI use -# u-boot-spl_HS_SPI_X-LOADER to program flash +# For booting spl over UART or USB use +# u-boot-spl_HS_ULO # +# For booting spl from QSPI or NOR use +# u-boot-spl_HS_X-LOADER +ifeq ($(CONFIG_OMAP54XX),y) +ALL-y += u-boot-spl_HS_MLO +ALL-y += u-boot-spl_HS_ULO +ALL-y += u-boot-spl_HS_X-LOADER +endif # On AM43XX: # +# For booting spl from SPI flash use +# u-boot-spl_HS_SPI_X-LOADER +# # For booting spl from all other media use # u-boot-spl_HS_ISSW -# +ifeq ($(CONFIG_AM43XX),y) +ALL-y += u-boot-spl_HS_SPI_X-LOADER +ALL-y += u-boot-spl_HS_ISSW +endif # On AM33XX: # -# For booting spl from NAND flash use +# For booting spl from SPI flash use +# u-boot-spl_HS_SPI_X-LOADER +# +# For booting spl from NAND flash or raw SD/MMC/eMMC use # u-boot-spl_HS_X-LOADER # -# For booting spl from SD/MMC/eMMC media use +# For booting spl from a filesystem on SD/MMC/eMMC use # u-boot-spl_HS_MLO # # For booting spl over UART, USB, or Ethernet use # u-boot-spl_HS_2ND -# -# Refer to README.ti-secure for more info -# -ALL-y += u-boot-spl_HS_ISSW +ifeq ($(CONFIG_AM33XX),y) ALL-y += u-boot-spl_HS_SPI_X-LOADER ALL-y += u-boot-spl_HS_X-LOADER ALL-y += u-boot-spl_HS_MLO ALL-y += u-boot-spl_HS_2ND +endif else ALL-y += MLO ifeq ($(CONFIG_AM33XX),y) diff --git a/arch/arm/mach-omap2/omap3/Kconfig b/arch/arm/mach-omap2/omap3/Kconfig index 7d884a237bb..4a7957fde85 100644 --- a/arch/arm/mach-omap2/omap3/Kconfig +++ b/arch/arm/mach-omap2/omap3/Kconfig @@ -96,9 +96,11 @@ config TARGET_TRICORDER config TARGET_MCX bool "MCX" + select BOARD_LATE_INIT config TARGET_OMAP3_LOGIC bool "OMAP3 Logic" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO diff --git a/arch/arm/mach-omap2/omap5/Kconfig b/arch/arm/mach-omap2/omap5/Kconfig index 242d1ee9287..c5edc7c98d4 100644 --- a/arch/arm/mach-omap2/omap5/Kconfig +++ b/arch/arm/mach-omap2/omap5/Kconfig @@ -51,11 +51,13 @@ config TARGET_OMAP5_UEVM config TARGET_DRA7XX_EVM bool "TI DRA7XX" + select BOARD_LATE_INIT select TI_I2C_BOARD_DETECT select PHYS_64BIT config TARGET_AM57XX_EVM bool "AM57XX" + select BOARD_LATE_INIT select TI_I2C_BOARD_DETECT endchoice |