blob: ddf57e135c6c61633fa030dd623a67d5072491c0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Multimedia device configuration
3#
4
5menu "Multimedia devices"
Martin Schwidefskye25df122007-05-10 15:45:57 +02006 depends on HAS_IOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -03008comment "Multimedia core support"
9
10#
11# V4L core and enabled API's
12#
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014config VIDEO_DEV
15 tristate "Video For Linux"
16 ---help---
Mauro Carvalho Chehabf1784352008-04-29 21:38:45 -030017 V4L core support for video capture and overlay devices, webcams and
18 AM/FM radio cards.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20 This kernel includes support for the new Video for Linux Two API,
Mauro Carvalho Chehabf1784352008-04-29 21:38:45 -030021 (V4L2).
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030023 Additional info and docs are available on the web at
24 <http://linuxtv.org>
25
26 Documentation for V4L2 is also available on the web at
27 <http://bytesex.org/v4l/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29 To compile this driver as a module, choose M here: the
30 module will be called videodev.
31
Mauro Carvalho Chehaba9254472008-01-29 18:32:35 -030032config VIDEO_V4L2_COMMON
33 tristate
34 depends on (I2C || I2C=n) && VIDEO_DEV
35 default (I2C || I2C=n) && VIDEO_DEV
36
Mauro Carvalho Chehab17de9a42008-04-15 18:11:50 -030037config VIDEO_ALLOW_V4L1
Mauro Carvalho Chehab741b5bb2006-05-28 15:45:54 -030038 bool "Enable Video For Linux API 1 (DEPRECATED)"
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -030039 depends on VIDEO_DEV && VIDEO_V4L2_COMMON
40 default VIDEO_DEV && VIDEO_V4L2_COMMON
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030041 select VIDEO_V4L1_COMPAT
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030042 ---help---
Mauro Carvalho Chehabf1784352008-04-29 21:38:45 -030043 Enables drivers based on the legacy V4L1 API.
44
45 This api were developed to be used at Kernel 2.2 and 2.4, but
46 lacks support for several video standards. There are several
47 drivers at kernel that still depends on it.
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030048
49 If you are unsure as to whether this is required, answer Y.
50
51config VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab741b5bb2006-05-28 15:45:54 -030052 bool "Enable Video For Linux API 1 compatible Layer"
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030053 depends on VIDEO_DEV
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -030054 default VIDEO_DEV
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030055 ---help---
Mauro Carvalho Chehabf1784352008-04-29 21:38:45 -030056 Enables a compatibility API used by most V4L2 devices to allow
57 its usage with legacy applications that supports only V4L1 api.
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030058
59 Documentation for the original API is included in the file
60 <Documentation/video4linux/API.html>.
61
62 User tools for this are available from
63 <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
64
65 If you are unsure as to whether this is required, answer Y.
66
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -030067#
68# DVB Core
69#
Mauro Carvalho Chehabcd41e282006-04-09 15:43:41 -030070
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -030071config DVB_CORE
72 tristate "DVB for Linux"
73 depends on NET && INET
74 select CRC32
75 help
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -030076 DVB core utility functions for device handling, software fallbacks etc.
Mauro Carvalho Chehabf1784352008-04-29 21:38:45 -030077
78 Enable this if you own a DVB/ATSC adapter and want to use it or if
79 you compile Linux for a digital SetTopBox.
80
81 Say Y when you have a DVB or an ATSC card and want to use it.
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -030082
83 API specs and user tools are available from <http://www.linuxtv.org/>.
84
Mauro Carvalho Chehabf1784352008-04-29 21:38:45 -030085 Please report problems regarding this support to the LinuxDVB
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -030086 mailing list.
87
88 If unsure say N.
89
90config VIDEO_MEDIA
Mauro Carvalho Chehab17de9a42008-04-15 18:11:50 -030091 tristate
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -030092 default DVB_CORE || VIDEO_DEV
93 depends on DVB_CORE || VIDEO_DEV
94
95comment "Multimedia drivers"
96
97source "drivers/media/common/Kconfig"
98
99#
100# Tuner drivers for DVB and V4L
101#
102
103source "drivers/media/common/tuners/Kconfig"
104
105#
106# Video/Radio/Hybrid adapters
107#
Mauro Carvalho Chehab17de9a42008-04-15 18:11:50 -0300108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109source "drivers/media/video/Kconfig"
110
111source "drivers/media/radio/Kconfig"
112
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -0300113#
114# DVB adapters
115#
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117source "drivers/media/dvb/Kconfig"
118
Mauro Carvalho Chehab9a957352007-05-03 16:01:02 -0300119config DAB
120 boolean "DAB adapters"
Mauro Carvalho Chehab9a957352007-05-03 16:01:02 -0300121 ---help---
122 Allow selecting support for for Digital Audio Broadcasting (DAB)
123 Receiver adapters.
124
125if DAB
Mauro Carvalho Chehab9f6933b2006-03-25 09:05:39 -0300126config USB_DABUSB
Mauro Carvalho Chehab8dbc5ec2006-03-26 08:54:09 -0300127 tristate "DABUSB driver"
128 depends on USB
129 ---help---
130 A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
131 brought to you by the DAB-Team
132 <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken
133 as an example for URB-based bulk, control, and isochronous
134 transactions. URB's are explained in
135 <Documentation/usb/URB.txt>.
Mauro Carvalho Chehab9f6933b2006-03-25 09:05:39 -0300136
Mauro Carvalho Chehab8dbc5ec2006-03-26 08:54:09 -0300137 To compile this driver as a module, choose M here: the
138 module will be called dabusb.
Mauro Carvalho Chehab9a957352007-05-03 16:01:02 -0300139endif # DAB
Mauro Carvalho Chehab9f6933b2006-03-25 09:05:39 -0300140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141endmenu