Full support for Ginger Console
[linux-ginger.git] / drivers / video / omap2 / dss / Kconfig
blob5b7a8bcc1ad9d0f002558778decb841379099fd7
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.
7 if OMAP2_DSS
9 config OMAP2_VRAM_SIZE
10         int "VRAM size (MB)"
11         range 0 32
12         default 0
13         help
14           The amount of SDRAM to reserve at boot time for video RAM use.
15           This VRAM will be used by omapfb and other drivers that need
16           large continuous RAM area for video use.
18           You can also set this with "vram=<bytes>" kernel argument, or
19           in the board file.
21 config OMAP2_DSS_DEBUG_SUPPORT
22         bool "Debug support"
23         default y
24         help
25           This enables debug messages. You need to enable printing
26           with 'debug' module parameter.
28 config OMAP2_DSS_RFBI
29         bool "RFBI support"
30         default n
31         help
32           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 choice
40         prompt OMAP2_VENC_OUT_TYPE
41         depends on OMAP2_DSS_VENC
42         default OMAP2_VENC_OUT_TYPE_SVIDEO
44 config OMAP2_VENC_OUT_TYPE_SVIDEO
45         bool "Use S-Video output interface"
46         help
47           Select this option if you want to choose TV out over S-Video
49 config OMAP2_VENC_OUT_TYPE_COMPOSITE
50         bool "Use Composite output interface"
51         help
52           Select this option if you want to choose TV out over Composite
53 endchoice
55 config OMAP2_DSS_SDI
56         bool "SDI support"
57         depends on ARCH_OMAP3
58         default n
59         help
60           SDI (Serial Display Interface) support.
62 config OMAP2_DSS_DSI
63         bool "DSI support"
64         depends on ARCH_OMAP3
65         default n
66         help
67           MIPI DSI support.
69 config OMAP2_DSS_USE_DSI_PLL
70         bool "Use DSI PLL for PCLK (EXPERIMENTAL)"
71         default n
72         depends on OMAP2_DSS_DSI
73         help
74           Use DSI PLL to generate pixel clock.  Currently only for DPI output.
75           DSI PLL can be used to generate higher and more precise pixel clocks.
77 config OMAP2_DSS_FAKE_VSYNC
78         bool "Fake VSYNC irq from manual update displays"
79         default n
80         help
81           If this is selected, DSI will generate a fake DISPC VSYNC interrupt
82           when DSI has sent a frame. This is only needed with DSI or RFBI
83           displays using manual mode, and you want VSYNC to, for example,
84           time animation.
86 config OMAP2_DSS_MIN_FCK_PER_PCK
87         int "Minimum FCK/PCK ratio (for scaling)"
88         range 0 32
89         default 0
90         help
91           This can be used to adjust the minimum FCK/PCK ratio.
93           With this you can make sure that DISPC FCK is at least
94           n x PCK. Video plane scaling requires higher FCK than
95           normally.
97           If this is set to 0, there's no extra constraint on the
98           DISPC FCK. However, the FCK will at minimum be
99           2xPCK (if active matrix) or 3xPCK (if passive matrix).
101           Max FCK is 173MHz, so this doesn't work if your PCK
102           is very high.
104 endif