Kconfig 4.2 KB
Newer Older
1
config MEDIA_ATTACH
2
	bool "Load and attach frontend and tuner driver modules as needed"
3 4 5 6 7 8
	depends on DVB_CORE
	depends on MODULES
	help
	  Remove the static dependency of DVB card drivers on all
	  frontend modules for all possible card variants. Instead,
	  allow the card drivers to only load the frontend modules
9 10 11 12 13 14
	  they require.

	  Also, tuner module will automatically load a tuner driver
	  when needed, for analog mode.

	  This saves several KBytes of memory.
15 16 17 18 19

	  Note: You will need module-init-tools v3.2 or later for this feature.

	  If unsure say Y.

20
config MEDIA_TUNER
21
	tristate
22 23
	default VIDEO_MEDIA && I2C
	depends on VIDEO_MEDIA && I2C
24
	select MEDIA_TUNER_XC2028 if !MEDIA_TUNER_CUSTOMIZE && HOTPLUG
25 26 27 28 29 30 31 32 33
	select MEDIA_TUNER_XC5000 if !MEDIA_TUNER_CUSTOMIZE
	select MEDIA_TUNER_MT20XX if !MEDIA_TUNER_CUSTOMIZE
	select MEDIA_TUNER_TDA8290 if !MEDIA_TUNER_CUSTOMIZE
	select MEDIA_TUNER_TEA5761 if !MEDIA_TUNER_CUSTOMIZE
	select MEDIA_TUNER_TEA5767 if !MEDIA_TUNER_CUSTOMIZE
	select MEDIA_TUNER_SIMPLE if !MEDIA_TUNER_CUSTOMIZE
	select MEDIA_TUNER_TDA9887 if !MEDIA_TUNER_CUSTOMIZE

menuconfig MEDIA_TUNER_CUSTOMIZE
34
	bool "Customize analog and hybrid tuner modules to build"
35
	depends on MEDIA_TUNER
36 37 38 39 40 41 42 43 44
	help
	  This allows the user to deselect tuner drivers unnecessary
	  for their hardware from the build. Use this option with care
	  as deselecting tuner drivers which are in fact necessary will
	  result in V4L/DVB devices which cannot be tuned due to lack of
	  driver support

	  If unsure say N.

45
if MEDIA_TUNER_CUSTOMIZE
46

47
config MEDIA_TUNER_SIMPLE
48
	tristate "Simple tuner support"
49 50
	select MEDIA_TUNER_TDA9887
	default m if MEDIA_TUNER_CUSTOMIZE
51 52 53
	help
	  Say Y here to include support for various simple tuners.

54
config MEDIA_TUNER_TDA8290
55
	tristate "TDA 8290/8295 + 8275(a)/18271 tuner combo"
56 57 58
	select MEDIA_TUNER_TDA827X
	select MEDIA_TUNER_TDA18271
	default m if MEDIA_TUNER_CUSTOMIZE
59 60 61
	help
	  Say Y here to include support for Philips TDA8290+8275(a) tuner.

62
config MEDIA_TUNER_TDA827X
63 64 65 66 67
	tristate "Philips TDA827X silicon tuner"
	default m if DVB_FE_CUSTOMISE
	help
	  A DVB-T silicon tuner module. Say Y when you want to support this tuner.

68
config MEDIA_TUNER_TDA18271
69 70 71 72 73
	tristate "NXP TDA18271 silicon tuner"
	default m if DVB_FE_CUSTOMISE
	help
	  A silicon tuner module. Say Y when you want to support this tuner.

74
config MEDIA_TUNER_TDA9887
75
	tristate "TDA 9885/6/7 analog IF demodulator"
76
	default m if MEDIA_TUNER_CUSTOMIZE
77 78 79 80
	help
	  Say Y here to include support for Philips TDA9885/6/7
	  analog IF demodulator.

81
config MEDIA_TUNER_TEA5761
82
	tristate "TEA 5761 radio tuner (EXPERIMENTAL)"
83
	depends on EXPERIMENTAL
84
	default m if MEDIA_TUNER_CUSTOMIZE
85 86 87
	help
	  Say Y here to include support for the Philips TEA5761 radio tuner.

88
config MEDIA_TUNER_TEA5767
89
	tristate "TEA 5767 radio tuner"
90
	default m if MEDIA_TUNER_CUSTOMIZE
91 92 93
	help
	  Say Y here to include support for the Philips TEA5767 radio tuner.

94
config MEDIA_TUNER_MT20XX
95
	tristate "Microtune 2032 / 2050 tuners"
96
	default m if MEDIA_TUNER_CUSTOMIZE
97 98 99
	help
	  Say Y here to include support for the MT2032 / MT2050 tuner.

100
config MEDIA_TUNER_MT2060
101 102 103 104 105
	tristate "Microtune MT2060 silicon IF tuner"
	default m if DVB_FE_CUSTOMISE
	help
	  A driver for the silicon IF tuner MT2060 from Microtune.

106
config MEDIA_TUNER_MT2266
107 108 109 110 111
	tristate "Microtune MT2266 silicon tuner"
	default m if DVB_FE_CUSTOMISE
	help
	  A driver for the silicon baseband tuner MT2266 from Microtune.

112
config MEDIA_TUNER_MT2131
113 114 115 116 117
	tristate "Microtune MT2131 silicon tuner"
	default m if DVB_FE_CUSTOMISE
	help
	  A driver for the silicon baseband tuner MT2131 from Microtune.

118
config MEDIA_TUNER_QT1010
119 120 121 122 123
	tristate "Quantek QT1010 silicon tuner"
	default m if DVB_FE_CUSTOMISE
	help
	  A driver for the silicon tuner QT1010 from Quantek.

124
config MEDIA_TUNER_XC2028
125
	tristate "XCeive xc2028/xc3028 tuners"
126 127
	depends on HOTPLUG
	select FW_LOADER
128
	default m if MEDIA_TUNER_CUSTOMIZE
129 130 131
	help
	  Say Y here to include support for the xc2028/xc3028 tuners.

132
config MEDIA_TUNER_XC5000
133
	tristate "Xceive XC5000 silicon tuner"
134
	depends on HOTPLUG
135
	select FW_LOADER
136 137 138 139 140 141
	default m if DVB_FE_CUSTOMISE
	help
	  A driver for the silicon tuner XC5000 from Xceive.
	  This device is only used inside a SiP called togther with a
	  demodulator for now.

142
endif # MEDIA_TUNER_CUSTOMIZE