Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. menuconfig OMAP2_DSS
  2. tristate "OMAP2/3 Display Subsystem support (EXPERIMENTAL)"
  3. depends on ARCH_OMAP2 || ARCH_OMAP3
  4. help
  5. OMAP2/3 Display Subsystem support.
  6. if OMAP2_DSS
  7. config OMAP2_VRAM_SIZE
  8. int "VRAM size (MB)"
  9. range 0 32
  10. default 0
  11. help
  12. The amount of SDRAM to reserve at boot time for video RAM use.
  13. This VRAM will be used by omapfb and other drivers that need
  14. large continuous RAM area for video use.
  15. You can also set this with "vram=<bytes>" kernel argument, or
  16. in the board file.
  17. config OMAP2_DSS_DEBUG_SUPPORT
  18. bool "Debug support"
  19. default y
  20. help
  21. This enables debug messages. You need to enable printing
  22. with 'debug' module parameter.
  23. config OMAP2_DSS_COLLECT_IRQ_STATS
  24. bool "Collect DSS IRQ statistics"
  25. depends on OMAP2_DSS_DEBUG_SUPPORT
  26. default n
  27. help
  28. Collect DSS IRQ statistics, printable via debugfs
  29. config OMAP2_DSS_RFBI
  30. bool "RFBI support"
  31. default n
  32. help
  33. MIPI DBI, or RFBI (Remote Framebuffer Interface), support.
  34. config OMAP2_DSS_VENC
  35. bool "VENC support"
  36. default y
  37. help
  38. OMAP Video Encoder support.
  39. config OMAP2_DSS_SDI
  40. bool "SDI support"
  41. depends on ARCH_OMAP3
  42. default n
  43. help
  44. SDI (Serial Display Interface) support.
  45. config OMAP2_DSS_DSI
  46. bool "DSI support"
  47. depends on ARCH_OMAP3
  48. default n
  49. help
  50. MIPI DSI support.
  51. config OMAP2_DSS_USE_DSI_PLL
  52. bool "Use DSI PLL for PCLK (EXPERIMENTAL)"
  53. default n
  54. depends on OMAP2_DSS_DSI
  55. help
  56. Use DSI PLL to generate pixel clock. Currently only for DPI output.
  57. DSI PLL can be used to generate higher and more precise pixel clocks.
  58. config OMAP2_DSS_FAKE_VSYNC
  59. bool "Fake VSYNC irq from manual update displays"
  60. default n
  61. help
  62. If this is selected, DSI will generate a fake DISPC VSYNC interrupt
  63. when DSI has sent a frame. This is only needed with DSI or RFBI
  64. displays using manual mode, and you want VSYNC to, for example,
  65. time animation.
  66. config OMAP2_DSS_MIN_FCK_PER_PCK
  67. int "Minimum FCK/PCK ratio (for scaling)"
  68. range 0 32
  69. default 0
  70. help
  71. This can be used to adjust the minimum FCK/PCK ratio.
  72. With this you can make sure that DISPC FCK is at least
  73. n x PCK. Video plane scaling requires higher FCK than
  74. normally.
  75. If this is set to 0, there's no extra constraint on the
  76. DISPC FCK. However, the FCK will at minimum be
  77. 2xPCK (if active matrix) or 3xPCK (if passive matrix).
  78. Max FCK is 173MHz, so this doesn't work if your PCK
  79. is very high.
  80. endif