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
8
	select ARM_ERRATA_720789
9
	select ARM_ERRATA_742230 if SMP
10
	select ARM_ERRATA_751472
11
	select ARM_ERRATA_754327 if SMP
12
	select ARM_ERRATA_764369 if SMP
13 14 15 16 17
	select ARM_GIC
	select CPU_FREQ_TABLE if CPU_FREQ
	select CPU_V7
	select PINCTRL
	select PINCTRL_TEGRA20
18 19
	select PL310_ERRATA_727915 if CACHE_L2X0
	select PL310_ERRATA_769419 if CACHE_L2X0
20 21 22
	select USB_ARCH_HAS_EHCI if USB_SUPPORT
	select USB_ULPI if USB
	select USB_ULPI_VIEWPORT if USB_SUPPORT
23 24 25 26
	help
	  Support for NVIDIA Tegra AP20 and T20 processors, based on the
	  ARM CortexA9MP CPU and the ARM PL310 L2 cache controller

27 28
config ARCH_TEGRA_3x_SOC
	bool "Enable support for Tegra30 family"
29 30 31
	select ARM_ERRATA_743622
	select ARM_ERRATA_751472
	select ARM_ERRATA_754322
32
	select ARM_ERRATA_764369 if SMP
33
	select ARM_GIC
34
	select CPU_FREQ_TABLE if CPU_FREQ
35 36 37 38 39 40 41
	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
42 43 44
	help
	  Support for NVIDIA Tegra T30 processor family, based on the
	  ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
45

46 47 48 49 50 51
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
52 53
	select PINCTRL
	select PINCTRL_TEGRA114
54 55 56 57
	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