Kconfig 3.0 KB

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