Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0-only
config CONFIG_OMAP2_VRFB
	bool

menuconfig CONFIG_FB_OMAP2
	tristate "OMAP2+ frame buffer support"
	depends on CONFIG_FB
	depends on CONFIG_DRM_OMAP = n
	depends on CONFIG_GPIOLIB

	select CONFIG_FB_OMAP2_DSS
	select CONFIG_OMAP2_VRFB if CONFIG_ARCH_OMAP2 || CONFIG_ARCH_OMAP3
	select CONFIG_FB_CFB_FILLRECT
	select CONFIG_FB_CFB_COPYAREA
	select CONFIG_FB_CFB_IMAGEBLIT
	help
	  Frame buffer driver for OMAP2+ based boards.

if CONFIG_FB_OMAP2

config CONFIG_FB_OMAP2_DEBUG_SUPPORT
	bool "Debug support for OMAP2+ FB"
	default y
	depends on CONFIG_FB_OMAP2
	help
	  Support for debug output. You have to enable the actual printing
	  with 'debug' module parameter.

config CONFIG_FB_OMAP2_NUM_FBS
	int "Number of framebuffers"
	range 1 10
	default 3
	depends on CONFIG_FB_OMAP2
	help
	  Select the number of framebuffers created. OMAP2/3 has 3 overlays
	  so normally this would be 3.

source "drivers/video/fbdev/omap2/omapfb/dss/Kconfig"
source "drivers/video/fbdev/omap2/omapfb/displays/Kconfig"

endif