Kconfig 2.0 KB
Newer Older
1 2 3 4 5
if ARCH_TEGRA

comment "NVIDIA Tegra options"

config ARCH_TEGRA_2x_SOC
6
	bool "Enable support for Tegra20 family"
7
	select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
E
Erik Gilling 已提交
8
	select ARCH_REQUIRE_GPIOLIB
9
	select ARM_ERRATA_720789
10
	select ARM_ERRATA_742230 if SMP
11
	select ARM_ERRATA_751472
12
	select ARM_ERRATA_754327 if SMP
13
	select ARM_ERRATA_764369 if SMP
14 15 16 17 18
	select ARM_GIC
	select CPU_FREQ_TABLE if CPU_FREQ
	select CPU_V7
	select PINCTRL
	select PINCTRL_TEGRA20
19 20
	select PL310_ERRATA_727915 if CACHE_L2X0
	select PL310_ERRATA_769419 if CACHE_L2X0
21 22 23
	select USB_ARCH_HAS_EHCI if USB_SUPPORT
	select USB_ULPI if USB
	select USB_ULPI_VIEWPORT if USB_SUPPORT
24 25 26 27
	help
	  Support for NVIDIA Tegra AP20 and T20 processors, based on the
	  ARM CortexA9MP CPU and the ARM PL310 L2 cache controller

28 29 30
config ARCH_TEGRA_3x_SOC
	bool "Enable support for Tegra30 family"
	select ARCH_REQUIRE_GPIOLIB
31 32 33
	select ARM_ERRATA_743622
	select ARM_ERRATA_751472
	select ARM_ERRATA_754322
34
	select ARM_ERRATA_764369 if SMP
35
	select ARM_GIC
36
	select CPU_FREQ_TABLE if CPU_FREQ
37 38 39 40 41 42 43
	select CPU_V7
	select PINCTRL
	select PINCTRL_TEGRA30
	select PL310_ERRATA_769419 if CACHE_L2X0
	select USB_ARCH_HAS_EHCI if USB_SUPPORT
	select USB_ULPI if USB
	select USB_ULPI_VIEWPORT if USB_SUPPORT
44 45 46
	help
	  Support for NVIDIA Tegra T30 processor family, based on the
	  ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
47

48 49 50 51 52 53 54 55 56 57
config ARCH_TEGRA_114_SOC
	bool "Enable support for Tegra114 family"
	select ARM_GIC
	select CPU_V7
	select ARM_L1_CACHE_SHIFT_6
	select ARM_ARCH_TIMER
	help
	  Support for NVIDIA Tegra T114 processor family, based on the
	  ARM CortexA15MP CPU

M
Mike Rapoport 已提交
58 59
config TEGRA_PCI
	bool "PCI Express support"
60
	depends on ARCH_TEGRA_2x_SOC
M
Mike Rapoport 已提交
61 62
	select PCI

H
Hiroshi DOYU 已提交
63 64 65 66 67 68
config TEGRA_AHB
	bool "Enable AHB driver for NVIDIA Tegra SoCs"
	default y
	help
	  Adds AHB configuration functionality for NVIDIA Tegra SoCs,
	  which controls AHB bus master arbitration and some
69
	  performance parameters(priority, prefech size).
H
Hiroshi DOYU 已提交
70

71 72
config TEGRA_EMC_SCALING_ENABLE
	bool "Enable scaling the memory frequency"
73 74

endif