Kconfig 951 B

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