blob: 653107c8380375b707436d25053aeb4a0abfb924 [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>
27#include <linux/slab.h>
28#include <linux/delay.h>
29#include <linux/kthread.h>
30#include <linux/suspend.h>
31
32#include "saa7134-reg.h"
33#include "saa7134.h"
Michael Krufky5e453dc2006-01-09 15:32:31 -020034#include <media/v4l2-common.h>
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -020035#include "dvb-pll.h"
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -030036#include <dvb_frontend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Andrew de Quincey1f10c7a2006-08-08 09:10:09 -030038#include "mt352.h"
39#include "mt352_priv.h" /* FIXME */
40#include "tda1004x.h"
41#include "nxt200x.h"
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -030042#include "tuner-xc2028.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 Krufky8ce47da2007-04-27 12:31:14 -030051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
53MODULE_LICENSE("GPL");
54
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030055static unsigned int antenna_pwr;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057module_param(antenna_pwr, int, 0444);
58MODULE_PARM_DESC(antenna_pwr,"enable antenna power (Pinnacle 300i)");
59
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030060static int use_frontend;
Stephan Berberigb331daa2006-12-20 09:37:05 -030061module_param(use_frontend, int, 0644);
62MODULE_PARM_DESC(use_frontend,"for cards with multiple frontends (0: terrestrial, 1: satellite)");
Nico Sabbi1f683cd2006-11-15 22:06:56 -030063
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030064static int debug;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -030065module_param(debug, int, 0644);
66MODULE_PARM_DESC(debug, "Turn on/off module debugging (default:off).");
67
Janne Grunau78e920062008-04-09 19:13:13 -030068DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
69
Trent Piephocf3c34c2007-03-07 18:19:48 -030070#define dprintk(fmt, arg...) do { if (debug) \
71 printk(KERN_DEBUG "%s/dvb: " fmt, dev->name , ## arg); } while(0)
72
73/* Print a warning */
74#define wprintk(fmt, arg...) \
75 printk(KERN_WARNING "%s/dvb: " fmt, dev->name, ## arg)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -030076
77/* ------------------------------------------------------------------
78 * mt352 based DVB-T cards
79 */
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static int pinnacle_antenna_pwr(struct saa7134_dev *dev, int on)
82{
83 u32 ok;
84
85 if (!on) {
86 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 26));
87 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
88 return 0;
89 }
90
91 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 26));
92 saa_setl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
93 udelay(10);
94
95 saa_setl(SAA7134_GPIO_GPMODE0 >> 2, (1 << 28));
96 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 28));
97 udelay(10);
98 saa_setl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 28));
99 udelay(10);
100 ok = saa_readl(SAA7134_GPIO_GPSTATUS0) & (1 << 27);
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300101 dprintk("%s %s\n", __func__, ok ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 if (!ok)
104 saa_clearl(SAA7134_GPIO_GPSTATUS0 >> 2, (1 << 26));
105 return ok;
106}
107
108static int mt352_pinnacle_init(struct dvb_frontend* fe)
109{
110 static u8 clock_config [] = { CLOCK_CTL, 0x3d, 0x28 };
111 static u8 reset [] = { RESET, 0x80 };
112 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
113 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
114 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x31 };
115 static u8 fsm_ctl_cfg[] = { 0x7b, 0x04 };
116 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x0f };
117 static u8 scan_ctl_cfg [] = { SCAN_CTL, 0x0d };
118 static u8 irq_cfg [] = { INTERRUPT_EN_0, 0x00, 0x00, 0x00, 0x00 };
119 struct saa7134_dev *dev= fe->dvb->priv;
120
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300121 dprintk("%s called\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 mt352_write(fe, clock_config, sizeof(clock_config));
124 udelay(200);
125 mt352_write(fe, reset, sizeof(reset));
126 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
127 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
128 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
129 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
130
131 mt352_write(fe, fsm_ctl_cfg, sizeof(fsm_ctl_cfg));
132 mt352_write(fe, scan_ctl_cfg, sizeof(scan_ctl_cfg));
133 mt352_write(fe, irq_cfg, sizeof(irq_cfg));
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return 0;
136}
137
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200138static int mt352_aver777_init(struct dvb_frontend* fe)
139{
140 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x2d };
141 static u8 reset [] = { RESET, 0x80 };
142 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
143 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
144 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x33 };
145
146 mt352_write(fe, clock_config, sizeof(clock_config));
147 udelay(200);
148 mt352_write(fe, reset, sizeof(reset));
149 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
150 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
151 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
152
153 return 0;
154}
155
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300156static int mt352_aver_a16d_init(struct dvb_frontend *fe)
157{
158 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x2d };
159 static u8 reset [] = { RESET, 0x80 };
160 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
161 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0xa0 };
162 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x33 };
163
164 mt352_write(fe, clock_config, sizeof(clock_config));
165 udelay(200);
166 mt352_write(fe, reset, sizeof(reset));
167 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
168 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
169 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
170
171 return 0;
172}
173
174
175
Andrew de Quincey0463f122006-05-16 17:22:02 -0300176static int mt352_pinnacle_tuner_set_params(struct dvb_frontend* fe,
177 struct dvb_frontend_parameters* params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300179 u8 off[] = { 0x00, 0xf1};
180 u8 on[] = { 0x00, 0x71};
181 struct i2c_msg msg = {.addr=0x43, .flags=0, .buf=off, .len = sizeof(off)};
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 struct saa7134_dev *dev = fe->dvb->priv;
184 struct v4l2_frequency f;
185
186 /* set frequency (mt2050) */
187 f.tuner = 0;
188 f.type = V4L2_TUNER_DIGITAL_TV;
189 f.frequency = params->frequency / 1000 * 16 / 1000;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300190 if (fe->ops.i2c_gate_ctrl)
191 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300192 i2c_transfer(&dev->i2c_adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 saa7134_i2c_call_clients(dev,VIDIOC_S_FREQUENCY,&f);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300194 msg.buf = on;
Patrick Boettcherdea74862006-05-14 05:01:31 -0300195 if (fe->ops.i2c_gate_ctrl)
196 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmanndf8cf702006-03-03 12:09:26 -0300197 i2c_transfer(&dev->i2c_adap, &msg, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 pinnacle_antenna_pwr(dev, antenna_pwr);
200
201 /* mt352 setup */
Andrew de Quincey0463f122006-05-16 17:22:02 -0300202 return mt352_pinnacle_init(fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static struct mt352_config pinnacle_300i = {
206 .demod_address = 0x3c >> 1,
207 .adc_clock = 20333,
208 .if2 = 36150,
209 .no_tuner = 1,
210 .demod_init = mt352_pinnacle_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200212
213static struct mt352_config avermedia_777 = {
214 .demod_address = 0xf,
215 .demod_init = mt352_aver777_init,
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200216};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300218static struct mt352_config avermedia_16d = {
219 .demod_address = 0xf,
220 .demod_init = mt352_aver_a16d_init,
221};
222
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -0300223static struct mt352_config avermedia_e506r_mt352_dev = {
224 .demod_address = (0x1e >> 1),
225 .no_tuner = 1,
226};
227
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300228/* ==================================================================
229 * tda1004x based DVB-T cards, helper functions
230 */
231
232static int philips_tda1004x_request_firmware(struct dvb_frontend *fe,
233 const struct firmware **fw, char *name)
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700234{
235 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300236 return request_firmware(fw, name, &dev->pci->dev);
237}
238
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300239/* ------------------------------------------------------------------
240 * these tuners are tu1216, td1316(a)
241 */
242
243static int philips_tda6651_pll_set(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
244{
245 struct saa7134_dev *dev = fe->dvb->priv;
246 struct tda1004x_state *state = fe->demodulator_priv;
247 u8 addr = state->config->tuner_address;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700248 u8 tuner_buf[4];
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800249 struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = tuner_buf,.len =
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700250 sizeof(tuner_buf) };
251 int tuner_frequency = 0;
252 u8 band, cp, filter;
253
254 /* determine charge pump */
255 tuner_frequency = params->frequency + 36166000;
256 if (tuner_frequency < 87000000)
257 return -EINVAL;
258 else if (tuner_frequency < 130000000)
259 cp = 3;
260 else if (tuner_frequency < 160000000)
261 cp = 5;
262 else if (tuner_frequency < 200000000)
263 cp = 6;
264 else if (tuner_frequency < 290000000)
265 cp = 3;
266 else if (tuner_frequency < 420000000)
267 cp = 5;
268 else if (tuner_frequency < 480000000)
269 cp = 6;
270 else if (tuner_frequency < 620000000)
271 cp = 3;
272 else if (tuner_frequency < 830000000)
273 cp = 5;
274 else if (tuner_frequency < 895000000)
275 cp = 7;
276 else
277 return -EINVAL;
278
279 /* determine band */
280 if (params->frequency < 49000000)
281 return -EINVAL;
282 else if (params->frequency < 161000000)
283 band = 1;
284 else if (params->frequency < 444000000)
285 band = 2;
286 else if (params->frequency < 861000000)
287 band = 4;
288 else
289 return -EINVAL;
290
291 /* setup PLL filter */
292 switch (params->u.ofdm.bandwidth) {
293 case BANDWIDTH_6_MHZ:
294 filter = 0;
295 break;
296
297 case BANDWIDTH_7_MHZ:
298 filter = 0;
299 break;
300
301 case BANDWIDTH_8_MHZ:
302 filter = 1;
303 break;
304
305 default:
306 return -EINVAL;
307 }
308
309 /* calculate divisor
310 * ((36166000+((1000000/6)/2)) + Finput)/(1000000/6)
311 */
312 tuner_frequency = (((params->frequency / 1000) * 6) + 217496) / 1000;
313
314 /* setup tuner buffer */
315 tuner_buf[0] = (tuner_frequency >> 8) & 0x7f;
316 tuner_buf[1] = tuner_frequency & 0xff;
317 tuner_buf[2] = 0xca;
318 tuner_buf[3] = (cp << 5) | (filter << 3) | band;
319
Patrick Boettcherdea74862006-05-14 05:01:31 -0300320 if (fe->ops.i2c_gate_ctrl)
321 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300322 if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1) {
Trent Piephocf3c34c2007-03-07 18:19:48 -0300323 wprintk("could not write to tuner at addr: 0x%02x\n",
324 addr << 1);
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700325 return -EIO;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300326 }
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700327 msleep(1);
328 return 0;
329}
330
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300331static int philips_tu1216_init(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800332{
333 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300334 struct tda1004x_state *state = fe->demodulator_priv;
335 u8 addr = state->config->tuner_address;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800336 static u8 tu1216_init[] = { 0x0b, 0xf5, 0x85, 0xab };
337 struct i2c_msg tuner_msg = {.addr = addr,.flags = 0,.buf = tu1216_init,.len = sizeof(tu1216_init) };
338
339 /* setup PLL configuration */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300340 if (fe->ops.i2c_gate_ctrl)
341 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800342 if (i2c_transfer(&dev->i2c_adap, &tuner_msg, 1) != 1)
343 return -EIO;
344 msleep(1);
345
346 return 0;
347}
348
349/* ------------------------------------------------------------------ */
350
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800351static struct tda1004x_config philips_tu1216_60_config = {
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700352 .demod_address = 0x8,
353 .invert = 1,
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800354 .invert_oclk = 0,
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700355 .xtal_freq = TDA10046_XTAL_4M,
356 .agc_config = TDA10046_AGC_DEFAULT,
357 .if_freq = TDA10046_FREQ_3617,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300358 .tuner_address = 0x60,
359 .request_firmware = philips_tda1004x_request_firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800362static struct tda1004x_config philips_tu1216_61_config = {
363
364 .demod_address = 0x8,
365 .invert = 1,
366 .invert_oclk = 0,
367 .xtal_freq = TDA10046_XTAL_4M,
368 .agc_config = TDA10046_AGC_DEFAULT,
369 .if_freq = TDA10046_FREQ_3617,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300370 .tuner_address = 0x61,
371 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800372};
373
374/* ------------------------------------------------------------------ */
375
Hartmut Hackmanncbb94522006-10-30 20:00:16 -0300376static int philips_td1316_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800377{
378 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300379 struct tda1004x_state *state = fe->demodulator_priv;
380 u8 addr = state->config->tuner_address;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800381 static u8 msg[] = { 0x0b, 0xf5, 0x86, 0xab };
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300382 struct i2c_msg init_msg = {.addr = addr,.flags = 0,.buf = msg,.len = sizeof(msg) };
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800383
384 /* setup PLL configuration */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300385 if (fe->ops.i2c_gate_ctrl)
386 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800387 if (i2c_transfer(&dev->i2c_adap, &init_msg, 1) != 1)
388 return -EIO;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800389 return 0;
390}
391
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300392static int philips_td1316_tuner_set_params(struct dvb_frontend *fe, struct dvb_frontend_parameters *params)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800393{
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300394 return philips_tda6651_pll_set(fe, params);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800395}
396
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300397static int philips_td1316_tuner_sleep(struct dvb_frontend *fe)
398{
399 struct saa7134_dev *dev = fe->dvb->priv;
400 struct tda1004x_state *state = fe->demodulator_priv;
401 u8 addr = state->config->tuner_address;
402 static u8 msg[] = { 0x0b, 0xdc, 0x86, 0xa4 };
403 struct i2c_msg analog_msg = {.addr = addr,.flags = 0,.buf = msg,.len = sizeof(msg) };
404
405 /* switch the tuner to analog mode */
406 if (fe->ops.i2c_gate_ctrl)
407 fe->ops.i2c_gate_ctrl(fe, 1);
408 if (i2c_transfer(&dev->i2c_adap, &analog_msg, 1) != 1)
409 return -EIO;
410 return 0;
411}
412
413/* ------------------------------------------------------------------ */
414
Hartmut Hackmanncbb94522006-10-30 20:00:16 -0300415static int philips_europa_tuner_init(struct dvb_frontend *fe)
416{
417 struct saa7134_dev *dev = fe->dvb->priv;
418 static u8 msg[] = { 0x00, 0x40};
419 struct i2c_msg init_msg = {.addr = 0x43,.flags = 0,.buf = msg,.len = sizeof(msg) };
420
421
422 if (philips_td1316_tuner_init(fe))
423 return -EIO;
424 msleep(1);
425 if (i2c_transfer(&dev->i2c_adap, &init_msg, 1) != 1)
426 return -EIO;
427
428 return 0;
429}
430
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300431static int philips_europa_tuner_sleep(struct dvb_frontend *fe)
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800432{
433 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800434
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300435 static u8 msg[] = { 0x00, 0x14 };
436 struct i2c_msg analog_msg = {.addr = 0x43,.flags = 0,.buf = msg,.len = sizeof(msg) };
437
438 if (philips_td1316_tuner_sleep(fe))
439 return -EIO;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800440
441 /* switch the board to analog mode */
Patrick Boettcherdea74862006-05-14 05:01:31 -0300442 if (fe->ops.i2c_gate_ctrl)
443 fe->ops.i2c_gate_ctrl(fe, 1);
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800444 i2c_transfer(&dev->i2c_adap, &analog_msg, 1);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300445 return 0;
446}
447
448static int philips_europa_demod_sleep(struct dvb_frontend *fe)
449{
450 struct saa7134_dev *dev = fe->dvb->priv;
451
452 if (dev->original_demod_sleep)
453 dev->original_demod_sleep(fe);
Patrick Boettcherdea74862006-05-14 05:01:31 -0300454 fe->ops.i2c_gate_ctrl(fe, 1);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300455 return 0;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800456}
457
458static struct tda1004x_config philips_europa_config = {
459
460 .demod_address = 0x8,
461 .invert = 0,
462 .invert_oclk = 0,
463 .xtal_freq = TDA10046_XTAL_4M,
464 .agc_config = TDA10046_AGC_IFO_AUTO_POS,
465 .if_freq = TDA10046_FREQ_052,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300466 .tuner_address = 0x61,
467 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -0800468};
469
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700470static struct tda1004x_config medion_cardbus = {
471 .demod_address = 0x08,
472 .invert = 1,
473 .invert_oclk = 0,
474 .xtal_freq = TDA10046_XTAL_16M,
475 .agc_config = TDA10046_AGC_IFO_AUTO_NEG,
476 .if_freq = TDA10046_FREQ_3613,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300477 .tuner_address = 0x61,
478 .request_firmware = philips_tda1004x_request_firmware
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700479};
480
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300481/* ------------------------------------------------------------------
482 * tda 1004x based cards with philips silicon tuner
483 */
484
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300485static int tda8290_i2c_gate_ctrl( struct dvb_frontend* fe, int enable)
486{
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300487 struct tda1004x_state *state = fe->demodulator_priv;
488
489 u8 addr = state->config->i2c_gate;
490 static u8 tda8290_close[] = { 0x21, 0xc0};
491 static u8 tda8290_open[] = { 0x21, 0x80};
492 struct i2c_msg tda8290_msg = {.addr = addr,.flags = 0, .len = 2};
493 if (enable) {
494 tda8290_msg.buf = tda8290_close;
495 } else {
496 tda8290_msg.buf = tda8290_open;
497 }
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300498 if (i2c_transfer(state->i2c, &tda8290_msg, 1) != 1) {
Trent Piephocf3c34c2007-03-07 18:19:48 -0300499 struct saa7134_dev *dev = fe->dvb->priv;
500 wprintk("could not access tda8290 I2C gate\n");
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300501 return -EIO;
502 }
503 msleep(20);
504 return 0;
505}
506
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300507static int philips_tda827x_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300508{
509 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300510 struct tda1004x_state *state = fe->demodulator_priv;
Michael Krufky8ce47da2007-04-27 12:31:14 -0300511
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300512 switch (state->config->antenna_switch) {
513 case 0: break;
514 case 1: dprintk("setting GPIO21 to 0 (TV antenna?)\n");
515 saa7134_set_gpio(dev, 21, 0);
516 break;
517 case 2: dprintk("setting GPIO21 to 1 (Radio antenna?)\n");
518 saa7134_set_gpio(dev, 21, 1);
519 break;
520 }
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300521 return 0;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800522}
523
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300524static int philips_tda827x_tuner_sleep(struct dvb_frontend *fe)
525{
526 struct saa7134_dev *dev = fe->dvb->priv;
527 struct tda1004x_state *state = fe->demodulator_priv;
Michael Krufky8ce47da2007-04-27 12:31:14 -0300528
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300529 switch (state->config->antenna_switch) {
530 case 0: break;
531 case 1: dprintk("setting GPIO21 to 1 (Radio antenna?)\n");
532 saa7134_set_gpio(dev, 21, 1);
533 break;
534 case 2: dprintk("setting GPIO21 to 0 (TV antenna?)\n");
535 saa7134_set_gpio(dev, 21, 0);
536 break;
537 }
538 return 0;
539}
540
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300541static int configure_tda827x_fe(struct saa7134_dev *dev,
542 struct tda1004x_config *cdec_conf,
543 struct tda827x_config *tuner_conf)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300544{
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300545 dev->dvb.frontend = dvb_attach(tda10046_attach, cdec_conf, &dev->i2c_adap);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300546 if (dev->dvb.frontend) {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300547 if (cdec_conf->i2c_gate)
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300548 dev->dvb.frontend->ops.i2c_gate_ctrl = tda8290_i2c_gate_ctrl;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300549 if (dvb_attach(tda827x_attach, dev->dvb.frontend,
550 cdec_conf->tuner_address,
551 &dev->i2c_adap, tuner_conf))
552 return 0;
553
554 wprintk("no tda827x tuner found at addr: %02x\n",
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300555 cdec_conf->tuner_address);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300556 }
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -0300557 return -EINVAL;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300558}
559
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800560/* ------------------------------------------------------------------ */
Edgar Simo261f5082007-08-20 14:06:00 -0300561
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300562static struct tda827x_config tda827x_cfg_0 = {
563 .tuner_callback = saa7134_tuner_callback,
564 .init = philips_tda827x_tuner_init,
565 .sleep = philips_tda827x_tuner_sleep,
566 .config = 0,
567 .switch_addr = 0
568};
569
570static struct tda827x_config tda827x_cfg_1 = {
571 .tuner_callback = saa7134_tuner_callback,
572 .init = philips_tda827x_tuner_init,
573 .sleep = philips_tda827x_tuner_sleep,
574 .config = 1,
575 .switch_addr = 0x4b
576};
577
578static struct tda827x_config tda827x_cfg_2 = {
579 .tuner_callback = saa7134_tuner_callback,
580 .init = philips_tda827x_tuner_init,
581 .sleep = philips_tda827x_tuner_sleep,
582 .config = 2,
583 .switch_addr = 0x4b
584};
585
586static struct tda827x_config tda827x_cfg_2_sw42 = {
587 .tuner_callback = saa7134_tuner_callback,
588 .init = philips_tda827x_tuner_init,
589 .sleep = philips_tda827x_tuner_sleep,
590 .config = 2,
591 .switch_addr = 0x42
592};
593
594/* ------------------------------------------------------------------ */
595
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300596static struct tda1004x_config tda827x_lifeview_config = {
597 .demod_address = 0x08,
598 .invert = 1,
599 .invert_oclk = 0,
600 .xtal_freq = TDA10046_XTAL_16M,
601 .agc_config = TDA10046_AGC_TDA827X,
602 .gpio_config = TDA10046_GP11_I,
603 .if_freq = TDA10046_FREQ_045,
604 .tuner_address = 0x60,
605 .request_firmware = philips_tda1004x_request_firmware
606};
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800607
608static struct tda1004x_config philips_tiger_config = {
609 .demod_address = 0x08,
610 .invert = 1,
611 .invert_oclk = 0,
612 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300613 .agc_config = TDA10046_AGC_TDA827X,
614 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300615 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300616 .i2c_gate = 0x4b,
617 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300618 .antenna_switch= 1,
619 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300620};
Hartmut Hackmann550a9a52006-11-15 21:31:54 -0300621
622static struct tda1004x_config cinergy_ht_config = {
623 .demod_address = 0x08,
624 .invert = 1,
625 .invert_oclk = 0,
626 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300627 .agc_config = TDA10046_AGC_TDA827X,
628 .gpio_config = TDA10046_GP01_I,
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800629 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300630 .i2c_gate = 0x4b,
631 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300632 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800633};
634
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300635static struct tda1004x_config cinergy_ht_pci_config = {
636 .demod_address = 0x08,
637 .invert = 1,
638 .invert_oclk = 0,
639 .xtal_freq = TDA10046_XTAL_16M,
640 .agc_config = TDA10046_AGC_TDA827X,
641 .gpio_config = TDA10046_GP01_I,
642 .if_freq = TDA10046_FREQ_045,
643 .i2c_gate = 0x4b,
644 .tuner_address = 0x60,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300645 .request_firmware = philips_tda1004x_request_firmware
646};
647
648static struct tda1004x_config philips_tiger_s_config = {
649 .demod_address = 0x08,
650 .invert = 1,
651 .invert_oclk = 0,
652 .xtal_freq = TDA10046_XTAL_16M,
653 .agc_config = TDA10046_AGC_TDA827X,
654 .gpio_config = TDA10046_GP01_I,
655 .if_freq = TDA10046_FREQ_045,
656 .i2c_gate = 0x4b,
657 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300658 .antenna_switch= 1,
659 .request_firmware = philips_tda1004x_request_firmware
660};
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200661
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300662static struct tda1004x_config pinnacle_pctv_310i_config = {
663 .demod_address = 0x08,
664 .invert = 1,
665 .invert_oclk = 0,
666 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300667 .agc_config = TDA10046_AGC_TDA827X,
668 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300669 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300670 .i2c_gate = 0x4b,
671 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300672 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -0300673};
674
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300675static struct tda1004x_config hauppauge_hvr_1110_config = {
676 .demod_address = 0x08,
677 .invert = 1,
678 .invert_oclk = 0,
679 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300680 .agc_config = TDA10046_AGC_TDA827X,
681 .gpio_config = TDA10046_GP11_I,
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300682 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300683 .i2c_gate = 0x4b,
684 .tuner_address = 0x61,
685 .request_firmware = philips_tda1004x_request_firmware
Thomas Gentyc6e53da2006-11-05 14:17:30 -0300686};
687
Hartmut Hackmann83646812006-10-12 20:38:51 -0300688static struct tda1004x_config asus_p7131_dual_config = {
689 .demod_address = 0x08,
690 .invert = 1,
691 .invert_oclk = 0,
692 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300693 .agc_config = TDA10046_AGC_TDA827X,
694 .gpio_config = TDA10046_GP11_I,
Hartmut Hackmann83646812006-10-12 20:38:51 -0300695 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300696 .i2c_gate = 0x4b,
697 .tuner_address = 0x61,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300698 .antenna_switch= 2,
699 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmann83646812006-10-12 20:38:51 -0300700};
701
Nico Sabbi420f32f2006-03-03 12:11:28 -0300702static struct tda1004x_config lifeview_trio_config = {
703 .demod_address = 0x09,
704 .invert = 1,
705 .invert_oclk = 0,
706 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300707 .agc_config = TDA10046_AGC_TDA827X,
708 .gpio_config = TDA10046_GP00_I,
Nico Sabbi420f32f2006-03-03 12:11:28 -0300709 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300710 .tuner_address = 0x60,
711 .request_firmware = philips_tda1004x_request_firmware
Nico Sabbi420f32f2006-03-03 12:11:28 -0300712};
713
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300714static struct tda1004x_config tevion_dvbt220rf_config = {
715 .demod_address = 0x08,
716 .invert = 1,
717 .invert_oclk = 0,
718 .xtal_freq = TDA10046_XTAL_16M,
719 .agc_config = TDA10046_AGC_TDA827X,
720 .gpio_config = TDA10046_GP11_I,
721 .if_freq = TDA10046_FREQ_045,
722 .tuner_address = 0x60,
723 .request_firmware = philips_tda1004x_request_firmware
724};
Nico Sabbi420f32f2006-03-03 12:11:28 -0300725
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300726static struct tda1004x_config md8800_dvbt_config = {
727 .demod_address = 0x08,
728 .invert = 1,
729 .invert_oclk = 0,
730 .xtal_freq = TDA10046_XTAL_16M,
731 .agc_config = TDA10046_AGC_TDA827X,
732 .gpio_config = TDA10046_GP01_I,
733 .if_freq = TDA10046_FREQ_045,
734 .i2c_gate = 0x4b,
735 .tuner_address = 0x60,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300736 .request_firmware = philips_tda1004x_request_firmware
737};
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200738
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300739static struct tda1004x_config asus_p7131_4871_config = {
740 .demod_address = 0x08,
741 .invert = 1,
742 .invert_oclk = 0,
743 .xtal_freq = TDA10046_XTAL_16M,
744 .agc_config = TDA10046_AGC_TDA827X,
745 .gpio_config = TDA10046_GP01_I,
746 .if_freq = TDA10046_FREQ_045,
747 .i2c_gate = 0x4b,
748 .tuner_address = 0x61,
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300749 .antenna_switch= 2,
750 .request_firmware = philips_tda1004x_request_firmware
751};
752
Hartmut Hackmannf3eec0c02007-03-14 20:33:55 -0300753static struct tda1004x_config asus_p7131_hybrid_lna_config = {
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300754 .demod_address = 0x08,
755 .invert = 1,
756 .invert_oclk = 0,
757 .xtal_freq = TDA10046_XTAL_16M,
758 .agc_config = TDA10046_AGC_TDA827X,
759 .gpio_config = TDA10046_GP11_I,
760 .if_freq = TDA10046_FREQ_045,
761 .i2c_gate = 0x4b,
762 .tuner_address = 0x61,
Hartmut Hackmanne06cea42007-03-13 20:58:29 -0300763 .antenna_switch= 2,
764 .request_firmware = philips_tda1004x_request_firmware
765};
Edgar Simo261f5082007-08-20 14:06:00 -0300766
Simon Farnsworthb39423a2007-05-01 10:01:20 -0300767static struct tda1004x_config kworld_dvb_t_210_config = {
768 .demod_address = 0x08,
769 .invert = 1,
770 .invert_oclk = 0,
771 .xtal_freq = TDA10046_XTAL_16M,
772 .agc_config = TDA10046_AGC_TDA827X,
773 .gpio_config = TDA10046_GP11_I,
774 .if_freq = TDA10046_FREQ_045,
775 .i2c_gate = 0x4b,
776 .tuner_address = 0x61,
Simon Farnsworthb39423a2007-05-01 10:01:20 -0300777 .antenna_switch= 1,
778 .request_firmware = philips_tda1004x_request_firmware
779};
Edgar Simo261f5082007-08-20 14:06:00 -0300780
Edgar Simod90d9f52007-08-20 14:14:50 -0300781static struct tda1004x_config avermedia_super_007_config = {
782 .demod_address = 0x08,
783 .invert = 1,
784 .invert_oclk = 0,
785 .xtal_freq = TDA10046_XTAL_16M,
786 .agc_config = TDA10046_AGC_TDA827X,
787 .gpio_config = TDA10046_GP01_I,
788 .if_freq = TDA10046_FREQ_045,
789 .i2c_gate = 0x4b,
790 .tuner_address = 0x60,
Edgar Simod90d9f52007-08-20 14:14:50 -0300791 .antenna_switch= 1,
792 .request_firmware = philips_tda1004x_request_firmware
793};
794
Hermann Pitton4ba24372008-01-20 19:27:51 -0300795static struct tda1004x_config twinhan_dtv_dvb_3056_config = {
796 .demod_address = 0x08,
797 .invert = 1,
798 .invert_oclk = 0,
799 .xtal_freq = TDA10046_XTAL_16M,
800 .agc_config = TDA10046_AGC_TDA827X,
801 .gpio_config = TDA10046_GP01_I,
802 .if_freq = TDA10046_FREQ_045,
803 .i2c_gate = 0x42,
804 .tuner_address = 0x61,
Hermann Pitton4ba24372008-01-20 19:27:51 -0300805 .antenna_switch = 1,
806 .request_firmware = philips_tda1004x_request_firmware
807};
808
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300809/* ------------------------------------------------------------------
810 * special case: this card uses saa713x GPIO22 for the mode switch
811 */
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200812
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300813static int ads_duo_tuner_init(struct dvb_frontend *fe)
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200814{
815 struct saa7134_dev *dev = fe->dvb->priv;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300816 philips_tda827x_tuner_init(fe);
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200817 /* route TDA8275a AGC input to the channel decoder */
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300818 saa7134_set_gpio(dev, 22, 1);
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200819 return 0;
820}
821
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300822static int ads_duo_tuner_sleep(struct dvb_frontend *fe)
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200823{
824 struct saa7134_dev *dev = fe->dvb->priv;
825 /* route TDA8275a AGC input to the analog IF chip*/
Hartmut Hackmann06be3032007-04-27 12:31:15 -0300826 saa7134_set_gpio(dev, 22, 0);
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300827 philips_tda827x_tuner_sleep(fe);
Andrew de Quinceya79ddae2006-04-18 17:47:11 -0300828 return 0;
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200829}
830
Michael Krufky8ce47da2007-04-27 12:31:14 -0300831static struct tda827x_config ads_duo_cfg = {
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300832 .tuner_callback = saa7134_tuner_callback,
Michael Krufky8ce47da2007-04-27 12:31:14 -0300833 .init = ads_duo_tuner_init,
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -0300834 .sleep = ads_duo_tuner_sleep,
835 .config = 0
Michael Krufky8ce47da2007-04-27 12:31:14 -0300836};
837
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200838static struct tda1004x_config ads_tech_duo_config = {
839 .demod_address = 0x08,
840 .invert = 1,
841 .invert_oclk = 0,
842 .xtal_freq = TDA10046_XTAL_16M,
Hartmut Hackmann1bb0e862007-04-27 12:31:10 -0300843 .agc_config = TDA10046_AGC_TDA827X,
844 .gpio_config = TDA10046_GP00_I,
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200845 .if_freq = TDA10046_FREQ_045,
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300846 .tuner_address = 0x61,
847 .request_firmware = philips_tda1004x_request_firmware
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -0200848};
849
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300850/* ==================================================================
851 * tda10086 based DVB-S cards, helper functions
852 */
Hartmut Hackmann5eda2272006-08-07 14:03:32 -0300853
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -0300854static struct tda10086_config flydvbs = {
855 .demod_address = 0x0e,
856 .invert = 0,
Hartmut Hackmannea75baf2008-02-09 23:54:24 -0300857 .diseqc_tone = 0,
Hartmut Hackmann9a1b04e2008-04-09 23:07:11 -0300858 .xtal_freq = TDA10086_XTAL_16M,
859};
860
861static struct tda10086_config sd1878_4m = {
862 .demod_address = 0x0e,
863 .invert = 0,
864 .diseqc_tone = 0,
865 .xtal_freq = TDA10086_XTAL_4M,
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -0300866};
867
Hartmut Hackmann1b1cee32008-04-22 14:42:12 -0300868/* ------------------------------------------------------------------
869 * special case: lnb supply is connected to the gated i2c
870 */
871
872static int md8800_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
873{
874 int res = -EIO;
875 struct saa7134_dev *dev = fe->dvb->priv;
876 if (fe->ops.i2c_gate_ctrl) {
877 fe->ops.i2c_gate_ctrl(fe, 1);
878 if (dev->original_set_voltage)
879 res = dev->original_set_voltage(fe, voltage);
880 fe->ops.i2c_gate_ctrl(fe, 0);
881 }
882 return res;
883};
884
885static int md8800_set_high_voltage(struct dvb_frontend *fe, long arg)
886{
887 int res = -EIO;
888 struct saa7134_dev *dev = fe->dvb->priv;
889 if (fe->ops.i2c_gate_ctrl) {
890 fe->ops.i2c_gate_ctrl(fe, 1);
891 if (dev->original_set_high_voltage)
892 res = dev->original_set_high_voltage(fe, arg);
893 fe->ops.i2c_gate_ctrl(fe, 0);
894 }
895 return res;
896};
897
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -0300898static int md8800_set_voltage2(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
899{
900 struct saa7134_dev *dev = fe->dvb->priv;
901 u8 wbuf[2] = { 0x1f, 00 };
902 u8 rbuf;
903 struct i2c_msg msg[] = { { .addr = 0x08, .flags = 0, .buf = wbuf, .len = 1 },
904 { .addr = 0x08, .flags = I2C_M_RD, .buf = &rbuf, .len = 1 } };
905
906 if (i2c_transfer(&dev->i2c_adap, msg, 2) != 2)
907 return -EIO;
908 /* NOTE: this assumes that gpo1 is used, it might be bit 5 (gpo2) */
909 if (voltage == SEC_VOLTAGE_18)
910 wbuf[1] = rbuf | 0x10;
911 else
912 wbuf[1] = rbuf & 0xef;
913 msg[0].len = 2;
914 i2c_transfer(&dev->i2c_adap, msg, 1);
915 return 0;
916}
917
918static int md8800_set_high_voltage2(struct dvb_frontend *fe, long arg)
919{
920 struct saa7134_dev *dev = fe->dvb->priv;
921 wprintk("%s: sorry can't set high LNB supply voltage from here\n", __func__);
922 return -EIO;
923}
924
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300925/* ==================================================================
926 * nxt200x based ATSC cards, helper functions
927 */
Hartmut Hackmann90e9df72005-11-08 21:38:42 -0800928
Michael Krufky3b64e8e2005-11-08 21:38:20 -0800929static struct nxt200x_config avertvhda180 = {
930 .demod_address = 0x0a,
Michael Krufky3b64e8e2005-11-08 21:38:20 -0800931};
Andrew Burri3e1410a2006-02-27 00:08:23 -0300932
933static struct nxt200x_config kworldatsc110 = {
934 .demod_address = 0x0a,
Andrew Burri3e1410a2006-02-27 00:08:23 -0300935};
Michael Krufky3b64e8e2005-11-08 21:38:20 -0800936
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300937/* ==================================================================
938 * Core code
939 */
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941static int dvb_init(struct saa7134_dev *dev)
942{
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -0300943 int ret;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -0300944 int attach_xc3028 = 0;
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /* init struct videobuf_dvb */
947 dev->ts.nr_bufs = 32;
948 dev->ts.nr_packets = 32*4;
949 dev->dvb.name = dev->name;
Guennadi Liakhovetski07051352008-04-22 14:42:13 -0300950 videobuf_queue_sg_init(&dev->dvb.dvbq, &saa7134_ts_qops,
951 &dev->pci->dev, &dev->slock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 V4L2_BUF_TYPE_VIDEO_CAPTURE,
953 V4L2_FIELD_ALTERNATE,
954 sizeof(struct saa7134_buf),
955 dev);
956
957 switch (dev->board) {
958 case SAA7134_BOARD_PINNACLE_300I_DVBT_PAL:
Trent Piephocf3c34c2007-03-07 18:19:48 -0300959 dprintk("pinnacle 300i dvb setup\n");
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300960 dev->dvb.frontend = dvb_attach(mt352_attach, &pinnacle_300i,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300961 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300962 if (dev->dvb.frontend) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300963 dev->dvb.frontend->ops.tuner_ops.set_params = mt352_pinnacle_tuner_set_params;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200966 case SAA7134_BOARD_AVERMEDIA_777:
Petr Baudis515c2082006-09-26 16:53:53 -0300967 case SAA7134_BOARD_AVERMEDIA_A16AR:
Trent Piephocf3c34c2007-03-07 18:19:48 -0300968 dprintk("avertv 777 dvb setup\n");
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300969 dev->dvb.frontend = dvb_attach(mt352_attach, &avermedia_777,
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300970 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300971 if (dev->dvb.frontend) {
Michael Krufkyfb147e92008-04-22 14:46:16 -0300972 dvb_attach(simple_tuner_attach, dev->dvb.frontend,
973 &dev->i2c_adap, 0x61,
974 TUNER_PHILIPS_TD1316);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300975 }
Jose Alberto Regueroa78d0bf2006-02-07 06:25:14 -0200976 break;
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -0300977 case SAA7134_BOARD_AVERMEDIA_A16D:
978 dprintk("avertv A16D dvb setup\n");
979 dev->dvb.frontend = dvb_attach(mt352_attach, &avermedia_16d,
980 &dev->i2c_adap);
981 attach_xc3028 = 1;
982 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 case SAA7134_BOARD_MD7134:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300984 dev->dvb.frontend = dvb_attach(tda10046_attach,
985 &medion_cardbus,
986 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300987 if (dev->dvb.frontend) {
Michael Krufkycb89cd32008-04-22 14:46:16 -0300988 dvb_attach(simple_tuner_attach, dev->dvb.frontend,
989 &dev->i2c_adap, medion_cardbus.tuner_address,
990 TUNER_PHILIPS_FMD1216ME_MK3);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -0700993 case SAA7134_BOARD_PHILIPS_TOUGH:
Michael Krufkyf7b54b12006-08-08 15:48:08 -0300994 dev->dvb.frontend = dvb_attach(tda10046_attach,
995 &philips_tu1216_60_config,
996 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -0300997 if (dev->dvb.frontend) {
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -0300998 dev->dvb.frontend->ops.tuner_ops.init = philips_tu1216_init;
999 dev->dvb.frontend->ops.tuner_ops.set_params = philips_tda6651_pll_set;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001000 }
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001001 break;
1002 case SAA7134_BOARD_FLYDVBTDUO:
Peter Missel10b7a902006-01-23 17:11:06 -02001003 case SAA7134_BOARD_FLYDVBT_DUO_CARDBUS:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001004 if (configure_tda827x_fe(dev, &tda827x_lifeview_config,
1005 &tda827x_cfg_0) < 0)
1006 goto dettach_frontend;
Mauro Carvalho Chehab86ddd962005-07-12 13:58:47 -07001007 break;
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001008 case SAA7134_BOARD_PHILIPS_EUROPA:
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001009 case SAA7134_BOARD_VIDEOMATE_DVBT_300:
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001010 dev->dvb.frontend = dvb_attach(tda10046_attach,
1011 &philips_europa_config,
1012 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001013 if (dev->dvb.frontend) {
Hartmut Hackmann588f9832006-10-18 17:30:42 -03001014 dev->original_demod_sleep = dev->dvb.frontend->ops.sleep;
1015 dev->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
Patrick Boettcherdea74862006-05-14 05:01:31 -03001016 dev->dvb.frontend->ops.tuner_ops.init = philips_europa_tuner_init;
1017 dev->dvb.frontend->ops.tuner_ops.sleep = philips_europa_tuner_sleep;
1018 dev->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001019 }
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001020 break;
1021 case SAA7134_BOARD_VIDEOMATE_DVBT_200:
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001022 dev->dvb.frontend = dvb_attach(tda10046_attach,
1023 &philips_tu1216_61_config,
1024 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001025 if (dev->dvb.frontend) {
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001026 dev->dvb.frontend->ops.tuner_ops.init = philips_tu1216_init;
1027 dev->dvb.frontend->ops.tuner_ops.set_params = philips_tda6651_pll_set;
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001028 }
Hartmut Hackmann2cf36ac2005-11-08 21:36:32 -08001029 break;
Simon Farnsworthb39423a2007-05-01 10:01:20 -03001030 case SAA7134_BOARD_KWORLD_DVBT_210:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001031 if (configure_tda827x_fe(dev, &kworld_dvb_t_210_config,
1032 &tda827x_cfg_2) < 0)
1033 goto dettach_frontend;
Simon Farnsworthb39423a2007-05-01 10:01:20 -03001034 break;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001035 case SAA7134_BOARD_PHILIPS_TIGER:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001036 if (configure_tda827x_fe(dev, &philips_tiger_config,
1037 &tda827x_cfg_0) < 0)
1038 goto dettach_frontend;
Hartmut Hackmann587d2fd2006-10-06 19:13:50 -03001039 break;
1040 case SAA7134_BOARD_PINNACLE_PCTV_310i:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001041 if (configure_tda827x_fe(dev, &pinnacle_pctv_310i_config,
1042 &tda827x_cfg_1) < 0)
1043 goto dettach_frontend;
Hartmut Hackmann90e9df72005-11-08 21:38:42 -08001044 break;
Thomas Gentyc6e53da2006-11-05 14:17:30 -03001045 case SAA7134_BOARD_HAUPPAUGE_HVR1110:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001046 if (configure_tda827x_fe(dev, &hauppauge_hvr_1110_config,
1047 &tda827x_cfg_1) < 0)
1048 goto dettach_frontend;
Thomas Gentyc6e53da2006-11-05 14:17:30 -03001049 break;
Hartmut Hackmannd4b0aba2005-11-08 21:38:44 -08001050 case SAA7134_BOARD_ASUSTeK_P7131_DUAL:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001051 if (configure_tda827x_fe(dev, &asus_p7131_dual_config,
1052 &tda827x_cfg_0) < 0)
1053 goto dettach_frontend;
Hartmut Hackmannd4b0aba2005-11-08 21:38:44 -08001054 break;
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -02001055 case SAA7134_BOARD_FLYDVBT_LR301:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001056 if (configure_tda827x_fe(dev, &tda827x_lifeview_config,
1057 &tda827x_cfg_0) < 0)
1058 goto dettach_frontend;
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -02001059 break;
Nico Sabbi420f32f2006-03-03 12:11:28 -03001060 case SAA7134_BOARD_FLYDVB_TRIO:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001061 if (!use_frontend) { /* terrestrial */
1062 if (configure_tda827x_fe(dev, &lifeview_trio_config,
1063 &tda827x_cfg_0) < 0)
1064 goto dettach_frontend;
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -03001065 } else { /* satellite */
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001066 dev->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs, &dev->i2c_adap);
1067 if (dev->dvb.frontend) {
1068 if (dvb_attach(tda826x_attach, dev->dvb.frontend, 0x63,
1069 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001070 wprintk("%s: Lifeview Trio, No tda826x found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001071 goto dettach_frontend;
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001072 }
1073 if (dvb_attach(isl6421_attach, dev->dvb.frontend, &dev->i2c_adap,
1074 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001075 wprintk("%s: Lifeview Trio, No ISL6421 found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001076 goto dettach_frontend;
Nico Sabbi1f683cd2006-11-15 22:06:56 -03001077 }
1078 }
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001079 }
Nico Sabbi420f32f2006-03-03 12:11:28 -03001080 break;
Hartmut Hackmanndf42eaf2006-02-07 06:49:10 -02001081 case SAA7134_BOARD_ADS_DUO_CARDBUS_PTV331:
Hartmut Hackmannd95b8942006-03-27 19:39:30 -03001082 case SAA7134_BOARD_FLYDVBT_HYBRID_CARDBUS:
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001083 dev->dvb.frontend = dvb_attach(tda10046_attach,
1084 &ads_tech_duo_config,
1085 &dev->i2c_adap);
Andrew de Quincey6b3ccab2006-04-20 12:01:47 -03001086 if (dev->dvb.frontend) {
Hartmut Hackmannede22002007-04-27 12:31:32 -03001087 if (dvb_attach(tda827x_attach,dev->dvb.frontend,
Hartmut Hackmann7bff4b42008-04-22 14:46:08 -03001088 ads_tech_duo_config.tuner_address, &dev->i2c_adap,
1089 &ads_duo_cfg) == NULL) {
Trent Piephocf3c34c2007-03-07 18:19:48 -03001090 wprintk("no tda827x tuner found at addr: %02x\n",
Hartmut Hackmannede22002007-04-27 12:31:32 -03001091 ads_tech_duo_config.tuner_address);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001092 goto dettach_frontend;
Hartmut Hackmannede22002007-04-27 12:31:32 -03001093 }
Mauro Carvalho Chehabbc36ec72008-06-14 10:44:04 -03001094 } else
1095 wprintk("failed to attach tda10046\n");
Hartmut Hackmannd95b8942006-03-27 19:39:30 -03001096 break;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001097 case SAA7134_BOARD_TEVION_DVBT_220RF:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001098 if (configure_tda827x_fe(dev, &tevion_dvbt220rf_config,
1099 &tda827x_cfg_0) < 0)
1100 goto dettach_frontend;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001101 break;
Hartmut Hackmann5eda2272006-08-07 14:03:32 -03001102 case SAA7134_BOARD_MEDION_MD8800_QUADRO:
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001103 if (!use_frontend) { /* terrestrial */
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001104 if (configure_tda827x_fe(dev, &md8800_dvbt_config,
1105 &tda827x_cfg_0) < 0)
1106 goto dettach_frontend;
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001107 } else { /* satellite */
1108 dev->dvb.frontend = dvb_attach(tda10086_attach,
1109 &flydvbs, &dev->i2c_adap);
1110 if (dev->dvb.frontend) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001111 struct dvb_frontend *fe = dev->dvb.frontend;
1112 u8 dev_id = dev->eedata[2];
1113 u8 data = 0xc4;
1114 struct i2c_msg msg = {.addr = 0x08, .flags = 0, .len = 1};
1115
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001116 if (dvb_attach(tda826x_attach, dev->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001117 0x60, &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001118 wprintk("%s: Medion Quadro, no tda826x "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001119 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001120 goto dettach_frontend;
1121 }
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001122 if (dev_id != 0x08) {
1123 /* we need to open the i2c gate (we know it exists) */
1124 fe->ops.i2c_gate_ctrl(fe, 1);
1125 if (dvb_attach(isl6405_attach, fe,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001126 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001127 wprintk("%s: Medion Quadro, no ISL6405 "
1128 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001129 goto dettach_frontend;
1130 }
Hartmut Hackmanne9c1ac92008-04-22 14:46:10 -03001131 if (dev_id == 0x07) {
1132 /* fire up the 2nd section of the LNB supply since
1133 we can't do this from the other section */
1134 msg.buf = &data;
1135 i2c_transfer(&dev->i2c_adap, &msg, 1);
1136 }
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001137 fe->ops.i2c_gate_ctrl(fe, 0);
1138 dev->original_set_voltage = fe->ops.set_voltage;
1139 fe->ops.set_voltage = md8800_set_voltage;
1140 dev->original_set_high_voltage = fe->ops.enable_high_lnb_voltage;
1141 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage;
1142 } else {
1143 fe->ops.set_voltage = md8800_set_voltage2;
1144 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage2;
1145 }
Hartmut Hackmann4b1431c2008-04-22 14:42:09 -03001146 }
1147 }
Hartmut Hackmann5eda2272006-08-07 14:03:32 -03001148 break;
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001149 case SAA7134_BOARD_AVERMEDIA_AVERTVHD_A180:
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001150 dev->dvb.frontend = dvb_attach(nxt200x_attach, &avertvhda180,
1151 &dev->i2c_adap);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001152 if (dev->dvb.frontend)
Michael Krufky4ad8eee52006-08-08 15:48:08 -03001153 dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x61,
Michael Krufky47a99912007-06-12 16:10:51 -03001154 NULL, DVB_PLL_TDHU2);
Michael Krufky3b64e8e2005-11-08 21:38:20 -08001155 break;
Andrew Burri3e1410a2006-02-27 00:08:23 -03001156 case SAA7134_BOARD_KWORLD_ATSC110:
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001157 dev->dvb.frontend = dvb_attach(nxt200x_attach, &kworldatsc110,
1158 &dev->i2c_adap);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001159 if (dev->dvb.frontend)
Michael Krufky62ff817a2008-04-22 14:46:17 -03001160 dvb_attach(simple_tuner_attach, dev->dvb.frontend,
1161 &dev->i2c_adap, 0x61,
1162 TUNER_PHILIPS_TUV1236D);
Andrew Burri3e1410a2006-02-27 00:08:23 -03001163 break;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001164 case SAA7134_BOARD_FLYDVBS_LR300:
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001165 dev->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs,
1166 &dev->i2c_adap);
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001167 if (dev->dvb.frontend) {
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001168 if (dvb_attach(tda826x_attach, dev->dvb.frontend, 0x60,
1169 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001170 wprintk("%s: No tda826x found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001171 goto dettach_frontend;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001172 }
Michael Krufkyf7b54b12006-08-08 15:48:08 -03001173 if (dvb_attach(isl6421_attach, dev->dvb.frontend,
1174 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001175 wprintk("%s: No ISL6421 found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001176 goto dettach_frontend;
Igor M. Liplianine2ac28f2006-08-08 09:10:10 -03001177 }
1178 }
1179 break;
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001180 case SAA7134_BOARD_ASUS_EUROPA2_HYBRID:
Matthias Schwarzott0e8f4cc2008-01-28 12:01:11 -03001181 dev->dvb.frontend = dvb_attach(tda10046_attach,
1182 &medion_cardbus,
1183 &dev->i2c_adap);
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001184 if (dev->dvb.frontend) {
1185 dev->original_demod_sleep = dev->dvb.frontend->ops.sleep;
1186 dev->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
Trent Piephob7754d72007-05-08 18:05:16 -03001187
Michael Krufkycb89cd32008-04-22 14:46:16 -03001188 dvb_attach(simple_tuner_attach, dev->dvb.frontend,
1189 &dev->i2c_adap, medion_cardbus.tuner_address,
1190 TUNER_PHILIPS_FMD1216ME_MK3);
Hartmut Hackmanncf146ca2006-10-02 20:49:24 -03001191 }
1192 break;
Hartmut Hackmanncbb94522006-10-30 20:00:16 -03001193 case SAA7134_BOARD_VIDEOMATE_DVBT_200A:
1194 dev->dvb.frontend = dvb_attach(tda10046_attach,
1195 &philips_europa_config,
1196 &dev->i2c_adap);
1197 if (dev->dvb.frontend) {
1198 dev->dvb.frontend->ops.tuner_ops.init = philips_td1316_tuner_init;
1199 dev->dvb.frontend->ops.tuner_ops.set_params = philips_td1316_tuner_set_params;
1200 }
1201 break;
Hartmut Hackmann550a9a52006-11-15 21:31:54 -03001202 case SAA7134_BOARD_CINERGY_HT_PCMCIA:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001203 if (configure_tda827x_fe(dev, &cinergy_ht_config,
1204 &tda827x_cfg_0) < 0)
1205 goto dettach_frontend;
Hartmut Hackmann550a9a52006-11-15 21:31:54 -03001206 break;
Michael Krufky9de271e2007-01-16 18:36:40 -03001207 case SAA7134_BOARD_CINERGY_HT_PCI:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001208 if (configure_tda827x_fe(dev, &cinergy_ht_pci_config,
1209 &tda827x_cfg_0) < 0)
1210 goto dettach_frontend;
Hartmut Hackmann58ef4f92007-04-27 12:31:12 -03001211 break;
1212 case SAA7134_BOARD_PHILIPS_TIGER_S:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001213 if (configure_tda827x_fe(dev, &philips_tiger_s_config,
1214 &tda827x_cfg_2) < 0)
1215 goto dettach_frontend;
Michael Krufky9de271e2007-01-16 18:36:40 -03001216 break;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001217 case SAA7134_BOARD_ASUS_P7131_4871:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001218 if (configure_tda827x_fe(dev, &asus_p7131_4871_config,
1219 &tda827x_cfg_2) < 0)
1220 goto dettach_frontend;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001221 break;
Hartmut Hackmannf3eec0c02007-03-14 20:33:55 -03001222 case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001223 if (configure_tda827x_fe(dev, &asus_p7131_hybrid_lna_config,
1224 &tda827x_cfg_2) < 0)
1225 goto dettach_frontend;
Hartmut Hackmanne06cea42007-03-13 20:58:29 -03001226 break;
Edgar Simod90d9f52007-08-20 14:14:50 -03001227 case SAA7134_BOARD_AVERMEDIA_SUPER_007:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001228 if (configure_tda827x_fe(dev, &avermedia_super_007_config,
1229 &tda827x_cfg_0) < 0)
1230 goto dettach_frontend;
Edgar Simod90d9f52007-08-20 14:14:50 -03001231 break;
Hermann Pitton4ba24372008-01-20 19:27:51 -03001232 case SAA7134_BOARD_TWINHAN_DTV_DVB_3056:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001233 if (configure_tda827x_fe(dev, &twinhan_dtv_dvb_3056_config,
1234 &tda827x_cfg_2_sw42) < 0)
1235 goto dettach_frontend;
Hermann Pitton4ba24372008-01-20 19:27:51 -03001236 break;
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001237 case SAA7134_BOARD_PHILIPS_SNAKE:
1238 dev->dvb.frontend = dvb_attach(tda10086_attach, &flydvbs,
1239 &dev->i2c_adap);
1240 if (dev->dvb.frontend) {
1241 if (dvb_attach(tda826x_attach, dev->dvb.frontend, 0x60,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001242 &dev->i2c_adap, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001243 wprintk("%s: No tda826x found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001244 goto dettach_frontend;
1245 }
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001246 if (dvb_attach(lnbp21_attach, dev->dvb.frontend,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001247 &dev->i2c_adap, 0, 0) == NULL) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001248 wprintk("%s: No lnbp21 found!\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001249 goto dettach_frontend;
1250 }
Hartmut Hackmann6ab465a2008-04-22 14:42:11 -03001251 }
1252 break;
Hermann Pitton7b5b3f12008-04-22 14:42:12 -03001253 case SAA7134_BOARD_CREATIX_CTX953:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001254 if (configure_tda827x_fe(dev, &md8800_dvbt_config,
1255 &tda827x_cfg_0) < 0)
1256 goto dettach_frontend;
Hermann Pitton7b5b3f12008-04-22 14:42:12 -03001257 break;
Russell Kliese6a6179b62008-04-22 14:42:12 -03001258 case SAA7134_BOARD_MSI_TVANYWHERE_AD11:
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001259 if (configure_tda827x_fe(dev, &philips_tiger_s_config,
1260 &tda827x_cfg_2) < 0)
1261 goto dettach_frontend;
Russell Kliese6a6179b62008-04-22 14:42:12 -03001262 break;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001263 case SAA7134_BOARD_AVERMEDIA_CARDBUS_506:
1264 dev->dvb.frontend = dvb_attach(mt352_attach,
1265 &avermedia_e506r_mt352_dev,
1266 &dev->i2c_adap);
1267 attach_xc3028 = 1;
1268 break;
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001269 case SAA7134_BOARD_MD7134_BRIDGE_2:
1270 dev->dvb.frontend = dvb_attach(tda10086_attach,
Hartmut Hackmann9a1b04e2008-04-09 23:07:11 -03001271 &sd1878_4m, &dev->i2c_adap);
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001272 if (dev->dvb.frontend) {
1273 struct dvb_frontend *fe;
1274 if (dvb_attach(dvb_pll_attach, dev->dvb.frontend, 0x60,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001275 &dev->i2c_adap, DVB_PLL_PHILIPS_SD1878_TDA8261) == NULL) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001276 wprintk("%s: MD7134 DVB-S, no SD1878 "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001277 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001278 goto dettach_frontend;
1279 }
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001280 /* we need to open the i2c gate (we know it exists) */
1281 fe = dev->dvb.frontend;
1282 fe->ops.i2c_gate_ctrl(fe, 1);
1283 if (dvb_attach(isl6405_attach, fe,
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001284 &dev->i2c_adap, 0x08, 0, 0) == NULL) {
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001285 wprintk("%s: MD7134 DVB-S, no ISL6405 "
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001286 "found !\n", __func__);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001287 goto dettach_frontend;
1288 }
Hartmut Hackmann637afdb2008-04-22 14:46:08 -03001289 fe->ops.i2c_gate_ctrl(fe, 0);
1290 dev->original_set_voltage = fe->ops.set_voltage;
1291 fe->ops.set_voltage = md8800_set_voltage;
1292 dev->original_set_high_voltage = fe->ops.enable_high_lnb_voltage;
1293 fe->ops.enable_high_lnb_voltage = md8800_set_high_voltage;
1294 }
1295 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 default:
Trent Piephocf3c34c2007-03-07 18:19:48 -03001297 wprintk("Huh? unknown DVB card?\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 break;
1299 }
1300
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001301 if (attach_xc3028) {
1302 struct dvb_frontend *fe;
1303 struct xc2028_config cfg = {
1304 .i2c_adap = &dev->i2c_adap,
1305 .i2c_addr = 0x61,
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001306 };
Mauro Carvalho Chehab95a2fdb2008-03-28 17:52:44 -03001307
1308 if (!dev->dvb.frontend)
1309 return -1;
1310
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001311 fe = dvb_attach(xc2028_attach, dev->dvb.frontend, &cfg);
1312 if (!fe) {
1313 printk(KERN_ERR "%s/2: xc3028 attach failed\n",
1314 dev->name);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001315 goto dettach_frontend;
Mauro Carvalho Chehabbc36a682008-04-22 14:45:27 -03001316 }
1317 }
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (NULL == dev->dvb.frontend) {
Trent Piephocf3c34c2007-03-07 18:19:48 -03001320 printk(KERN_ERR "%s/dvb: frontend initialization failed\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return -1;
1322 }
1323
1324 /* register everything else */
Janne Grunau78e920062008-04-09 19:13:13 -03001325 ret = videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev, &dev->pci->dev,
1326 adapter_nr);
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001327
1328 /* this sequence is necessary to make the tda1004x load its firmware
1329 * and to enter analog mode of hybrid boards
1330 */
1331 if (!ret) {
1332 if (dev->dvb.frontend->ops.init)
1333 dev->dvb.frontend->ops.init(dev->dvb.frontend);
1334 if (dev->dvb.frontend->ops.sleep)
1335 dev->dvb.frontend->ops.sleep(dev->dvb.frontend);
Hartmut Hackmann9971f4f2007-03-23 21:00:07 -03001336 if (dev->dvb.frontend->ops.tuner_ops.sleep)
1337 dev->dvb.frontend->ops.tuner_ops.sleep(dev->dvb.frontend);
Hartmut Hackmann1c4f76a2007-04-27 12:31:16 -03001338 }
1339 return ret;
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001340
1341dettach_frontend:
Mauro Carvalho Chehabbf67cac2008-06-07 15:54:10 -03001342 if (dev->dvb.frontend)
1343 dvb_frontend_detach(dev->dvb.frontend);
Mauro Carvalho Chehabd557dab2008-04-30 15:27:55 -03001344 dev->dvb.frontend = NULL;
1345
1346 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
1349static int dvb_fini(struct saa7134_dev *dev)
1350{
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001351 /* FIXME: I suspect that this code is bogus, since the entry for
1352 Pinnacle 300I DVB-T PAL already defines the proper init to allow
1353 the detection of mt2032 (TDA9887_PORT2_INACTIVE)
1354 */
1355 if (dev->board == SAA7134_BOARD_PINNACLE_300I_DVBT_PAL) {
1356 struct v4l2_priv_tun_config tda9887_cfg;
1357 static int on = TDA9887_PRESENT | TDA9887_PORT2_INACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001359 tda9887_cfg.tuner = TUNER_TDA9887;
1360 tda9887_cfg.priv = &on;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 /* otherwise we don't detect the tuner on next insmod */
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001363 saa7134_i2c_call_clients(dev, TUNER_SET_CONFIG, &tda9887_cfg);
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001364 } else if (dev->board == SAA7134_BOARD_MEDION_MD8800_QUADRO) {
Hartmut Hackmanne9c1ac92008-04-22 14:46:10 -03001365 if ((dev->eedata[2] == 0x07) && use_frontend) {
Hartmut Hackmann5823b3a2008-04-22 14:46:08 -03001366 /* turn off the 2nd lnb supply */
1367 u8 data = 0x80;
1368 struct i2c_msg msg = {.addr = 0x08, .buf = &data, .flags = 0, .len = 1};
1369 struct dvb_frontend *fe;
1370 fe = dev->dvb.frontend;
1371 if (fe->ops.i2c_gate_ctrl) {
1372 fe->ops.i2c_gate_ctrl(fe, 1);
1373 i2c_transfer(&dev->i2c_adap, &msg, 1);
1374 fe->ops.i2c_gate_ctrl(fe, 0);
1375 }
1376 }
Mauro Carvalho Chehab7f171122007-10-18 19:56:47 -03001377 }
Mauro Carvalho Chehab9950c1b2008-04-11 11:29:44 -03001378 if (dev->dvb.frontend)
1379 videobuf_dvb_unregister(&dev->dvb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return 0;
1381}
1382
1383static struct saa7134_mpeg_ops dvb_ops = {
1384 .type = SAA7134_MPEG_DVB,
1385 .init = dvb_init,
1386 .fini = dvb_fini,
1387};
1388
1389static int __init dvb_register(void)
1390{
1391 return saa7134_ts_register(&dvb_ops);
1392}
1393
1394static void __exit dvb_unregister(void)
1395{
1396 saa7134_ts_unregister(&dvb_ops);
1397}
1398
1399module_init(dvb_register);
1400module_exit(dvb_unregister);
1401
1402/* ------------------------------------------------------------------ */
1403/*
1404 * Local variables:
1405 * c-basic-offset: 8
1406 * End:
1407 */