Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. config FB_OMAP
  2. tristate "OMAP frame buffer support (EXPERIMENTAL)"
  3. depends on FB && (OMAP2_DSS = "n")
  4. depends on ARCH_OMAP1 || ARCH_OMAP2 || ARCH_OMAP3
  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_LCD_VGA
  11. bool "Use LCD in VGA mode"
  12. depends on MACH_OMAP_3430SDP || MACH_OMAP_LDP
  13. choice
  14. depends on FB_OMAP && MACH_OVERO
  15. prompt "Screen resolution"
  16. default FB_OMAP_079M3R
  17. help
  18. Selected desired screen resolution
  19. config FB_OMAP_031M3R
  20. boolean "640 x 480 @ 60 Hz Reduced blanking"
  21. config FB_OMAP_048M3R
  22. boolean "800 x 600 @ 60 Hz Reduced blanking"
  23. config FB_OMAP_079M3R
  24. boolean "1024 x 768 @ 60 Hz Reduced blanking"
  25. config FB_OMAP_092M9R
  26. boolean "1280 x 720 @ 60 Hz Reduced blanking"
  27. endchoice
  28. config FB_OMAP_LCDC_EXTERNAL
  29. bool "External LCD controller support"
  30. depends on FB_OMAP
  31. help
  32. Say Y here, if you want to have support for boards with an
  33. external LCD controller connected to the SoSSI/RFBI interface.
  34. config FB_OMAP_LCDC_HWA742
  35. bool "Epson HWA742 LCD controller support"
  36. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  37. help
  38. Say Y here if you want to have support for the external
  39. Epson HWA742 LCD controller.
  40. config FB_OMAP_LCDC_BLIZZARD
  41. bool "Epson Blizzard LCD controller support"
  42. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  43. help
  44. Say Y here if you want to have support for the external
  45. Epson Blizzard LCD controller.
  46. config FB_OMAP_MANUAL_UPDATE
  47. bool "Default to manual update mode"
  48. depends on FB_OMAP && FB_OMAP_LCDC_EXTERNAL
  49. help
  50. Say Y here, if your user-space applications are capable of
  51. notifying the frame buffer driver when a change has occured in
  52. the frame buffer content and thus a reload of the image data to
  53. the external frame buffer is required. If unsure, say N.
  54. config FB_OMAP_LCD_MIPID
  55. bool "MIPI DBI-C/DCS compatible LCD support"
  56. depends on FB_OMAP && SPI_MASTER
  57. help
  58. Say Y here if you want to have support for LCDs compatible with
  59. the Mobile Industry Processor Interface DBI-C/DCS
  60. specification. (Supported LCDs: Philips LPH8923, Sharp LS041Y3)
  61. config FB_OMAP_BOOTLOADER_INIT
  62. bool "Check bootloader initialization"
  63. depends on FB_OMAP || FB_OMAP2
  64. help
  65. Say Y here if you want to enable checking if the bootloader has
  66. already initialized the display controller. In this case the
  67. driver will skip the initialization.
  68. config FB_OMAP_CONSISTENT_DMA_SIZE
  69. int "Consistent DMA memory size (MB)"
  70. depends on FB_OMAP
  71. range 1 14
  72. default 2
  73. help
  74. Increase the DMA consistent memory size according to your video
  75. memory needs, for example if you want to use multiple planes.
  76. The size must be 2MB aligned.
  77. If unsure say 1.
  78. config FB_OMAP_DMA_TUNE
  79. bool "Set DMA SDRAM access priority high"
  80. depends on FB_OMAP && ARCH_OMAP1
  81. help
  82. On systems in which video memory is in system memory
  83. (SDRAM) this will speed up graphics DMA operations.
  84. If you have such a system and want to use rotation
  85. answer yes. Answer no if you have a dedicated video
  86. memory, or don't use any of the accelerated features.