Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1config OMAP2_VRFB
2 bool
3
4menuconfig FB_OMAP2
5 tristate "OMAP2+ frame buffer support"
6 depends on FB
7 depends on DRM_OMAP = n
8 depends on GPIOLIB
9
10 select FB_OMAP2_DSS
11 select OMAP2_VRFB if ARCH_OMAP2 || ARCH_OMAP3
12 select FB_CFB_FILLRECT
13 select FB_CFB_COPYAREA
14 select FB_CFB_IMAGEBLIT
15 help
16 Frame buffer driver for OMAP2+ based boards.
17
18if FB_OMAP2
19
20config FB_OMAP2_DEBUG_SUPPORT
21 bool "Debug support for OMAP2+ FB"
22 default y
23 depends on FB_OMAP2
24 help
25 Support for debug output. You have to enable the actual printing
26 with 'debug' module parameter.
27
28config FB_OMAP2_NUM_FBS
29 int "Number of framebuffers"
30 range 1 10
31 default 3
32 depends on FB_OMAP2
33 help
34 Select the number of framebuffers created. OMAP2/3 has 3 overlays
35 so normally this would be 3.
36
37source "drivers/video/fbdev/omap2/omapfb/dss/Kconfig"
38source "drivers/video/fbdev/omap2/omapfb/displays/Kconfig"
39
40endif