blob: ee3246929a34222dd14a2a3ff504806871d85c73 [file] [log] [blame]
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001if 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
Simon Glass838723b2015-02-11 16:32:59 -070020config SYS_MALLOC_F
21 default y
22
23config SYS_MALLOC_F_LEN
24 default 0x1800
25
Masahiro Yamada9520b712014-10-24 01:30:43 +090026config USE_PRIVATE_LIBGCC
27 default y if SPL_BUILD
28
Simon Glass66b7e672015-02-05 21:41:42 -070029config 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
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090047source "arch/arm/cpu/armv7/tegra20/Kconfig"
48source "arch/arm/cpu/armv7/tegra30/Kconfig"
49source "arch/arm/cpu/armv7/tegra114/Kconfig"
50source "arch/arm/cpu/armv7/tegra124/Kconfig"
51
52endif