1if TEGRA 2 3choice 4 prompt "Tegra SoC select" 5 6config TEGRA20 7 bool "Tegra20 family" 8 9config TEGRA30 10 bool "Tegra30 family" 11 12config TEGRA114 13 bool "Tegra114 family" 14 15config TEGRA124 16 bool "Tegra124 family" 17 18endchoice 19 20config SYS_MALLOC_F 21 default y 22 23config SYS_MALLOC_F_LEN 24 default 0x1800 25 26config USE_PRIVATE_LIBGCC 27 default y if SPL_BUILD 28 29config DM 30 default y if !SPL_BUILD 31 32config DM_SERIAL 33 default y if !SPL_BUILD 34 35config DM_SPI 36 default y if !SPL_BUILD 37 38config DM_SPI_FLASH 39 default y if !SPL_BUILD 40 41config DM_I2C 42 default y if !SPL_BUILD 43 44config DM_GPIO 45 default y if !SPL_BUILD 46 47source "arch/arm/mach-tegra/tegra20/Kconfig" 48source "arch/arm/mach-tegra/tegra30/Kconfig" 49source "arch/arm/mach-tegra/tegra114/Kconfig" 50source "arch/arm/mach-tegra/tegra124/Kconfig" 51 52endif 53