Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. config FB_OMAP
  2. tristate "OMAP frame buffer support"
  3. depends on FB
  4. depends on ARCH_OMAP1
  5. select FB_CFB_FILLRECT
  6. select FB_CFB_COPYAREA
  7. select FB_CFB_IMAGEBLIT
  8. help
  9. Frame buffer driver for OMAP based boards.
  10. config FB_OMAP_LCDC_EXTERNAL
  11. bool "External LCD controller support"
  12. depends on FB_OMAP
  13. help
  14. Say Y here, if you want to have support for boards with an
  15. external LCD controller connected to the SoSSI/RFBI interface.
  16. config FB_OMAP_LCDC_HWA742
  17. bool "Epson HWA742 LCD controller support"
  18. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  19. help
  20. Say Y here if you want to have support for the external
  21. Epson HWA742 LCD controller.
  22. config FB_OMAP_MANUAL_UPDATE
  23. bool "Default to manual update mode"
  24. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  25. help
  26. Say Y here, if your user-space applications are capable of
  27. notifying the frame buffer driver when a change has occurred in
  28. the frame buffer content and thus a reload of the image data to
  29. the external frame buffer is required. If unsure, say N.
  30. config FB_OMAP_LCD_MIPID
  31. bool "MIPI DBI-C/DCS compatible LCD support"
  32. depends on FB_OMAP && SPI_MASTER
  33. help
  34. Say Y here if you want to have support for LCDs compatible with
  35. the Mobile Industry Processor Interface DBI-C/DCS
  36. specification. (Supported LCDs: Philips LPH8923, Sharp LS041Y3)
  37. config FB_OMAP_CONSISTENT_DMA_SIZE
  38. int "Consistent DMA memory size (MB)"
  39. depends on FB_OMAP
  40. range 1 14
  41. default 2
  42. help
  43. Increase the DMA consistent memory size according to your video
  44. memory needs, for example if you want to use multiple planes.
  45. The size must be 2MB aligned.
  46. If unsure say 1.
  47. config FB_OMAP_DMA_TUNE
  48. bool "Set DMA SDRAM access priority high"
  49. depends on FB_OMAP
  50. help
  51. On systems in which video memory is in system memory
  52. (SDRAM) this will speed up graphics DMA operations.
  53. If you have such a system and want to use rotation
  54. answer yes. Answer no if you have a dedicated video
  55. memory, or don't use any of the accelerated features.