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