blob: 064bf2cd5f21f5863008a42cce83a73bb71664e0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
4 *
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07005 * Extended 3 / 2005 by Hartmut Hackmann to support various
6 * cards with the tda10046 DVB-T channel decoder
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/init.h>
24#include <linux/list.h>
25#include <linux/module.h>
26#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/delay.h>
28#include <linux/kthread.h>
29#include <linux/suspend.h>
30
31#include "saa7134-reg.h"
32#include "saa7134.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020033#include <media/v4l2-common.h>
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -020034#include "dvb-pll.h"
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -030035#include <dvb_frontend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Andrew de Quincey1f10c7a2006-08-08 09:10:09 -030037#include "mt352.h"
38#include "mt352_priv.h" /* FIXME */
39#include "tda1004x.h"
40#include "nxt200x.h"
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -030041#include "tuner-xc2028.h"
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -030042#include "xc5000.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -030044#include "tda10086.h"
45#include "tda826x.h"
Michael Krufky8ce47da2007-04-27 12:31:14 -030046#include "tda827x.h"
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -030047#include "isl6421.h"
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -030048#include "isl6405.h"
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -030049#include "lnbp21.h"
Michael Krufkycb89cd32008-04-22 14:46:16 -030050#include "tuner-simple.h"
Michael Krufky1bc7f512009-01-19 01:10:49 -030051#include "tda10048.h"
Michael Krufky3abdedd2009-01-19 01:10:49 -030052#include "tda18271.h"
53#include "lgdt3305.h"
54#include "tda8290.h"
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -030055#include "mb86a20s.h"
Michael Krufky8ce47da2007-04-27 12:31:14 -030056
Dmitri Belimov47aeba52008-12-23 03:53:03 -030057#include "zl10353.h"
58
Matthias Schwarzott04574182009-02-24 12:35:16 -030059#include "zl10036.h"
Igor M. Liplianinecfcfec2009-08-13 21:42:21 -030060#include "zl10039.h"
Matthias Schwarzott04574182009-02-24 12:35:16 -030061#include "mt312.h"
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
64MODULE_LICENSE("GPL");
65
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030066static unsigned int antenna_pwr;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068module_param(antenna_pwr, int, 0444);
69MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)");
70
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030071static int use_frontend;
Stephan Berberigb331daa2006-12-20 09:37:05 -030072module_param(use_frontend, int, 0644);
73MODULE_PARM_DESC(use_frontend,"for cards with multiple frontends (0: terrestrial, 1: satellite)");
Nico Sabbi1f683cd2006-11-15 22:06:56 -030074
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030075static int debug;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -030076module_param(debug, int, 0644);
77MODULE_PARM_DESC(debug, "Turn on/off module debugging (default:off).");
78
Janne Grunau78e92002008-04-09 19:13:13 -030079DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
80
Trent Piephocf3c34c2007-03-07 18:19:48 -030081#define dprintk(fmt, arg...) do { if (debug) \
82 printk(KERN_DEBUG "%s/dvb: " fmt, dev->name , ## arg); } while(0)
83
84/* Print a warning */
85#define wprintk(fmt, arg...) \
86 printk(KERN_WARNING "%s/dvb: " fmt, dev->name, ## arg)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -030087
88/* ------------------------------------------------------------------
89 * mt352 based DVB-T cards
90 */
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on)
93{
94 u32 ok;
95
96 if (!on) {
97 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 26));
98 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
99 return 0;
100 }
101
102 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 26));
103 saa_setl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
104 udelay(10);
105
106 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 28));
107 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 28));
108 udelay(10);
109 saa_setl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 28));
110 udelay(10);
111 ok = saa_readl(SAA7134_GPIO_GPSTATUS0) & (1 << 27);
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300112 dprintk("%s %s\n", __func__, ok ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 if (!ok)
115 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
116 return ok;
117}
118
119static int mt352_pinnacle_init(struct dvb_frontend* fe)
120{
121 static u8 clock_config [] = { CLOCK_CTL, 0x3d, 0x28 };
122 static u8 reset [] = { RESET, 0x80 };
123 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
124 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
125 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x31 };
126 static u8 fsm_ctl_cfg[] = { 0x7b, 0x04 };
127 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x0f };
128 static u8 scan_ctl_cfg [] = { SCAN_CTL, 0x0d };
129 static u8 irq_cfg [] = { INTERRUPT_EN_0, 0x00, 0x00, 0x00, 0x00 };
130 struct saa7134_dev *dev= fe->dvb->priv;
131
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300132 dprintk("%s called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 mt352_write(fe, clock_config, sizeof(clock_config));
135 udelay(200);
136 mt352_write(fe, reset, sizeof(reset));
137 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
138 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
139 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
140 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
141
142 mt352_write(fe, fsm_ctl_cfg, sizeof(fsm_ctl_cfg));
143 mt352_write(fe, scan_ctl_cfg, sizeof(scan_ctl_cfg));
144 mt352_write(fe, irq_cfg, sizeof(irq_cfg));
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147}
148
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200149static int mt352_aver777_init(struct dvb_frontend* fe)
150{
151 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x2d };
152 static u8 reset [] = { RESET, 0x80 };
153 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
154 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
155 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x33 };
156
157 mt352_write(fe, clock_config, sizeof(clock_config));
158 udelay(200);
159 mt352_write(fe, reset, sizeof(reset));
160 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
161 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
162 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
163
164 return 0;
165}
166
Tim Farrington6e501a32008-06-15 13:33:42 -0300167static int mt352_avermedia_xc3028_init(struct dvb_frontend *fe)
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300168{
Tim Farrington6e501a32008-06-15 13:33:42 -0300169 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x2d };
170 static u8 reset [] = { RESET, 0x80 };
171 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
172 static u8 agc_cfg [] = { AGC_TARGET, 0xe };
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300173 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x33 };
174
175 mt352_write(fe, clock_config, sizeof(clock_config));
176 udelay(200);
177 mt352_write(fe, reset, sizeof(reset));
178 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
179 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
180 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300181 return 0;
182}
183
Andrew de Quincey0463f122006-05-16 17:22:02 -0300184static int mt352_pinnacle_tuner_set_params(struct dvb_frontend* fe,
185 struct dvb_frontend_parameters* params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300187 u8 off[] = { 0x00, 0xf1};
188 u8 on[] = { 0x00, 0x71};
189 struct i2c_msg msg = {.addr=0x43, .flags=0, .buf=off, .len = sizeof(off)};
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct saa7134_dev *dev = fe->dvb->priv;
192 struct v4l2_frequency f;
193
194 /* set frequency (mt2050) */
195 f.tuner = 0;
196 f.type = V4L2_TUNER_DIGITAL_TV;
197 f.frequency = params->frequency / 1000 * 16 / 1000;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300198 if (fe->ops.i2c_gate_ctrl)
199 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300200 i2c_transfer(&dev->i2c_adap, &msg, 1);
Hans Verkuilfac69862009-01-17 12:17:14 -0300201 saa_call_all(dev, tuner, s_frequency, &f);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300202 msg.buf = on;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300203 if (fe->ops.i2c_gate_ctrl)
204 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300205 i2c_transfer(&dev->i2c_adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 pinnacle_antenna_pwr(dev, antenna_pwr);
208
209 /* mt352 setup */
Andrew de Quincey0463f122006-05-16 17:22:02 -0300210 return mt352_pinnacle_init(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213static struct mt352_config pinnacle_300i = {
214 .demod_address = 0x3c >> 1,
215 .adc_clock = 20333,
216 .if2 = 36150,
217 .no_tuner = 1,
218 .demod_init = mt352_pinnacle_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219};
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200220
221static struct mt352_config avermedia_777 = {
222 .demod_address = 0xf,
223 .demod_init = mt352_aver777_init,
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200224};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Tim Farrington6e501a32008-06-15 13:33:42 -0300226static struct mt352_config avermedia_xc3028_mt352_dev = {
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -0300227 .demod_address = (0x1e >> 1),
228 .no_tuner = 1,
Tim Farrington6e501a32008-06-15 13:33:42 -0300229 .demod_init = mt352_avermedia_xc3028_init,
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -0300230};
231
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -0300232static struct tda18271_std_map mb86a20s_tda18271_std_map = {
233 .dvbt_6 = { .if_freq = 3300, .agc_mode = 3, .std = 4,
234 .if_lvl = 7, .rfagc_top = 0x37, },
235};
236
237static struct tda18271_config kworld_tda18271_config = {
238 .std_map = &mb86a20s_tda18271_std_map,
Mauro Carvalho Chehab61830402011-01-13 14:24:44 -0300239 .gate = TDA18271_GATE_ANALOG,
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -0300240};
241
242static const struct mb86a20s_config kworld_mb86a20s_config = {
243 .demod_address = 0x10,
244};
245
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300246/* ==================================================================
247 * tda1004x based DVB-T cards, helper functions
248 */
249
250static int philips_tda1004x_request_firmware(struct dvb_frontend *fe,
251 const struct firmware **fw, char *name)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700252{
253 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300254 return request_firmware(fw, name, &dev->pci->dev);
255}
256
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300257/* ------------------------------------------------------------------
258 * these tuners are tu1216, td1316(a)
259 */
260
261static int philips_tda6651_pll_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
262{
263 struct saa7134_dev *dev = fe->dvb->priv;
264 struct tda1004x_state *state = fe->demodulator_priv;
265 u8 addr = state->config->tuner_address;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700266 u8 tuner_buf[4];
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800267 struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = tuner_buf,.len =
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700268 sizeof(tuner_buf) };
269 int tuner_frequency = 0;
270 u8 band, cp, filter;
271
272 /* determine charge pump */
273 tuner_frequency = params->frequency + 36166000;
274 if (tuner_frequency < 87000000)
275 return -EINVAL;
276 else if (tuner_frequency < 130000000)
277 cp = 3;
278 else if (tuner_frequency < 160000000)
279 cp = 5;
280 else if (tuner_frequency < 200000000)
281 cp = 6;
282 else if (tuner_frequency < 290000000)
283 cp = 3;
284 else if (tuner_frequency < 420000000)
285 cp = 5;
286 else if (tuner_frequency < 480000000)
287 cp = 6;
288 else if (tuner_frequency < 620000000)
289 cp = 3;
290 else if (tuner_frequency < 830000000)
291 cp = 5;
292 else if (tuner_frequency < 895000000)
293 cp = 7;
294 else
295 return -EINVAL;
296
297 /* determine band */
298 if (params->frequency < 49000000)
299 return -EINVAL;
300 else if (params->frequency < 161000000)
301 band = 1;
302 else if (params->frequency < 444000000)
303 band = 2;
304 else if (params->frequency < 861000000)
305 band = 4;
306 else
307 return -EINVAL;
308
309 /* setup PLL filter */
310 switch (params->u.ofdm.bandwidth) {
311 case BANDWIDTH_6_MHZ:
312 filter = 0;
313 break;
314
315 case BANDWIDTH_7_MHZ:
316 filter = 0;
317 break;
318
319 case BANDWIDTH_8_MHZ:
320 filter = 1;
321 break;
322
323 default:
324 return -EINVAL;
325 }
326
327 /* calculate divisor
328 * ((36166000+((1000000/6)/2)) + Finput)/(1000000/6)
329 */
330 tuner_frequency = (((params->frequency / 1000) * 6) + 217496) / 1000;
331
332 /* setup tuner buffer */
333 tuner_buf[0] = (tuner_frequency >> 8) & 0x7f;
334 tuner_buf[1] = tuner_frequency & 0xff;
335 tuner_buf[2] = 0xca;
336 tuner_buf[3] = (cp << 5) | (filter << 3) | band;
337
Patrick Boettcherdea74862006-05-14 05:01:31 -0300338 if (fe->ops.i2c_gate_ctrl)
339 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300340 if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) {
Trent Piephocf3c34c2007-03-07 18:19:48 -0300341 wprintk("could not write to tuner at addr: 0x%02x\n",
342 addr << 1);
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700343 return -EIO;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300344 }
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700345 msleep(1);
346 return 0;
347}
348
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300349static int philips_tu1216_init(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800350{
351 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300352 struct tda1004x_state *state = fe->demodulator_priv;
353 u8 addr = state->config->tuner_address;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800354 static u8 tu1216_init[] = { 0x0b, 0xf5, 0x85, 0xab };
355 struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = tu1216_init,.len = sizeof(tu1216_init) };
356
357 /* setup PLL configuration */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300358 if (fe->ops.i2c_gate_ctrl)
359 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800360 if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1)
361 return -EIO;
362 msleep(1);
363
364 return 0;
365}
366
367/* ------------------------------------------------------------------ */
368
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800369static struct tda1004x_config philips_tu1216_60_config = {
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700370 .demod_address = 0x8,
371 .invert = 1,
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800372 .invert_oclk = 0,
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700373 .xtal_freq = TDA10046_XTAL_4M,
374 .agc_config = TDA10046_AGC_DEFAULT,
375 .if_freq = TDA10046_FREQ_3617,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300376 .tuner_address = 0x60,
377 .request_firmware = philips_tda1004x_request_firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378};
379
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800380static struct tda1004x_config philips_tu1216_61_config = {
381
382 .demod_address = 0x8,
383 .invert = 1,
384 .invert_oclk = 0,
385 .xtal_freq = TDA10046_XTAL_4M,
386 .agc_config = TDA10046_AGC_DEFAULT,
387 .if_freq = TDA10046_FREQ_3617,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300388 .tuner_address = 0x61,
389 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800390};
391
392/* ------------------------------------------------------------------ */
393
Hartmut Hackmanncbb94522006-10-30 20:00:16 -0300394static int philips_td1316_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800395{
396 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300397 struct tda1004x_state *state = fe->demodulator_priv;
398 u8 addr = state->config->tuner_address;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800399 static u8 msg[] = { 0x0b, 0xf5, 0x86, 0xab };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300400 struct i2c_msg init_msg = {.addr = addr,.flags = 0,.buf = msg,.len = sizeof(msg) };
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800401
402 /* setup PLL configuration */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300403 if (fe->ops.i2c_gate_ctrl)
404 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800405 if (i2c_transfer(&dev->i2c_adap, &init_msg, 1) != 1)
406 return -EIO;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800407 return 0;
408}
409
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300410static int philips_td1316_tuner_set_params(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800411{
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300412 return philips_tda6651_pll_set(fe, params);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800413}
414
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300415static int philips_td1316_tuner_sleep(struct dvb_frontend *fe)
416{
417 struct saa7134_dev *dev = fe->dvb->priv;
418 struct tda1004x_state *state = fe->demodulator_priv;
419 u8 addr = state->config->tuner_address;
420 static u8 msg[] = { 0x0b, 0xdc, 0x86, 0xa4 };
421 struct i2c_msg analog_msg = {.addr = addr,.flags = 0,.buf = msg,.len = sizeof(msg) };
422
423 /* switch the tuner to analog mode */
424 if (fe->ops.i2c_gate_ctrl)
425 fe->ops.i2c_gate_ctrl(fe, 1);
426 if (i2c_transfer(&dev->i2c_adap, &analog_msg, 1) != 1)
427 return -EIO;
428 return 0;
429}
430
431/* ------------------------------------------------------------------ */
432
Hartmut Hackmanncbb94522006-10-30 20:00:16 -0300433static int philips_europa_tuner_init(struct dvb_frontend *fe)
434{
435 struct saa7134_dev *dev = fe->dvb->priv;
436 static u8 msg[] = { 0x00, 0x40};
437 struct i2c_msg init_msg = {.addr = 0x43,.flags = 0,.buf = msg,.len = sizeof(msg) };
438
439
440 if (philips_td1316_tuner_init(fe))
441 return -EIO;
442 msleep(1);
443 if (i2c_transfer(&dev->i2c_adap, &init_msg, 1) != 1)
444 return -EIO;
445
446 return 0;
447}
448
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300449static int philips_europa_tuner_sleep(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800450{
451 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800452
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300453 static u8 msg[] = { 0x00, 0x14 };
454 struct i2c_msg analog_msg = {.addr = 0x43,.flags = 0,.buf = msg,.len = sizeof(msg) };
455
456 if (philips_td1316_tuner_sleep(fe))
457 return -EIO;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800458
459 /* switch the board to analog mode */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300460 if (fe->ops.i2c_gate_ctrl)
461 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800462 i2c_transfer(&dev->i2c_adap, &analog_msg, 1);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300463 return 0;
464}
465
466static int philips_europa_demod_sleep(struct dvb_frontend *fe)
467{
468 struct saa7134_dev *dev = fe->dvb->priv;
469
470 if (dev->original_demod_sleep)
471 dev->original_demod_sleep(fe);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300472 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300473 return 0;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800474}
475
476static struct tda1004x_config philips_europa_config = {
477
478 .demod_address = 0x8,
479 .invert = 0,
480 .invert_oclk = 0,
481 .xtal_freq = TDA10046_XTAL_4M,
482 .agc_config = TDA10046_AGC_IFO_AUTO_POS,
483 .if_freq = TDA10046_FREQ_052,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300484 .tuner_address = 0x61,
485 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800486};
487
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700488static struct tda1004x_config medion_cardbus = {
489 .demod_address = 0x08,
490 .invert = 1,
491 .invert_oclk = 0,
492 .xtal_freq = TDA10046_XTAL_16M,
493 .agc_config = TDA10046_AGC_IFO_AUTO_NEG,
494 .if_freq = TDA10046_FREQ_3613,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300495 .tuner_address = 0x61,
496 .request_firmware = philips_tda1004x_request_firmware
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700497};
498
Vadim Catana128fe952010-05-29 12:49:16 -0300499static struct tda1004x_config technotrend_budget_t3000_config = {
500 .demod_address = 0x8,
501 .invert = 1,
502 .invert_oclk = 0,
503 .xtal_freq = TDA10046_XTAL_4M,
504 .agc_config = TDA10046_AGC_DEFAULT,
505 .if_freq = TDA10046_FREQ_3617,
506 .tuner_address = 0x63,
507 .request_firmware = philips_tda1004x_request_firmware
508};
509
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300510/* ------------------------------------------------------------------
511 * tda 1004x based cards with philips silicon tuner
512 */
513
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300514static int tda8290_i2c_gate_ctrl( struct dvb_frontend* fe, int enable)
515{
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300516 struct tda1004x_state *state = fe->demodulator_priv;
517
518 u8 addr = state->config->i2c_gate;
519 static u8 tda8290_close[] = { 0x21, 0xc0};
520 static u8 tda8290_open[] = { 0x21, 0x80};
521 struct i2c_msg tda8290_msg = {.addr = addr,.flags = 0, .len = 2};
522 if (enable) {
523 tda8290_msg.buf = tda8290_close;
524 } else {
525 tda8290_msg.buf = tda8290_open;
526 }
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300527 if (i2c_transfer(state->i2c, &tda8290_msg, 1) != 1) {
Trent Piephocf3c34c2007-03-07 18:19:48 -0300528 struct saa7134_dev *dev = fe->dvb->priv;
529 wprintk("could not access tda8290 I2C gate\n");
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300530 return -EIO;
531 }
532 msleep(20);
533 return 0;
534}
535
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300536static int philips_tda827x_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300537{
538 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300539 struct tda1004x_state *state = fe->demodulator_priv;
Michael Krufky8ce47da2007-04-27 12:31:14 -0300540
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300541 switch (state->config->antenna_switch) {
542 case 0: break;
543 case 1: dprintk("setting GPIO21 to 0 (TV antenna?)\n");
544 saa7134_set_gpio(dev, 21, 0);
545 break;
546 case 2: dprintk("setting GPIO21 to 1 (Radio antenna?)\n");
547 saa7134_set_gpio(dev, 21, 1);
548 break;
549 }
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300550 return 0;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800551}
552
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300553static int philips_tda827x_tuner_sleep(struct dvb_frontend *fe)
554{
555 struct saa7134_dev *dev = fe->dvb->priv;
556 struct tda1004x_state *state = fe->demodulator_priv;
Michael Krufky8ce47da2007-04-27 12:31:14 -0300557
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300558 switch (state->config->antenna_switch) {
559 case 0: break;
560 case 1: dprintk("setting GPIO21 to 1 (Radio antenna?)\n");
561 saa7134_set_gpio(dev, 21, 1);
562 break;
563 case 2: dprintk("setting GPIO21 to 0 (TV antenna?)\n");
564 saa7134_set_gpio(dev, 21, 0);
565 break;
566 }
567 return 0;
568}
569
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300570static int configure_tda827x_fe(struct saa7134_dev *dev,
571 struct tda1004x_config *cdec_conf,
572 struct tda827x_config *tuner_conf)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300573{
Steven Toth363c35f2008-10-11 11:05:50 -0300574 struct videobuf_dvb_frontend *fe0;
575
Darron Broad92abe9e2008-10-11 11:18:53 -0300576 /* Get the first frontend */
577 fe0 = videobuf_dvb_get_frontend(&dev->frontends, 1);
Steven Toth363c35f2008-10-11 11:05:50 -0300578
579 fe0->dvb.frontend = dvb_attach(tda10046_attach, cdec_conf, &dev->i2c_adap);
580 if (fe0->dvb.frontend) {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300581 if (cdec_conf->i2c_gate)
Steven Toth363c35f2008-10-11 11:05:50 -0300582 fe0->dvb.frontend->ops.i2c_gate_ctrl = tda8290_i2c_gate_ctrl;
583 if (dvb_attach(tda827x_attach, fe0->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300584 cdec_conf->tuner_address,
585 &dev->i2c_adap, tuner_conf))
586 return 0;
587
588 wprintk("no tda827x tuner found at addr: %02x\n",
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300589 cdec_conf->tuner_address);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300590 }
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300591 return -EINVAL;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300592}
593
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800594/* ------------------------------------------------------------------ */
Edgar Simo261f5082007-08-20 14:06:00 -0300595
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300596static struct tda827x_config tda827x_cfg_0 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300597 .init = philips_tda827x_tuner_init,
598 .sleep = philips_tda827x_tuner_sleep,
599 .config = 0,
600 .switch_addr = 0
601};
602
603static struct tda827x_config tda827x_cfg_1 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300604 .init = philips_tda827x_tuner_init,
605 .sleep = philips_tda827x_tuner_sleep,
606 .config = 1,
607 .switch_addr = 0x4b
608};
609
610static struct tda827x_config tda827x_cfg_2 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300611 .init = philips_tda827x_tuner_init,
612 .sleep = philips_tda827x_tuner_sleep,
613 .config = 2,
614 .switch_addr = 0x4b
615};
616
617static struct tda827x_config tda827x_cfg_2_sw42 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300618 .init = philips_tda827x_tuner_init,
619 .sleep = philips_tda827x_tuner_sleep,
620 .config = 2,
621 .switch_addr = 0x42
622};
623
624/* ------------------------------------------------------------------ */
625
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300626static struct tda1004x_config tda827x_lifeview_config = {
627 .demod_address = 0x08,
628 .invert = 1,
629 .invert_oclk = 0,
630 .xtal_freq = TDA10046_XTAL_16M,
631 .agc_config = TDA10046_AGC_TDA827X,
632 .gpio_config = TDA10046_GP11_I,
633 .if_freq = TDA10046_FREQ_045,
634 .tuner_address = 0x60,
635 .request_firmware = philips_tda1004x_request_firmware
636};
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800637
638static struct tda1004x_config philips_tiger_config = {
639 .demod_address = 0x08,
640 .invert = 1,
641 .invert_oclk = 0,
642 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300643 .agc_config = TDA10046_AGC_TDA827X,
644 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300645 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300646 .i2c_gate = 0x4b,
647 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300648 .antenna_switch= 1,
649 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300650};
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300651
652static struct tda1004x_config cinergy_ht_config = {
653 .demod_address = 0x08,
654 .invert = 1,
655 .invert_oclk = 0,
656 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300657 .agc_config = TDA10046_AGC_TDA827X,
658 .gpio_config = TDA10046_GP01_I,
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800659 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300660 .i2c_gate = 0x4b,
661 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300662 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800663};
664
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300665static struct tda1004x_config cinergy_ht_pci_config = {
666 .demod_address = 0x08,
667 .invert = 1,
668 .invert_oclk = 0,
669 .xtal_freq = TDA10046_XTAL_16M,
670 .agc_config = TDA10046_AGC_TDA827X,
671 .gpio_config = TDA10046_GP01_I,
672 .if_freq = TDA10046_FREQ_045,
673 .i2c_gate = 0x4b,
674 .tuner_address = 0x60,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300675 .request_firmware = philips_tda1004x_request_firmware
676};
677
678static struct tda1004x_config philips_tiger_s_config = {
679 .demod_address = 0x08,
680 .invert = 1,
681 .invert_oclk = 0,
682 .xtal_freq = TDA10046_XTAL_16M,
683 .agc_config = TDA10046_AGC_TDA827X,
684 .gpio_config = TDA10046_GP01_I,
685 .if_freq = TDA10046_FREQ_045,
686 .i2c_gate = 0x4b,
687 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300688 .antenna_switch= 1,
689 .request_firmware = philips_tda1004x_request_firmware
690};
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200691
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300692static struct tda1004x_config pinnacle_pctv_310i_config = {
693 .demod_address = 0x08,
694 .invert = 1,
695 .invert_oclk = 0,
696 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300697 .agc_config = TDA10046_AGC_TDA827X,
698 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300699 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300700 .i2c_gate = 0x4b,
701 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300702 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300703};
704
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300705static struct tda1004x_config hauppauge_hvr_1110_config = {
706 .demod_address = 0x08,
707 .invert = 1,
708 .invert_oclk = 0,
709 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300710 .agc_config = TDA10046_AGC_TDA827X,
711 .gpio_config = TDA10046_GP11_I,
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300712 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300713 .i2c_gate = 0x4b,
714 .tuner_address = 0x61,
715 .request_firmware = philips_tda1004x_request_firmware
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300716};
717
Hartmut Hackmann83646812006-10-12 20:38:51 -0300718static struct tda1004x_config asus_p7131_dual_config = {
719 .demod_address = 0x08,
720 .invert = 1,
721 .invert_oclk = 0,
722 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300723 .agc_config = TDA10046_AGC_TDA827X,
724 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann83646812006-10-12 20:38:51 -0300725 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300726 .i2c_gate = 0x4b,
727 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300728 .antenna_switch= 2,
729 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann83646812006-10-12 20:38:51 -0300730};
731
Nico Sabbi420f32f2006-03-03 12:11:28 -0300732static struct tda1004x_config lifeview_trio_config = {
733 .demod_address = 0x09,
734 .invert = 1,
735 .invert_oclk = 0,
736 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300737 .agc_config = TDA10046_AGC_TDA827X,
738 .gpio_config = TDA10046_GP00_I,
Nico Sabbi420f32f2006-03-03 12:11:28 -0300739 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300740 .tuner_address = 0x60,
741 .request_firmware = philips_tda1004x_request_firmware
Nico Sabbi420f32f2006-03-03 12:11:28 -0300742};
743
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300744static struct tda1004x_config tevion_dvbt220rf_config = {
745 .demod_address = 0x08,
746 .invert = 1,
747 .invert_oclk = 0,
748 .xtal_freq = TDA10046_XTAL_16M,
749 .agc_config = TDA10046_AGC_TDA827X,
750 .gpio_config = TDA10046_GP11_I,
751 .if_freq = TDA10046_FREQ_045,
752 .tuner_address = 0x60,
753 .request_firmware = philips_tda1004x_request_firmware
754};
Nico Sabbi420f32f2006-03-03 12:11:28 -0300755
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300756static struct tda1004x_config md8800_dvbt_config = {
757 .demod_address = 0x08,
758 .invert = 1,
759 .invert_oclk = 0,
760 .xtal_freq = TDA10046_XTAL_16M,
761 .agc_config = TDA10046_AGC_TDA827X,
762 .gpio_config = TDA10046_GP01_I,
763 .if_freq = TDA10046_FREQ_045,
764 .i2c_gate = 0x4b,
765 .tuner_address = 0x60,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300766 .request_firmware = philips_tda1004x_request_firmware
767};
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200768
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300769static struct tda1004x_config asus_p7131_4871_config = {
770 .demod_address = 0x08,
771 .invert = 1,
772 .invert_oclk = 0,
773 .xtal_freq = TDA10046_XTAL_16M,
774 .agc_config = TDA10046_AGC_TDA827X,
775 .gpio_config = TDA10046_GP01_I,
776 .if_freq = TDA10046_FREQ_045,
777 .i2c_gate = 0x4b,
778 .tuner_address = 0x61,
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300779 .antenna_switch= 2,
780 .request_firmware = philips_tda1004x_request_firmware
781};
782
Hartmut Hackmannf3eec0c02007-03-14 20:33:55 -0300783static struct tda1004x_config asus_p7131_hybrid_lna_config = {
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300784 .demod_address = 0x08,
785 .invert = 1,
786 .invert_oclk = 0,
787 .xtal_freq = TDA10046_XTAL_16M,
788 .agc_config = TDA10046_AGC_TDA827X,
789 .gpio_config = TDA10046_GP11_I,
790 .if_freq = TDA10046_FREQ_045,
791 .i2c_gate = 0x4b,
792 .tuner_address = 0x61,
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300793 .antenna_switch= 2,
794 .request_firmware = philips_tda1004x_request_firmware
795};
Edgar Simo261f5082007-08-20 14:06:00 -0300796
Simon Farnsworthb39423a2007-05-01 10:01:20 -0300797static struct tda1004x_config kworld_dvb_t_210_config = {
798 .demod_address = 0x08,
799 .invert = 1,
800 .invert_oclk = 0,
801 .xtal_freq = TDA10046_XTAL_16M,
802 .agc_config = TDA10046_AGC_TDA827X,
803 .gpio_config = TDA10046_GP11_I,
804 .if_freq = TDA10046_FREQ_045,
805 .i2c_gate = 0x4b,
806 .tuner_address = 0x61,
Simon Farnsworthb39423a2007-05-01 10:01:20 -0300807 .antenna_switch= 1,
808 .request_firmware = philips_tda1004x_request_firmware
809};
Edgar Simo261f5082007-08-20 14:06:00 -0300810
Edgar Simod90d9f52007-08-20 14:14:50 -0300811static struct tda1004x_config avermedia_super_007_config = {
812 .demod_address = 0x08,
813 .invert = 1,
814 .invert_oclk = 0,
815 .xtal_freq = TDA10046_XTAL_16M,
816 .agc_config = TDA10046_AGC_TDA827X,
817 .gpio_config = TDA10046_GP01_I,
818 .if_freq = TDA10046_FREQ_045,
819 .i2c_gate = 0x4b,
820 .tuner_address = 0x60,
Edgar Simod90d9f52007-08-20 14:14:50 -0300821 .antenna_switch= 1,
822 .request_firmware = philips_tda1004x_request_firmware
823};
824
Hermann Pitton4ba24372008-01-20 19:27:51 -0300825static struct tda1004x_config twinhan_dtv_dvb_3056_config = {
826 .demod_address = 0x08,
827 .invert = 1,
828 .invert_oclk = 0,
829 .xtal_freq = TDA10046_XTAL_16M,
830 .agc_config = TDA10046_AGC_TDA827X,
831 .gpio_config = TDA10046_GP01_I,
832 .if_freq = TDA10046_FREQ_045,
833 .i2c_gate = 0x42,
834 .tuner_address = 0x61,
Hermann Pitton4ba24372008-01-20 19:27:51 -0300835 .antenna_switch = 1,
836 .request_firmware = philips_tda1004x_request_firmware
837};
838
hermann pitton301e9d62008-09-14 17:49:14 -0300839static struct tda1004x_config asus_tiger_3in1_config = {
840 .demod_address = 0x0b,
841 .invert = 1,
842 .invert_oclk = 0,
843 .xtal_freq = TDA10046_XTAL_16M,
844 .agc_config = TDA10046_AGC_TDA827X,
845 .gpio_config = TDA10046_GP11_I,
846 .if_freq = TDA10046_FREQ_045,
847 .i2c_gate = 0x4b,
848 .tuner_address = 0x61,
849 .antenna_switch = 1,
850 .request_firmware = philips_tda1004x_request_firmware
851};
852
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300853/* ------------------------------------------------------------------
854 * special case: this card uses saa713x GPIO22 for the mode switch
855 */
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200856
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300857static int ads_duo_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200858{
859 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300860 philips_tda827x_tuner_init(fe);
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200861 /* route TDA8275a AGC input to the channel decoder */
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300862 saa7134_set_gpio(dev, 22, 1);
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200863 return 0;
864}
865
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300866static int ads_duo_tuner_sleep(struct dvb_frontend *fe)
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200867{
868 struct saa7134_dev *dev = fe->dvb->priv;
869 /* route TDA8275a AGC input to the analog IF chip*/
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300870 saa7134_set_gpio(dev, 22, 0);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300871 philips_tda827x_tuner_sleep(fe);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300872 return 0;
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200873}
874
Michael Krufky8ce47da2007-04-27 12:31:14 -0300875static struct tda827x_config ads_duo_cfg = {
Michael Krufky8ce47da2007-04-27 12:31:14 -0300876 .init = ads_duo_tuner_init,
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300877 .sleep = ads_duo_tuner_sleep,
878 .config = 0
Michael Krufky8ce47da2007-04-27 12:31:14 -0300879};
880
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200881static struct tda1004x_config ads_tech_duo_config = {
882 .demod_address = 0x08,
883 .invert = 1,
884 .invert_oclk = 0,
885 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300886 .agc_config = TDA10046_AGC_TDA827X,
887 .gpio_config = TDA10046_GP00_I,
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200888 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300889 .tuner_address = 0x61,
890 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200891};
892
Dmitri Belimov47aeba52008-12-23 03:53:03 -0300893static struct zl10353_config behold_h6_config = {
894 .demod_address = 0x1e>>1,
895 .no_tuner = 1,
896 .parallel_ts = 1,
Antti Palosaari5f77af92009-03-10 13:06:40 -0300897 .disable_i2c_gate_ctrl = 1,
Dmitri Belimov47aeba52008-12-23 03:53:03 -0300898};
899
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -0300900static struct xc5000_config behold_x7_tunerconfig = {
901 .i2c_address = 0xc2>>1,
902 .if_khz = 4560,
Devin Heitmueller2a0d0562009-09-30 23:04:39 -0300903 .radio_input = XC5000_RADIO_FM1,
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -0300904};
905
906static struct zl10353_config behold_x7_config = {
907 .demod_address = 0x1e>>1,
908 .if2 = 45600,
909 .no_tuner = 1,
910 .parallel_ts = 1,
911 .disable_i2c_gate_ctrl = 1,
912};
913
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300914/* ==================================================================
915 * tda10086 based DVB-S cards, helper functions
916 */
Hartmut Hackmann5eda2272006-08-07 14:03:32 -0300917
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -0300918static struct tda10086_config flydvbs = {
919 .demod_address = 0x0e,
920 .invert = 0,
Hartmut Hackmannea75baf2008-02-09 23:54:24 -0300921 .diseqc_tone = 0,
Hartmut Hackmann9a1b04e2008-04-09 23:07:11 -0300922 .xtal_freq = TDA10086_XTAL_16M,
923};
924
925static struct tda10086_config sd1878_4m = {
926 .demod_address = 0x0e,
927 .invert = 0,
928 .diseqc_tone = 0,
929 .xtal_freq = TDA10086_XTAL_4M,
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -0300930};
931
Hartmut Hackmann1b1cee32008-04-22 14:42:12 -0300932/* ------------------------------------------------------------------
933 * special case: lnb supply is connected to the gated i2c
934 */
935
936static int md8800_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
937{
938 int res = -EIO;
939 struct saa7134_dev *dev = fe->dvb->priv;
940 if (fe->ops.i2c_gate_ctrl) {
941 fe->ops.i2c_gate_ctrl(fe, 1);
942 if (dev->original_set_voltage)
943 res = dev->original_set_voltage(fe, voltage);
944 fe->ops.i2c_gate_ctrl(fe, 0);
945 }
946 return res;
947};
948
949static int md8800_set_high_voltage(struct dvb_frontend *fe, long arg)
950{
951 int res = -EIO;
952 struct saa7134_dev *dev = fe->dvb->priv;
953 if (fe->ops.i2c_gate_ctrl) {
954 fe->ops.i2c_gate_ctrl(fe, 1);
955 if (dev->original_set_high_voltage)
956 res = dev->original_set_high_voltage(fe, arg);
957 fe->ops.i2c_gate_ctrl(fe, 0);
958 }
959 return res;
960};
961
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300962static int md8800_set_voltage2(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
963{
964 struct saa7134_dev *dev = fe->dvb->priv;
965 u8 wbuf[2] = { 0x1f, 00 };
966 u8 rbuf;
967 struct i2c_msg msg[] = { { .addr = 0x08, .flags = 0, .buf = wbuf, .len = 1 },
968 { .addr = 0x08, .flags = I2C_M_RD, .buf = &rbuf, .len = 1 } };
969
970 if (i2c_transfer(&dev->i2c_adap, msg, 2) != 2)
971 return -EIO;
972 /* NOTE: this assumes that gpo1 is used, it might be bit 5 (gpo2) */
973 if (voltage == SEC_VOLTAGE_18)
974 wbuf[1] = rbuf | 0x10;
975 else
976 wbuf[1] = rbuf & 0xef;
977 msg[0].len = 2;
978 i2c_transfer(&dev->i2c_adap, msg, 1);
979 return 0;
980}
981
982static int md8800_set_high_voltage2(struct dvb_frontend *fe, long arg)
983{
984 struct saa7134_dev *dev = fe->dvb->priv;
985 wprintk("%s: sorry can't set high LNB supply voltage from here\n", __func__);
986 return -EIO;
987}
988
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300989/* ==================================================================
990 * nxt200x based ATSC cards, helper functions
991 */
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800992
Michael Krufky3b64e8e2005-11-08 21:38:20 -0800993static struct nxt200x_config avertvhda180 = {
994 .demod_address = 0x0a,
Michael Krufky3b64e8e2005-11-08 21:38:20 -0800995};
Andrew Burri3e1410a2006-02-27 00:08:23 -0300996
997static struct nxt200x_config kworldatsc110 = {
998 .demod_address = 0x0a,
Andrew Burri3e1410a2006-02-27 00:08:23 -0300999};
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001000
Matthias Schwarzott04574182009-02-24 12:35:16 -03001001/* ------------------------------------------------------------------ */
1002
1003static struct mt312_config avertv_a700_mt312 = {
1004 .demod_address = 0x0e,
1005 .voltage_inverted = 1,
1006};
1007
1008static struct zl10036_config avertv_a700_tuner = {
1009 .tuner_address = 0x60,
1010};
1011
Igor M. Liplianinecfcfec2009-08-13 21:42:21 -03001012static struct mt312_config zl10313_compro_s350_config = {
1013 .demod_address = 0x0e,
1014};
1015
Michael Krufky3abdedd2009-01-19 01:10:49 -03001016static struct lgdt3305_config hcw_lgdt3305_config = {
1017 .i2c_addr = 0x0e,
1018 .mpeg_mode = LGDT3305_MPEG_SERIAL,
1019 .tpclk_edge = LGDT3305_TPCLK_RISING_EDGE,
1020 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
1021 .deny_i2c_rptr = 1,
1022 .spectral_inversion = 1,
1023 .qam_if_khz = 4000,
1024 .vsb_if_khz = 3250,
1025};
1026
Michael Krufky1bc7f512009-01-19 01:10:49 -03001027static struct tda10048_config hcw_tda10048_config = {
1028 .demod_address = 0x10 >> 1,
1029 .output_mode = TDA10048_SERIAL_OUTPUT,
1030 .fwbulkwritelen = TDA10048_BULKWRITE_200,
1031 .inversion = TDA10048_INVERSION_ON,
1032 .dtv6_if_freq_khz = TDA10048_IF_3300,
1033 .dtv7_if_freq_khz = TDA10048_IF_3500,
1034 .dtv8_if_freq_khz = TDA10048_IF_4000,
1035 .clk_freq_khz = TDA10048_CLK_16000,
1036 .disable_gate_access = 1,
1037};
1038
Michael Krufky3abdedd2009-01-19 01:10:49 -03001039static struct tda18271_std_map hauppauge_tda18271_std_map = {
1040 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 4,
1041 .if_lvl = 1, .rfagc_top = 0x58, },
1042 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 5,
1043 .if_lvl = 1, .rfagc_top = 0x58, },
1044};
1045
1046static struct tda18271_config hcw_tda18271_config = {
1047 .std_map = &hauppauge_tda18271_std_map,
1048 .gate = TDA18271_GATE_ANALOG,
1049 .config = 3,
Michael Krufky542cb052009-08-29 17:45:48 -03001050 .output_opt = TDA18271_OUTPUT_LT_OFF,
Michael Krufky3abdedd2009-01-19 01:10:49 -03001051};
1052
1053static struct tda829x_config tda829x_no_probe = {
1054 .probe_tuner = TDA829X_DONT_PROBE,
1055};
1056
Henk Vergonet6c119ff2009-09-18 20:44:37 -03001057static struct tda10048_config zolid_tda10048_config = {
1058 .demod_address = 0x10 >> 1,
1059 .output_mode = TDA10048_PARALLEL_OUTPUT,
1060 .fwbulkwritelen = TDA10048_BULKWRITE_200,
1061 .inversion = TDA10048_INVERSION_ON,
1062 .dtv6_if_freq_khz = TDA10048_IF_3300,
1063 .dtv7_if_freq_khz = TDA10048_IF_3500,
1064 .dtv8_if_freq_khz = TDA10048_IF_4000,
1065 .clk_freq_khz = TDA10048_CLK_16000,
1066 .disable_gate_access = 1,
1067};
1068
1069static struct tda18271_config zolid_tda18271_config = {
1070 .gate = TDA18271_GATE_ANALOG,
1071};
1072
Michael Krufky184e7692009-06-05 04:28:28 -03001073static struct tda10048_config dtv1000s_tda10048_config = {
1074 .demod_address = 0x10 >> 1,
1075 .output_mode = TDA10048_PARALLEL_OUTPUT,
1076 .fwbulkwritelen = TDA10048_BULKWRITE_200,
1077 .inversion = TDA10048_INVERSION_ON,
1078 .dtv6_if_freq_khz = TDA10048_IF_3300,
1079 .dtv7_if_freq_khz = TDA10048_IF_3800,
1080 .dtv8_if_freq_khz = TDA10048_IF_4300,
1081 .clk_freq_khz = TDA10048_CLK_16000,
1082 .disable_gate_access = 1,
1083};
1084
1085static struct tda18271_std_map dtv1000s_tda18271_std_map = {
1086 .dvbt_6 = { .if_freq = 3300, .agc_mode = 3, .std = 4,
1087 .if_lvl = 1, .rfagc_top = 0x37, },
1088 .dvbt_7 = { .if_freq = 3800, .agc_mode = 3, .std = 5,
1089 .if_lvl = 1, .rfagc_top = 0x37, },
1090 .dvbt_8 = { .if_freq = 4300, .agc_mode = 3, .std = 6,
1091 .if_lvl = 1, .rfagc_top = 0x37, },
1092};
1093
1094static struct tda18271_config dtv1000s_tda18271_config = {
1095 .std_map = &dtv1000s_tda18271_std_map,
1096 .gate = TDA18271_GATE_ANALOG,
1097};
1098
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001099/* ==================================================================
1100 * Core code
1101 */
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103static int dvb_init(struct saa7134_dev *dev)
1104{
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001105 int ret;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001106 int attach_xc3028 = 0;
Steven Toth363c35f2008-10-11 11:05:50 -03001107 struct videobuf_dvb_frontend *fe0;
1108
Darron Broadf972e0bd2008-10-11 11:24:30 -03001109 /* FIXME: add support for multi-frontend */
1110 mutex_init(&dev->frontends.lock);
Darron Broad7bdf84f2008-10-15 13:43:41 -03001111 INIT_LIST_HEAD(&dev->frontends.felist);
Darron Broadf972e0bd2008-10-11 11:24:30 -03001112
1113 printk(KERN_INFO "%s() allocating 1 frontend\n", __func__);
Darron Broadf3f741e2008-11-11 08:50:02 -03001114 fe0 = videobuf_dvb_alloc_frontend(&dev->frontends, 1);
1115 if (!fe0) {
Darron Broadf972e0bd2008-10-11 11:24:30 -03001116 printk(KERN_ERR "%s() failed to alloc\n", __func__);
1117 return -ENOMEM;
1118 }
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* init struct videobuf_dvb */
1121 dev->ts.nr_bufs = 32;
1122 dev->ts.nr_packets = 32*4;
Steven Toth363c35f2008-10-11 11:05:50 -03001123 fe0->dvb.name = dev->name;
1124 videobuf_queue_sg_init(&fe0->dvb.dvbq, &saa7134_ts_qops,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03001125 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1127 V4L2_FIELD_ALTERNATE,
1128 sizeof(struct saa7134_buf),
Hans Verkuil08bff032010-09-20 17:39:46 -03001129 dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 switch (dev->board) {
1132 case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001133 dprintk("pinnacle 300i dvb setup\n");
Steven Toth363c35f2008-10-11 11:05:50 -03001134 fe0->dvb.frontend = dvb_attach(mt352_attach, &pinnacle_300i,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001135 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001136 if (fe0->dvb.frontend) {
1137 fe0->dvb.frontend->ops.tuner_ops.set_params = mt352_pinnacle_tuner_set_params;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -02001140 case SAA7134_BOARD_AVERMEDIA_777:
Petr Baudis515c2082006-09-26 16:53:53 -03001141 case SAA7134_BOARD_AVERMEDIA_A16AR:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001142 dprintk("avertv 777 dvb setup\n");
Steven Toth363c35f2008-10-11 11:05:50 -03001143 fe0->dvb.frontend = dvb_attach(mt352_attach, &avermedia_777,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001144 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001145 if (fe0->dvb.frontend) {
1146 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufkyfb147e92008-04-22 14:46:16 -03001147 &dev->i2c_adap, 0x61,
1148 TUNER_PHILIPS_TD1316);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001149 }
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -02001150 break;
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001151 case SAA7134_BOARD_AVERMEDIA_A16D:
Tim Farrington6e501a32008-06-15 13:33:42 -03001152 dprintk("AverMedia A16D dvb setup\n");
Steven Toth363c35f2008-10-11 11:05:50 -03001153 fe0->dvb.frontend = dvb_attach(mt352_attach,
Tim Farrington6e501a32008-06-15 13:33:42 -03001154 &avermedia_xc3028_mt352_dev,
1155 &dev->i2c_adap);
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001156 attach_xc3028 = 1;
1157 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 case SAA7134_BOARD_MD7134:
Steven Toth363c35f2008-10-11 11:05:50 -03001159 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001160 &medion_cardbus,
1161 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001162 if (fe0->dvb.frontend) {
1163 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufkycb89cd32008-04-22 14:46:16 -03001164 &dev->i2c_adap, medion_cardbus.tuner_address,
1165 TUNER_PHILIPS_FMD1216ME_MK3);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 break;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001168 case SAA7134_BOARD_PHILIPS_TOUGH:
Steven Toth363c35f2008-10-11 11:05:50 -03001169 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001170 &philips_tu1216_60_config,
1171 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001172 if (fe0->dvb.frontend) {
1173 fe0->dvb.frontend->ops.tuner_ops.init = philips_tu1216_init;
1174 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_tda6651_pll_set;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001175 }
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001176 break;
1177 case SAA7134_BOARD_FLYDVBTDUO:
Peter Missel10b7a902006-01-23 17:11:06 -02001178 case SAA7134_BOARD_FLYDVBT_DUO_CARDBUS:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001179 if (configure_tda827x_fe(dev, &tda827x_lifeview_config,
1180 &tda827x_cfg_0) < 0)
1181 goto dettach_frontend;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001182 break;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001183 case SAA7134_BOARD_PHILIPS_EUROPA:
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001184 case SAA7134_BOARD_VIDEOMATE_DVBT_300:
Danny Woode3c6e1a2009-09-20 12:14:21 -03001185 case SAA7134_BOARD_ASUS_EUROPA_HYBRID:
Steven Toth363c35f2008-10-11 11:05:50 -03001186 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001187 &philips_europa_config,
1188 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001189 if (fe0->dvb.frontend) {
1190 dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
1191 fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
1192 fe0->dvb.frontend->ops.tuner_ops.init = philips_europa_tuner_init;
1193 fe0->dvb.frontend->ops.tuner_ops.sleep = philips_europa_tuner_sleep;
1194 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001195 }
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001196 break;
Vadim Catana128fe952010-05-29 12:49:16 -03001197 case SAA7134_BOARD_TECHNOTREND_BUDGET_T3000:
1198 fe0->dvb.frontend = dvb_attach(tda10046_attach,
1199 &technotrend_budget_t3000_config,
1200 &dev->i2c_adap);
1201 if (fe0->dvb.frontend) {
1202 dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
1203 fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
1204 fe0->dvb.frontend->ops.tuner_ops.init = philips_europa_tuner_init;
1205 fe0->dvb.frontend->ops.tuner_ops.sleep = philips_europa_tuner_sleep;
1206 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
1207 }
1208 break;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001209 case SAA7134_BOARD_VIDEOMATE_DVBT_200:
Steven Toth363c35f2008-10-11 11:05:50 -03001210 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001211 &philips_tu1216_61_config,
1212 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001213 if (fe0->dvb.frontend) {
1214 fe0->dvb.frontend->ops.tuner_ops.init = philips_tu1216_init;
1215 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_tda6651_pll_set;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001216 }
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001217 break;
Simon Farnsworthb39423a2007-05-01 10:01:20 -03001218 case SAA7134_BOARD_KWORLD_DVBT_210:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001219 if (configure_tda827x_fe(dev, &kworld_dvb_t_210_config,
1220 &tda827x_cfg_2) < 0)
1221 goto dettach_frontend;
Simon Farnsworthb39423a2007-05-01 10:01:20 -03001222 break;
Michael Krufky0e316ec2009-08-03 16:51:33 -03001223 case SAA7134_BOARD_HAUPPAUGE_HVR1120:
Michael Krufky1bc7f512009-01-19 01:10:49 -03001224 fe0->dvb.frontend = dvb_attach(tda10048_attach,
1225 &hcw_tda10048_config,
1226 &dev->i2c_adap);
1227 if (fe0->dvb.frontend != NULL) {
1228 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1229 &dev->i2c_adap, 0x4b,
1230 &tda829x_no_probe);
1231 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1232 0x60, &dev->i2c_adap,
1233 &hcw_tda18271_config);
1234 }
1235 break;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001236 case SAA7134_BOARD_PHILIPS_TIGER:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001237 if (configure_tda827x_fe(dev, &philips_tiger_config,
1238 &tda827x_cfg_0) < 0)
1239 goto dettach_frontend;
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -03001240 break;
1241 case SAA7134_BOARD_PINNACLE_PCTV_310i:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001242 if (configure_tda827x_fe(dev, &pinnacle_pctv_310i_config,
1243 &tda827x_cfg_1) < 0)
1244 goto dettach_frontend;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001245 break;
Thomas Gentyc6e53da2006-11-05 14:17:30 -03001246 case SAA7134_BOARD_HAUPPAUGE_HVR1110:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001247 if (configure_tda827x_fe(dev, &hauppauge_hvr_1110_config,
1248 &tda827x_cfg_1) < 0)
1249 goto dettach_frontend;
Thomas Gentyc6e53da2006-11-05 14:17:30 -03001250 break;
Michael Krufkyb5f05062009-08-03 16:51:33 -03001251 case SAA7134_BOARD_HAUPPAUGE_HVR1150:
Michael Krufky3abdedd2009-01-19 01:10:49 -03001252 fe0->dvb.frontend = dvb_attach(lgdt3305_attach,
1253 &hcw_lgdt3305_config,
1254 &dev->i2c_adap);
1255 if (fe0->dvb.frontend) {
1256 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1257 &dev->i2c_adap, 0x4b,
1258 &tda829x_no_probe);
1259 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1260 0x60, &dev->i2c_adap,
1261 &hcw_tda18271_config);
1262 }
1263 break;
Hartmut Hackmannd4b0aba2005-11-08 21:38:44 -08001264 case SAA7134_BOARD_ASUSTeK_P7131_DUAL:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001265 if (configure_tda827x_fe(dev, &asus_p7131_dual_config,
1266 &tda827x_cfg_0) < 0)
1267 goto dettach_frontend;
Hartmut Hackmannd4b0aba2005-11-08 21:38:44 -08001268 break;
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -02001269 case SAA7134_BOARD_FLYDVBT_LR301:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001270 if (configure_tda827x_fe(dev, &tda827x_lifeview_config,
1271 &tda827x_cfg_0) < 0)
1272 goto dettach_frontend;
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -02001273 break;
Darron Broad92abe9e2008-10-11 11:18:53 -03001274 case SAA7134_BOARD_FLYDVB_TRIO:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001275 if (!use_frontend) { /* terrestrial */
1276 if (configure_tda827x_fe(dev, &lifeview_trio_config,
1277 &tda827x_cfg_0) < 0)
1278 goto dettach_frontend;
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -03001279 } else { /* satellite */
Steven Toth363c35f2008-10-11 11:05:50 -03001280 fe0->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs, &dev->i2c_adap);
1281 if (fe0->dvb.frontend) {
1282 if (dvb_attach(tda826x_attach, fe0->dvb.frontend, 0x63,
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001283 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001284 wprintk("%s: Lifeview Trio, No tda826x found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001285 goto dettach_frontend;
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001286 }
Steven Toth363c35f2008-10-11 11:05:50 -03001287 if (dvb_attach(isl6421_attach, fe0->dvb.frontend, &dev->i2c_adap,
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001288 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001289 wprintk("%s: Lifeview Trio, No ISL6421 found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001290 goto dettach_frontend;
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001291 }
1292 }
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001293 }
Nico Sabbi420f32f2006-03-03 12:11:28 -03001294 break;
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -02001295 case SAA7134_BOARD_ADS_DUO_CARDBUS_PTV331:
Hartmut Hackmannd95b8942006-03-27 19:39:30 -03001296 case SAA7134_BOARD_FLYDVBT_HYBRID_CARDBUS:
Steven Toth363c35f2008-10-11 11:05:50 -03001297 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001298 &ads_tech_duo_config,
1299 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001300 if (fe0->dvb.frontend) {
1301 if (dvb_attach(tda827x_attach,fe0->dvb.frontend,
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -03001302 ads_tech_duo_config.tuner_address, &dev->i2c_adap,
1303 &ads_duo_cfg) == NULL) {
Trent Piephocf3c34c2007-03-07 18:19:48 -03001304 wprintk("no tda827x tuner found at addr: %02x\n",
Hartmut Hackmannede22002007-04-27 12:31:32 -03001305 ads_tech_duo_config.tuner_address);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001306 goto dettach_frontend;
Hartmut Hackmannede22002007-04-27 12:31:32 -03001307 }
Mauro Carvalho Chehabbc36ec72008-06-14 10:44:04 -03001308 } else
1309 wprintk("failed to attach tda10046\n");
Hartmut Hackmannd95b8942006-03-27 19:39:30 -03001310 break;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001311 case SAA7134_BOARD_TEVION_DVBT_220RF:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001312 if (configure_tda827x_fe(dev, &tevion_dvbt220rf_config,
1313 &tda827x_cfg_0) < 0)
1314 goto dettach_frontend;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001315 break;
Hartmut Hackmann5eda2272006-08-07 14:03:32 -03001316 case SAA7134_BOARD_MEDION_MD8800_QUADRO:
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001317 if (!use_frontend) { /* terrestrial */
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001318 if (configure_tda827x_fe(dev, &md8800_dvbt_config,
1319 &tda827x_cfg_0) < 0)
1320 goto dettach_frontend;
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001321 } else { /* satellite */
Steven Toth363c35f2008-10-11 11:05:50 -03001322 fe0->dvb.frontend = dvb_attach(tda10086_attach,
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001323 &flydvbs, &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001324 if (fe0->dvb.frontend) {
1325 struct dvb_frontend *fe = fe0->dvb.frontend;
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001326 u8 dev_id = dev->eedata[2];
1327 u8 data = 0xc4;
1328 struct i2c_msg msg = {.addr = 0x08, .flags = 0, .len = 1};
1329
Steven Toth363c35f2008-10-11 11:05:50 -03001330 if (dvb_attach(tda826x_attach, fe0->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001331 0x60, &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001332 wprintk("%s: Medion Quadro, no tda826x "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001333 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001334 goto dettach_frontend;
1335 }
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001336 if (dev_id != 0x08) {
1337 /* we need to open the i2c gate (we know it exists) */
1338 fe->ops.i2c_gate_ctrl(fe, 1);
1339 if (dvb_attach(isl6405_attach, fe,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001340 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001341 wprintk("%s: Medion Quadro, no ISL6405 "
1342 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001343 goto dettach_frontend;
1344 }
Hartmut Hackmanne9c1ac92008-04-22 14:46:10 -03001345 if (dev_id == 0x07) {
1346 /* fire up the 2nd section of the LNB supply since
1347 we can't do this from the other section */
1348 msg.buf = &data;
1349 i2c_transfer(&dev->i2c_adap, &msg, 1);
1350 }
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001351 fe->ops.i2c_gate_ctrl(fe, 0);
1352 dev->original_set_voltage = fe->ops.set_voltage;
1353 fe->ops.set_voltage = md8800_set_voltage;
1354 dev->original_set_high_voltage = fe->ops.enable_high_lnb_voltage;
1355 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage;
1356 } else {
1357 fe->ops.set_voltage = md8800_set_voltage2;
1358 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage2;
1359 }
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001360 }
1361 }
Hartmut Hackmann5eda2272006-08-07 14:03:32 -03001362 break;
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001363 case SAA7134_BOARD_AVERMEDIA_AVERTVHD_A180:
Steven Toth363c35f2008-10-11 11:05:50 -03001364 fe0->dvb.frontend = dvb_attach(nxt200x_attach, &avertvhda180,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001365 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001366 if (fe0->dvb.frontend)
1367 dvb_attach(dvb_pll_attach, fe0->dvb.frontend, 0x61,
Michael Krufky47a99912007-06-12 16:10:51 -03001368 NULL, DVB_PLL_TDHU2);
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001369 break;
Adam Gloverf689d902008-05-06 03:20:27 -03001370 case SAA7134_BOARD_ADS_INSTANT_HDTV_PCI:
Andrew Burri3e1410a2006-02-27 00:08:23 -03001371 case SAA7134_BOARD_KWORLD_ATSC110:
Steven Toth363c35f2008-10-11 11:05:50 -03001372 fe0->dvb.frontend = dvb_attach(nxt200x_attach, &kworldatsc110,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001373 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001374 if (fe0->dvb.frontend)
1375 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufky62ff817a2008-04-22 14:46:17 -03001376 &dev->i2c_adap, 0x61,
1377 TUNER_PHILIPS_TUV1236D);
Andrew Burri3e1410a2006-02-27 00:08:23 -03001378 break;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001379 case SAA7134_BOARD_FLYDVBS_LR300:
Steven Toth363c35f2008-10-11 11:05:50 -03001380 fe0->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001381 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001382 if (fe0->dvb.frontend) {
1383 if (dvb_attach(tda826x_attach, fe0->dvb.frontend, 0x60,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001384 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001385 wprintk("%s: No tda826x found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001386 goto dettach_frontend;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001387 }
Steven Toth363c35f2008-10-11 11:05:50 -03001388 if (dvb_attach(isl6421_attach, fe0->dvb.frontend,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001389 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001390 wprintk("%s: No ISL6421 found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001391 goto dettach_frontend;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001392 }
1393 }
1394 break;
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001395 case SAA7134_BOARD_ASUS_EUROPA2_HYBRID:
Steven Toth363c35f2008-10-11 11:05:50 -03001396 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Matthias Schwarzott0e8f4cc2008-01-28 12:01:11 -03001397 &medion_cardbus,
1398 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001399 if (fe0->dvb.frontend) {
1400 dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
1401 fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
Trent Piephob7754d72007-05-08 18:05:16 -03001402
Steven Toth363c35f2008-10-11 11:05:50 -03001403 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufkycb89cd32008-04-22 14:46:16 -03001404 &dev->i2c_adap, medion_cardbus.tuner_address,
1405 TUNER_PHILIPS_FMD1216ME_MK3);
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001406 }
1407 break;
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001408 case SAA7134_BOARD_VIDEOMATE_DVBT_200A:
Steven Toth363c35f2008-10-11 11:05:50 -03001409 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001410 &philips_europa_config,
1411 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001412 if (fe0->dvb.frontend) {
1413 fe0->dvb.frontend->ops.tuner_ops.init = philips_td1316_tuner_init;
1414 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001415 }
1416 break;
Hartmut Hackmann550a9a52006-11-15 21:31:54 -03001417 case SAA7134_BOARD_CINERGY_HT_PCMCIA:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001418 if (configure_tda827x_fe(dev, &cinergy_ht_config,
1419 &tda827x_cfg_0) < 0)
1420 goto dettach_frontend;
Hartmut Hackmann550a9a52006-11-15 21:31:54 -03001421 break;
Michael Krufky9de271e2007-01-16 18:36:40 -03001422 case SAA7134_BOARD_CINERGY_HT_PCI:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001423 if (configure_tda827x_fe(dev, &cinergy_ht_pci_config,
1424 &tda827x_cfg_0) < 0)
1425 goto dettach_frontend;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001426 break;
1427 case SAA7134_BOARD_PHILIPS_TIGER_S:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001428 if (configure_tda827x_fe(dev, &philips_tiger_s_config,
1429 &tda827x_cfg_2) < 0)
1430 goto dettach_frontend;
Michael Krufky9de271e2007-01-16 18:36:40 -03001431 break;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001432 case SAA7134_BOARD_ASUS_P7131_4871:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001433 if (configure_tda827x_fe(dev, &asus_p7131_4871_config,
1434 &tda827x_cfg_2) < 0)
1435 goto dettach_frontend;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001436 break;
Hartmut Hackmannf3eec0c02007-03-14 20:33:55 -03001437 case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001438 if (configure_tda827x_fe(dev, &asus_p7131_hybrid_lna_config,
1439 &tda827x_cfg_2) < 0)
1440 goto dettach_frontend;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001441 break;
Edgar Simod90d9f52007-08-20 14:14:50 -03001442 case SAA7134_BOARD_AVERMEDIA_SUPER_007:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001443 if (configure_tda827x_fe(dev, &avermedia_super_007_config,
1444 &tda827x_cfg_0) < 0)
1445 goto dettach_frontend;
Edgar Simod90d9f52007-08-20 14:14:50 -03001446 break;
Hermann Pitton4ba24372008-01-20 19:27:51 -03001447 case SAA7134_BOARD_TWINHAN_DTV_DVB_3056:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001448 if (configure_tda827x_fe(dev, &twinhan_dtv_dvb_3056_config,
1449 &tda827x_cfg_2_sw42) < 0)
1450 goto dettach_frontend;
Hermann Pitton4ba24372008-01-20 19:27:51 -03001451 break;
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001452 case SAA7134_BOARD_PHILIPS_SNAKE:
Steven Toth363c35f2008-10-11 11:05:50 -03001453 fe0->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs,
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001454 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001455 if (fe0->dvb.frontend) {
1456 if (dvb_attach(tda826x_attach, fe0->dvb.frontend, 0x60,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001457 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001458 wprintk("%s: No tda826x found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001459 goto dettach_frontend;
1460 }
Steven Toth363c35f2008-10-11 11:05:50 -03001461 if (dvb_attach(lnbp21_attach, fe0->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001462 &dev->i2c_adap, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001463 wprintk("%s: No lnbp21 found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001464 goto dettach_frontend;
1465 }
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001466 }
1467 break;
Hermann Pitton7b5b3f12008-04-22 14:42:12 -03001468 case SAA7134_BOARD_CREATIX_CTX953:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001469 if (configure_tda827x_fe(dev, &md8800_dvbt_config,
1470 &tda827x_cfg_0) < 0)
1471 goto dettach_frontend;
Hermann Pitton7b5b3f12008-04-22 14:42:12 -03001472 break;
Russell Kliese6a6179b62008-04-22 14:42:12 -03001473 case SAA7134_BOARD_MSI_TVANYWHERE_AD11:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001474 if (configure_tda827x_fe(dev, &philips_tiger_s_config,
1475 &tda827x_cfg_2) < 0)
1476 goto dettach_frontend;
Russell Kliese6a6179b62008-04-22 14:42:12 -03001477 break;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001478 case SAA7134_BOARD_AVERMEDIA_CARDBUS_506:
Tim Farrington6e501a32008-06-15 13:33:42 -03001479 dprintk("AverMedia E506R dvb setup\n");
1480 saa7134_set_gpio(dev, 25, 0);
1481 msleep(10);
1482 saa7134_set_gpio(dev, 25, 1);
Steven Toth363c35f2008-10-11 11:05:50 -03001483 fe0->dvb.frontend = dvb_attach(mt352_attach,
Tim Farrington6e501a32008-06-15 13:33:42 -03001484 &avermedia_xc3028_mt352_dev,
1485 &dev->i2c_adap);
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001486 attach_xc3028 = 1;
Massimo Piccionie2fc00c2008-07-11 13:48:02 -03001487 break;
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001488 case SAA7134_BOARD_MD7134_BRIDGE_2:
Steven Toth363c35f2008-10-11 11:05:50 -03001489 fe0->dvb.frontend = dvb_attach(tda10086_attach,
Hartmut Hackmann9a1b04e2008-04-09 23:07:11 -03001490 &sd1878_4m, &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001491 if (fe0->dvb.frontend) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001492 struct dvb_frontend *fe;
Steven Toth363c35f2008-10-11 11:05:50 -03001493 if (dvb_attach(dvb_pll_attach, fe0->dvb.frontend, 0x60,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001494 &dev->i2c_adap, DVB_PLL_PHILIPS_SD1878_TDA8261) == NULL) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001495 wprintk("%s: MD7134 DVB-S, no SD1878 "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001496 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001497 goto dettach_frontend;
1498 }
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001499 /* we need to open the i2c gate (we know it exists) */
Steven Toth363c35f2008-10-11 11:05:50 -03001500 fe = fe0->dvb.frontend;
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001501 fe->ops.i2c_gate_ctrl(fe, 1);
1502 if (dvb_attach(isl6405_attach, fe,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001503 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001504 wprintk("%s: MD7134 DVB-S, no ISL6405 "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001505 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001506 goto dettach_frontend;
1507 }
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001508 fe->ops.i2c_gate_ctrl(fe, 0);
1509 dev->original_set_voltage = fe->ops.set_voltage;
1510 fe->ops.set_voltage = md8800_set_voltage;
1511 dev->original_set_high_voltage = fe->ops.enable_high_lnb_voltage;
1512 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage;
1513 }
1514 break;
Massimo Piccionie2fc00c2008-07-11 13:48:02 -03001515 case SAA7134_BOARD_AVERMEDIA_M103:
1516 saa7134_set_gpio(dev, 25, 0);
1517 msleep(10);
1518 saa7134_set_gpio(dev, 25, 1);
Steven Toth363c35f2008-10-11 11:05:50 -03001519 fe0->dvb.frontend = dvb_attach(mt352_attach,
Massimo Piccionie2fc00c2008-07-11 13:48:02 -03001520 &avermedia_xc3028_mt352_dev,
1521 &dev->i2c_adap);
1522 attach_xc3028 = 1;
1523 break;
hermann pitton301e9d62008-09-14 17:49:14 -03001524 case SAA7134_BOARD_ASUSTeK_TIGER_3IN1:
1525 if (!use_frontend) { /* terrestrial */
1526 if (configure_tda827x_fe(dev, &asus_tiger_3in1_config,
1527 &tda827x_cfg_2) < 0)
1528 goto dettach_frontend;
1529 } else { /* satellite */
Steven Toth363c35f2008-10-11 11:05:50 -03001530 fe0->dvb.frontend = dvb_attach(tda10086_attach,
hermann pitton301e9d62008-09-14 17:49:14 -03001531 &flydvbs, &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001532 if (fe0->dvb.frontend) {
hermann pitton301e9d62008-09-14 17:49:14 -03001533 if (dvb_attach(tda826x_attach,
Steven Toth363c35f2008-10-11 11:05:50 -03001534 fe0->dvb.frontend, 0x60,
hermann pitton301e9d62008-09-14 17:49:14 -03001535 &dev->i2c_adap, 0) == NULL) {
1536 wprintk("%s: Asus Tiger 3in1, no "
1537 "tda826x found!\n", __func__);
1538 goto dettach_frontend;
1539 }
Steven Toth363c35f2008-10-11 11:05:50 -03001540 if (dvb_attach(lnbp21_attach, fe0->dvb.frontend,
hermann pitton301e9d62008-09-14 17:49:14 -03001541 &dev->i2c_adap, 0, 0) == NULL) {
1542 wprintk("%s: Asus Tiger 3in1, no lnbp21"
1543 " found!\n", __func__);
1544 goto dettach_frontend;
1545 }
1546 }
1547 }
1548 break;
Hermann Pitton028165a2008-10-04 21:37:36 -03001549 case SAA7134_BOARD_ASUSTeK_TIGER:
1550 if (configure_tda827x_fe(dev, &philips_tiger_config,
1551 &tda827x_cfg_0) < 0)
1552 goto dettach_frontend;
1553 break;
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001554 case SAA7134_BOARD_BEHOLD_H6:
Mauro Carvalho Chehabb0c4be82008-12-30 19:10:09 -03001555 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001556 &behold_h6_config,
1557 &dev->i2c_adap);
Mauro Carvalho Chehabb0c4be82008-12-30 19:10:09 -03001558 if (fe0->dvb.frontend) {
1559 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001560 &dev->i2c_adap, 0x61,
Beholder Intl. Ltd. Dmitry Belimov4786dd62009-08-04 20:07:42 -03001561 TUNER_PHILIPS_FMD1216MEX_MK3);
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001562 }
1563 break;
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -03001564 case SAA7134_BOARD_BEHOLD_X7:
1565 fe0->dvb.frontend = dvb_attach(zl10353_attach,
1566 &behold_x7_config,
1567 &dev->i2c_adap);
1568 if (fe0->dvb.frontend) {
1569 dvb_attach(xc5000_attach, fe0->dvb.frontend,
1570 &dev->i2c_adap, &behold_x7_tunerconfig);
1571 }
1572 break;
Dmitri Belimov0faa2ed2010-04-06 01:00:05 -03001573 case SAA7134_BOARD_BEHOLD_H7:
1574 fe0->dvb.frontend = dvb_attach(zl10353_attach,
1575 &behold_x7_config,
1576 &dev->i2c_adap);
1577 if (fe0->dvb.frontend) {
1578 dvb_attach(xc5000_attach, fe0->dvb.frontend,
1579 &dev->i2c_adap, &behold_x7_tunerconfig);
1580 }
1581 break;
Matthias Schwarzott04574182009-02-24 12:35:16 -03001582 case SAA7134_BOARD_AVERMEDIA_A700_PRO:
1583 case SAA7134_BOARD_AVERMEDIA_A700_HYBRID:
1584 /* Zarlink ZL10313 */
1585 fe0->dvb.frontend = dvb_attach(mt312_attach,
1586 &avertv_a700_mt312, &dev->i2c_adap);
1587 if (fe0->dvb.frontend) {
1588 if (dvb_attach(zl10036_attach, fe0->dvb.frontend,
1589 &avertv_a700_tuner, &dev->i2c_adap) == NULL) {
1590 wprintk("%s: No zl10036 found!\n",
1591 __func__);
1592 }
1593 }
1594 break;
Igor M. Liplianinecfcfec2009-08-13 21:42:21 -03001595 case SAA7134_BOARD_VIDEOMATE_S350:
1596 fe0->dvb.frontend = dvb_attach(mt312_attach,
1597 &zl10313_compro_s350_config, &dev->i2c_adap);
1598 if (fe0->dvb.frontend)
1599 if (dvb_attach(zl10039_attach, fe0->dvb.frontend,
1600 0x60, &dev->i2c_adap) == NULL)
1601 wprintk("%s: No zl10039 found!\n",
1602 __func__);
1603
1604 break;
Henk Vergonet6c119ff2009-09-18 20:44:37 -03001605 case SAA7134_BOARD_ZOLID_HYBRID_PCI:
1606 fe0->dvb.frontend = dvb_attach(tda10048_attach,
1607 &zolid_tda10048_config,
1608 &dev->i2c_adap);
1609 if (fe0->dvb.frontend != NULL) {
1610 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1611 &dev->i2c_adap, 0x4b,
1612 &tda829x_no_probe);
1613 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1614 0x60, &dev->i2c_adap,
1615 &zolid_tda18271_config);
1616 }
1617 break;
Michael Krufky184e7692009-06-05 04:28:28 -03001618 case SAA7134_BOARD_LEADTEK_WINFAST_DTV1000S:
1619 fe0->dvb.frontend = dvb_attach(tda10048_attach,
1620 &dtv1000s_tda10048_config,
1621 &dev->i2c_adap);
1622 if (fe0->dvb.frontend != NULL) {
1623 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1624 &dev->i2c_adap, 0x4b,
1625 &tda829x_no_probe);
1626 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1627 0x60, &dev->i2c_adap,
1628 &dtv1000s_tda18271_config);
1629 }
1630 break;
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001631 case SAA7134_BOARD_KWORLD_PCI_SBTVD_FULLSEG:
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001632 saa_writel(SAA7134_GPIO_GPMODE0 >> 2, 0x14000);
1633 saa_writel(SAA7134_GPIO_GPSTATUS0 >> 2, 0x14000);
1634 msleep(20);
1635 saa_writel(SAA7134_GPIO_GPMODE0 >> 2, 0x54000);
1636 saa_writel(SAA7134_GPIO_GPSTATUS0 >> 2, 0x54000);
1637 msleep(20);
1638 fe0->dvb.frontend = dvb_attach(mb86a20s_attach,
1639 &kworld_mb86a20s_config,
1640 &dev->i2c_adap);
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001641 if (fe0->dvb.frontend != NULL) {
1642 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1643 0x60, &dev->i2c_adap,
1644 &kworld_tda18271_config);
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001645 }
1646 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 default:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001648 wprintk("Huh? unknown DVB card?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 break;
1650 }
1651
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001652 if (attach_xc3028) {
1653 struct dvb_frontend *fe;
1654 struct xc2028_config cfg = {
1655 .i2c_adap = &dev->i2c_adap,
1656 .i2c_addr = 0x61,
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001657 };
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001658
Steven Toth363c35f2008-10-11 11:05:50 -03001659 if (!fe0->dvb.frontend)
Darron Broadf3f741e2008-11-11 08:50:02 -03001660 goto dettach_frontend;
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001661
Steven Toth363c35f2008-10-11 11:05:50 -03001662 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend, &cfg);
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001663 if (!fe) {
1664 printk(KERN_ERR "%s/2: xc3028 attach failed\n",
1665 dev->name);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001666 goto dettach_frontend;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001667 }
1668 }
1669
Steven Toth363c35f2008-10-11 11:05:50 -03001670 if (NULL == fe0->dvb.frontend) {
Trent Piephocf3c34c2007-03-07 18:19:48 -03001671 printk(KERN_ERR "%s/dvb: frontend initialization failed\n", dev->name);
Darron Broadf3f741e2008-11-11 08:50:02 -03001672 goto dettach_frontend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001674 /* define general-purpose callback pointer */
Steven Toth363c35f2008-10-11 11:05:50 -03001675 fe0->dvb.frontend->callback = saa7134_tuner_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 /* register everything else */
Steven Toth363c35f2008-10-11 11:05:50 -03001678 ret = videobuf_dvb_register_bus(&dev->frontends, THIS_MODULE, dev,
Michael Krufky9133aee2009-05-23 18:00:59 -03001679 &dev->pci->dev, adapter_nr, 0, NULL);
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001680
1681 /* this sequence is necessary to make the tda1004x load its firmware
1682 * and to enter analog mode of hybrid boards
1683 */
1684 if (!ret) {
Steven Toth363c35f2008-10-11 11:05:50 -03001685 if (fe0->dvb.frontend->ops.init)
1686 fe0->dvb.frontend->ops.init(fe0->dvb.frontend);
1687 if (fe0->dvb.frontend->ops.sleep)
1688 fe0->dvb.frontend->ops.sleep(fe0->dvb.frontend);
1689 if (fe0->dvb.frontend->ops.tuner_ops.sleep)
1690 fe0->dvb.frontend->ops.tuner_ops.sleep(fe0->dvb.frontend);
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001691 }
1692 return ret;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001693
1694dettach_frontend:
Darron Broadf3f741e2008-11-11 08:50:02 -03001695 videobuf_dvb_dealloc_frontends(&dev->frontends);
1696 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
1699static int dvb_fini(struct saa7134_dev *dev)
1700{
Steven Toth363c35f2008-10-11 11:05:50 -03001701 struct videobuf_dvb_frontend *fe0;
1702
1703 /* Get the first frontend */
1704 fe0 = videobuf_dvb_get_frontend(&dev->frontends, 1);
1705 if (!fe0)
1706 return -EINVAL;
1707
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001708 /* FIXME: I suspect that this code is bogus, since the entry for
1709 Pinnacle 300I DVB-T PAL already defines the proper init to allow
1710 the detection of mt2032 (TDA9887_PORT2_INACTIVE)
1711 */
1712 if (dev->board == SAA7134_BOARD_PINNACLE_300I_DVBT_PAL) {
1713 struct v4l2_priv_tun_config tda9887_cfg;
1714 static int on = TDA9887_PRESENT | TDA9887_PORT2_INACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001716 tda9887_cfg.tuner = TUNER_TDA9887;
1717 tda9887_cfg.priv = &on;
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* otherwise we don't detect the tuner on next insmod */
Hans Verkuilfac69862009-01-17 12:17:14 -03001720 saa_call_all(dev, tuner, s_config, &tda9887_cfg);
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001721 } else if (dev->board == SAA7134_BOARD_MEDION_MD8800_QUADRO) {
Hartmut Hackmanne9c1ac92008-04-22 14:46:10 -03001722 if ((dev->eedata[2] == 0x07) && use_frontend) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001723 /* turn off the 2nd lnb supply */
1724 u8 data = 0x80;
1725 struct i2c_msg msg = {.addr = 0x08, .buf = &data, .flags = 0, .len = 1};
1726 struct dvb_frontend *fe;
Steven Toth363c35f2008-10-11 11:05:50 -03001727 fe = fe0->dvb.frontend;
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001728 if (fe->ops.i2c_gate_ctrl) {
1729 fe->ops.i2c_gate_ctrl(fe, 1);
1730 i2c_transfer(&dev->i2c_adap, &msg, 1);
1731 fe->ops.i2c_gate_ctrl(fe, 0);
1732 }
1733 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001734 }
Darron Broadf3f741e2008-11-11 08:50:02 -03001735 videobuf_dvb_unregister_bus(&dev->frontends);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return 0;
1737}
1738
1739static struct saa7134_mpeg_ops dvb_ops = {
1740 .type = SAA7134_MPEG_DVB,
1741 .init = dvb_init,
1742 .fini = dvb_fini,
1743};
1744
1745static int __init dvb_register(void)
1746{
1747 return saa7134_ts_register(&dvb_ops);
1748}
1749
1750static void __exit dvb_unregister(void)
1751{
1752 saa7134_ts_unregister(&dvb_ops);
1753}
1754
1755module_init(dvb_register);
1756module_exit(dvb_unregister);
1757
1758/* ------------------------------------------------------------------ */
1759/*
1760 * Local variables:
1761 * c-basic-offset: 8
1762 * End:
1763 */