xref: /openbmc/u-boot/arch/arm/mach-tegra/Kconfig (revision 002610f6)
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
24source "arch/arm/mach-tegra/tegra20/Kconfig"
25source "arch/arm/mach-tegra/tegra30/Kconfig"
26source "arch/arm/mach-tegra/tegra114/Kconfig"
27source "arch/arm/mach-tegra/tegra124/Kconfig"
28
29endif
30