]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/video/omap2/dss/Kconfig
OMAPDSS: remove Kconfig dependencies
[karo-tx-linux.git] / drivers / video / omap2 / dss / Kconfig
1 menuconfig OMAP2_DSS
2         tristate "OMAP2+ Display Subsystem support"
3         help
4           OMAP2+ Display Subsystem support.
5
6 if OMAP2_DSS
7
8 config OMAP2_VRAM_SIZE
9         int "VRAM size (MB)"
10         range 0 32
11         default 0
12         help
13           The amount of SDRAM to reserve at boot time for video RAM use.
14           This VRAM will be used by omapfb and other drivers that need
15           large continuous RAM area for video use.
16
17           You can also set this with "vram=<bytes>" kernel argument, or
18           in the board file.
19
20 config OMAP2_DSS_DEBUG_SUPPORT
21         bool "Debug support"
22         default y
23         help
24           This enables debug messages. You need to enable printing
25           with 'debug' module parameter.
26
27 config OMAP2_DSS_COLLECT_IRQ_STATS
28         bool "Collect DSS IRQ statistics"
29         depends on OMAP2_DSS_DEBUG_SUPPORT
30         default n
31         help
32           Collect DSS IRQ statistics, printable via debugfs.
33
34           The statistics can be found from
35           <debugfs>/omapdss/dispc_irq for DISPC interrupts, and
36           <debugfs>/omapdss/dsi_irq for DSI interrupts.
37
38 config OMAP2_DSS_DPI
39         bool "DPI support"
40         default y
41         help
42           DPI Interface. This is the Parallel Display Interface.
43
44 config OMAP2_DSS_RFBI
45         bool "RFBI support"
46         default n
47         help
48           MIPI DBI support (RFBI, Remote Framebuffer Interface, in Texas
49           Instrument's terminology).
50
51           DBI is a bus between the host processor and a peripheral,
52           such as a display or a framebuffer chip.
53
54           See http://www.mipi.org/ for DBI specifications.
55
56 config OMAP2_DSS_VENC
57         bool "VENC support"
58         default y
59         help
60           OMAP Video Encoder support for S-Video and composite TV-out.
61
62 config OMAP4_DSS_HDMI
63         bool "HDMI support"
64         default y
65         help
66           HDMI Interface. This adds the High Definition Multimedia Interface.
67           See http://www.hdmi.org/ for HDMI specification.
68
69 config OMAP4_DSS_HDMI_AUDIO
70         bool
71
72 config OMAP2_DSS_SDI
73         bool "SDI support"
74         default n
75         help
76           SDI (Serial Display Interface) support.
77
78           SDI is a high speed one-way display serial bus between the host
79           processor and a display.
80
81 config OMAP2_DSS_DSI
82         bool "DSI support"
83         default n
84         help
85           MIPI DSI (Display Serial Interface) support.
86
87           DSI is a high speed half-duplex serial interface between the host
88           processor and a peripheral, such as a display or a framebuffer chip.
89
90           See http://www.mipi.org/ for DSI specifications.
91
92 config OMAP2_DSS_MIN_FCK_PER_PCK
93         int "Minimum FCK/PCK ratio (for scaling)"
94         range 0 32
95         default 0
96         help
97           This can be used to adjust the minimum FCK/PCK ratio.
98
99           With this you can make sure that DISPC FCK is at least
100           n x PCK. Video plane scaling requires higher FCK than
101           normally.
102
103           If this is set to 0, there's no extra constraint on the
104           DISPC FCK. However, the FCK will at minimum be
105           2xPCK (if active matrix) or 3xPCK (if passive matrix).
106
107           Max FCK is 173MHz, so this doesn't work if your PCK
108           is very high.
109
110 config OMAP2_DSS_SLEEP_AFTER_VENC_RESET
111         bool "Sleep 20ms after VENC reset"
112         default y
113         help
114           There is a 20ms sleep after VENC reset which seemed to fix the
115           reset. The reason for the bug is unclear, and it's also unclear
116           on what platforms this happens.
117
118           This option enables the sleep, and is enabled by default. You can
119           disable the sleep if it doesn't cause problems on your platform.
120
121 endif