diff options
Diffstat (limited to 'drivers/video/omap2/omapfb/Kconfig')
-rw-r--r-- | drivers/video/omap2/omapfb/Kconfig | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/drivers/video/omap2/omapfb/Kconfig b/drivers/video/omap2/omapfb/Kconfig new file mode 100644 index 000000000000..bb694cc52a50 --- /dev/null +++ b/drivers/video/omap2/omapfb/Kconfig | |||
@@ -0,0 +1,37 @@ | |||
1 | menuconfig FB_OMAP2 | ||
2 | tristate "OMAP2/3 frame buffer support (EXPERIMENTAL)" | ||
3 | depends on FB && OMAP2_DSS | ||
4 | |||
5 | select OMAP2_VRAM | ||
6 | select OMAP2_VRFB | ||
7 | select FB_CFB_FILLRECT | ||
8 | select FB_CFB_COPYAREA | ||
9 | select FB_CFB_IMAGEBLIT | ||
10 | help | ||
11 | Frame buffer driver for OMAP2/3 based boards. | ||
12 | |||
13 | config FB_OMAP2_DEBUG_SUPPORT | ||
14 | bool "Debug support for OMAP2/3 FB" | ||
15 | default y | ||
16 | depends on FB_OMAP2 | ||
17 | help | ||
18 | Support for debug output. You have to enable the actual printing | ||
19 | with debug module parameter. | ||
20 | |||
21 | config FB_OMAP2_FORCE_AUTO_UPDATE | ||
22 | bool "Force main display to automatic update mode" | ||
23 | depends on FB_OMAP2 | ||
24 | help | ||
25 | Forces main display to automatic update mode (if possible), | ||
26 | and also enables tearsync (if possible). By default | ||
27 | displays that support manual update are started in manual | ||
28 | update mode. | ||
29 | |||
30 | config FB_OMAP2_NUM_FBS | ||
31 | int "Number of framebuffers" | ||
32 | range 1 10 | ||
33 | default 3 | ||
34 | depends on FB_OMAP2 | ||
35 | help | ||
36 | Select the number of framebuffers created. OMAP2/3 has 3 overlays | ||
37 | so normally this would be 3. | ||