upload tizen1.0 source
[kernel/linux-2.6.36.git] / drivers / media / Kconfig
1 #
2 # Multimedia device configuration
3 #
4
5 menuconfig MEDIA_SUPPORT
6         tristate "Multimedia support"
7         depends on HAS_IOMEM
8         help
9           If you want to use Video for Linux, DVB for Linux, or DAB adapters,
10           enable this option and other options below.
11
12 if MEDIA_SUPPORT
13
14 comment "Multimedia core support"
15
16 #
17 # Media controller
18 #
19
20 config MEDIA_CONTROLLER
21         bool "Media Controller API (EXPERIMENTAL)"
22         depends on EXPERIMENTAL
23         ---help---
24           Enable the media controller API used to query media devices internal
25           topology and configure it dynamically.
26
27           This API is mostly used by camera interfaces in embedded platforms.
28
29 #
30 # V4L core and enabled API's
31 #
32
33 config VIDEO_DEV
34         tristate "Video For Linux"
35         ---help---
36           V4L core support for video capture and overlay devices, webcams and
37           AM/FM radio cards.
38
39           This kernel includes support for the new Video for Linux Two API,
40           (V4L2).
41
42           Additional info and docs are available on the web at
43           <http://linuxtv.org>
44
45           Documentation for V4L2 is also available on the web at
46           <http://bytesex.org/v4l/>.
47
48           To compile this driver as a module, choose M here: the
49           module will be called videodev.
50
51 config VIDEO_V4L2_COMMON
52         tristate
53         depends on (I2C || I2C=n) && VIDEO_DEV
54         default (I2C || I2C=n) && VIDEO_DEV
55
56 config VIDEO_V4L2_SUBDEV_API
57         bool "V4L2 sub-device userspace API (EXPERIMENTAL)"
58         depends on VIDEO_DEV && MEDIA_CONTROLLER && EXPERIMENTAL
59         ---help---
60           Enables the V4L2 sub-device pad-level userspace API used to configure
61           video format, size and frame rate between hardware blocks.
62
63           This API is mostly used by camera interfaces in embedded platforms.
64
65 #config VIDEO_ALLOW_V4L1
66 #       bool "Enable Video For Linux API 1 (DEPRECATED)"
67 #       depends on VIDEO_DEV && VIDEO_V4L2_COMMON
68 #       default VIDEO_DEV && VIDEO_V4L2_COMMON
69 #       ---help---
70 #         Enables drivers based on the legacy V4L1 API.
71 #
72 #         This api were developed to be used at Kernel 2.2 and 2.4, but
73 #         lacks support for several video standards. There are several
74 #         drivers at kernel that still depends on it.
75 #
76 #         If you are unsure as to whether this is required, answer Y.
77 #
78 #config VIDEO_V4L1_COMPAT
79 #       bool "Enable Video For Linux API 1 compatible Layer" if !VIDEO_ALLOW_V4L1
80 #       depends on VIDEO_DEV
81 #       default y
82 #       ---help---
83 #         Enables a compatibility API used by most V4L2 devices to allow
84 #         its usage with legacy applications that supports only V4L1 api.
85 #
86 #         Documentation for the original API is included in the file
87 #         <Documentation/video4linux/API.html>.
88 #
89 #         User tools for this are available from
90 #         <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
91 #
92 #         If you are unsure as to whether this is required, answer Y.
93
94 #
95 # DVB Core
96 #
97
98 config DVB_CORE
99         tristate "DVB for Linux"
100         depends on NET && INET
101         select CRC32
102         help
103           DVB core utility functions for device handling, software fallbacks etc.
104
105           Enable this if you own a DVB/ATSC adapter and want to use it or if
106           you compile Linux for a digital SetTopBox.
107
108           Say Y when you have a DVB or an ATSC card and want to use it.
109
110           API specs and user tools are available from <http://www.linuxtv.org/>.
111
112           Please report problems regarding this support to the LinuxDVB
113           mailing list.
114
115           If unsure say N.
116
117 config VIDEO_MEDIA
118         tristate
119         default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
120
121 comment "Multimedia drivers"
122
123 source "drivers/media/common/Kconfig"
124 source "drivers/media/IR/Kconfig"
125
126 #
127 # Tuner drivers for DVB and V4L
128 #
129
130 source "drivers/media/common/tuners/Kconfig"
131
132 #
133 # Video/Radio/Hybrid adapters
134 #
135
136 source "drivers/media/video/Kconfig"
137
138 source "drivers/media/radio/Kconfig"
139
140 #
141 # DVB adapters
142 #
143
144 source "drivers/media/dvb/Kconfig"
145
146 config DAB
147         boolean "DAB adapters"
148         ---help---
149           Allow selecting support for Digital Audio Broadcasting (DAB)
150           Receiver adapters.
151
152 if DAB
153 config USB_DABUSB
154         tristate "DABUSB driver"
155         depends on USB
156         ---help---
157           A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
158           brought to you by the DAB-Team
159           <http://wwwbode.cs.tum.edu/Par/arch/dab/>.  This driver can be taken
160           as an example for URB-based bulk, control, and isochronous
161           transactions. URB's are explained in
162           <Documentation/usb/URB.txt>.
163
164           To compile this driver as a module, choose M here: the
165           module will be called dabusb.
166 endif # DAB
167
168 endif # MEDIA_SUPPORT