aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/davinci/Kconfig
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2012-08-14 16:31:16 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-08-15 15:43:09 -0400
commit2c3fb08b3f74b8792004095a1f6881a3296ff643 (patch)
tree19be9d09c4aa66d4363ee9d38a43721f5d6b144f /drivers/media/platform/davinci/Kconfig
parent2a2d1cf46500ab7599d0b45ee837f3936763ccac (diff)
[media] rename drivers/media/video as .../platform
The remaining drivers are mostly platform drivers. Name the dir to reflect it. It makes sense to latter break it into a few other dirs. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/platform/davinci/Kconfig')
-rw-r--r--drivers/media/platform/davinci/Kconfig121
1 files changed, 121 insertions, 0 deletions
diff --git a/drivers/media/platform/davinci/Kconfig b/drivers/media/platform/davinci/Kconfig
new file mode 100644
index 000000000000..52c5ca68cb3d
--- /dev/null
+++ b/drivers/media/platform/davinci/Kconfig
@@ -0,0 +1,121 @@
1config VIDEO_DAVINCI_VPIF_DISPLAY
2 tristate "DM646x/DA850/OMAPL138 EVM Video Display"
3 depends on VIDEO_DEV && (MACH_DAVINCI_DM6467_EVM || MACH_DAVINCI_DA850_EVM)
4 select VIDEOBUF2_DMA_CONTIG
5 select VIDEO_DAVINCI_VPIF
6 select VIDEO_ADV7343 if VIDEO_HELPER_CHIPS_AUTO
7 select VIDEO_THS7303 if VIDEO_HELPER_CHIPS_AUTO
8 help
9 Enables Davinci VPIF module used for display devices.
10 This module is common for following DM6467/DA850/OMAPL138
11 based display devices.
12
13 To compile this driver as a module, choose M here: the
14 module will be called vpif_display.
15
16config VIDEO_DAVINCI_VPIF_CAPTURE
17 tristate "DM646x/DA850/OMAPL138 EVM Video Capture"
18 depends on VIDEO_DEV && (MACH_DAVINCI_DM6467_EVM || MACH_DAVINCI_DA850_EVM)
19 select VIDEOBUF2_DMA_CONTIG
20 select VIDEO_DAVINCI_VPIF
21 help
22 Enables Davinci VPIF module used for captur devices.
23 This module is common for following DM6467/DA850/OMAPL138
24 based capture devices.
25
26 To compile this driver as a module, choose M here: the
27 module will be called vpif_capture.
28
29config VIDEO_DAVINCI_VPIF
30 tristate "DaVinci VPIF Driver"
31 depends on VIDEO_DAVINCI_VPIF_DISPLAY || VIDEO_DAVINCI_VPIF_CAPTURE
32 help
33 Support for DaVinci VPIF Driver.
34
35 To compile this driver as a module, choose M here: the
36 module will be called vpif.
37
38config VIDEO_VPSS_SYSTEM
39 tristate "VPSS System module driver"
40 depends on ARCH_DAVINCI
41 help
42 Support for vpss system module for video driver
43
44config VIDEO_VPFE_CAPTURE
45 tristate "VPFE Video Capture Driver"
46 depends on VIDEO_V4L2 && (ARCH_DAVINCI || ARCH_OMAP3)
47 depends on I2C
48 select VIDEOBUF_DMA_CONTIG
49 help
50 Support for DMx/AMx VPFE based frame grabber. This is the
51 common V4L2 module for following DMx/AMx SoCs from Texas
52 Instruments:- DM6446, DM365, DM355 & AM3517/05.
53
54 To compile this driver as a module, choose M here: the
55 module will be called vpfe-capture.
56
57config VIDEO_DM6446_CCDC
58 tristate "DM6446 CCDC HW module"
59 depends on VIDEO_VPFE_CAPTURE
60 select VIDEO_VPSS_SYSTEM
61 default y
62 help
63 Enables DaVinci CCD hw module. DaVinci CCDC hw interfaces
64 with decoder modules such as TVP5146 over BT656 or
65 sensor module such as MT9T001 over a raw interface. This
66 module configures the interface and CCDC/ISIF to do
67 video frame capture from slave decoders.
68
69 To compile this driver as a module, choose M here: the
70 module will be called vpfe.
71
72config VIDEO_DM355_CCDC
73 tristate "DM355 CCDC HW module"
74 depends on ARCH_DAVINCI_DM355 && VIDEO_VPFE_CAPTURE
75 select VIDEO_VPSS_SYSTEM
76 default y
77 help
78 Enables DM355 CCD hw module. DM355 CCDC hw interfaces
79 with decoder modules such as TVP5146 over BT656 or
80 sensor module such as MT9T001 over a raw interface. This
81 module configures the interface and CCDC/ISIF to do
82 video frame capture from a slave decoders
83
84 To compile this driver as a module, choose M here: the
85 module will be called vpfe.
86
87config VIDEO_ISIF
88 tristate "ISIF HW module"
89 depends on ARCH_DAVINCI_DM365 && VIDEO_VPFE_CAPTURE
90 select VIDEO_VPSS_SYSTEM
91 default y
92 help
93 Enables ISIF hw module. This is the hardware module for
94 configuring ISIF in VPFE to capture Raw Bayer RGB data from
95 a image sensor or YUV data from a YUV source.
96
97 To compile this driver as a module, choose M here: the
98 module will be called vpfe.
99
100config VIDEO_DM644X_VPBE
101 tristate "DM644X VPBE HW module"
102 depends on ARCH_DAVINCI_DM644x
103 select VIDEO_VPSS_SYSTEM
104 select VIDEOBUF_DMA_CONTIG
105 help
106 Enables VPBE modules used for display on a DM644x
107 SoC.
108
109 To compile this driver as a module, choose M here: the
110 module will be called vpbe.
111
112
113config VIDEO_VPBE_DISPLAY
114 tristate "VPBE V4L2 Display driver"
115 depends on ARCH_DAVINCI_DM644x
116 select VIDEO_DM644X_VPBE
117 help
118 Enables VPBE V4L2 Display driver on a DM644x device
119
120 To compile this driver as a module, choose M here: the
121 module will be called vpbe_display.