blob: 161ccfd471cb3703db631b8e7abd20eb2abc83ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Mauro Carvalho Chehab7c91f062008-04-29 21:38:44 -03002# DVB device configuration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
4
Janne Grunau4457ef12009-09-01 19:15:39 -03005config DVB_MAX_ADAPTERS
6 int "maximum number of DVB/ATSC adapters"
7 depends on DVB_CORE
8 default 8
9 range 1 255
10 help
11 Maximum number of DVB/ATSC adapters. Increasing this number
12 increases the memory consumption of the DVB subsystem even
13 if a much lower number of DVB/ATSC adapters is present.
14 Only values in the range 4-32 are tested.
15
16 If you are unsure about this, use the default value 8
17
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030018config DVB_DYNAMIC_MINORS
19 bool "Dynamic DVB minor allocation"
20 depends on DVB_CORE
21 default n
22 help
23 If you say Y here, the DVB subsystem will use dynamic minor
24 allocation for any device that uses the DVB major number.
25 This means that you can have more than 4 of a single type
26 of device (like demuxes and frontends) per adapter, but udev
27 will be required to manage the device nodes.
28
29 If you are unsure about this, say N here.
30
Mauro Carvalho Chehab523b78d2007-05-03 15:59:37 -030031menuconfig DVB_CAPTURE_DRIVERS
32 bool "DVB/ATSC adapters"
33 depends on DVB_CORE
34 default y
35 ---help---
36 Say Y to select Digital TV adapters
37
Trent Piepho59faba12007-06-27 14:09:54 -070038if DVB_CAPTURE_DRIVERS && DVB_CORE
Mauro Carvalho Chehab523b78d2007-05-03 15:59:37 -030039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040comment "Supported SAA7146 based PCI Adapters"
Manu Abraham3c2c5492006-05-20 13:17:00 -030041 depends on DVB_CORE && PCI && I2C
Linus Torvalds1da177e2005-04-16 15:20:36 -070042source "drivers/media/dvb/ttpci/Kconfig"
43
44comment "Supported USB Adapters"
Manu Abraham3c2c5492006-05-20 13:17:00 -030045 depends on DVB_CORE && USB && I2C
Johannes Stezenbach776338e2005-06-23 22:02:35 -070046source "drivers/media/dvb/dvb-usb/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047source "drivers/media/dvb/ttusb-budget/Kconfig"
48source "drivers/media/dvb/ttusb-dec/Kconfig"
Michael Krufky85447062008-05-22 18:29:20 -030049source "drivers/media/dvb/siano/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51comment "Supported FlexCopII (B2C2) Adapters"
Manu Abraham3c2c5492006-05-20 13:17:00 -030052 depends on DVB_CORE && (PCI || USB) && I2C
Linus Torvalds1da177e2005-04-16 15:20:36 -070053source "drivers/media/dvb/b2c2/Kconfig"
54
55comment "Supported BT878 Adapters"
Manu Abraham3c2c5492006-05-20 13:17:00 -030056 depends on DVB_CORE && PCI && I2C
Linus Torvalds1da177e2005-04-16 15:20:36 -070057source "drivers/media/dvb/bt8xx/Kconfig"
58
Andreas Oberritterc7cadb32005-07-07 17:57:46 -070059comment "Supported Pluto2 Adapters"
Manu Abraham3c2c5492006-05-20 13:17:00 -030060 depends on DVB_CORE && PCI && I2C
Andreas Oberritterc7cadb32005-07-07 17:57:46 -070061source "drivers/media/dvb/pluto2/Kconfig"
62
Igor M. Liplianina611d0c2008-09-13 10:10:53 -030063comment "Supported SDMC DM1105 Adapters"
Igor M. Liplianin35d9c422008-09-13 20:56:59 -030064 depends on DVB_CORE && PCI && I2C
Igor M. Liplianina611d0c2008-09-13 10:10:53 -030065source "drivers/media/dvb/dm1105/Kconfig"
66
Stefan Richter15490792009-02-23 14:21:10 +010067comment "Supported FireWire (IEEE 1394) Adapters"
68 depends on DVB_CORE && IEEE1394
Rambaldia70f81c2009-01-17 14:47:34 +010069source "drivers/media/dvb/firewire/Kconfig"
Greg Kroah-Hartmanc81c8b62008-03-06 21:30:23 -080070
Mauro Carvalho Chehab3d17fb12009-08-23 00:51:22 -030071comment "Supported Earthsoft PT1 Adapters"
72 depends on DVB_CORE && PCI && I2C
73source "drivers/media/dvb/pt1/Kconfig"
74
Manu Abraham8873c612009-12-05 01:24:08 -030075comment "Supported Mantis Adapters"
76 depends on DVB_CORE && PCI && I2C
77 source "drivers/media/dvb/mantis/Kconfig"
78
Oliver Endriss83f3c712009-12-19 04:54:44 -030079comment "Supported nGene Adapters"
80 depends on DVB_CORE && PCI && I2C
81 source "drivers/media/dvb/ngene/Kconfig"
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083comment "Supported DVB Frontends"
84 depends on DVB_CORE
85source "drivers/media/dvb/frontends/Kconfig"
Mauro Carvalho Chehab523b78d2007-05-03 15:59:37 -030086
87endif # DVB_CAPTURE_DRIVERS