]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/arm/mach-tegra/Kconfig
dm: tegra: Enable driver model in SPL and adjust the GPIO driver
[karo-tx-uboot.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
28
29 config DM
30         default y
31
32 config SPL_DM
33         default y
34
35 config DM_SERIAL
36         default y
37
38 config DM_SPI
39         default y
40
41 config DM_SPI_FLASH
42         default y
43
44 config DM_I2C
45         default y
46
47 config DM_GPIO
48         default y
49
50 source "arch/arm/mach-tegra/tegra20/Kconfig"
51 source "arch/arm/mach-tegra/tegra30/Kconfig"
52 source "arch/arm/mach-tegra/tegra114/Kconfig"
53 source "arch/arm/mach-tegra/tegra124/Kconfig"
54
55 endif