Linux Audio

Check our new training course

Loading...
v4.6
 
 1config DRM_OMAP
 2	tristate "OMAP DRM"
 3	depends on DRM
 4	depends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
 
 5	select DRM_KMS_HELPER
 6	select DRM_KMS_FB_HELPER
 7	select FB_SYS_FILLRECT
 8	select FB_SYS_COPYAREA
 9	select FB_SYS_IMAGEBLIT
10	select FB_SYS_FOPS
11	default n
12	help
13	  DRM display driver for OMAP2/3/4 based boards.
14
15if DRM_OMAP
16
17config DRM_OMAP_NUM_CRTCS
18	int "Number of CRTCs"
19	range 1 10
20	default 1  if ARCH_OMAP2 || ARCH_OMAP3
21	default 2  if ARCH_OMAP4
22	help
23	  Select the number of video overlays which can be used as framebuffers.
24	  The remaining overlays are reserved for video.
25
26source "drivers/gpu/drm/omapdrm/dss/Kconfig"
27source "drivers/gpu/drm/omapdrm/displays/Kconfig"
28
29endif
v5.4
 1# SPDX-License-Identifier: GPL-2.0-only
 2config DRM_OMAP
 3	tristate "OMAP DRM"
 4	depends on DRM
 5	depends on ARCH_OMAP2PLUS || ARCH_MULTIPLATFORM
 6	select OMAP2_DSS
 7	select DRM_KMS_HELPER
 
 
 
 
 
 8	default n
 9	help
10	  DRM display driver for OMAP2/3/4 based boards.
11
12if DRM_OMAP
 
 
 
 
 
 
 
 
 
13
14source "drivers/gpu/drm/omapdrm/dss/Kconfig"
15source "drivers/gpu/drm/omapdrm/displays/Kconfig"
16
17endif