]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-tegra/Kconfig
Merge remote-tracking branch 'u-boot/master' into 'u-boot-arm/master'
[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
21 default y
22
23 config SYS_MALLOC_F_LEN
24 default 0x1800
25
26 config USE_PRIVATE_LIBGCC
27 default y if SPL_BUILD
28
29 config DM
30 default y if !SPL_BUILD
31
32 config DM_SERIAL
33 default y if !SPL_BUILD
34
35 config DM_SPI
36 default y if !SPL_BUILD
37
38 config DM_SPI_FLASH
39 default y if !SPL_BUILD
40
41 config DM_I2C
42 default y if !SPL_BUILD
43
44 config DM_GPIO
45 default y if !SPL_BUILD
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