xref: /openbmc/u-boot/arch/arm/mach-tegra/Kconfig (revision 9038cd53)
1if TEGRA
2
3choice
4	prompt "Tegra SoC select"
5	optional
6
7config TEGRA20
8	bool "Tegra20 family"
9
10config TEGRA30
11	bool "Tegra30 family"
12
13config TEGRA114
14	bool "Tegra114 family"
15
16config TEGRA124
17	bool "Tegra124 family"
18
19endchoice
20
21config SYS_MALLOC_F_LEN
22	default 0x1800
23
24config USE_PRIVATE_LIBGCC
25	default y
26
27config SPL_DM
28	default y
29
30source "arch/arm/mach-tegra/tegra20/Kconfig"
31source "arch/arm/mach-tegra/tegra30/Kconfig"
32source "arch/arm/mach-tegra/tegra114/Kconfig"
33source "arch/arm/mach-tegra/tegra124/Kconfig"
34
35endif
36