]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/mach-tegra/Kconfig
malloc_f: enable SYS_MALLOC_F by default if DM is on
[people/ms/u-boot.git] / arch / arm / mach-tegra / Kconfig
CommitLineData
ddd960e6
MY
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
b724bd7d
SG
20config SYS_MALLOC_F_LEN
21 default 0x1800
22
45ccec8f 23config USE_PRIVATE_LIBGCC
e02ee254 24 default y
45ccec8f 25
d7a4b2e4 26config DM
d648964f 27 default y
d7a4b2e4 28
bdfb3416
SG
29config SPL_DM
30 default y
31
d7a4b2e4 32config DM_SERIAL
d648964f 33 default y
d7a4b2e4
SG
34
35config DM_SPI
d648964f 36 default y
d7a4b2e4
SG
37
38config DM_SPI_FLASH
d648964f 39 default y
d7a4b2e4
SG
40
41config DM_I2C
d648964f 42 default y
d7a4b2e4
SG
43
44config DM_GPIO
d648964f 45 default y
d7a4b2e4 46
09f455dc
MY
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"
ddd960e6
MY
51
52endif