~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/video/omap2/dss/Kconfig

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 
57
57
config OMAP2_DSS_VENC
58
58
        bool "VENC support"
59
 
        depends on BROKEN
60
59
        default y
61
60
        help
62
61
          OMAP Video Encoder support for S-Video and composite TV-out.
71
70
 
72
71
config OMAP2_DSS_SDI
73
72
        bool "SDI support"
74
 
        depends on ARCH_OMAP3
 
73
        depends on ARCH_OMAP3 || ARCH_OMAP4
75
74
        default n
76
75
        help
77
76
          SDI (Serial Display Interface) support.
81
80
 
82
81
config OMAP2_DSS_DSI
83
82
        bool "DSI support"
84
 
        depends on ARCH_OMAP3
 
83
        depends on ARCH_OMAP3 || ARCH_OMAP4
85
84
        default n
86
85
        help
87
86
          MIPI DSI (Display Serial Interface) support.
91
90
 
92
91
          See http://www.mipi.org/ for DSI spesifications.
93
92
 
94
 
config OMAP2_DSS_USE_DSI_PLL
95
 
        bool "Use DSI PLL for PCLK (EXPERIMENTAL)"
96
 
        default n
97
 
        depends on OMAP2_DSS_DSI
98
 
        help
99
 
          Use DSI PLL to generate pixel clock.  Currently only for DPI output.
100
 
          DSI PLL can be used to generate higher and more precise pixel clocks.
101
 
 
102
93
config OMAP2_DSS_FAKE_VSYNC
103
94
        bool "Fake VSYNC irq from manual update displays"
104
95
        default n
126
117
          Max FCK is 173MHz, so this doesn't work if your PCK
127
118
          is very high.
128
119
 
 
120
config OMAP2_DSS_SLEEP_BEFORE_RESET
 
121
        bool "Sleep 50ms before DSS reset"
 
122
        default y
 
123
        help
 
124
          For some unknown reason we may get SYNC_LOST errors from the display
 
125
          subsystem at initialization time if we don't sleep before resetting
 
126
          the DSS. See the source (dss.c) for more comments.
 
127
 
 
128
          However, 50ms is quite long time to sleep, and with some
 
129
          configurations the SYNC_LOST may never happen, so the sleep can
 
130
          be disabled here.
 
131
 
 
132
config OMAP2_DSS_SLEEP_AFTER_VENC_RESET
 
133
        bool "Sleep 20ms after VENC reset"
 
134
        default y
 
135
        help
 
136
          There is a 20ms sleep after VENC reset which seemed to fix the
 
137
          reset. The reason for the bug is unclear, and it's also unclear
 
138
          on what platforms this happens.
 
139
 
 
140
          This option enables the sleep, and is enabled by default. You can
 
141
          disable the sleep if it doesn't cause problems on your platform.
 
142
 
129
143
endif