mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 12:54:09 +07:00
2d0f986559
Without CONFIG_OF, we can run into a build error: drivers/gpu/drm/tegra/dpaux.c:378:20: error: 'pinconf_generic_dt_node_to_map_group' undeclared here (not in a function); did you mean 'pinconf_generic_params'? .dt_node_to_map = pinconf_generic_dt_node_to_map_group, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ pinconf_generic_params drivers/gpu/drm/tegra/dpaux.c:379:17: error: 'pinconf_generic_dt_free_map' undeclared here (not in a function); did you mean 'pinconf_generic_params'? This adds an explicit dependency. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Jon Hunter <jonathanh@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
34 lines
733 B
Plaintext
34 lines
733 B
Plaintext
config DRM_TEGRA
|
|
tristate "NVIDIA Tegra DRM"
|
|
depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
|
|
depends on COMMON_CLK
|
|
depends on DRM
|
|
depends on OF
|
|
select DRM_KMS_HELPER
|
|
select DRM_MIPI_DSI
|
|
select DRM_PANEL
|
|
select TEGRA_HOST1X
|
|
select IOMMU_IOVA if IOMMU_SUPPORT
|
|
help
|
|
Choose this option if you have an NVIDIA Tegra SoC.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called tegra-drm.
|
|
|
|
if DRM_TEGRA
|
|
|
|
config DRM_TEGRA_DEBUG
|
|
bool "NVIDIA Tegra DRM debug support"
|
|
help
|
|
Say yes here to enable debugging support.
|
|
|
|
config DRM_TEGRA_STAGING
|
|
bool "Enable HOST1X interface"
|
|
depends on STAGING
|
|
help
|
|
Say yes if HOST1X should be available for userspace DRM users.
|
|
|
|
If unsure, choose N.
|
|
|
|
endif
|