mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 14:26:44 +07:00
9bcba8c7f7
Currently enabling OMAP DRM support automatically pulls in fbdev dependency. However this dep is unnecessary since DRM core already handles this for us (DRM_FBDEV_EMULATION). Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1468586897-32298-4-git-send-email-tjakobi@math.uni-bielefeld.de
26 lines
584 B
Plaintext
26 lines
584 B
Plaintext
config DRM_OMAP
|
|
tristate "OMAP DRM"
|
|
depends on DRM
|
|
depends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
|
|
select OMAP2_DSS
|
|
select DRM_KMS_HELPER
|
|
default n
|
|
help
|
|
DRM display driver for OMAP2/3/4 based boards.
|
|
|
|
if DRM_OMAP
|
|
|
|
config DRM_OMAP_NUM_CRTCS
|
|
int "Number of CRTCs"
|
|
range 1 10
|
|
default 1 if ARCH_OMAP2 || ARCH_OMAP3
|
|
default 2 if ARCH_OMAP4
|
|
help
|
|
Select the number of video overlays which can be used as framebuffers.
|
|
The remaining overlays are reserved for video.
|
|
|
|
source "drivers/gpu/drm/omapdrm/dss/Kconfig"
|
|
source "drivers/gpu/drm/omapdrm/displays/Kconfig"
|
|
|
|
endif
|