40b2bb1b13
Currently runtime PM is enabled for Tegra HDA driver. One of the concern raised was about handling !PM case in HDA driver. In this case, there is a need to manage clocks and power explicitly in the driver and reviewers were not really convinced about this. The consensus at the end was to enforce PM requirement to keep things simple, rather driver mentioning a dependency on PM. This is how it is done for ARM 64-bit Tegra platforms and the same can be done for 32-bit Tegra platforms too. Finally the objective is to remove dependency on PM availability for all Tegra drivers. The detailed discussion can be found in following patch, https://patchwork.ozlabs.org/patch/1031007/ Signed-off-by: Sameer Pujar <spujar@nvidia.com> Reviewed-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com> Reviewed-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
21 lines
479 B
Plaintext
21 lines
479 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
menuconfig ARCH_TEGRA
|
|
bool "NVIDIA Tegra"
|
|
depends on ARCH_MULTI_V7
|
|
select ARCH_SUPPORTS_TRUSTED_FOUNDATIONS
|
|
select ARM_AMBA
|
|
select ARM_GIC
|
|
select CLKSRC_MMIO
|
|
select GPIOLIB
|
|
select HAVE_ARM_SCU if SMP
|
|
select HAVE_ARM_TWD if SMP
|
|
select PINCTRL
|
|
select PM
|
|
select PM_OPP
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select RESET_CONTROLLER
|
|
select SOC_BUS
|
|
select ZONE_DMA if ARM_LPAE
|
|
help
|
|
This enables support for NVIDIA Tegra based systems.
|