diff options
-rw-r--r-- | arch/arm/mach-tegra/Kconfig | 38 |
1 files changed, 27 insertions, 11 deletions
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig index cf0e55637b97..1279eefa6902 100644 --- a/arch/arm/mach-tegra/Kconfig +++ b/arch/arm/mach-tegra/Kconfig @@ -112,13 +112,29 @@ config MACH_VENTANA # Enterprise +choice + prompt "Tegra platform type" + default TEGRA_SILICON_PLATFORM + +config TEGRA_SILICON_PLATFORM + bool "Silicon" + help + This enables support for a Tegra silicon platform. + +config TEGRA_SIMULATION_PLATFORM + bool "Simulation" + help + This enables support for a Tegra simulation platform. + Select this only if you are an NVIDIA developer working + on a simulation platform. + config TEGRA_FPGA_PLATFORM - bool "Support for NVIDIA Tegra FPGA platform" - default n - help - This enables the NVIDIA Tegra FPGA platform support. - Select this only if you are an NVIDIA developer working on - an FPGA platforms. All others must leave this unselected. + bool "FPGA" + help + This enables support for a Tegra FPGA platform. + Select this only if you are an NVIDIA developer working + on a FPGA platform. +endchoice choice prompt "Low-level debug console UART" @@ -166,17 +182,17 @@ config TEGRA_PWM config TEGRA_EMC_SCALING_ENABLE bool "Enable scaling the memory frequency" - depends on !TEGRA_FPGA_PLATFORM + depends on TEGRA_SILICON_PLATFORM default n config TEGRA_CPU_DVFS bool "Enable voltage scaling on Tegra CPU" - depends on !TEGRA_FPGA_PLATFORM + depends on TEGRA_SILICON_PLATFORM default y config TEGRA_CORE_DVFS bool "Enable voltage scaling on Tegra core" - depends on !TEGRA_FPGA_PLATFORM + depends on TEGRA_SILICON_PLATFORM depends on TEGRA_CPU_DVFS default y @@ -229,7 +245,7 @@ config TEGRA_ARB_SEMAPHORE config TEGRA_THERMAL_THROTTLE bool "Enable throttling of CPU speed on overtemp" - depends on !TEGRA_FPGA_PLATFORM + depends on TEGRA_SILICON_PLATFORM depends on CPU_FREQ default y help @@ -264,7 +280,7 @@ config TEGRA_MC_PROFILE config TEGRA_EDP_LIMITS bool "Enforce electrical design limits" - depends on !TEGRA_FPGA_PLATFORM + depends on TEGRA_SILICON_PLATFORM depends on CPU_FREQ default y if ARCH_TEGRA_3x_SOC default n |