Kconfig 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config FB_OMAP
  3. tristate "OMAP frame buffer support"
  4. depends on FB
  5. depends on ARCH_OMAP1 || (ARM && COMPILE_TEST)
  6. select FB_IOMEM_HELPERS
  7. help
  8. Frame buffer driver for OMAP based boards.
  9. config FB_OMAP_LCDC_EXTERNAL
  10. bool "External LCD controller support"
  11. depends on FB_OMAP
  12. help
  13. Say Y here, if you want to have support for boards with an
  14. external LCD controller connected to the SoSSI/RFBI interface.
  15. config FB_OMAP_LCDC_HWA742
  16. bool "Epson HWA742 LCD controller support"
  17. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  18. help
  19. Say Y here if you want to have support for the external
  20. Epson HWA742 LCD controller.
  21. config FB_OMAP_MANUAL_UPDATE
  22. bool "Default to manual update mode"
  23. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  24. help
  25. Say Y here, if your user-space applications are capable of
  26. notifying the frame buffer driver when a change has occurred in
  27. the frame buffer content and thus a reload of the image data to
  28. the external frame buffer is required. If unsure, say N.
  29. config FB_OMAP_LCD_MIPID
  30. bool "MIPI DBI-C/DCS compatible LCD support"
  31. depends on FB_OMAP && SPI_MASTER
  32. help
  33. Say Y here if you want to have support for LCDs compatible with
  34. the Mobile Industry Processor Interface DBI-C/DCS
  35. specification. (Supported LCDs: Philips LPH8923, Sharp LS041Y3)
  36. config FB_OMAP_DMA_TUNE
  37. bool "Set DMA SDRAM access priority high"
  38. depends on FB_OMAP
  39. help
  40. On systems in which video memory is in system memory
  41. (SDRAM) this will speed up graphics DMA operations.
  42. If you have such a system and want to use rotation
  43. answer yes. Answer no if you have a dedicated video
  44. memory, or don't use any of the accelerated features.