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