1config MEDIA_ATTACH 2 bool "Load and attach frontend and tuner driver modules as needed" 3 depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT 4 depends on MODULES 5 default y if !EXPERT 6 help 7 Remove the static dependency of DVB card drivers on all 8 frontend modules for all possible card variants. Instead, 9 allow the card drivers to only load the frontend modules 10 they require. 11 12 Also, tuner module will automatically load a tuner driver 13 when needed, for analog mode. 14 15 This saves several KBytes of memory. 16 17 Note: You will need module-init-tools v3.2 or later for this feature. 18 19 If unsure say Y. 20 21# Analog TV tuners, auto-loaded via tuner.ko 22config MEDIA_TUNER 23 tristate 24 depends on (MEDIA_ANALOG_TV_SUPPORT || MEDIA_RADIO_SUPPORT) && I2C 25 default y 26 select MEDIA_TUNER_XC2028 if MEDIA_SUBDRV_AUTOSELECT 27 select MEDIA_TUNER_XC5000 if MEDIA_SUBDRV_AUTOSELECT 28 select MEDIA_TUNER_XC4000 if MEDIA_SUBDRV_AUTOSELECT 29 select MEDIA_TUNER_MT20XX if MEDIA_SUBDRV_AUTOSELECT 30 select MEDIA_TUNER_TDA8290 if MEDIA_SUBDRV_AUTOSELECT 31 select MEDIA_TUNER_TEA5761 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_RADIO_SUPPORT && EXPERIMENTAL 32 select MEDIA_TUNER_TEA5767 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_RADIO_SUPPORT 33 select MEDIA_TUNER_SIMPLE if MEDIA_SUBDRV_AUTOSELECT 34 select MEDIA_TUNER_TDA9887 if MEDIA_SUBDRV_AUTOSELECT 35 select MEDIA_TUNER_MC44S803 if MEDIA_SUBDRV_AUTOSELECT 36 37menu "Customize TV tuners" 38 visible if !MEDIA_SUBDRV_AUTOSELECT 39 depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT 40 41config MEDIA_TUNER_SIMPLE 42 tristate "Simple tuner support" 43 depends on MEDIA_SUPPORT && I2C 44 select MEDIA_TUNER_TDA9887 45 default m if !MEDIA_SUBDRV_AUTOSELECT 46 help 47 Say Y here to include support for various simple tuners. 48 49config MEDIA_TUNER_TDA8290 50 tristate "TDA 8290/8295 + 8275(a)/18271 tuner combo" 51 depends on MEDIA_SUPPORT && I2C 52 select MEDIA_TUNER_TDA827X 53 select MEDIA_TUNER_TDA18271 54 default m if !MEDIA_SUBDRV_AUTOSELECT 55 help 56 Say Y here to include support for Philips TDA8290+8275(a) tuner. 57 58config MEDIA_TUNER_TDA827X 59 tristate "Philips TDA827X silicon tuner" 60 depends on MEDIA_SUPPORT && I2C 61 default m if !MEDIA_SUBDRV_AUTOSELECT 62 help 63 A DVB-T silicon tuner module. Say Y when you want to support this tuner. 64 65config MEDIA_TUNER_TDA18271 66 tristate "NXP TDA18271 silicon tuner" 67 depends on MEDIA_SUPPORT && I2C 68 default m if !MEDIA_SUBDRV_AUTOSELECT 69 help 70 A silicon tuner module. Say Y when you want to support this tuner. 71 72config MEDIA_TUNER_TDA9887 73 tristate "TDA 9885/6/7 analog IF demodulator" 74 depends on MEDIA_SUPPORT && I2C 75 default m if !MEDIA_SUBDRV_AUTOSELECT 76 help 77 Say Y here to include support for Philips TDA9885/6/7 78 analog IF demodulator. 79 80config MEDIA_TUNER_TEA5761 81 tristate "TEA 5761 radio tuner (EXPERIMENTAL)" 82 depends on MEDIA_SUPPORT && I2C 83 depends on EXPERIMENTAL 84 default m if !MEDIA_SUBDRV_AUTOSELECT 85 help 86 Say Y here to include support for the Philips TEA5761 radio tuner. 87 88config MEDIA_TUNER_TEA5767 89 tristate "TEA 5767 radio tuner" 90 depends on MEDIA_SUPPORT && I2C 91 default m if !MEDIA_SUBDRV_AUTOSELECT 92 help 93 Say Y here to include support for the Philips TEA5767 radio tuner. 94 95config MEDIA_TUNER_MT20XX 96 tristate "Microtune 2032 / 2050 tuners" 97 depends on MEDIA_SUPPORT && I2C 98 default m if !MEDIA_SUBDRV_AUTOSELECT 99 help 100 Say Y here to include support for the MT2032 / MT2050 tuner. 101 102config MEDIA_TUNER_MT2060 103 tristate "Microtune MT2060 silicon IF tuner" 104 depends on MEDIA_SUPPORT && I2C 105 default m if !MEDIA_SUBDRV_AUTOSELECT 106 help 107 A driver for the silicon IF tuner MT2060 from Microtune. 108 109config MEDIA_TUNER_MT2063 110 tristate "Microtune MT2063 silicon IF tuner" 111 depends on MEDIA_SUPPORT && I2C 112 default m if !MEDIA_SUBDRV_AUTOSELECT 113 help 114 A driver for the silicon IF tuner MT2063 from Microtune. 115 116config MEDIA_TUNER_MT2266 117 tristate "Microtune MT2266 silicon tuner" 118 depends on MEDIA_SUPPORT && I2C 119 default m if !MEDIA_SUBDRV_AUTOSELECT 120 help 121 A driver for the silicon baseband tuner MT2266 from Microtune. 122 123config MEDIA_TUNER_MT2131 124 tristate "Microtune MT2131 silicon tuner" 125 depends on MEDIA_SUPPORT && I2C 126 default m if !MEDIA_SUBDRV_AUTOSELECT 127 help 128 A driver for the silicon baseband tuner MT2131 from Microtune. 129 130config MEDIA_TUNER_QT1010 131 tristate "Quantek QT1010 silicon tuner" 132 depends on MEDIA_SUPPORT && I2C 133 default m if !MEDIA_SUBDRV_AUTOSELECT 134 help 135 A driver for the silicon tuner QT1010 from Quantek. 136 137config MEDIA_TUNER_XC2028 138 tristate "XCeive xc2028/xc3028 tuners" 139 depends on MEDIA_SUPPORT && I2C 140 default m if !MEDIA_SUBDRV_AUTOSELECT 141 help 142 Say Y here to include support for the xc2028/xc3028 tuners. 143 144config MEDIA_TUNER_XC5000 145 tristate "Xceive XC5000 silicon tuner" 146 depends on MEDIA_SUPPORT && I2C 147 default m if !MEDIA_SUBDRV_AUTOSELECT 148 help 149 A driver for the silicon tuner XC5000 from Xceive. 150 This device is only used inside a SiP called together with a 151 demodulator for now. 152 153config MEDIA_TUNER_XC4000 154 tristate "Xceive XC4000 silicon tuner" 155 depends on MEDIA_SUPPORT && I2C 156 default m if !MEDIA_SUBDRV_AUTOSELECT 157 help 158 A driver for the silicon tuner XC4000 from Xceive. 159 This device is only used inside a SiP called together with a 160 demodulator for now. 161 162config MEDIA_TUNER_MXL5005S 163 tristate "MaxLinear MSL5005S silicon tuner" 164 depends on MEDIA_SUPPORT && I2C 165 default m if !MEDIA_SUBDRV_AUTOSELECT 166 help 167 A driver for the silicon tuner MXL5005S from MaxLinear. 168 169config MEDIA_TUNER_MXL5007T 170 tristate "MaxLinear MxL5007T silicon tuner" 171 depends on MEDIA_SUPPORT && I2C 172 default m if !MEDIA_SUBDRV_AUTOSELECT 173 help 174 A driver for the silicon tuner MxL5007T from MaxLinear. 175 176config MEDIA_TUNER_MC44S803 177 tristate "Freescale MC44S803 Low Power CMOS Broadband tuners" 178 depends on MEDIA_SUPPORT && I2C 179 default m if !MEDIA_SUBDRV_AUTOSELECT 180 help 181 Say Y here to support the Freescale MC44S803 based tuners 182 183config MEDIA_TUNER_MAX2165 184 tristate "Maxim MAX2165 silicon tuner" 185 depends on MEDIA_SUPPORT && I2C 186 default m if !MEDIA_SUBDRV_AUTOSELECT 187 help 188 A driver for the silicon tuner MAX2165 from Maxim. 189 190config MEDIA_TUNER_TDA18218 191 tristate "NXP TDA18218 silicon tuner" 192 depends on MEDIA_SUPPORT && I2C 193 default m if !MEDIA_SUBDRV_AUTOSELECT 194 help 195 NXP TDA18218 silicon tuner driver. 196 197config MEDIA_TUNER_FC0011 198 tristate "Fitipower FC0011 silicon tuner" 199 depends on MEDIA_SUPPORT && I2C 200 default m if !MEDIA_SUBDRV_AUTOSELECT 201 help 202 Fitipower FC0011 silicon tuner driver. 203 204config MEDIA_TUNER_FC0012 205 tristate "Fitipower FC0012 silicon tuner" 206 depends on MEDIA_SUPPORT && I2C 207 default m if !MEDIA_SUBDRV_AUTOSELECT 208 help 209 Fitipower FC0012 silicon tuner driver. 210 211config MEDIA_TUNER_FC0013 212 tristate "Fitipower FC0013 silicon tuner" 213 depends on MEDIA_SUPPORT && I2C 214 default m if !MEDIA_SUBDRV_AUTOSELECT 215 help 216 Fitipower FC0013 silicon tuner driver. 217 218config MEDIA_TUNER_TDA18212 219 tristate "NXP TDA18212 silicon tuner" 220 depends on MEDIA_SUPPORT && I2C 221 default m if !MEDIA_SUBDRV_AUTOSELECT 222 help 223 NXP TDA18212 silicon tuner driver. 224 225config MEDIA_TUNER_E4000 226 tristate "Elonics E4000 silicon tuner" 227 depends on MEDIA_SUPPORT && I2C 228 default m if !MEDIA_SUBDRV_AUTOSELECT 229 help 230 Elonics E4000 silicon tuner driver. 231 232config MEDIA_TUNER_FC2580 233 tristate "FCI FC2580 silicon tuner" 234 depends on MEDIA_SUPPORT && I2C 235 default m if !MEDIA_SUBDRV_AUTOSELECT 236 help 237 FCI FC2580 silicon tuner driver. 238 239config MEDIA_TUNER_TUA9001 240 tristate "Infineon TUA 9001 silicon tuner" 241 depends on MEDIA_SUPPORT && I2C 242 default m if !MEDIA_SUBDRV_AUTOSELECT 243 help 244 Infineon TUA 9001 silicon tuner driver. 245endmenu 246