mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	This option should not really be user selectable. Note that on PowerPC we currently only need BOARD_LATE_INIT when CHAIN_OF_TRUST is enabled so be conditional on that. Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> (for UniPhier)
		
			
				
	
	
		
			157 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| if OMAP34XX
 | |
| 
 | |
| config SPL_EXT_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_FAT_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_GPIO_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_I2C_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_LIBCOMMON_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_LIBDISK_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_LIBGENERIC_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_MMC_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_NAND_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_POWER_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| config SPL_SERIAL_SUPPORT
 | |
| 	default y
 | |
| 
 | |
| choice
 | |
| 	prompt "OMAP3 board select"
 | |
| 	optional
 | |
| 
 | |
| config TARGET_AM3517_EVM
 | |
| 	bool "AM3517 EVM"
 | |
| 
 | |
| config TARGET_MT_VENTOUX
 | |
| 	bool "TeeJet Mt.Ventoux"
 | |
| 
 | |
| config TARGET_OMAP3_BEAGLE
 | |
| 	bool "TI OMAP3 BeagleBoard"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| config TARGET_CM_T35
 | |
| 	bool "CompuLab CM-T3530 and CM-T3730 boards"
 | |
| 
 | |
| config TARGET_CM_T3517
 | |
| 	bool "CompuLab CM-T3517 boards"
 | |
| 
 | |
| config TARGET_DEVKIT8000
 | |
| 	bool "TimLL OMAP3 Devkit8000"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| config TARGET_OMAP3_EVM
 | |
| 	bool "TI OMAP3 EVM"
 | |
| 
 | |
| config TARGET_OMAP3_IGEP00X0
 | |
| 	bool "IGEP"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| config TARGET_OMAP3_OVERO
 | |
| 	bool "OMAP35xx Gumstix Overo"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| config TARGET_OMAP3_ZOOM1
 | |
| 	bool "TI Zoom1"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| config TARGET_AM3517_CRANE
 | |
| 	bool "am3517_crane"
 | |
| 
 | |
| config TARGET_OMAP3_PANDORA
 | |
| 	bool "OMAP3 Pandora"
 | |
| 
 | |
| config TARGET_ECO5PK
 | |
| 	bool "ECO5PK"
 | |
| 
 | |
| config TARGET_TRICORDER
 | |
| 	bool "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
 | |
| 
 | |
| config TARGET_NOKIA_RX51
 | |
| 	bool "Nokia RX51"
 | |
| 
 | |
| config TARGET_TAO3530
 | |
| 	bool "TAO3530"
 | |
| 
 | |
| config TARGET_TWISTER
 | |
| 	bool "Twister"
 | |
| 
 | |
| config TARGET_OMAP3_CAIRO
 | |
| 	bool "QUIPOS CAIRO"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| config TARGET_SNIPER
 | |
| 	bool "LG Optimus Black"
 | |
| 	select DM
 | |
| 	select DM_SERIAL
 | |
| 	select DM_GPIO
 | |
| 
 | |
| endchoice
 | |
| 
 | |
| config SYS_SOC
 | |
| 	default "omap3"
 | |
| 
 | |
| source "board/logicpd/am3517evm/Kconfig"
 | |
| source "board/teejet/mt_ventoux/Kconfig"
 | |
| source "board/ti/beagle/Kconfig"
 | |
| source "board/compulab/cm_t35/Kconfig"
 | |
| source "board/compulab/cm_t3517/Kconfig"
 | |
| source "board/timll/devkit8000/Kconfig"
 | |
| source "board/ti/evm/Kconfig"
 | |
| source "board/isee/igep00x0/Kconfig"
 | |
| source "board/overo/Kconfig"
 | |
| source "board/logicpd/zoom1/Kconfig"
 | |
| source "board/ti/am3517crane/Kconfig"
 | |
| source "board/pandora/Kconfig"
 | |
| source "board/8dtech/eco5pk/Kconfig"
 | |
| source "board/corscience/tricorder/Kconfig"
 | |
| source "board/htkw/mcx/Kconfig"
 | |
| source "board/logicpd/omap3som/Kconfig"
 | |
| source "board/nokia/rx51/Kconfig"
 | |
| source "board/technexion/tao3530/Kconfig"
 | |
| source "board/technexion/twister/Kconfig"
 | |
| source "board/quipos/cairo/Kconfig"
 | |
| source "board/lg/sniper/Kconfig"
 | |
| 
 | |
| endif
 |