Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
 1config DRM_OMAP
 2	tristate "OMAP DRM"
 3	depends on DRM
 4	depends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
 5	select OMAP2_DSS
 6	select DRM_KMS_HELPER
 7	default n
 8	help
 9	  DRM display driver for OMAP2/3/4 based boards.
10
11if DRM_OMAP
12
13config DRM_OMAP_NUM_CRTCS
14	int "Number of CRTCs"
15	range 1 10
16	default 1  if ARCH_OMAP2 || ARCH_OMAP3
17	default 2  if ARCH_OMAP4
18	help
19	  Select the number of video overlays which can be used as framebuffers.
20	  The remaining overlays are reserved for video.
21
22source "drivers/gpu/drm/omapdrm/dss/Kconfig"
23source "drivers/gpu/drm/omapdrm/displays/Kconfig"
24
25endif