Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v3.16-rc5 141 lines 3.6 kB view raw
1config OMAP2_DSS_INIT 2 bool 3 4menuconfig OMAP2_DSS 5 tristate "OMAP2+ Display Subsystem support" 6 select VIDEOMODE_HELPERS 7 select OMAP2_DSS_INIT 8 help 9 OMAP2+ Display Subsystem support. 10 11if OMAP2_DSS 12 13config OMAP2_DSS_DEBUG 14 bool "Debug support" 15 default n 16 help 17 This enables printing of debug messages. Alternatively, debug messages 18 can also be enabled by setting CONFIG_DYNAMIC_DEBUG and then setting 19 appropriate flags in <debugfs>/dynamic_debug/control. 20 21config OMAP2_DSS_DEBUGFS 22 bool "Debugfs filesystem support" 23 depends on DEBUG_FS 24 default n 25 help 26 This enables debugfs for OMAPDSS at <debugfs>/omapdss. This enables 27 querying about clock configuration and register configuration of dss, 28 dispc, dsi, hdmi and rfbi. 29 30config OMAP2_DSS_COLLECT_IRQ_STATS 31 bool "Collect DSS IRQ statistics" 32 depends on OMAP2_DSS_DEBUGFS 33 default n 34 help 35 Collect DSS IRQ statistics, printable via debugfs. 36 37 The statistics can be found from 38 <debugfs>/omapdss/dispc_irq for DISPC interrupts, and 39 <debugfs>/omapdss/dsi_irq for DSI interrupts. 40 41config OMAP2_DSS_DPI 42 bool "DPI support" 43 default y 44 help 45 DPI Interface. This is the Parallel Display Interface. 46 47config OMAP2_DSS_RFBI 48 bool "RFBI support" 49 depends on BROKEN 50 default n 51 help 52 MIPI DBI support (RFBI, Remote Framebuffer Interface, in Texas 53 Instrument's terminology). 54 55 DBI is a bus between the host processor and a peripheral, 56 such as a display or a framebuffer chip. 57 58 See http://www.mipi.org/ for DBI specifications. 59 60config OMAP2_DSS_VENC 61 bool "VENC support" 62 default y 63 help 64 OMAP Video Encoder support for S-Video and composite TV-out. 65 66config OMAP2_DSS_HDMI_COMMON 67 bool 68 69config OMAP4_DSS_HDMI 70 bool "HDMI support for OMAP4" 71 default y 72 select OMAP2_DSS_HDMI_COMMON 73 help 74 HDMI support for OMAP4 based SoCs. 75 76config OMAP4_DSS_HDMI_AUDIO 77 bool 78 79config OMAP5_DSS_HDMI 80 bool "HDMI support for OMAP5" 81 default n 82 select OMAP2_DSS_HDMI_COMMON 83 help 84 HDMI Interface for OMAP5 and similar cores. This adds the High 85 Definition Multimedia Interface. See http://www.hdmi.org/ for HDMI 86 specification. 87 88config OMAP5_DSS_HDMI_AUDIO 89 depends on OMAP5_DSS_HDMI 90 bool 91 92config OMAP2_DSS_SDI 93 bool "SDI support" 94 default n 95 help 96 SDI (Serial Display Interface) support. 97 98 SDI is a high speed one-way display serial bus between the host 99 processor and a display. 100 101config OMAP2_DSS_DSI 102 bool "DSI support" 103 default n 104 help 105 MIPI DSI (Display Serial Interface) support. 106 107 DSI is a high speed half-duplex serial interface between the host 108 processor and a peripheral, such as a display or a framebuffer chip. 109 110 See http://www.mipi.org/ for DSI specifications. 111 112config OMAP2_DSS_MIN_FCK_PER_PCK 113 int "Minimum FCK/PCK ratio (for scaling)" 114 range 0 32 115 default 0 116 help 117 This can be used to adjust the minimum FCK/PCK ratio. 118 119 With this you can make sure that DISPC FCK is at least 120 n x PCK. Video plane scaling requires higher FCK than 121 normally. 122 123 If this is set to 0, there's no extra constraint on the 124 DISPC FCK. However, the FCK will at minimum be 125 2xPCK (if active matrix) or 3xPCK (if passive matrix). 126 127 Max FCK is 173MHz, so this doesn't work if your PCK 128 is very high. 129 130config OMAP2_DSS_SLEEP_AFTER_VENC_RESET 131 bool "Sleep 20ms after VENC reset" 132 default y 133 help 134 There is a 20ms sleep after VENC reset which seemed to fix the 135 reset. The reason for the bug is unclear, and it's also unclear 136 on what platforms this happens. 137 138 This option enables the sleep, and is enabled by default. You can 139 disable the sleep if it doesn't cause problems on your platform. 140 141endif