blob: cc7f3d6ee966f955cbaac74dfa3670d453e7c963 [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"
Timothy Leece027042011-03-25 15:00:33 -030056#include "lgs8gxx.h"
Michael Krufky8ce47da2007-04-27 12:31:14 -030057
Dmitri Belimov47aeba52008-12-23 03:53:03 -030058#include "zl10353.h"
Carlos Corbachodbe87402011-06-25 10:24:28 -030059#include "qt1010.h"
Dmitri Belimov47aeba52008-12-23 03:53:03 -030060
Matthias Schwarzott04574182009-02-24 12:35:16 -030061#include "zl10036.h"
Igor M. Liplianinecfcfec2009-08-13 21:42:21 -030062#include "zl10039.h"
Matthias Schwarzott04574182009-02-24 12:35:16 -030063#include "mt312.h"
Kyle Strickland25fa2072012-02-18 02:24:53 -030064#include "s5h1411.h"
Matthias Schwarzott04574182009-02-24 12:35:16 -030065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
67MODULE_LICENSE("GPL");
68
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030069static unsigned int antenna_pwr;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071module_param(antenna_pwr, int, 0444);
72MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)");
73
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030074static int use_frontend;
Stephan Berberigb331daa2006-12-20 09:37:05 -030075module_param(use_frontend, int, 0644);
76MODULE_PARM_DESC(use_frontend,"for cards with multiple frontends (0: terrestrial, 1: satellite)");
Nico Sabbi1f683cd2006-11-15 22:06:56 -030077
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030078static int debug;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -030079module_param(debug, int, 0644);
80MODULE_PARM_DESC(debug, "Turn on/off module debugging (default:off).");
81
Janne Grunau78e92002008-04-09 19:13:13 -030082DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
83
Trent Piephocf3c34c2007-03-07 18:19:48 -030084#define dprintk(fmt, arg...) do { if (debug) \
85 printk(KERN_DEBUG "%s/dvb: " fmt, dev->name , ## arg); } while(0)
86
87/* Print a warning */
88#define wprintk(fmt, arg...) \
89 printk(KERN_WARNING "%s/dvb: " fmt, dev->name, ## arg)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -030090
91/* ------------------------------------------------------------------
92 * mt352 based DVB-T cards
93 */
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on)
96{
97 u32 ok;
98
99 if (!on) {
100 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 26));
101 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
102 return 0;
103 }
104
105 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 26));
106 saa_setl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
107 udelay(10);
108
109 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 28));
110 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 28));
111 udelay(10);
112 saa_setl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 28));
113 udelay(10);
114 ok = saa_readl(SAA7134_GPIO_GPSTATUS0) & (1 << 27);
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300115 dprintk("%s %s\n", __func__, ok ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 if (!ok)
118 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
119 return ok;
120}
121
122static int mt352_pinnacle_init(struct dvb_frontend* fe)
123{
124 static u8 clock_config [] = { CLOCK_CTL, 0x3d, 0x28 };
125 static u8 reset [] = { RESET, 0x80 };
126 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
127 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
128 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x31 };
129 static u8 fsm_ctl_cfg[] = { 0x7b, 0x04 };
130 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x0f };
131 static u8 scan_ctl_cfg [] = { SCAN_CTL, 0x0d };
132 static u8 irq_cfg [] = { INTERRUPT_EN_0, 0x00, 0x00, 0x00, 0x00 };
133 struct saa7134_dev *dev= fe->dvb->priv;
134
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300135 dprintk("%s called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 mt352_write(fe, clock_config, sizeof(clock_config));
138 udelay(200);
139 mt352_write(fe, reset, sizeof(reset));
140 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
141 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
142 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
143 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
144
145 mt352_write(fe, fsm_ctl_cfg, sizeof(fsm_ctl_cfg));
146 mt352_write(fe, scan_ctl_cfg, sizeof(scan_ctl_cfg));
147 mt352_write(fe, irq_cfg, sizeof(irq_cfg));
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return 0;
150}
151
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200152static int mt352_aver777_init(struct dvb_frontend* fe)
153{
154 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x2d };
155 static u8 reset [] = { RESET, 0x80 };
156 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
157 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
158 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x33 };
159
160 mt352_write(fe, clock_config, sizeof(clock_config));
161 udelay(200);
162 mt352_write(fe, reset, sizeof(reset));
163 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
164 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
165 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
166
167 return 0;
168}
169
Tim Farrington6e501a32008-06-15 13:33:42 -0300170static int mt352_avermedia_xc3028_init(struct dvb_frontend *fe)
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300171{
Tim Farrington6e501a32008-06-15 13:33:42 -0300172 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x2d };
173 static u8 reset [] = { RESET, 0x80 };
174 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
175 static u8 agc_cfg [] = { AGC_TARGET, 0xe };
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300176 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x33 };
177
178 mt352_write(fe, clock_config, sizeof(clock_config));
179 udelay(200);
180 mt352_write(fe, reset, sizeof(reset));
181 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
182 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
183 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300184 return 0;
185}
186
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300187static int mt352_pinnacle_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300189 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300190 u8 off[] = { 0x00, 0xf1};
191 u8 on[] = { 0x00, 0x71};
192 struct i2c_msg msg = {.addr=0x43, .flags=0, .buf=off, .len = sizeof(off)};
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct saa7134_dev *dev = fe->dvb->priv;
195 struct v4l2_frequency f;
196
197 /* set frequency (mt2050) */
198 f.tuner = 0;
199 f.type = V4L2_TUNER_DIGITAL_TV;
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300200 f.frequency = c->frequency / 1000 * 16 / 1000;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300201 if (fe->ops.i2c_gate_ctrl)
202 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300203 i2c_transfer(&dev->i2c_adap, &msg, 1);
Hans Verkuilfac69862009-01-17 12:17:14 -0300204 saa_call_all(dev, tuner, s_frequency, &f);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300205 msg.buf = on;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300206 if (fe->ops.i2c_gate_ctrl)
207 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300208 i2c_transfer(&dev->i2c_adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 pinnacle_antenna_pwr(dev, antenna_pwr);
211
212 /* mt352 setup */
Andrew de Quincey0463f122006-05-16 17:22:02 -0300213 return mt352_pinnacle_init(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216static struct mt352_config pinnacle_300i = {
217 .demod_address = 0x3c >> 1,
218 .adc_clock = 20333,
219 .if2 = 36150,
220 .no_tuner = 1,
221 .demod_init = mt352_pinnacle_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222};
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200223
224static struct mt352_config avermedia_777 = {
225 .demod_address = 0xf,
226 .demod_init = mt352_aver777_init,
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200227};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Tim Farrington6e501a32008-06-15 13:33:42 -0300229static struct mt352_config avermedia_xc3028_mt352_dev = {
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -0300230 .demod_address = (0x1e >> 1),
231 .no_tuner = 1,
Tim Farrington6e501a32008-06-15 13:33:42 -0300232 .demod_init = mt352_avermedia_xc3028_init,
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -0300233};
234
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -0300235static struct tda18271_std_map mb86a20s_tda18271_std_map = {
236 .dvbt_6 = { .if_freq = 3300, .agc_mode = 3, .std = 4,
237 .if_lvl = 7, .rfagc_top = 0x37, },
238};
239
240static struct tda18271_config kworld_tda18271_config = {
241 .std_map = &mb86a20s_tda18271_std_map,
Mauro Carvalho Chehab6a58bc02011-01-14 09:11:21 -0300242 .gate = TDA18271_GATE_DIGITAL,
Mauro Carvalho Chehabecb71d22011-01-14 12:03:03 -0300243 .config = 3, /* Use tuner callback for AGC */
244
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -0300245};
246
247static const struct mb86a20s_config kworld_mb86a20s_config = {
248 .demod_address = 0x10,
249};
250
Mauro Carvalho Chehab6a58bc02011-01-14 09:11:21 -0300251static int kworld_sbtvd_gate_ctrl(struct dvb_frontend* fe, int enable)
252{
253 struct saa7134_dev *dev = fe->dvb->priv;
254
255 unsigned char initmsg[] = {0x45, 0x97};
256 unsigned char msg_enable[] = {0x45, 0xc1};
257 unsigned char msg_disable[] = {0x45, 0x81};
258 struct i2c_msg msg = {.addr = 0x4b, .flags = 0, .buf = initmsg, .len = 2};
259
260 if (i2c_transfer(&dev->i2c_adap, &msg, 1) != 1) {
261 wprintk("could not access the I2C gate\n");
262 return -EIO;
263 }
264 if (enable)
265 msg.buf = msg_enable;
266 else
267 msg.buf = msg_disable;
268 if (i2c_transfer(&dev->i2c_adap, &msg, 1) != 1) {
269 wprintk("could not access the I2C gate\n");
270 return -EIO;
271 }
272 msleep(20);
273 return 0;
274}
275
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300276/* ==================================================================
277 * tda1004x based DVB-T cards, helper functions
278 */
279
280static int philips_tda1004x_request_firmware(struct dvb_frontend *fe,
281 const struct firmware **fw, char *name)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700282{
283 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300284 return request_firmware(fw, name, &dev->pci->dev);
285}
286
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300287/* ------------------------------------------------------------------
288 * these tuners are tu1216, td1316(a)
289 */
290
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300291static int philips_tda6651_pll_set(struct dvb_frontend *fe)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300292{
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300293 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300294 struct saa7134_dev *dev = fe->dvb->priv;
295 struct tda1004x_state *state = fe->demodulator_priv;
296 u8 addr = state->config->tuner_address;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700297 u8 tuner_buf[4];
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800298 struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = tuner_buf,.len =
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700299 sizeof(tuner_buf) };
300 int tuner_frequency = 0;
301 u8 band, cp, filter;
302
303 /* determine charge pump */
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300304 tuner_frequency = c->frequency + 36166000;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700305 if (tuner_frequency < 87000000)
306 return -EINVAL;
307 else if (tuner_frequency < 130000000)
308 cp = 3;
309 else if (tuner_frequency < 160000000)
310 cp = 5;
311 else if (tuner_frequency < 200000000)
312 cp = 6;
313 else if (tuner_frequency < 290000000)
314 cp = 3;
315 else if (tuner_frequency < 420000000)
316 cp = 5;
317 else if (tuner_frequency < 480000000)
318 cp = 6;
319 else if (tuner_frequency < 620000000)
320 cp = 3;
321 else if (tuner_frequency < 830000000)
322 cp = 5;
323 else if (tuner_frequency < 895000000)
324 cp = 7;
325 else
326 return -EINVAL;
327
328 /* determine band */
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300329 if (c->frequency < 49000000)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700330 return -EINVAL;
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300331 else if (c->frequency < 161000000)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700332 band = 1;
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300333 else if (c->frequency < 444000000)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700334 band = 2;
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300335 else if (c->frequency < 861000000)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700336 band = 4;
337 else
338 return -EINVAL;
339
340 /* setup PLL filter */
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300341 switch (c->bandwidth_hz) {
342 case 6000000:
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700343 filter = 0;
344 break;
345
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300346 case 7000000:
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700347 filter = 0;
348 break;
349
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300350 case 8000000:
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700351 filter = 1;
352 break;
353
354 default:
355 return -EINVAL;
356 }
357
358 /* calculate divisor
359 * ((36166000+((1000000/6)/2)) + Finput)/(1000000/6)
360 */
Mauro Carvalho Chehabb09cf612011-12-23 12:25:04 -0300361 tuner_frequency = (((c->frequency / 1000) * 6) + 217496) / 1000;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700362
363 /* setup tuner buffer */
364 tuner_buf[0] = (tuner_frequency >> 8) & 0x7f;
365 tuner_buf[1] = tuner_frequency & 0xff;
366 tuner_buf[2] = 0xca;
367 tuner_buf[3] = (cp << 5) | (filter << 3) | band;
368
Patrick Boettcherdea74862006-05-14 05:01:31 -0300369 if (fe->ops.i2c_gate_ctrl)
370 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300371 if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) {
Trent Piephocf3c34c2007-03-07 18:19:48 -0300372 wprintk("could not write to tuner at addr: 0x%02x\n",
373 addr << 1);
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700374 return -EIO;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300375 }
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700376 msleep(1);
377 return 0;
378}
379
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300380static int philips_tu1216_init(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800381{
382 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300383 struct tda1004x_state *state = fe->demodulator_priv;
384 u8 addr = state->config->tuner_address;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800385 static u8 tu1216_init[] = { 0x0b, 0xf5, 0x85, 0xab };
386 struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = tu1216_init,.len = sizeof(tu1216_init) };
387
388 /* setup PLL configuration */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300389 if (fe->ops.i2c_gate_ctrl)
390 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800391 if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1)
392 return -EIO;
393 msleep(1);
394
395 return 0;
396}
397
398/* ------------------------------------------------------------------ */
399
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800400static struct tda1004x_config philips_tu1216_60_config = {
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700401 .demod_address = 0x8,
402 .invert = 1,
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800403 .invert_oclk = 0,
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700404 .xtal_freq = TDA10046_XTAL_4M,
405 .agc_config = TDA10046_AGC_DEFAULT,
406 .if_freq = TDA10046_FREQ_3617,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300407 .tuner_address = 0x60,
408 .request_firmware = philips_tda1004x_request_firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409};
410
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800411static struct tda1004x_config philips_tu1216_61_config = {
412
413 .demod_address = 0x8,
414 .invert = 1,
415 .invert_oclk = 0,
416 .xtal_freq = TDA10046_XTAL_4M,
417 .agc_config = TDA10046_AGC_DEFAULT,
418 .if_freq = TDA10046_FREQ_3617,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300419 .tuner_address = 0x61,
420 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800421};
422
423/* ------------------------------------------------------------------ */
424
Hartmut Hackmanncbb94522006-10-30 20:00:16 -0300425static int philips_td1316_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800426{
427 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300428 struct tda1004x_state *state = fe->demodulator_priv;
429 u8 addr = state->config->tuner_address;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800430 static u8 msg[] = { 0x0b, 0xf5, 0x86, 0xab };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300431 struct i2c_msg init_msg = {.addr = addr,.flags = 0,.buf = msg,.len = sizeof(msg) };
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800432
433 /* setup PLL configuration */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300434 if (fe->ops.i2c_gate_ctrl)
435 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800436 if (i2c_transfer(&dev->i2c_adap, &init_msg, 1) != 1)
437 return -EIO;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800438 return 0;
439}
440
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300441static int philips_td1316_tuner_set_params(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800442{
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300443 return philips_tda6651_pll_set(fe);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800444}
445
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300446static int philips_td1316_tuner_sleep(struct dvb_frontend *fe)
447{
448 struct saa7134_dev *dev = fe->dvb->priv;
449 struct tda1004x_state *state = fe->demodulator_priv;
450 u8 addr = state->config->tuner_address;
451 static u8 msg[] = { 0x0b, 0xdc, 0x86, 0xa4 };
452 struct i2c_msg analog_msg = {.addr = addr,.flags = 0,.buf = msg,.len = sizeof(msg) };
453
454 /* switch the tuner to analog mode */
455 if (fe->ops.i2c_gate_ctrl)
456 fe->ops.i2c_gate_ctrl(fe, 1);
457 if (i2c_transfer(&dev->i2c_adap, &analog_msg, 1) != 1)
458 return -EIO;
459 return 0;
460}
461
462/* ------------------------------------------------------------------ */
463
Hartmut Hackmanncbb94522006-10-30 20:00:16 -0300464static int philips_europa_tuner_init(struct dvb_frontend *fe)
465{
466 struct saa7134_dev *dev = fe->dvb->priv;
467 static u8 msg[] = { 0x00, 0x40};
468 struct i2c_msg init_msg = {.addr = 0x43,.flags = 0,.buf = msg,.len = sizeof(msg) };
469
470
471 if (philips_td1316_tuner_init(fe))
472 return -EIO;
473 msleep(1);
474 if (i2c_transfer(&dev->i2c_adap, &init_msg, 1) != 1)
475 return -EIO;
476
477 return 0;
478}
479
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300480static int philips_europa_tuner_sleep(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800481{
482 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800483
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300484 static u8 msg[] = { 0x00, 0x14 };
485 struct i2c_msg analog_msg = {.addr = 0x43,.flags = 0,.buf = msg,.len = sizeof(msg) };
486
487 if (philips_td1316_tuner_sleep(fe))
488 return -EIO;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800489
490 /* switch the board to analog mode */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300491 if (fe->ops.i2c_gate_ctrl)
492 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800493 i2c_transfer(&dev->i2c_adap, &analog_msg, 1);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300494 return 0;
495}
496
497static int philips_europa_demod_sleep(struct dvb_frontend *fe)
498{
499 struct saa7134_dev *dev = fe->dvb->priv;
500
501 if (dev->original_demod_sleep)
502 dev->original_demod_sleep(fe);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300503 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300504 return 0;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800505}
506
507static struct tda1004x_config philips_europa_config = {
508
509 .demod_address = 0x8,
510 .invert = 0,
511 .invert_oclk = 0,
512 .xtal_freq = TDA10046_XTAL_4M,
513 .agc_config = TDA10046_AGC_IFO_AUTO_POS,
514 .if_freq = TDA10046_FREQ_052,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300515 .tuner_address = 0x61,
516 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800517};
518
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700519static struct tda1004x_config medion_cardbus = {
520 .demod_address = 0x08,
521 .invert = 1,
522 .invert_oclk = 0,
523 .xtal_freq = TDA10046_XTAL_16M,
524 .agc_config = TDA10046_AGC_IFO_AUTO_NEG,
525 .if_freq = TDA10046_FREQ_3613,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300526 .tuner_address = 0x61,
527 .request_firmware = philips_tda1004x_request_firmware
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700528};
529
Vadim Catana128fe952010-05-29 12:49:16 -0300530static struct tda1004x_config technotrend_budget_t3000_config = {
531 .demod_address = 0x8,
532 .invert = 1,
533 .invert_oclk = 0,
534 .xtal_freq = TDA10046_XTAL_4M,
535 .agc_config = TDA10046_AGC_DEFAULT,
536 .if_freq = TDA10046_FREQ_3617,
537 .tuner_address = 0x63,
538 .request_firmware = philips_tda1004x_request_firmware
539};
540
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300541/* ------------------------------------------------------------------
542 * tda 1004x based cards with philips silicon tuner
543 */
544
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300545static int tda8290_i2c_gate_ctrl( struct dvb_frontend* fe, int enable)
546{
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300547 struct tda1004x_state *state = fe->demodulator_priv;
548
549 u8 addr = state->config->i2c_gate;
550 static u8 tda8290_close[] = { 0x21, 0xc0};
551 static u8 tda8290_open[] = { 0x21, 0x80};
552 struct i2c_msg tda8290_msg = {.addr = addr,.flags = 0, .len = 2};
553 if (enable) {
554 tda8290_msg.buf = tda8290_close;
555 } else {
556 tda8290_msg.buf = tda8290_open;
557 }
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300558 if (i2c_transfer(state->i2c, &tda8290_msg, 1) != 1) {
Trent Piephocf3c34c2007-03-07 18:19:48 -0300559 struct saa7134_dev *dev = fe->dvb->priv;
560 wprintk("could not access tda8290 I2C gate\n");
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300561 return -EIO;
562 }
563 msleep(20);
564 return 0;
565}
566
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300567static int philips_tda827x_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300568{
569 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300570 struct tda1004x_state *state = fe->demodulator_priv;
Michael Krufky8ce47da2007-04-27 12:31:14 -0300571
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300572 switch (state->config->antenna_switch) {
573 case 0: break;
574 case 1: dprintk("setting GPIO21 to 0 (TV antenna?)\n");
575 saa7134_set_gpio(dev, 21, 0);
576 break;
577 case 2: dprintk("setting GPIO21 to 1 (Radio antenna?)\n");
578 saa7134_set_gpio(dev, 21, 1);
579 break;
580 }
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300581 return 0;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800582}
583
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300584static int philips_tda827x_tuner_sleep(struct dvb_frontend *fe)
585{
586 struct saa7134_dev *dev = fe->dvb->priv;
587 struct tda1004x_state *state = fe->demodulator_priv;
Michael Krufky8ce47da2007-04-27 12:31:14 -0300588
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300589 switch (state->config->antenna_switch) {
590 case 0: break;
591 case 1: dprintk("setting GPIO21 to 1 (Radio antenna?)\n");
592 saa7134_set_gpio(dev, 21, 1);
593 break;
594 case 2: dprintk("setting GPIO21 to 0 (TV antenna?)\n");
595 saa7134_set_gpio(dev, 21, 0);
596 break;
597 }
598 return 0;
599}
600
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300601static int configure_tda827x_fe(struct saa7134_dev *dev,
602 struct tda1004x_config *cdec_conf,
603 struct tda827x_config *tuner_conf)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300604{
Steven Toth363c35f2008-10-11 11:05:50 -0300605 struct videobuf_dvb_frontend *fe0;
606
Darron Broad92abe9e2008-10-11 11:18:53 -0300607 /* Get the first frontend */
608 fe0 = videobuf_dvb_get_frontend(&dev->frontends, 1);
Steven Toth363c35f2008-10-11 11:05:50 -0300609
610 fe0->dvb.frontend = dvb_attach(tda10046_attach, cdec_conf, &dev->i2c_adap);
611 if (fe0->dvb.frontend) {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300612 if (cdec_conf->i2c_gate)
Steven Toth363c35f2008-10-11 11:05:50 -0300613 fe0->dvb.frontend->ops.i2c_gate_ctrl = tda8290_i2c_gate_ctrl;
614 if (dvb_attach(tda827x_attach, fe0->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300615 cdec_conf->tuner_address,
616 &dev->i2c_adap, tuner_conf))
617 return 0;
618
619 wprintk("no tda827x tuner found at addr: %02x\n",
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300620 cdec_conf->tuner_address);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300621 }
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300622 return -EINVAL;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300623}
624
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800625/* ------------------------------------------------------------------ */
Edgar Simo261f5082007-08-20 14:06:00 -0300626
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300627static struct tda827x_config tda827x_cfg_0 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300628 .init = philips_tda827x_tuner_init,
629 .sleep = philips_tda827x_tuner_sleep,
630 .config = 0,
631 .switch_addr = 0
632};
633
634static struct tda827x_config tda827x_cfg_1 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300635 .init = philips_tda827x_tuner_init,
636 .sleep = philips_tda827x_tuner_sleep,
637 .config = 1,
638 .switch_addr = 0x4b
639};
640
641static struct tda827x_config tda827x_cfg_2 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300642 .init = philips_tda827x_tuner_init,
643 .sleep = philips_tda827x_tuner_sleep,
644 .config = 2,
645 .switch_addr = 0x4b
646};
647
648static struct tda827x_config tda827x_cfg_2_sw42 = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300649 .init = philips_tda827x_tuner_init,
650 .sleep = philips_tda827x_tuner_sleep,
651 .config = 2,
652 .switch_addr = 0x42
653};
654
655/* ------------------------------------------------------------------ */
656
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300657static struct tda1004x_config tda827x_lifeview_config = {
658 .demod_address = 0x08,
659 .invert = 1,
660 .invert_oclk = 0,
661 .xtal_freq = TDA10046_XTAL_16M,
662 .agc_config = TDA10046_AGC_TDA827X,
663 .gpio_config = TDA10046_GP11_I,
664 .if_freq = TDA10046_FREQ_045,
665 .tuner_address = 0x60,
666 .request_firmware = philips_tda1004x_request_firmware
667};
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800668
669static struct tda1004x_config philips_tiger_config = {
670 .demod_address = 0x08,
671 .invert = 1,
672 .invert_oclk = 0,
673 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300674 .agc_config = TDA10046_AGC_TDA827X,
675 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300676 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300677 .i2c_gate = 0x4b,
678 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300679 .antenna_switch= 1,
680 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300681};
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300682
683static struct tda1004x_config cinergy_ht_config = {
684 .demod_address = 0x08,
685 .invert = 1,
686 .invert_oclk = 0,
687 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300688 .agc_config = TDA10046_AGC_TDA827X,
689 .gpio_config = TDA10046_GP01_I,
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800690 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300691 .i2c_gate = 0x4b,
692 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300693 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800694};
695
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300696static struct tda1004x_config cinergy_ht_pci_config = {
697 .demod_address = 0x08,
698 .invert = 1,
699 .invert_oclk = 0,
700 .xtal_freq = TDA10046_XTAL_16M,
701 .agc_config = TDA10046_AGC_TDA827X,
702 .gpio_config = TDA10046_GP01_I,
703 .if_freq = TDA10046_FREQ_045,
704 .i2c_gate = 0x4b,
705 .tuner_address = 0x60,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300706 .request_firmware = philips_tda1004x_request_firmware
707};
708
709static struct tda1004x_config philips_tiger_s_config = {
710 .demod_address = 0x08,
711 .invert = 1,
712 .invert_oclk = 0,
713 .xtal_freq = TDA10046_XTAL_16M,
714 .agc_config = TDA10046_AGC_TDA827X,
715 .gpio_config = TDA10046_GP01_I,
716 .if_freq = TDA10046_FREQ_045,
717 .i2c_gate = 0x4b,
718 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300719 .antenna_switch= 1,
720 .request_firmware = philips_tda1004x_request_firmware
721};
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200722
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300723static struct tda1004x_config pinnacle_pctv_310i_config = {
724 .demod_address = 0x08,
725 .invert = 1,
726 .invert_oclk = 0,
727 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300728 .agc_config = TDA10046_AGC_TDA827X,
729 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300730 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300731 .i2c_gate = 0x4b,
732 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300733 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300734};
735
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300736static struct tda1004x_config hauppauge_hvr_1110_config = {
737 .demod_address = 0x08,
738 .invert = 1,
739 .invert_oclk = 0,
740 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300741 .agc_config = TDA10046_AGC_TDA827X,
742 .gpio_config = TDA10046_GP11_I,
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300743 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300744 .i2c_gate = 0x4b,
745 .tuner_address = 0x61,
746 .request_firmware = philips_tda1004x_request_firmware
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300747};
748
Hartmut Hackmann83646812006-10-12 20:38:51 -0300749static struct tda1004x_config asus_p7131_dual_config = {
750 .demod_address = 0x08,
751 .invert = 1,
752 .invert_oclk = 0,
753 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300754 .agc_config = TDA10046_AGC_TDA827X,
755 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann83646812006-10-12 20:38:51 -0300756 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300757 .i2c_gate = 0x4b,
758 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300759 .antenna_switch= 2,
760 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann83646812006-10-12 20:38:51 -0300761};
762
Nico Sabbi420f32f2006-03-03 12:11:28 -0300763static struct tda1004x_config lifeview_trio_config = {
764 .demod_address = 0x09,
765 .invert = 1,
766 .invert_oclk = 0,
767 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300768 .agc_config = TDA10046_AGC_TDA827X,
769 .gpio_config = TDA10046_GP00_I,
Nico Sabbi420f32f2006-03-03 12:11:28 -0300770 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300771 .tuner_address = 0x60,
772 .request_firmware = philips_tda1004x_request_firmware
Nico Sabbi420f32f2006-03-03 12:11:28 -0300773};
774
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300775static struct tda1004x_config tevion_dvbt220rf_config = {
776 .demod_address = 0x08,
777 .invert = 1,
778 .invert_oclk = 0,
779 .xtal_freq = TDA10046_XTAL_16M,
780 .agc_config = TDA10046_AGC_TDA827X,
781 .gpio_config = TDA10046_GP11_I,
782 .if_freq = TDA10046_FREQ_045,
783 .tuner_address = 0x60,
784 .request_firmware = philips_tda1004x_request_firmware
785};
Nico Sabbi420f32f2006-03-03 12:11:28 -0300786
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300787static struct tda1004x_config md8800_dvbt_config = {
788 .demod_address = 0x08,
789 .invert = 1,
790 .invert_oclk = 0,
791 .xtal_freq = TDA10046_XTAL_16M,
792 .agc_config = TDA10046_AGC_TDA827X,
793 .gpio_config = TDA10046_GP01_I,
794 .if_freq = TDA10046_FREQ_045,
795 .i2c_gate = 0x4b,
796 .tuner_address = 0x60,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300797 .request_firmware = philips_tda1004x_request_firmware
798};
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200799
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300800static struct tda1004x_config asus_p7131_4871_config = {
801 .demod_address = 0x08,
802 .invert = 1,
803 .invert_oclk = 0,
804 .xtal_freq = TDA10046_XTAL_16M,
805 .agc_config = TDA10046_AGC_TDA827X,
806 .gpio_config = TDA10046_GP01_I,
807 .if_freq = TDA10046_FREQ_045,
808 .i2c_gate = 0x4b,
809 .tuner_address = 0x61,
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300810 .antenna_switch= 2,
811 .request_firmware = philips_tda1004x_request_firmware
812};
813
Hartmut Hackmannf3eec0c02007-03-14 20:33:55 -0300814static struct tda1004x_config asus_p7131_hybrid_lna_config = {
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300815 .demod_address = 0x08,
816 .invert = 1,
817 .invert_oclk = 0,
818 .xtal_freq = TDA10046_XTAL_16M,
819 .agc_config = TDA10046_AGC_TDA827X,
820 .gpio_config = TDA10046_GP11_I,
821 .if_freq = TDA10046_FREQ_045,
822 .i2c_gate = 0x4b,
823 .tuner_address = 0x61,
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300824 .antenna_switch= 2,
825 .request_firmware = philips_tda1004x_request_firmware
826};
Edgar Simo261f5082007-08-20 14:06:00 -0300827
Simon Farnsworthb39423a2007-05-01 10:01:20 -0300828static struct tda1004x_config kworld_dvb_t_210_config = {
829 .demod_address = 0x08,
830 .invert = 1,
831 .invert_oclk = 0,
832 .xtal_freq = TDA10046_XTAL_16M,
833 .agc_config = TDA10046_AGC_TDA827X,
834 .gpio_config = TDA10046_GP11_I,
835 .if_freq = TDA10046_FREQ_045,
836 .i2c_gate = 0x4b,
837 .tuner_address = 0x61,
Simon Farnsworthb39423a2007-05-01 10:01:20 -0300838 .antenna_switch= 1,
839 .request_firmware = philips_tda1004x_request_firmware
840};
Edgar Simo261f5082007-08-20 14:06:00 -0300841
Edgar Simod90d9f52007-08-20 14:14:50 -0300842static struct tda1004x_config avermedia_super_007_config = {
843 .demod_address = 0x08,
844 .invert = 1,
845 .invert_oclk = 0,
846 .xtal_freq = TDA10046_XTAL_16M,
847 .agc_config = TDA10046_AGC_TDA827X,
848 .gpio_config = TDA10046_GP01_I,
849 .if_freq = TDA10046_FREQ_045,
850 .i2c_gate = 0x4b,
851 .tuner_address = 0x60,
Edgar Simod90d9f52007-08-20 14:14:50 -0300852 .antenna_switch= 1,
853 .request_firmware = philips_tda1004x_request_firmware
854};
855
Hermann Pitton4ba24372008-01-20 19:27:51 -0300856static struct tda1004x_config twinhan_dtv_dvb_3056_config = {
857 .demod_address = 0x08,
858 .invert = 1,
859 .invert_oclk = 0,
860 .xtal_freq = TDA10046_XTAL_16M,
861 .agc_config = TDA10046_AGC_TDA827X,
862 .gpio_config = TDA10046_GP01_I,
863 .if_freq = TDA10046_FREQ_045,
864 .i2c_gate = 0x42,
865 .tuner_address = 0x61,
Hermann Pitton4ba24372008-01-20 19:27:51 -0300866 .antenna_switch = 1,
867 .request_firmware = philips_tda1004x_request_firmware
868};
869
hermann pitton301e9d62008-09-14 17:49:14 -0300870static struct tda1004x_config asus_tiger_3in1_config = {
871 .demod_address = 0x0b,
872 .invert = 1,
873 .invert_oclk = 0,
874 .xtal_freq = TDA10046_XTAL_16M,
875 .agc_config = TDA10046_AGC_TDA827X,
876 .gpio_config = TDA10046_GP11_I,
877 .if_freq = TDA10046_FREQ_045,
878 .i2c_gate = 0x4b,
879 .tuner_address = 0x61,
880 .antenna_switch = 1,
881 .request_firmware = philips_tda1004x_request_firmware
882};
883
remi schwartz75c7dbc2012-05-19 06:11:47 -0300884static struct tda1004x_config asus_ps3_100_config = {
885 .demod_address = 0x0b,
886 .invert = 1,
887 .invert_oclk = 0,
888 .xtal_freq = TDA10046_XTAL_16M,
889 .agc_config = TDA10046_AGC_TDA827X,
890 .gpio_config = TDA10046_GP11_I,
891 .if_freq = TDA10046_FREQ_045,
892 .i2c_gate = 0x4b,
893 .tuner_address = 0x61,
894 .antenna_switch = 1,
895 .request_firmware = philips_tda1004x_request_firmware
896};
897
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300898/* ------------------------------------------------------------------
899 * special case: this card uses saa713x GPIO22 for the mode switch
900 */
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200901
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300902static int ads_duo_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200903{
904 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300905 philips_tda827x_tuner_init(fe);
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200906 /* route TDA8275a AGC input to the channel decoder */
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300907 saa7134_set_gpio(dev, 22, 1);
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200908 return 0;
909}
910
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300911static int ads_duo_tuner_sleep(struct dvb_frontend *fe)
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200912{
913 struct saa7134_dev *dev = fe->dvb->priv;
914 /* route TDA8275a AGC input to the analog IF chip*/
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300915 saa7134_set_gpio(dev, 22, 0);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300916 philips_tda827x_tuner_sleep(fe);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300917 return 0;
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200918}
919
Michael Krufky8ce47da2007-04-27 12:31:14 -0300920static struct tda827x_config ads_duo_cfg = {
Michael Krufky8ce47da2007-04-27 12:31:14 -0300921 .init = ads_duo_tuner_init,
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300922 .sleep = ads_duo_tuner_sleep,
923 .config = 0
Michael Krufky8ce47da2007-04-27 12:31:14 -0300924};
925
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200926static struct tda1004x_config ads_tech_duo_config = {
927 .demod_address = 0x08,
928 .invert = 1,
929 .invert_oclk = 0,
930 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300931 .agc_config = TDA10046_AGC_TDA827X,
932 .gpio_config = TDA10046_GP00_I,
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200933 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300934 .tuner_address = 0x61,
935 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200936};
937
Dmitri Belimov47aeba52008-12-23 03:53:03 -0300938static struct zl10353_config behold_h6_config = {
939 .demod_address = 0x1e>>1,
940 .no_tuner = 1,
941 .parallel_ts = 1,
Antti Palosaari5f77af92009-03-10 13:06:40 -0300942 .disable_i2c_gate_ctrl = 1,
Dmitri Belimov47aeba52008-12-23 03:53:03 -0300943};
944
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -0300945static struct xc5000_config behold_x7_tunerconfig = {
946 .i2c_address = 0xc2>>1,
947 .if_khz = 4560,
Devin Heitmueller2a0d0562009-09-30 23:04:39 -0300948 .radio_input = XC5000_RADIO_FM1,
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -0300949};
950
951static struct zl10353_config behold_x7_config = {
952 .demod_address = 0x1e>>1,
953 .if2 = 45600,
954 .no_tuner = 1,
955 .parallel_ts = 1,
956 .disable_i2c_gate_ctrl = 1,
957};
958
Carlos Corbachodbe87402011-06-25 10:24:28 -0300959static struct zl10353_config videomate_t750_zl10353_config = {
960 .demod_address = 0x0f,
961 .no_tuner = 1,
962 .parallel_ts = 1,
963 .disable_i2c_gate_ctrl = 1,
964};
965
966static struct qt1010_config videomate_t750_qt1010_config = {
967 .i2c_address = 0x62
968};
969
970
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300971/* ==================================================================
972 * tda10086 based DVB-S cards, helper functions
973 */
Hartmut Hackmann5eda2272006-08-07 14:03:32 -0300974
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -0300975static struct tda10086_config flydvbs = {
976 .demod_address = 0x0e,
977 .invert = 0,
Hartmut Hackmannea75baf2008-02-09 23:54:24 -0300978 .diseqc_tone = 0,
Hartmut Hackmann9a1b04e2008-04-09 23:07:11 -0300979 .xtal_freq = TDA10086_XTAL_16M,
980};
981
982static struct tda10086_config sd1878_4m = {
983 .demod_address = 0x0e,
984 .invert = 0,
985 .diseqc_tone = 0,
986 .xtal_freq = TDA10086_XTAL_4M,
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -0300987};
988
Hartmut Hackmann1b1cee32008-04-22 14:42:12 -0300989/* ------------------------------------------------------------------
990 * special case: lnb supply is connected to the gated i2c
991 */
992
993static int md8800_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
994{
995 int res = -EIO;
996 struct saa7134_dev *dev = fe->dvb->priv;
997 if (fe->ops.i2c_gate_ctrl) {
998 fe->ops.i2c_gate_ctrl(fe, 1);
999 if (dev->original_set_voltage)
1000 res = dev->original_set_voltage(fe, voltage);
1001 fe->ops.i2c_gate_ctrl(fe, 0);
1002 }
1003 return res;
1004};
1005
1006static int md8800_set_high_voltage(struct dvb_frontend *fe, long arg)
1007{
1008 int res = -EIO;
1009 struct saa7134_dev *dev = fe->dvb->priv;
1010 if (fe->ops.i2c_gate_ctrl) {
1011 fe->ops.i2c_gate_ctrl(fe, 1);
1012 if (dev->original_set_high_voltage)
1013 res = dev->original_set_high_voltage(fe, arg);
1014 fe->ops.i2c_gate_ctrl(fe, 0);
1015 }
1016 return res;
1017};
1018
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001019static int md8800_set_voltage2(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
1020{
1021 struct saa7134_dev *dev = fe->dvb->priv;
1022 u8 wbuf[2] = { 0x1f, 00 };
1023 u8 rbuf;
1024 struct i2c_msg msg[] = { { .addr = 0x08, .flags = 0, .buf = wbuf, .len = 1 },
1025 { .addr = 0x08, .flags = I2C_M_RD, .buf = &rbuf, .len = 1 } };
1026
1027 if (i2c_transfer(&dev->i2c_adap, msg, 2) != 2)
1028 return -EIO;
1029 /* NOTE: this assumes that gpo1 is used, it might be bit 5 (gpo2) */
1030 if (voltage == SEC_VOLTAGE_18)
1031 wbuf[1] = rbuf | 0x10;
1032 else
1033 wbuf[1] = rbuf & 0xef;
1034 msg[0].len = 2;
1035 i2c_transfer(&dev->i2c_adap, msg, 1);
1036 return 0;
1037}
1038
1039static int md8800_set_high_voltage2(struct dvb_frontend *fe, long arg)
1040{
1041 struct saa7134_dev *dev = fe->dvb->priv;
1042 wprintk("%s: sorry can't set high LNB supply voltage from here\n", __func__);
1043 return -EIO;
1044}
1045
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001046/* ==================================================================
1047 * nxt200x based ATSC cards, helper functions
1048 */
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001049
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001050static struct nxt200x_config avertvhda180 = {
1051 .demod_address = 0x0a,
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001052};
Andrew Burri3e1410a2006-02-27 00:08:23 -03001053
1054static struct nxt200x_config kworldatsc110 = {
1055 .demod_address = 0x0a,
Andrew Burri3e1410a2006-02-27 00:08:23 -03001056};
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001057
Matthias Schwarzott04574182009-02-24 12:35:16 -03001058/* ------------------------------------------------------------------ */
1059
1060static struct mt312_config avertv_a700_mt312 = {
1061 .demod_address = 0x0e,
1062 .voltage_inverted = 1,
1063};
1064
1065static struct zl10036_config avertv_a700_tuner = {
1066 .tuner_address = 0x60,
1067};
1068
Igor M. Liplianinecfcfec2009-08-13 21:42:21 -03001069static struct mt312_config zl10313_compro_s350_config = {
1070 .demod_address = 0x0e,
1071};
1072
Michael Krufky3abdedd2009-01-19 01:10:49 -03001073static struct lgdt3305_config hcw_lgdt3305_config = {
1074 .i2c_addr = 0x0e,
1075 .mpeg_mode = LGDT3305_MPEG_SERIAL,
1076 .tpclk_edge = LGDT3305_TPCLK_RISING_EDGE,
1077 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
1078 .deny_i2c_rptr = 1,
1079 .spectral_inversion = 1,
1080 .qam_if_khz = 4000,
1081 .vsb_if_khz = 3250,
1082};
1083
Michael Krufky1bc7f512009-01-19 01:10:49 -03001084static struct tda10048_config hcw_tda10048_config = {
1085 .demod_address = 0x10 >> 1,
1086 .output_mode = TDA10048_SERIAL_OUTPUT,
1087 .fwbulkwritelen = TDA10048_BULKWRITE_200,
1088 .inversion = TDA10048_INVERSION_ON,
1089 .dtv6_if_freq_khz = TDA10048_IF_3300,
1090 .dtv7_if_freq_khz = TDA10048_IF_3500,
1091 .dtv8_if_freq_khz = TDA10048_IF_4000,
1092 .clk_freq_khz = TDA10048_CLK_16000,
1093 .disable_gate_access = 1,
1094};
1095
Michael Krufky3abdedd2009-01-19 01:10:49 -03001096static struct tda18271_std_map hauppauge_tda18271_std_map = {
1097 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 4,
1098 .if_lvl = 1, .rfagc_top = 0x58, },
1099 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 5,
1100 .if_lvl = 1, .rfagc_top = 0x58, },
1101};
1102
1103static struct tda18271_config hcw_tda18271_config = {
1104 .std_map = &hauppauge_tda18271_std_map,
1105 .gate = TDA18271_GATE_ANALOG,
1106 .config = 3,
Michael Krufky542cb052009-08-29 17:45:48 -03001107 .output_opt = TDA18271_OUTPUT_LT_OFF,
Michael Krufky3abdedd2009-01-19 01:10:49 -03001108};
1109
1110static struct tda829x_config tda829x_no_probe = {
1111 .probe_tuner = TDA829X_DONT_PROBE,
1112};
1113
Henk Vergonet6c119ff2009-09-18 20:44:37 -03001114static struct tda10048_config zolid_tda10048_config = {
1115 .demod_address = 0x10 >> 1,
1116 .output_mode = TDA10048_PARALLEL_OUTPUT,
1117 .fwbulkwritelen = TDA10048_BULKWRITE_200,
1118 .inversion = TDA10048_INVERSION_ON,
1119 .dtv6_if_freq_khz = TDA10048_IF_3300,
1120 .dtv7_if_freq_khz = TDA10048_IF_3500,
1121 .dtv8_if_freq_khz = TDA10048_IF_4000,
1122 .clk_freq_khz = TDA10048_CLK_16000,
1123 .disable_gate_access = 1,
1124};
1125
1126static struct tda18271_config zolid_tda18271_config = {
1127 .gate = TDA18271_GATE_ANALOG,
1128};
1129
Michael Krufky184e7692009-06-05 04:28:28 -03001130static struct tda10048_config dtv1000s_tda10048_config = {
1131 .demod_address = 0x10 >> 1,
1132 .output_mode = TDA10048_PARALLEL_OUTPUT,
1133 .fwbulkwritelen = TDA10048_BULKWRITE_200,
1134 .inversion = TDA10048_INVERSION_ON,
1135 .dtv6_if_freq_khz = TDA10048_IF_3300,
1136 .dtv7_if_freq_khz = TDA10048_IF_3800,
1137 .dtv8_if_freq_khz = TDA10048_IF_4300,
1138 .clk_freq_khz = TDA10048_CLK_16000,
1139 .disable_gate_access = 1,
1140};
1141
1142static struct tda18271_std_map dtv1000s_tda18271_std_map = {
1143 .dvbt_6 = { .if_freq = 3300, .agc_mode = 3, .std = 4,
1144 .if_lvl = 1, .rfagc_top = 0x37, },
1145 .dvbt_7 = { .if_freq = 3800, .agc_mode = 3, .std = 5,
1146 .if_lvl = 1, .rfagc_top = 0x37, },
1147 .dvbt_8 = { .if_freq = 4300, .agc_mode = 3, .std = 6,
1148 .if_lvl = 1, .rfagc_top = 0x37, },
1149};
1150
1151static struct tda18271_config dtv1000s_tda18271_config = {
1152 .std_map = &dtv1000s_tda18271_std_map,
1153 .gate = TDA18271_GATE_ANALOG,
1154};
1155
Timothy Leece027042011-03-25 15:00:33 -03001156static struct lgs8gxx_config prohdtv_pro2_lgs8g75_config = {
1157 .prod = LGS8GXX_PROD_LGS8G75,
1158 .demod_address = 0x1d,
1159 .serial_ts = 0,
1160 .ts_clk_pol = 1,
1161 .ts_clk_gated = 0,
1162 .if_clk_freq = 30400, /* 30.4 MHz */
1163 .if_freq = 4000, /* 4.00 MHz */
1164 .if_neg_center = 0,
1165 .ext_adc = 0,
1166 .adc_signed = 1,
1167 .adc_vpp = 3, /* 2.0 Vpp */
1168 .if_neg_edge = 1,
1169};
1170
1171static struct tda18271_config prohdtv_pro2_tda18271_config = {
1172 .gate = TDA18271_GATE_ANALOG,
1173 .output_opt = TDA18271_OUTPUT_LT_OFF,
1174};
1175
Kyle Strickland25fa2072012-02-18 02:24:53 -03001176static struct tda18271_std_map kworld_tda18271_std_map = {
1177 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 3,
1178 .if_lvl = 6, .rfagc_top = 0x37 },
1179 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 0,
1180 .if_lvl = 6, .rfagc_top = 0x37 },
1181};
1182
1183static struct tda18271_config kworld_pc150u_tda18271_config = {
1184 .std_map = &kworld_tda18271_std_map,
1185 .gate = TDA18271_GATE_ANALOG,
1186 .output_opt = TDA18271_OUTPUT_LT_OFF,
1187 .config = 3, /* Use tuner callback for AGC */
1188 .rf_cal_on_startup = 1
1189};
1190
1191static struct s5h1411_config kworld_s5h1411_config = {
1192 .output_mode = S5H1411_PARALLEL_OUTPUT,
1193 .gpio = S5H1411_GPIO_OFF,
1194 .qam_if = S5H1411_IF_4000,
1195 .vsb_if = S5H1411_IF_3250,
1196 .inversion = S5H1411_INVERSION_ON,
1197 .status_mode = S5H1411_DEMODLOCKING,
1198 .mpeg_timing =
1199 S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,
1200};
1201
1202
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001203/* ==================================================================
1204 * Core code
1205 */
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207static int dvb_init(struct saa7134_dev *dev)
1208{
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001209 int ret;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001210 int attach_xc3028 = 0;
Steven Toth363c35f2008-10-11 11:05:50 -03001211 struct videobuf_dvb_frontend *fe0;
1212
Darron Broadf972e0bd2008-10-11 11:24:30 -03001213 /* FIXME: add support for multi-frontend */
1214 mutex_init(&dev->frontends.lock);
Darron Broad7bdf84f2008-10-15 13:43:41 -03001215 INIT_LIST_HEAD(&dev->frontends.felist);
Darron Broadf972e0bd2008-10-11 11:24:30 -03001216
1217 printk(KERN_INFO "%s() allocating 1 frontend\n", __func__);
Darron Broadf3f741e2008-11-11 08:50:02 -03001218 fe0 = videobuf_dvb_alloc_frontend(&dev->frontends, 1);
1219 if (!fe0) {
Darron Broadf972e0bd2008-10-11 11:24:30 -03001220 printk(KERN_ERR "%s() failed to alloc\n", __func__);
1221 return -ENOMEM;
1222 }
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /* init struct videobuf_dvb */
1225 dev->ts.nr_bufs = 32;
1226 dev->ts.nr_packets = 32*4;
Steven Toth363c35f2008-10-11 11:05:50 -03001227 fe0->dvb.name = dev->name;
1228 videobuf_queue_sg_init(&fe0->dvb.dvbq, &saa7134_ts_qops,
Guennadi Liakhovetski07051352008-04-22 14:42:13 -03001229 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 V4L2_BUF_TYPE_VIDEO_CAPTURE,
1231 V4L2_FIELD_ALTERNATE,
1232 sizeof(struct saa7134_buf),
Hans Verkuil08bff032010-09-20 17:39:46 -03001233 dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 switch (dev->board) {
1236 case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001237 dprintk("pinnacle 300i dvb setup\n");
Steven Toth363c35f2008-10-11 11:05:50 -03001238 fe0->dvb.frontend = dvb_attach(mt352_attach, &pinnacle_300i,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001239 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001240 if (fe0->dvb.frontend) {
1241 fe0->dvb.frontend->ops.tuner_ops.set_params = mt352_pinnacle_tuner_set_params;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 break;
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -02001244 case SAA7134_BOARD_AVERMEDIA_777:
Petr Baudis515c2082006-09-26 16:53:53 -03001245 case SAA7134_BOARD_AVERMEDIA_A16AR:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001246 dprintk("avertv 777 dvb setup\n");
Steven Toth363c35f2008-10-11 11:05:50 -03001247 fe0->dvb.frontend = dvb_attach(mt352_attach, &avermedia_777,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001248 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001249 if (fe0->dvb.frontend) {
1250 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufkyfb147e92008-04-22 14:46:16 -03001251 &dev->i2c_adap, 0x61,
1252 TUNER_PHILIPS_TD1316);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001253 }
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -02001254 break;
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001255 case SAA7134_BOARD_AVERMEDIA_A16D:
Tim Farrington6e501a32008-06-15 13:33:42 -03001256 dprintk("AverMedia A16D dvb setup\n");
Steven Toth363c35f2008-10-11 11:05:50 -03001257 fe0->dvb.frontend = dvb_attach(mt352_attach,
Tim Farrington6e501a32008-06-15 13:33:42 -03001258 &avermedia_xc3028_mt352_dev,
1259 &dev->i2c_adap);
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001260 attach_xc3028 = 1;
1261 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 case SAA7134_BOARD_MD7134:
Steven Toth363c35f2008-10-11 11:05:50 -03001263 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001264 &medion_cardbus,
1265 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001266 if (fe0->dvb.frontend) {
1267 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufkycb89cd32008-04-22 14:46:16 -03001268 &dev->i2c_adap, medion_cardbus.tuner_address,
1269 TUNER_PHILIPS_FMD1216ME_MK3);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 break;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001272 case SAA7134_BOARD_PHILIPS_TOUGH:
Steven Toth363c35f2008-10-11 11:05:50 -03001273 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001274 &philips_tu1216_60_config,
1275 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001276 if (fe0->dvb.frontend) {
1277 fe0->dvb.frontend->ops.tuner_ops.init = philips_tu1216_init;
1278 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_tda6651_pll_set;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001279 }
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001280 break;
1281 case SAA7134_BOARD_FLYDVBTDUO:
Peter Missel10b7a902006-01-23 17:11:06 -02001282 case SAA7134_BOARD_FLYDVBT_DUO_CARDBUS:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001283 if (configure_tda827x_fe(dev, &tda827x_lifeview_config,
1284 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001285 goto detach_frontend;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001286 break;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001287 case SAA7134_BOARD_PHILIPS_EUROPA:
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001288 case SAA7134_BOARD_VIDEOMATE_DVBT_300:
Danny Woode3c6e1a2009-09-20 12:14:21 -03001289 case SAA7134_BOARD_ASUS_EUROPA_HYBRID:
Steven Toth363c35f2008-10-11 11:05:50 -03001290 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001291 &philips_europa_config,
1292 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001293 if (fe0->dvb.frontend) {
1294 dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
1295 fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
1296 fe0->dvb.frontend->ops.tuner_ops.init = philips_europa_tuner_init;
1297 fe0->dvb.frontend->ops.tuner_ops.sleep = philips_europa_tuner_sleep;
1298 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001299 }
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001300 break;
Vadim Catana128fe952010-05-29 12:49:16 -03001301 case SAA7134_BOARD_TECHNOTREND_BUDGET_T3000:
1302 fe0->dvb.frontend = dvb_attach(tda10046_attach,
1303 &technotrend_budget_t3000_config,
1304 &dev->i2c_adap);
1305 if (fe0->dvb.frontend) {
1306 dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
1307 fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
1308 fe0->dvb.frontend->ops.tuner_ops.init = philips_europa_tuner_init;
1309 fe0->dvb.frontend->ops.tuner_ops.sleep = philips_europa_tuner_sleep;
1310 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
1311 }
1312 break;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001313 case SAA7134_BOARD_VIDEOMATE_DVBT_200:
Steven Toth363c35f2008-10-11 11:05:50 -03001314 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001315 &philips_tu1216_61_config,
1316 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001317 if (fe0->dvb.frontend) {
1318 fe0->dvb.frontend->ops.tuner_ops.init = philips_tu1216_init;
1319 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_tda6651_pll_set;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001320 }
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001321 break;
Simon Farnsworthb39423a2007-05-01 10:01:20 -03001322 case SAA7134_BOARD_KWORLD_DVBT_210:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001323 if (configure_tda827x_fe(dev, &kworld_dvb_t_210_config,
1324 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001325 goto detach_frontend;
Simon Farnsworthb39423a2007-05-01 10:01:20 -03001326 break;
Michael Krufky0e316ec2009-08-03 16:51:33 -03001327 case SAA7134_BOARD_HAUPPAUGE_HVR1120:
Michael Krufky1bc7f512009-01-19 01:10:49 -03001328 fe0->dvb.frontend = dvb_attach(tda10048_attach,
1329 &hcw_tda10048_config,
1330 &dev->i2c_adap);
1331 if (fe0->dvb.frontend != NULL) {
1332 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1333 &dev->i2c_adap, 0x4b,
1334 &tda829x_no_probe);
1335 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1336 0x60, &dev->i2c_adap,
1337 &hcw_tda18271_config);
1338 }
1339 break;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001340 case SAA7134_BOARD_PHILIPS_TIGER:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001341 if (configure_tda827x_fe(dev, &philips_tiger_config,
1342 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001343 goto detach_frontend;
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -03001344 break;
1345 case SAA7134_BOARD_PINNACLE_PCTV_310i:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001346 if (configure_tda827x_fe(dev, &pinnacle_pctv_310i_config,
1347 &tda827x_cfg_1) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001348 goto detach_frontend;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001349 break;
Thomas Gentyc6e53da2006-11-05 14:17:30 -03001350 case SAA7134_BOARD_HAUPPAUGE_HVR1110:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001351 if (configure_tda827x_fe(dev, &hauppauge_hvr_1110_config,
1352 &tda827x_cfg_1) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001353 goto detach_frontend;
Thomas Gentyc6e53da2006-11-05 14:17:30 -03001354 break;
Michael Krufkyb5f05062009-08-03 16:51:33 -03001355 case SAA7134_BOARD_HAUPPAUGE_HVR1150:
Michael Krufky3abdedd2009-01-19 01:10:49 -03001356 fe0->dvb.frontend = dvb_attach(lgdt3305_attach,
1357 &hcw_lgdt3305_config,
1358 &dev->i2c_adap);
1359 if (fe0->dvb.frontend) {
1360 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1361 &dev->i2c_adap, 0x4b,
1362 &tda829x_no_probe);
1363 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1364 0x60, &dev->i2c_adap,
1365 &hcw_tda18271_config);
1366 }
1367 break;
Hartmut Hackmannd4b0aba2005-11-08 21:38:44 -08001368 case SAA7134_BOARD_ASUSTeK_P7131_DUAL:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001369 if (configure_tda827x_fe(dev, &asus_p7131_dual_config,
1370 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001371 goto detach_frontend;
Hartmut Hackmannd4b0aba2005-11-08 21:38:44 -08001372 break;
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -02001373 case SAA7134_BOARD_FLYDVBT_LR301:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001374 if (configure_tda827x_fe(dev, &tda827x_lifeview_config,
1375 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001376 goto detach_frontend;
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -02001377 break;
Darron Broad92abe9e2008-10-11 11:18:53 -03001378 case SAA7134_BOARD_FLYDVB_TRIO:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001379 if (!use_frontend) { /* terrestrial */
1380 if (configure_tda827x_fe(dev, &lifeview_trio_config,
1381 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001382 goto detach_frontend;
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -03001383 } else { /* satellite */
Steven Toth363c35f2008-10-11 11:05:50 -03001384 fe0->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs, &dev->i2c_adap);
1385 if (fe0->dvb.frontend) {
1386 if (dvb_attach(tda826x_attach, fe0->dvb.frontend, 0x63,
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001387 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001388 wprintk("%s: Lifeview Trio, No tda826x found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001389 goto detach_frontend;
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001390 }
Steven Toth363c35f2008-10-11 11:05:50 -03001391 if (dvb_attach(isl6421_attach, fe0->dvb.frontend, &dev->i2c_adap,
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001392 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001393 wprintk("%s: Lifeview Trio, No ISL6421 found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001394 goto detach_frontend;
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001395 }
1396 }
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001397 }
Nico Sabbi420f32f2006-03-03 12:11:28 -03001398 break;
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -02001399 case SAA7134_BOARD_ADS_DUO_CARDBUS_PTV331:
Hartmut Hackmannd95b8942006-03-27 19:39:30 -03001400 case SAA7134_BOARD_FLYDVBT_HYBRID_CARDBUS:
Steven Toth363c35f2008-10-11 11:05:50 -03001401 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001402 &ads_tech_duo_config,
1403 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001404 if (fe0->dvb.frontend) {
1405 if (dvb_attach(tda827x_attach,fe0->dvb.frontend,
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -03001406 ads_tech_duo_config.tuner_address, &dev->i2c_adap,
1407 &ads_duo_cfg) == NULL) {
Trent Piephocf3c34c2007-03-07 18:19:48 -03001408 wprintk("no tda827x tuner found at addr: %02x\n",
Hartmut Hackmannede22002007-04-27 12:31:32 -03001409 ads_tech_duo_config.tuner_address);
Peter Meerwald91268a52012-07-02 17:27:41 -03001410 goto detach_frontend;
Hartmut Hackmannede22002007-04-27 12:31:32 -03001411 }
Mauro Carvalho Chehabbc36ec72008-06-14 10:44:04 -03001412 } else
1413 wprintk("failed to attach tda10046\n");
Hartmut Hackmannd95b8942006-03-27 19:39:30 -03001414 break;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001415 case SAA7134_BOARD_TEVION_DVBT_220RF:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001416 if (configure_tda827x_fe(dev, &tevion_dvbt220rf_config,
1417 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001418 goto detach_frontend;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001419 break;
Hartmut Hackmann5eda2272006-08-07 14:03:32 -03001420 case SAA7134_BOARD_MEDION_MD8800_QUADRO:
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001421 if (!use_frontend) { /* terrestrial */
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001422 if (configure_tda827x_fe(dev, &md8800_dvbt_config,
1423 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001424 goto detach_frontend;
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001425 } else { /* satellite */
Steven Toth363c35f2008-10-11 11:05:50 -03001426 fe0->dvb.frontend = dvb_attach(tda10086_attach,
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001427 &flydvbs, &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001428 if (fe0->dvb.frontend) {
1429 struct dvb_frontend *fe = fe0->dvb.frontend;
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001430 u8 dev_id = dev->eedata[2];
1431 u8 data = 0xc4;
1432 struct i2c_msg msg = {.addr = 0x08, .flags = 0, .len = 1};
1433
Steven Toth363c35f2008-10-11 11:05:50 -03001434 if (dvb_attach(tda826x_attach, fe0->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001435 0x60, &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001436 wprintk("%s: Medion Quadro, no tda826x "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001437 "found !\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001438 goto detach_frontend;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001439 }
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001440 if (dev_id != 0x08) {
1441 /* we need to open the i2c gate (we know it exists) */
1442 fe->ops.i2c_gate_ctrl(fe, 1);
1443 if (dvb_attach(isl6405_attach, fe,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001444 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001445 wprintk("%s: Medion Quadro, no ISL6405 "
1446 "found !\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001447 goto detach_frontend;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001448 }
Hartmut Hackmanne9c1ac92008-04-22 14:46:10 -03001449 if (dev_id == 0x07) {
1450 /* fire up the 2nd section of the LNB supply since
1451 we can't do this from the other section */
1452 msg.buf = &data;
1453 i2c_transfer(&dev->i2c_adap, &msg, 1);
1454 }
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001455 fe->ops.i2c_gate_ctrl(fe, 0);
1456 dev->original_set_voltage = fe->ops.set_voltage;
1457 fe->ops.set_voltage = md8800_set_voltage;
1458 dev->original_set_high_voltage = fe->ops.enable_high_lnb_voltage;
1459 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage;
1460 } else {
1461 fe->ops.set_voltage = md8800_set_voltage2;
1462 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage2;
1463 }
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001464 }
1465 }
Hartmut Hackmann5eda2272006-08-07 14:03:32 -03001466 break;
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001467 case SAA7134_BOARD_AVERMEDIA_AVERTVHD_A180:
Steven Toth363c35f2008-10-11 11:05:50 -03001468 fe0->dvb.frontend = dvb_attach(nxt200x_attach, &avertvhda180,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001469 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001470 if (fe0->dvb.frontend)
1471 dvb_attach(dvb_pll_attach, fe0->dvb.frontend, 0x61,
Michael Krufky47a99912007-06-12 16:10:51 -03001472 NULL, DVB_PLL_TDHU2);
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001473 break;
Adam Gloverf689d902008-05-06 03:20:27 -03001474 case SAA7134_BOARD_ADS_INSTANT_HDTV_PCI:
Andrew Burri3e1410a2006-02-27 00:08:23 -03001475 case SAA7134_BOARD_KWORLD_ATSC110:
Steven Toth363c35f2008-10-11 11:05:50 -03001476 fe0->dvb.frontend = dvb_attach(nxt200x_attach, &kworldatsc110,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001477 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001478 if (fe0->dvb.frontend)
1479 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufky62ff817a2008-04-22 14:46:17 -03001480 &dev->i2c_adap, 0x61,
1481 TUNER_PHILIPS_TUV1236D);
Andrew Burri3e1410a2006-02-27 00:08:23 -03001482 break;
Kyle Strickland25fa2072012-02-18 02:24:53 -03001483 case SAA7134_BOARD_KWORLD_PC150U:
1484 saa7134_set_gpio(dev, 18, 1); /* Switch to digital mode */
1485 saa7134_tuner_callback(dev, 0,
1486 TDA18271_CALLBACK_CMD_AGC_ENABLE, 1);
1487 fe0->dvb.frontend = dvb_attach(s5h1411_attach,
1488 &kworld_s5h1411_config,
1489 &dev->i2c_adap);
1490 if (fe0->dvb.frontend != NULL) {
1491 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1492 &dev->i2c_adap, 0x4b,
1493 &tda829x_no_probe);
1494 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1495 0x60, &dev->i2c_adap,
1496 &kworld_pc150u_tda18271_config);
1497 }
1498 break;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001499 case SAA7134_BOARD_FLYDVBS_LR300:
Steven Toth363c35f2008-10-11 11:05:50 -03001500 fe0->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001501 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001502 if (fe0->dvb.frontend) {
1503 if (dvb_attach(tda826x_attach, fe0->dvb.frontend, 0x60,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001504 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001505 wprintk("%s: No tda826x found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001506 goto detach_frontend;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001507 }
Steven Toth363c35f2008-10-11 11:05:50 -03001508 if (dvb_attach(isl6421_attach, fe0->dvb.frontend,
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001509 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001510 wprintk("%s: No ISL6421 found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001511 goto detach_frontend;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001512 }
1513 }
1514 break;
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001515 case SAA7134_BOARD_ASUS_EUROPA2_HYBRID:
Steven Toth363c35f2008-10-11 11:05:50 -03001516 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Matthias Schwarzott0e8f4cc2008-01-28 12:01:11 -03001517 &medion_cardbus,
1518 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001519 if (fe0->dvb.frontend) {
1520 dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
1521 fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
Trent Piephob7754d72007-05-08 18:05:16 -03001522
Steven Toth363c35f2008-10-11 11:05:50 -03001523 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Michael Krufkycb89cd32008-04-22 14:46:16 -03001524 &dev->i2c_adap, medion_cardbus.tuner_address,
1525 TUNER_PHILIPS_FMD1216ME_MK3);
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001526 }
1527 break;
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001528 case SAA7134_BOARD_VIDEOMATE_DVBT_200A:
Steven Toth363c35f2008-10-11 11:05:50 -03001529 fe0->dvb.frontend = dvb_attach(tda10046_attach,
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001530 &philips_europa_config,
1531 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001532 if (fe0->dvb.frontend) {
1533 fe0->dvb.frontend->ops.tuner_ops.init = philips_td1316_tuner_init;
1534 fe0->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001535 }
1536 break;
Hartmut Hackmann550a9a52006-11-15 21:31:54 -03001537 case SAA7134_BOARD_CINERGY_HT_PCMCIA:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001538 if (configure_tda827x_fe(dev, &cinergy_ht_config,
1539 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001540 goto detach_frontend;
Hartmut Hackmann550a9a52006-11-15 21:31:54 -03001541 break;
Michael Krufky9de271e2007-01-16 18:36:40 -03001542 case SAA7134_BOARD_CINERGY_HT_PCI:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001543 if (configure_tda827x_fe(dev, &cinergy_ht_pci_config,
1544 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001545 goto detach_frontend;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001546 break;
1547 case SAA7134_BOARD_PHILIPS_TIGER_S:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001548 if (configure_tda827x_fe(dev, &philips_tiger_s_config,
1549 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001550 goto detach_frontend;
Michael Krufky9de271e2007-01-16 18:36:40 -03001551 break;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001552 case SAA7134_BOARD_ASUS_P7131_4871:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001553 if (configure_tda827x_fe(dev, &asus_p7131_4871_config,
1554 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001555 goto detach_frontend;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001556 break;
Hartmut Hackmannf3eec0c02007-03-14 20:33:55 -03001557 case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001558 if (configure_tda827x_fe(dev, &asus_p7131_hybrid_lna_config,
1559 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001560 goto detach_frontend;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001561 break;
Edgar Simod90d9f52007-08-20 14:14:50 -03001562 case SAA7134_BOARD_AVERMEDIA_SUPER_007:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001563 if (configure_tda827x_fe(dev, &avermedia_super_007_config,
1564 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001565 goto detach_frontend;
Edgar Simod90d9f52007-08-20 14:14:50 -03001566 break;
Hermann Pitton4ba24372008-01-20 19:27:51 -03001567 case SAA7134_BOARD_TWINHAN_DTV_DVB_3056:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001568 if (configure_tda827x_fe(dev, &twinhan_dtv_dvb_3056_config,
1569 &tda827x_cfg_2_sw42) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001570 goto detach_frontend;
Hermann Pitton4ba24372008-01-20 19:27:51 -03001571 break;
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001572 case SAA7134_BOARD_PHILIPS_SNAKE:
Steven Toth363c35f2008-10-11 11:05:50 -03001573 fe0->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs,
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001574 &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001575 if (fe0->dvb.frontend) {
1576 if (dvb_attach(tda826x_attach, fe0->dvb.frontend, 0x60,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001577 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001578 wprintk("%s: No tda826x found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001579 goto detach_frontend;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001580 }
Steven Toth363c35f2008-10-11 11:05:50 -03001581 if (dvb_attach(lnbp21_attach, fe0->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001582 &dev->i2c_adap, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001583 wprintk("%s: No lnbp21 found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001584 goto detach_frontend;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001585 }
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001586 }
1587 break;
Hermann Pitton7b5b3f12008-04-22 14:42:12 -03001588 case SAA7134_BOARD_CREATIX_CTX953:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001589 if (configure_tda827x_fe(dev, &md8800_dvbt_config,
1590 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001591 goto detach_frontend;
Hermann Pitton7b5b3f12008-04-22 14:42:12 -03001592 break;
Russell Kliese6a6179b62008-04-22 14:42:12 -03001593 case SAA7134_BOARD_MSI_TVANYWHERE_AD11:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001594 if (configure_tda827x_fe(dev, &philips_tiger_s_config,
1595 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001596 goto detach_frontend;
Russell Kliese6a6179b62008-04-22 14:42:12 -03001597 break;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001598 case SAA7134_BOARD_AVERMEDIA_CARDBUS_506:
Tim Farrington6e501a32008-06-15 13:33:42 -03001599 dprintk("AverMedia E506R dvb setup\n");
1600 saa7134_set_gpio(dev, 25, 0);
1601 msleep(10);
1602 saa7134_set_gpio(dev, 25, 1);
Steven Toth363c35f2008-10-11 11:05:50 -03001603 fe0->dvb.frontend = dvb_attach(mt352_attach,
Tim Farrington6e501a32008-06-15 13:33:42 -03001604 &avermedia_xc3028_mt352_dev,
1605 &dev->i2c_adap);
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001606 attach_xc3028 = 1;
Massimo Piccionie2fc00c2008-07-11 13:48:02 -03001607 break;
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001608 case SAA7134_BOARD_MD7134_BRIDGE_2:
Steven Toth363c35f2008-10-11 11:05:50 -03001609 fe0->dvb.frontend = dvb_attach(tda10086_attach,
Hartmut Hackmann9a1b04e2008-04-09 23:07:11 -03001610 &sd1878_4m, &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001611 if (fe0->dvb.frontend) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001612 struct dvb_frontend *fe;
Steven Toth363c35f2008-10-11 11:05:50 -03001613 if (dvb_attach(dvb_pll_attach, fe0->dvb.frontend, 0x60,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001614 &dev->i2c_adap, DVB_PLL_PHILIPS_SD1878_TDA8261) == NULL) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001615 wprintk("%s: MD7134 DVB-S, no SD1878 "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001616 "found !\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001617 goto detach_frontend;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001618 }
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001619 /* we need to open the i2c gate (we know it exists) */
Steven Toth363c35f2008-10-11 11:05:50 -03001620 fe = fe0->dvb.frontend;
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001621 fe->ops.i2c_gate_ctrl(fe, 1);
1622 if (dvb_attach(isl6405_attach, fe,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001623 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001624 wprintk("%s: MD7134 DVB-S, no ISL6405 "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001625 "found !\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001626 goto detach_frontend;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001627 }
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001628 fe->ops.i2c_gate_ctrl(fe, 0);
1629 dev->original_set_voltage = fe->ops.set_voltage;
1630 fe->ops.set_voltage = md8800_set_voltage;
1631 dev->original_set_high_voltage = fe->ops.enable_high_lnb_voltage;
1632 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage;
1633 }
1634 break;
Massimo Piccionie2fc00c2008-07-11 13:48:02 -03001635 case SAA7134_BOARD_AVERMEDIA_M103:
1636 saa7134_set_gpio(dev, 25, 0);
1637 msleep(10);
1638 saa7134_set_gpio(dev, 25, 1);
Steven Toth363c35f2008-10-11 11:05:50 -03001639 fe0->dvb.frontend = dvb_attach(mt352_attach,
Massimo Piccionie2fc00c2008-07-11 13:48:02 -03001640 &avermedia_xc3028_mt352_dev,
1641 &dev->i2c_adap);
1642 attach_xc3028 = 1;
1643 break;
hermann pitton301e9d62008-09-14 17:49:14 -03001644 case SAA7134_BOARD_ASUSTeK_TIGER_3IN1:
1645 if (!use_frontend) { /* terrestrial */
1646 if (configure_tda827x_fe(dev, &asus_tiger_3in1_config,
1647 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001648 goto detach_frontend;
hermann pitton301e9d62008-09-14 17:49:14 -03001649 } else { /* satellite */
Steven Toth363c35f2008-10-11 11:05:50 -03001650 fe0->dvb.frontend = dvb_attach(tda10086_attach,
hermann pitton301e9d62008-09-14 17:49:14 -03001651 &flydvbs, &dev->i2c_adap);
Steven Toth363c35f2008-10-11 11:05:50 -03001652 if (fe0->dvb.frontend) {
hermann pitton301e9d62008-09-14 17:49:14 -03001653 if (dvb_attach(tda826x_attach,
Steven Toth363c35f2008-10-11 11:05:50 -03001654 fe0->dvb.frontend, 0x60,
hermann pitton301e9d62008-09-14 17:49:14 -03001655 &dev->i2c_adap, 0) == NULL) {
1656 wprintk("%s: Asus Tiger 3in1, no "
1657 "tda826x found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001658 goto detach_frontend;
hermann pitton301e9d62008-09-14 17:49:14 -03001659 }
Steven Toth363c35f2008-10-11 11:05:50 -03001660 if (dvb_attach(lnbp21_attach, fe0->dvb.frontend,
hermann pitton301e9d62008-09-14 17:49:14 -03001661 &dev->i2c_adap, 0, 0) == NULL) {
1662 wprintk("%s: Asus Tiger 3in1, no lnbp21"
1663 " found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001664 goto detach_frontend;
remi schwartz75c7dbc2012-05-19 06:11:47 -03001665 }
1666 }
1667 }
1668 break;
1669 case SAA7134_BOARD_ASUSTeK_PS3_100:
1670 if (!use_frontend) { /* terrestrial */
1671 if (configure_tda827x_fe(dev, &asus_ps3_100_config,
1672 &tda827x_cfg_2) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001673 goto detach_frontend;
remi schwartz75c7dbc2012-05-19 06:11:47 -03001674 } else { /* satellite */
1675 fe0->dvb.frontend = dvb_attach(tda10086_attach,
1676 &flydvbs, &dev->i2c_adap);
1677 if (fe0->dvb.frontend) {
1678 if (dvb_attach(tda826x_attach,
1679 fe0->dvb.frontend, 0x60,
1680 &dev->i2c_adap, 0) == NULL) {
1681 wprintk("%s: Asus My Cinema PS3-100, no "
1682 "tda826x found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001683 goto detach_frontend;
remi schwartz75c7dbc2012-05-19 06:11:47 -03001684 }
1685 if (dvb_attach(lnbp21_attach, fe0->dvb.frontend,
1686 &dev->i2c_adap, 0, 0) == NULL) {
1687 wprintk("%s: Asus My Cinema PS3-100, no lnbp21"
1688 " found!\n", __func__);
Peter Meerwald91268a52012-07-02 17:27:41 -03001689 goto detach_frontend;
hermann pitton301e9d62008-09-14 17:49:14 -03001690 }
1691 }
1692 }
1693 break;
Hermann Pitton028165a2008-10-04 21:37:36 -03001694 case SAA7134_BOARD_ASUSTeK_TIGER:
1695 if (configure_tda827x_fe(dev, &philips_tiger_config,
1696 &tda827x_cfg_0) < 0)
Peter Meerwald91268a52012-07-02 17:27:41 -03001697 goto detach_frontend;
Hermann Pitton028165a2008-10-04 21:37:36 -03001698 break;
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001699 case SAA7134_BOARD_BEHOLD_H6:
Mauro Carvalho Chehabb0c4be82008-12-30 19:10:09 -03001700 fe0->dvb.frontend = dvb_attach(zl10353_attach,
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001701 &behold_h6_config,
1702 &dev->i2c_adap);
Mauro Carvalho Chehabb0c4be82008-12-30 19:10:09 -03001703 if (fe0->dvb.frontend) {
1704 dvb_attach(simple_tuner_attach, fe0->dvb.frontend,
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001705 &dev->i2c_adap, 0x61,
Beholder Intl. Ltd. Dmitry Belimov4786dd62009-08-04 20:07:42 -03001706 TUNER_PHILIPS_FMD1216MEX_MK3);
Dmitri Belimov47aeba52008-12-23 03:53:03 -03001707 }
1708 break;
Beholder Intl. Ltd. Dmitry Belimov29309922009-09-30 23:02:21 -03001709 case SAA7134_BOARD_BEHOLD_X7:
1710 fe0->dvb.frontend = dvb_attach(zl10353_attach,
1711 &behold_x7_config,
1712 &dev->i2c_adap);
1713 if (fe0->dvb.frontend) {
1714 dvb_attach(xc5000_attach, fe0->dvb.frontend,
1715 &dev->i2c_adap, &behold_x7_tunerconfig);
1716 }
1717 break;
Dmitri Belimov0faa2ed2010-04-06 01:00:05 -03001718 case SAA7134_BOARD_BEHOLD_H7:
1719 fe0->dvb.frontend = dvb_attach(zl10353_attach,
1720 &behold_x7_config,
1721 &dev->i2c_adap);
1722 if (fe0->dvb.frontend) {
1723 dvb_attach(xc5000_attach, fe0->dvb.frontend,
1724 &dev->i2c_adap, &behold_x7_tunerconfig);
1725 }
1726 break;
Matthias Schwarzott04574182009-02-24 12:35:16 -03001727 case SAA7134_BOARD_AVERMEDIA_A700_PRO:
1728 case SAA7134_BOARD_AVERMEDIA_A700_HYBRID:
1729 /* Zarlink ZL10313 */
1730 fe0->dvb.frontend = dvb_attach(mt312_attach,
1731 &avertv_a700_mt312, &dev->i2c_adap);
1732 if (fe0->dvb.frontend) {
1733 if (dvb_attach(zl10036_attach, fe0->dvb.frontend,
1734 &avertv_a700_tuner, &dev->i2c_adap) == NULL) {
1735 wprintk("%s: No zl10036 found!\n",
1736 __func__);
1737 }
1738 }
1739 break;
Igor M. Liplianinecfcfec2009-08-13 21:42:21 -03001740 case SAA7134_BOARD_VIDEOMATE_S350:
1741 fe0->dvb.frontend = dvb_attach(mt312_attach,
1742 &zl10313_compro_s350_config, &dev->i2c_adap);
1743 if (fe0->dvb.frontend)
1744 if (dvb_attach(zl10039_attach, fe0->dvb.frontend,
1745 0x60, &dev->i2c_adap) == NULL)
1746 wprintk("%s: No zl10039 found!\n",
1747 __func__);
1748
1749 break;
Carlos Corbachodbe87402011-06-25 10:24:28 -03001750 case SAA7134_BOARD_VIDEOMATE_T750:
1751 fe0->dvb.frontend = dvb_attach(zl10353_attach,
1752 &videomate_t750_zl10353_config,
1753 &dev->i2c_adap);
1754 if (fe0->dvb.frontend != NULL) {
1755 if (dvb_attach(qt1010_attach,
1756 fe0->dvb.frontend,
1757 &dev->i2c_adap,
1758 &videomate_t750_qt1010_config) == NULL)
1759 wprintk("error attaching QT1010\n");
1760 }
1761 break;
Henk Vergonet6c119ff2009-09-18 20:44:37 -03001762 case SAA7134_BOARD_ZOLID_HYBRID_PCI:
1763 fe0->dvb.frontend = dvb_attach(tda10048_attach,
1764 &zolid_tda10048_config,
1765 &dev->i2c_adap);
1766 if (fe0->dvb.frontend != NULL) {
1767 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1768 &dev->i2c_adap, 0x4b,
1769 &tda829x_no_probe);
1770 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1771 0x60, &dev->i2c_adap,
1772 &zolid_tda18271_config);
1773 }
1774 break;
Michael Krufky184e7692009-06-05 04:28:28 -03001775 case SAA7134_BOARD_LEADTEK_WINFAST_DTV1000S:
1776 fe0->dvb.frontend = dvb_attach(tda10048_attach,
1777 &dtv1000s_tda10048_config,
1778 &dev->i2c_adap);
1779 if (fe0->dvb.frontend != NULL) {
1780 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1781 &dev->i2c_adap, 0x4b,
1782 &tda829x_no_probe);
1783 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1784 0x60, &dev->i2c_adap,
1785 &dtv1000s_tda18271_config);
1786 }
1787 break;
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001788 case SAA7134_BOARD_KWORLD_PCI_SBTVD_FULLSEG:
Mauro Carvalho Chehabecb71d22011-01-14 12:03:03 -03001789 /* Switch to digital mode */
1790 saa7134_tuner_callback(dev, 0,
1791 TDA18271_CALLBACK_CMD_AGC_ENABLE, 1);
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001792 fe0->dvb.frontend = dvb_attach(mb86a20s_attach,
1793 &kworld_mb86a20s_config,
1794 &dev->i2c_adap);
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001795 if (fe0->dvb.frontend != NULL) {
Mauro Carvalho Chehab6a58bc02011-01-14 09:11:21 -03001796 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1797 &dev->i2c_adap, 0x4b,
1798 &tda829x_no_probe);
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001799 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1800 0x60, &dev->i2c_adap,
1801 &kworld_tda18271_config);
Mauro Carvalho Chehab6a58bc02011-01-14 09:11:21 -03001802 fe0->dvb.frontend->ops.i2c_gate_ctrl = kworld_sbtvd_gate_ctrl;
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001803 }
Mauro Carvalho Chehab6a58bc02011-01-14 09:11:21 -03001804
1805 /* mb86a20s need to use the I2C gateway */
Mauro Carvalho Chehabf0551ef2010-10-03 07:01:26 -03001806 break;
Timothy Leece027042011-03-25 15:00:33 -03001807 case SAA7134_BOARD_MAGICPRO_PROHDTV_PRO2:
1808 fe0->dvb.frontend = dvb_attach(lgs8gxx_attach,
1809 &prohdtv_pro2_lgs8g75_config,
1810 &dev->i2c_adap);
1811 if (fe0->dvb.frontend != NULL) {
1812 dvb_attach(tda829x_attach, fe0->dvb.frontend,
1813 &dev->i2c_adap, 0x4b,
1814 &tda829x_no_probe);
1815 dvb_attach(tda18271_attach, fe0->dvb.frontend,
1816 0x60, &dev->i2c_adap,
1817 &prohdtv_pro2_tda18271_config);
1818 }
1819 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 default:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001821 wprintk("Huh? unknown DVB card?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 break;
1823 }
1824
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001825 if (attach_xc3028) {
1826 struct dvb_frontend *fe;
1827 struct xc2028_config cfg = {
1828 .i2c_adap = &dev->i2c_adap,
1829 .i2c_addr = 0x61,
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001830 };
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001831
Steven Toth363c35f2008-10-11 11:05:50 -03001832 if (!fe0->dvb.frontend)
Peter Meerwald91268a52012-07-02 17:27:41 -03001833 goto detach_frontend;
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001834
Steven Toth363c35f2008-10-11 11:05:50 -03001835 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend, &cfg);
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001836 if (!fe) {
1837 printk(KERN_ERR "%s/2: xc3028 attach failed\n",
1838 dev->name);
Peter Meerwald91268a52012-07-02 17:27:41 -03001839 goto detach_frontend;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001840 }
1841 }
1842
Steven Toth363c35f2008-10-11 11:05:50 -03001843 if (NULL == fe0->dvb.frontend) {
Trent Piephocf3c34c2007-03-07 18:19:48 -03001844 printk(KERN_ERR "%s/dvb: frontend initialization failed\n", dev->name);
Peter Meerwald91268a52012-07-02 17:27:41 -03001845 goto detach_frontend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001847 /* define general-purpose callback pointer */
Steven Toth363c35f2008-10-11 11:05:50 -03001848 fe0->dvb.frontend->callback = saa7134_tuner_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /* register everything else */
Steven Toth363c35f2008-10-11 11:05:50 -03001851 ret = videobuf_dvb_register_bus(&dev->frontends, THIS_MODULE, dev,
Michael Krufky9133aee2009-05-23 18:00:59 -03001852 &dev->pci->dev, adapter_nr, 0, NULL);
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001853
1854 /* this sequence is necessary to make the tda1004x load its firmware
1855 * and to enter analog mode of hybrid boards
1856 */
1857 if (!ret) {
Steven Toth363c35f2008-10-11 11:05:50 -03001858 if (fe0->dvb.frontend->ops.init)
1859 fe0->dvb.frontend->ops.init(fe0->dvb.frontend);
1860 if (fe0->dvb.frontend->ops.sleep)
1861 fe0->dvb.frontend->ops.sleep(fe0->dvb.frontend);
1862 if (fe0->dvb.frontend->ops.tuner_ops.sleep)
1863 fe0->dvb.frontend->ops.tuner_ops.sleep(fe0->dvb.frontend);
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001864 }
1865 return ret;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001866
Peter Meerwald91268a52012-07-02 17:27:41 -03001867detach_frontend:
Darron Broadf3f741e2008-11-11 08:50:02 -03001868 videobuf_dvb_dealloc_frontends(&dev->frontends);
1869 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871
1872static int dvb_fini(struct saa7134_dev *dev)
1873{
Steven Toth363c35f2008-10-11 11:05:50 -03001874 struct videobuf_dvb_frontend *fe0;
1875
1876 /* Get the first frontend */
1877 fe0 = videobuf_dvb_get_frontend(&dev->frontends, 1);
1878 if (!fe0)
1879 return -EINVAL;
1880
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001881 /* FIXME: I suspect that this code is bogus, since the entry for
1882 Pinnacle 300I DVB-T PAL already defines the proper init to allow
1883 the detection of mt2032 (TDA9887_PORT2_INACTIVE)
1884 */
1885 if (dev->board == SAA7134_BOARD_PINNACLE_300I_DVBT_PAL) {
1886 struct v4l2_priv_tun_config tda9887_cfg;
1887 static int on = TDA9887_PRESENT | TDA9887_PORT2_INACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001889 tda9887_cfg.tuner = TUNER_TDA9887;
1890 tda9887_cfg.priv = &on;
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /* otherwise we don't detect the tuner on next insmod */
Hans Verkuilfac69862009-01-17 12:17:14 -03001893 saa_call_all(dev, tuner, s_config, &tda9887_cfg);
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001894 } else if (dev->board == SAA7134_BOARD_MEDION_MD8800_QUADRO) {
Hartmut Hackmanne9c1ac92008-04-22 14:46:10 -03001895 if ((dev->eedata[2] == 0x07) && use_frontend) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001896 /* turn off the 2nd lnb supply */
1897 u8 data = 0x80;
1898 struct i2c_msg msg = {.addr = 0x08, .buf = &data, .flags = 0, .len = 1};
1899 struct dvb_frontend *fe;
Steven Toth363c35f2008-10-11 11:05:50 -03001900 fe = fe0->dvb.frontend;
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001901 if (fe->ops.i2c_gate_ctrl) {
1902 fe->ops.i2c_gate_ctrl(fe, 1);
1903 i2c_transfer(&dev->i2c_adap, &msg, 1);
1904 fe->ops.i2c_gate_ctrl(fe, 0);
1905 }
1906 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001907 }
Darron Broadf3f741e2008-11-11 08:50:02 -03001908 videobuf_dvb_unregister_bus(&dev->frontends);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return 0;
1910}
1911
1912static struct saa7134_mpeg_ops dvb_ops = {
1913 .type = SAA7134_MPEG_DVB,
1914 .init = dvb_init,
1915 .fini = dvb_fini,
1916};
1917
1918static int __init dvb_register(void)
1919{
1920 return saa7134_ts_register(&dvb_ops);
1921}
1922
1923static void __exit dvb_unregister(void)
1924{
1925 saa7134_ts_unregister(&dvb_ops);
1926}
1927
1928module_init(dvb_register);
1929module_exit(dvb_unregister);
1930
1931/* ------------------------------------------------------------------ */
1932/*
1933 * Local variables:
1934 * c-basic-offset: 8
1935 * End:
1936 */