blob: 81fab9adc1cad18de7d3f24420893fdc894f1994 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Bt8xx based DVB adapter driver
3 *
4 * Copyright (C) 2002,2003 Florian Schirmer <jolt@tuxbox.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 */
21
Jonathan Nieder6c59eef2012-01-06 14:26:41 -030022#define pr_fmt(fmt) "dvb_bt8xx: " fmt
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/bitops.h>
25#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
Ahmed S. Darwish0496daa2007-02-14 22:57:42 -020027#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/device.h>
29#include <linux/delay.h>
30#include <linux/slab.h>
31#include <linux/i2c.h>
32
33#include "dmxdev.h"
34#include "dvbdev.h"
35#include "dvb_demux.h"
36#include "dvb_frontend.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "dvb-bt8xx.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "bt878.h"
39
40static int debug;
41
42module_param(debug, int, 0644);
43MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");
44
Janne Grunau78e92002008-04-09 19:13:13 -030045DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define dprintk( args... ) \
Harvey Harrison1744a772008-04-22 14:45:32 -030048 do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 if (debug) printk(KERN_DEBUG args); \
Harvey Harrison1744a772008-04-22 14:45:32 -030050 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Johnson05ade5a2005-09-09 13:02:55 -070052#define IF_FREQUENCYx6 217 /* 6 * 36.16666666667MHz */
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static void dvb_bt8xx_task(unsigned long data)
55{
56 struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *)data;
57
58 //printk("%d ", card->bt->finished_block);
59
60 while (card->bt->last_block != card->bt->finished_block) {
61 (card->bt->TS_Size ? dvb_dmx_swfilter_204 : dvb_dmx_swfilter)
62 (&card->demux,
63 &card->bt->buf_cpu[card->bt->last_block *
64 card->bt->block_bytes],
65 card->bt->block_bytes);
66 card->bt->last_block = (card->bt->last_block + 1) %
67 card->bt->block_count;
68 }
69}
70
71static int dvb_bt8xx_start_feed(struct dvb_demux_feed *dvbdmxfeed)
72{
Andrew de Quincey2bfe0312006-08-08 09:10:08 -030073 struct dvb_demux*dvbdmx = dvbdmxfeed->demux;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct dvb_bt8xx_card *card = dvbdmx->priv;
75 int rc;
76
77 dprintk("dvb_bt8xx: start_feed\n");
78
79 if (!dvbdmx->dmx.frontend)
80 return -EINVAL;
81
Ingo Molnar3593cab2006-02-07 06:49:14 -020082 mutex_lock(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 card->nfeeds++;
84 rc = card->nfeeds;
85 if (card->nfeeds == 1)
86 bt878_start(card->bt, card->gpio_mode,
87 card->op_sync_orin, card->irq_err_ignore);
Ingo Molnar3593cab2006-02-07 06:49:14 -020088 mutex_unlock(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return rc;
90}
91
92static int dvb_bt8xx_stop_feed(struct dvb_demux_feed *dvbdmxfeed)
93{
94 struct dvb_demux *dvbdmx = dvbdmxfeed->demux;
95 struct dvb_bt8xx_card *card = dvbdmx->priv;
96
97 dprintk("dvb_bt8xx: stop_feed\n");
98
99 if (!dvbdmx->dmx.frontend)
100 return -EINVAL;
101
Ingo Molnar3593cab2006-02-07 06:49:14 -0200102 mutex_lock(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 card->nfeeds--;
104 if (card->nfeeds == 0)
105 bt878_stop(card->bt);
Ingo Molnar3593cab2006-02-07 06:49:14 -0200106 mutex_unlock(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 return 0;
109}
110
111static int is_pci_slot_eq(struct pci_dev* adev, struct pci_dev* bdev)
112{
113 if ((adev->subsystem_vendor == bdev->subsystem_vendor) &&
114 (adev->subsystem_device == bdev->subsystem_device) &&
115 (adev->bus->number == bdev->bus->number) &&
116 (PCI_SLOT(adev->devfn) == PCI_SLOT(bdev->devfn)))
117 return 1;
118 return 0;
119}
120
Jean Delvare8b6c8792006-05-23 15:56:50 -0300121static struct bt878 __devinit *dvb_bt8xx_878_match(unsigned int bttv_nr, struct pci_dev* bttv_pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 unsigned int card_nr;
124
125 /* Hmm, n squared. Hope n is small */
David Johnson1f15ddd2005-09-09 13:02:54 -0700126 for (card_nr = 0; card_nr < bt878_num; card_nr++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (is_pci_slot_eq(bt878[card_nr].dev, bttv_pci_dev))
128 return &bt878[card_nr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return NULL;
130}
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static int thomson_dtt7579_demod_init(struct dvb_frontend* fe)
133{
134 static u8 mt352_clock_config [] = { 0x89, 0x38, 0x38 };
135 static u8 mt352_reset [] = { 0x50, 0x80 };
136 static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
137 static u8 mt352_agc_cfg [] = { 0x67, 0x28, 0x20 };
138 static u8 mt352_gpp_ctl_cfg [] = { 0x8C, 0x33 };
139 static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };
140
141 mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
142 udelay(2000);
143 mt352_write(fe, mt352_reset, sizeof(mt352_reset));
144 mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
145
146 mt352_write(fe, mt352_agc_cfg, sizeof(mt352_agc_cfg));
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700147 mt352_write(fe, mt352_gpp_ctl_cfg, sizeof(mt352_gpp_ctl_cfg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));
149
150 return 0;
151}
152
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300153static int thomson_dtt7579_tuner_calc_regs(struct dvb_frontend *fe, u8* pllbuf, int buf_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300155 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 u32 div;
157 unsigned char bs = 0;
158 unsigned char cp = 0;
159
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300160 if (buf_len < 5)
161 return -EINVAL;
162
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300163 div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300165 if (c->frequency < 542000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700166 cp = 0xb4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300167 else if (c->frequency < 771000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700168 cp = 0xbc;
169 else
170 cp = 0xf4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300172 if (c->frequency == 0)
David Johnson1f15ddd2005-09-09 13:02:54 -0700173 bs = 0x03;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300174 else if (c->frequency < 443250000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700175 bs = 0x02;
176 else
177 bs = 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300179 pllbuf[0] = 0x60;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 pllbuf[1] = div >> 8;
181 pllbuf[2] = div & 0xff;
182 pllbuf[3] = cp;
183 pllbuf[4] = bs;
184
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300185 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188static struct mt352_config thomson_dtt7579_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 .demod_address = 0x0f,
190 .demod_init = thomson_dtt7579_demod_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191};
192
Michael Krufky8c990242006-04-11 01:46:46 -0300193static struct zl10353_config thomson_dtt7579_zl10353_config = {
194 .demod_address = 0x0f,
Michael Krufky8c990242006-04-11 01:46:46 -0300195};
196
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300197static int cx24108_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300199 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
200 u32 freq = c->frequency;
David Johnson1f15ddd2005-09-09 13:02:54 -0700201 int i, a, n, pump;
202 u32 band, pll;
David Johnson1f15ddd2005-09-09 13:02:54 -0700203 u32 osci[]={950000,1019000,1075000,1178000,1296000,1432000,
204 1576000,1718000,1856000,2036000,2150000};
205 u32 bandsel[]={0,0x00020000,0x00040000,0x00100800,0x00101000,
206 0x00102000,0x00104000,0x00108000,0x00110000,
207 0x00120000,0x00140000};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
David Johnson1f15ddd2005-09-09 13:02:54 -0700209 #define XTAL 1011100 /* Hz, really 1.0111 MHz and a /10 prescaler */
Jonathan Nieder37965542012-01-06 14:26:14 -0300210 dprintk("cx24108 debug: entering SetTunerFreq, freq=%d\n", freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700212 /* This is really the bit driving the tuner chip cx24108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
David Johnson1f15ddd2005-09-09 13:02:54 -0700214 if (freq<950000)
215 freq = 950000; /* kHz */
216 else if (freq>2150000)
217 freq = 2150000; /* satellite IF is 950..2150MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700219 /* decide which VCO to use for the input frequency */
Hans Verkuil491aa962009-11-25 18:48:54 -0300220 for(i = 1; (i < ARRAY_SIZE(osci) - 1) && (osci[i] < freq); i++);
Jonathan Nieder37965542012-01-06 14:26:14 -0300221 dprintk("cx24108 debug: select vco #%d (f=%d)\n", i, freq);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700222 band=bandsel[i];
223 /* the gain values must be set by SetSymbolrate */
224 /* compute the pll divider needed, from Conexant data sheet,
225 resolved for (n*32+a), remember f(vco) is f(receive) *2 or *4,
226 depending on the divider bit. It is set to /4 on the 2 lowest
227 bands */
228 n=((i<=2?2:1)*freq*10L)/(XTAL/100);
229 a=n%32; n/=32; if(a==0) n--;
230 pump=(freq<(osci[i-1]+osci[i])/2);
231 pll=0xf8000000|
232 ((pump?1:2)<<(14+11))|
233 ((n&0x1ff)<<(5+11))|
234 ((a&0x1f)<<11);
235 /* everything is shifted left 11 bits to left-align the bits in the
236 32bit word. Output to the tuner goes MSB-aligned, after all */
Jonathan Nieder37965542012-01-06 14:26:14 -0300237 dprintk("cx24108 debug: pump=%d, n=%d, a=%d\n", pump, n, a);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700238 cx24110_pll_write(fe,band);
239 /* set vga and vca to their widest-band settings, as a precaution.
240 SetSymbolrate might not be called to set this up */
241 cx24110_pll_write(fe,0x500c0000);
242 cx24110_pll_write(fe,0x83f1f800);
243 cx24110_pll_write(fe,pll);
David Johnson1f15ddd2005-09-09 13:02:54 -0700244 //writereg(client,0x56,0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 return 0;
247}
248
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300249static int pinnsat_tuner_init(struct dvb_frontend* fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Manu Abrahame7ac4642006-02-27 00:09:29 -0300251 struct dvb_bt8xx_card *card = fe->dvb->priv;
252
253 bttv_gpio_enable(card->bttv_nr, 1, 1); /* output */
254 bttv_write_gpio(card->bttv_nr, 1, 1); /* relay on */
Ian Pickworth6457af52006-02-27 00:09:45 -0300255
Manu Abrahame7ac4642006-02-27 00:09:29 -0300256 return 0;
257}
258
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300259static int pinnsat_tuner_sleep(struct dvb_frontend* fe)
Manu Abrahame7ac4642006-02-27 00:09:29 -0300260{
261 struct dvb_bt8xx_card *card = fe->dvb->priv;
262
263 bttv_write_gpio(card->bttv_nr, 1, 0); /* relay off */
264
David Johnson1f15ddd2005-09-09 13:02:54 -0700265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static struct cx24110_config pctvsat_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 .demod_address = 0x55,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};
271
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300272static int microtune_mt7202dtf_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300274 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv;
276 u8 cfg, cpump, band_select;
277 u8 data[4];
278 u32 div;
279 struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = data, .len = sizeof(data) };
280
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300281 div = (36000000 + c->frequency + 83333) / 166666;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 cfg = 0x88;
283
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300284 if (c->frequency < 175000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700285 cpump = 2;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300286 else if (c->frequency < 390000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700287 cpump = 1;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300288 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700289 cpump = 2;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300290 else if (c->frequency < 750000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700291 cpump = 2;
292 else
293 cpump = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300295 if (c->frequency < 175000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700296 band_select = 0x0e;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300297 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700298 band_select = 0x05;
299 else
300 band_select = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 data[0] = (div >> 8) & 0x7f;
303 data[1] = div & 0xff;
304 data[2] = ((div >> 10) & 0x60) | cfg;
Michael Krufky2b70a2f2005-11-08 21:35:16 -0800305 data[3] = (cpump << 6) | band_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Patrick Boettcherdea74862006-05-14 05:01:31 -0300307 if (fe->ops.i2c_gate_ctrl)
308 fe->ops.i2c_gate_ctrl(fe, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 i2c_transfer(card->i2c_adapter, &msg, 1);
310 return (div * 166666 - 36000000);
311}
312
313static int microtune_mt7202dtf_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name)
314{
315 struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv;
316
317 return request_firmware(fw, name, &bt->bt->dev->dev);
318}
319
320static struct sp887x_config microtune_mt7202dtf_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 .demod_address = 0x70,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 .request_firmware = microtune_mt7202dtf_request_firmware,
323};
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325static int advbt771_samsung_tdtc9251dh0_demod_init(struct dvb_frontend* fe)
326{
327 static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d };
328 static u8 mt352_reset [] = { 0x50, 0x80 };
329 static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
330 static u8 mt352_agc_cfg [] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700331 0x00, 0xFF, 0x00, 0x40, 0x40 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 static u8 mt352_av771_extra[] = { 0xB5, 0x7A };
333 static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
336 udelay(2000);
337 mt352_write(fe, mt352_reset, sizeof(mt352_reset));
338 mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
339
340 mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg));
341 udelay(2000);
342 mt352_write(fe, mt352_av771_extra,sizeof(mt352_av771_extra));
343 mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));
344
345 return 0;
346}
347
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300348static int advbt771_samsung_tdtc9251dh0_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300350 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 u32 div;
352 unsigned char bs = 0;
353 unsigned char cp = 0;
354
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300355 if (buf_len < 5) return -EINVAL;
356
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300357 div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300359 if (c->frequency < 150000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700360 cp = 0xB4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300361 else if (c->frequency < 173000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700362 cp = 0xBC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300363 else if (c->frequency < 250000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700364 cp = 0xB4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300365 else if (c->frequency < 400000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700366 cp = 0xBC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300367 else if (c->frequency < 420000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700368 cp = 0xF4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300369 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700370 cp = 0xFC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300371 else if (c->frequency < 600000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700372 cp = 0xBC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300373 else if (c->frequency < 730000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700374 cp = 0xF4;
375 else
376 cp = 0xFC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300378 if (c->frequency < 150000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700379 bs = 0x01;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300380 else if (c->frequency < 173000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700381 bs = 0x01;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300382 else if (c->frequency < 250000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700383 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300384 else if (c->frequency < 400000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700385 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300386 else if (c->frequency < 420000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700387 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300388 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700389 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300390 else if (c->frequency < 600000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700391 bs = 0x08;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300392 else if (c->frequency < 730000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700393 bs = 0x08;
394 else
395 bs = 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300397 pllbuf[0] = 0x61;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 pllbuf[1] = div >> 8;
399 pllbuf[2] = div & 0xff;
400 pllbuf[3] = cp;
401 pllbuf[4] = bs;
402
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300403 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406static struct mt352_config advbt771_samsung_tdtc9251dh0_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 .demod_address = 0x0f,
408 .demod_init = advbt771_samsung_tdtc9251dh0_demod_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409};
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411static struct dst_config dst_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 .demod_address = 0x55,
413};
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static int or51211_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name)
416{
417 struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv;
418
419 return request_firmware(fw, name, &bt->bt->dev->dev);
420}
421
422static void or51211_setmode(struct dvb_frontend * fe, int mode)
423{
424 struct dvb_bt8xx_card *bt = fe->dvb->priv;
425 bttv_write_gpio(bt->bttv_nr, 0x0002, mode); /* Reset */
426 msleep(20);
427}
428
429static void or51211_reset(struct dvb_frontend * fe)
430{
431 struct dvb_bt8xx_card *bt = fe->dvb->priv;
432
433 /* RESET DEVICE
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300434 * reset is controlled by GPIO-0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * when set to 0 causes reset and when to 1 for normal op
436 * must remain reset for 128 clock cycles on a 50Mhz clock
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300437 * also PRM1 PRM2 & PRM4 are controlled by GPIO-1,GPIO-2 & GPIO-4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * We assume that the reset has be held low long enough or we
439 * have been reset by a power on. When the driver is unloaded
440 * reset set to 0 so if reloaded we have been reset.
441 */
442 /* reset & PRM1,2&4 are outputs */
443 int ret = bttv_gpio_enable(bt->bttv_nr, 0x001F, 0x001F);
David Johnson1f15ddd2005-09-09 13:02:54 -0700444 if (ret != 0)
David Johnson05ade5a2005-09-09 13:02:55 -0700445 printk(KERN_WARNING "or51211: Init Error - Can't Reset DVR (%i)\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 bttv_write_gpio(bt->bttv_nr, 0x001F, 0x0000); /* Reset */
447 msleep(20);
448 /* Now set for normal operation */
449 bttv_write_gpio(bt->bttv_nr, 0x0001F, 0x0001);
450 /* wait for operation to begin */
451 msleep(500);
452}
453
454static void or51211_sleep(struct dvb_frontend * fe)
455{
456 struct dvb_bt8xx_card *bt = fe->dvb->priv;
457 bttv_write_gpio(bt->bttv_nr, 0x0001, 0x0000);
458}
459
460static struct or51211_config or51211_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 .demod_address = 0x15,
462 .request_firmware = or51211_request_firmware,
463 .setmode = or51211_setmode,
464 .reset = or51211_reset,
465 .sleep = or51211_sleep,
466};
467
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300468static int vp3021_alps_tded4_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300470 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv;
472 u8 buf[4];
473 u32 div;
474 struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf) };
475
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300476 div = (c->frequency + 36166667) / 166667;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 buf[0] = (div >> 8) & 0x7F;
479 buf[1] = div & 0xFF;
480 buf[2] = 0x85;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300481 if ((c->frequency >= 47000000) && (c->frequency < 153000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 buf[3] = 0x01;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300483 else if ((c->frequency >= 153000000) && (c->frequency < 430000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 buf[3] = 0x02;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300485 else if ((c->frequency >= 430000000) && (c->frequency < 824000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 buf[3] = 0x0C;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300487 else if ((c->frequency >= 824000000) && (c->frequency < 863000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 buf[3] = 0x8C;
489 else
490 return -EINVAL;
491
Patrick Boettcherdea74862006-05-14 05:01:31 -0300492 if (fe->ops.i2c_gate_ctrl)
493 fe->ops.i2c_gate_ctrl(fe, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 i2c_transfer(card->i2c_adapter, &msg, 1);
495 return 0;
496}
497
498static struct nxt6000_config vp3021_alps_tded4_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 .demod_address = 0x0a,
500 .clock_inversion = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501};
502
David Johnson05ade5a2005-09-09 13:02:55 -0700503static int digitv_alps_tded4_demod_init(struct dvb_frontend* fe)
504{
505 static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d };
506 static u8 mt352_reset [] = { 0x50, 0x80 };
507 static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
508 static u8 mt352_agc_cfg [] = { 0x67, 0x20, 0xa0 };
509 static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };
510
511 mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
512 udelay(2000);
513 mt352_write(fe, mt352_reset, sizeof(mt352_reset));
514 mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
515 mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg));
516 mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));
517
518 return 0;
519}
520
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300521static int digitv_alps_tded4_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len)
David Johnson05ade5a2005-09-09 13:02:55 -0700522{
523 u32 div;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300524 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
David Johnson05ade5a2005-09-09 13:02:55 -0700525
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300526 if (buf_len < 5)
527 return -EINVAL;
528
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300529 div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
David Johnson05ade5a2005-09-09 13:02:55 -0700530
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300531 pllbuf[0] = 0x61;
David Johnson05ade5a2005-09-09 13:02:55 -0700532 pllbuf[1] = (div >> 8) & 0x7F;
533 pllbuf[2] = div & 0xFF;
534 pllbuf[3] = 0x85;
535
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300536 dprintk("frequency %u, div %u\n", c->frequency, div);
David Johnson05ade5a2005-09-09 13:02:55 -0700537
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300538 if (c->frequency < 470000000)
David Johnson05ade5a2005-09-09 13:02:55 -0700539 pllbuf[4] = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300540 else if (c->frequency > 823000000)
David Johnson05ade5a2005-09-09 13:02:55 -0700541 pllbuf[4] = 0x88;
542 else
543 pllbuf[4] = 0x08;
544
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300545 if (c->bandwidth_hz == 8000000)
David Johnson05ade5a2005-09-09 13:02:55 -0700546 pllbuf[4] |= 0x04;
547
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300548 return 5;
David Johnson05ade5a2005-09-09 13:02:55 -0700549}
550
551static void digitv_alps_tded4_reset(struct dvb_bt8xx_card *bt)
552{
553 /*
554 * Reset the frontend, must be called before trying
555 * to initialise the MT352 or mt352_attach
Stuart Auchterlonie163d8fe2005-11-08 21:35:40 -0800556 * will fail. Same goes for the nxt6000 frontend.
David Johnson05ade5a2005-09-09 13:02:55 -0700557 *
558 */
559
560 int ret = bttv_gpio_enable(bt->bttv_nr, 0x08, 0x08);
561 if (ret != 0)
562 printk(KERN_WARNING "digitv_alps_tded4: Init Error - Can't Reset DVR (%i)\n", ret);
563
564 /* Pulse the reset line */
565 bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */
566 bttv_write_gpio(bt->bttv_nr, 0x08, 0x00); /* Low */
567 msleep(100);
568
569 bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */
570}
571
572static struct mt352_config digitv_alps_tded4_config = {
573 .demod_address = 0x0a,
574 .demod_init = digitv_alps_tded4_demod_init,
David Johnson05ade5a2005-09-09 13:02:55 -0700575};
576
Michael Krufky3cff00d2005-11-08 21:35:12 -0800577static struct lgdt330x_config tdvs_tua6034_config = {
578 .demod_address = 0x0e,
579 .demod_chip = LGDT3303,
580 .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
Michael Krufky3cff00d2005-11-08 21:35:12 -0800581};
582
583static void lgdt330x_reset(struct dvb_bt8xx_card *bt)
584{
585 /* Set pin 27 of the lgdt3303 chip high to reset the frontend */
586
587 /* Pulse the reset line */
588 bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */
589 bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000000); /* Low */
590 msleep(100);
591
592 bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */
593 msleep(100);
594}
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596static void frontend_init(struct dvb_bt8xx_card *card, u32 type)
597{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700598 struct dst_state* state = NULL;
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 switch(type) {
Michael Krufky6cffcc22005-11-08 21:38:36 -0800601 case BTTV_BOARD_DVICO_DVBT_LITE:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300602 card->fe = dvb_attach(mt352_attach, &thomson_dtt7579_config, card->i2c_adapter);
Michael Krufky8c990242006-04-11 01:46:46 -0300603
604 if (card->fe == NULL)
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300605 card->fe = dvb_attach(zl10353_attach, &thomson_dtt7579_zl10353_config,
Michael Krufky8c990242006-04-11 01:46:46 -0300606 card->i2c_adapter);
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300609 card->fe->ops.tuner_ops.calc_regs = thomson_dtt7579_tuner_calc_regs;
610 card->fe->ops.info.frequency_min = 174000000;
611 card->fe->ops.info.frequency_max = 862000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Michael Krufky6cffcc22005-11-08 21:38:36 -0800615 case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE:
Michael Krufky3cff00d2005-11-08 21:35:12 -0800616 lgdt330x_reset(card);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300617 card->fe = dvb_attach(lgdt330x_attach, &tdvs_tua6034_config, card->i2c_adapter);
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300618 if (card->fe != NULL) {
Michael Krufky827855d2008-04-22 14:46:16 -0300619 dvb_attach(simple_tuner_attach, card->fe,
620 card->i2c_adapter, 0x61,
621 TUNER_LG_TDVS_H06XF);
Michael Krufky3cff00d2005-11-08 21:35:12 -0800622 dprintk ("dvb_bt8xx: lgdt330x detected\n");
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300623 }
Michael Krufky3cff00d2005-11-08 21:35:12 -0800624 break;
Michael Krufky3cff00d2005-11-08 21:35:12 -0800625
Michael Krufky6cffcc22005-11-08 21:38:36 -0800626 case BTTV_BOARD_NEBULA_DIGITV:
David Johnson05ade5a2005-09-09 13:02:55 -0700627 /*
628 * It is possible to determine the correct frontend using the I2C bus (see the Nebula SDK);
629 * this would be a cleaner solution than trying each frontend in turn.
630 */
631
632 /* Old Nebula (marked (c)2003 on high profile pci card) has nxt6000 demod */
Stuart Auchterlonie163d8fe2005-11-08 21:35:40 -0800633 digitv_alps_tded4_reset(card);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300634 card->fe = dvb_attach(nxt6000_attach, &vp3021_alps_tded4_config, card->i2c_adapter);
Stuart Auchterlonief30db062005-09-09 13:02:56 -0700635 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300636 card->fe->ops.tuner_ops.set_params = vp3021_alps_tded4_tuner_set_params;
David Johnson05ade5a2005-09-09 13:02:55 -0700637 dprintk ("dvb_bt8xx: an nxt6000 was detected on your digitv card\n");
Stuart Auchterlonief30db062005-09-09 13:02:56 -0700638 break;
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
David Johnson05ade5a2005-09-09 13:02:55 -0700641 /* New Nebula (marked (c)2005 on low profile pci card) has mt352 demod */
642 digitv_alps_tded4_reset(card);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300643 card->fe = dvb_attach(mt352_attach, &digitv_alps_tded4_config, card->i2c_adapter);
David Johnson05ade5a2005-09-09 13:02:55 -0700644
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300645 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300646 card->fe->ops.tuner_ops.calc_regs = digitv_alps_tded4_tuner_calc_regs;
David Johnson05ade5a2005-09-09 13:02:55 -0700647 dprintk ("dvb_bt8xx: an mt352 was detected on your digitv card\n");
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
650
Michael Krufky6cffcc22005-11-08 21:38:36 -0800651 case BTTV_BOARD_AVDVBT_761:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300652 card->fe = dvb_attach(sp887x_attach, &microtune_mt7202dtf_config, card->i2c_adapter);
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300653 if (card->fe) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300654 card->fe->ops.tuner_ops.set_params = microtune_mt7202dtf_tuner_set_params;
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300655 }
David Johnson05ade5a2005-09-09 13:02:55 -0700656 break;
657
Michael Krufky6cffcc22005-11-08 21:38:36 -0800658 case BTTV_BOARD_AVDVBT_771:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300659 card->fe = dvb_attach(mt352_attach, &advbt771_samsung_tdtc9251dh0_config, card->i2c_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300661 card->fe->ops.tuner_ops.calc_regs = advbt771_samsung_tdtc9251dh0_tuner_calc_regs;
662 card->fe->ops.info.frequency_min = 174000000;
663 card->fe->ops.info.frequency_max = 862000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665 break;
666
Michael Krufky6cffcc22005-11-08 21:38:36 -0800667 case BTTV_BOARD_TWINHAN_DST:
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700668 /* DST is not a frontend driver !!! */
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800669 state = kmalloc(sizeof (struct dst_state), GFP_KERNEL);
Amit Choudhary626ae832006-10-09 15:50:10 -0300670 if (!state) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300671 pr_err("No memory\n");
Amit Choudhary626ae832006-10-09 15:50:10 -0300672 break;
673 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700674 /* Setup the Card */
675 state->config = &dst_config;
676 state->i2c = card->i2c_adapter;
677 state->bt = card->bt;
Manu Abrahambbdd11f2006-08-08 15:48:08 -0300678 state->dst_ca = NULL;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700679 /* DST is not a frontend, attaching the ASIC */
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300680 if (dvb_attach(dst_attach, state, &card->dvb_adapter) == NULL) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300681 pr_err("%s: Could not find a Twinhan DST\n", __func__);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700682 break;
683 }
Manu Abrahambbdd11f2006-08-08 15:48:08 -0300684 /* Attach other DST peripherals if any */
685 /* Conditional Access device */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700686 card->fe = &state->frontend;
Manu Abrahambbdd11f2006-08-08 15:48:08 -0300687 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
688 dvb_attach(dst_ca_attach, state, &card->dvb_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 break;
690
Michael Krufky6cffcc22005-11-08 21:38:36 -0800691 case BTTV_BOARD_PINNACLESAT:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300692 card->fe = dvb_attach(cx24110_attach, &pctvsat_config, card->i2c_adapter);
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300693 if (card->fe) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300694 card->fe->ops.tuner_ops.init = pinnsat_tuner_init;
695 card->fe->ops.tuner_ops.sleep = pinnsat_tuner_sleep;
696 card->fe->ops.tuner_ops.set_params = cx24108_tuner_set_params;
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 break;
699
Michael Krufky6cffcc22005-11-08 21:38:36 -0800700 case BTTV_BOARD_PC_HDTV:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300701 card->fe = dvb_attach(or51211_attach, &or51211_config, card->i2c_adapter);
Michael Krufkycd2cd0a2007-06-24 18:14:52 -0300702 if (card->fe != NULL)
Michael Krufky967be9a2008-04-22 14:46:13 -0300703 dvb_attach(simple_tuner_attach, card->fe,
704 card->i2c_adapter, 0x61,
705 TUNER_PHILIPS_FCV1236D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 break;
707 }
708
David Johnson1f15ddd2005-09-09 13:02:54 -0700709 if (card->fe == NULL)
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300710 pr_err("A frontend driver was not found for device [%04x:%04x] subsystem [%04x:%04x]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 card->bt->dev->vendor,
712 card->bt->dev->device,
713 card->bt->dev->subsystem_vendor,
714 card->bt->dev->subsystem_device);
David Johnson1f15ddd2005-09-09 13:02:54 -0700715 else
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -0700716 if (dvb_register_frontend(&card->dvb_adapter, card->fe)) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300717 pr_err("Frontend registration failed!\n");
Andrew de Quinceyf52a8382006-08-08 09:10:09 -0300718 dvb_frontend_detach(card->fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 card->fe = NULL;
720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Jean Delvare8b6c8792006-05-23 15:56:50 -0300723static int __devinit dvb_bt8xx_load_card(struct dvb_bt8xx_card *card, u32 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 int result;
726
Janne Grunau78e92002008-04-09 19:13:13 -0300727 result = dvb_register_adapter(&card->dvb_adapter, card->card_name,
728 THIS_MODULE, &card->bt->dev->dev,
729 adapter_nr);
730 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300731 pr_err("dvb_register_adapter failed (errno = %d)\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -0700734 card->dvb_adapter.priv = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 card->bt->adapter = card->i2c_adapter;
737
738 memset(&card->demux, 0, sizeof(struct dvb_demux));
739
740 card->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING;
741
742 card->demux.priv = card;
743 card->demux.filternum = 256;
744 card->demux.feednum = 256;
745 card->demux.start_feed = dvb_bt8xx_start_feed;
746 card->demux.stop_feed = dvb_bt8xx_stop_feed;
747 card->demux.write_to_decoder = NULL;
748
Jonathan Niedere4b85372011-12-31 07:58:34 -0300749 result = dvb_dmx_init(&card->demux);
750 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300751 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300752 goto err_unregister_adaptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
754
755 card->dmxdev.filternum = 256;
756 card->dmxdev.demux = &card->demux.dmx;
757 card->dmxdev.capabilities = 0;
758
Jonathan Niedere4b85372011-12-31 07:58:34 -0300759 result = dvb_dmxdev_init(&card->dmxdev, &card->dvb_adapter);
760 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300761 pr_err("dvb_dmxdev_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300762 goto err_dmx_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
765 card->fe_hw.source = DMX_FRONTEND_0;
766
Jonathan Niedere4b85372011-12-31 07:58:34 -0300767 result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_hw);
768 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300769 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300770 goto err_dmxdev_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
772
773 card->fe_mem.source = DMX_MEMORY_FE;
774
Jonathan Niedere4b85372011-12-31 07:58:34 -0300775 result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_mem);
776 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300777 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300778 goto err_remove_hw_frontend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
Jonathan Niedere4b85372011-12-31 07:58:34 -0300781 result = card->demux.dmx.connect_frontend(&card->demux.dmx, &card->fe_hw);
782 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300783 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300784 goto err_remove_mem_frontend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786
Jonathan Nieder2dbbac32011-12-31 08:06:37 -0300787 result = dvb_net_init(&card->dvb_adapter, &card->dvbnet, &card->demux.dmx);
788 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300789 pr_err("dvb_net_init failed (errno = %d)\n", result);
Jonathan Nieder2dbbac32011-12-31 08:06:37 -0300790 goto err_disconnect_frontend;
791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 tasklet_init(&card->bt->tasklet, dvb_bt8xx_task, (unsigned long) card);
794
795 frontend_init(card, type);
796
797 return 0;
Jonathan Niedere4b85372011-12-31 07:58:34 -0300798
Jonathan Nieder2dbbac32011-12-31 08:06:37 -0300799err_disconnect_frontend:
800 card->demux.dmx.disconnect_frontend(&card->demux.dmx);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300801err_remove_mem_frontend:
802 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
803err_remove_hw_frontend:
804 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
805err_dmxdev_release:
806 dvb_dmxdev_release(&card->dmxdev);
807err_dmx_release:
808 dvb_dmx_release(&card->demux);
809err_unregister_adaptor:
810 dvb_unregister_adapter(&card->dvb_adapter);
811 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Jean Delvare8b6c8792006-05-23 15:56:50 -0300814static int __devinit dvb_bt8xx_probe(struct bttv_sub_device *sub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 struct dvb_bt8xx_card *card;
817 struct pci_dev* bttv_pci_dev;
818 int ret;
819
Panagiotis Issaris74081872006-01-11 19:40:56 -0200820 if (!(card = kzalloc(sizeof(struct dvb_bt8xx_card), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return -ENOMEM;
822
Ingo Molnar3593cab2006-02-07 06:49:14 -0200823 mutex_init(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 card->bttv_nr = sub->core->nr;
Hans Verkuil74fc7bd2009-03-14 12:36:54 -0300825 strlcpy(card->card_name, sub->core->v4l2_dev.name, sizeof(card->card_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 card->i2c_adapter = &sub->core->i2c_adap;
827
David Johnson1f15ddd2005-09-09 13:02:54 -0700828 switch(sub->core->type) {
Michael Krufky6cffcc22005-11-08 21:38:36 -0800829 case BTTV_BOARD_PINNACLESAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 card->gpio_mode = 0x0400c060;
831 /* should be: BT878_A_GAIN=0,BT878_A_PWRDN,BT878_DA_DPM,BT878_DA_SBR,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700832 BT878_DA_IOM=1,BT878_DA_APP to enable serial highspeed mode. */
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300833 card->op_sync_orin = BT878_RISC_SYNC_MASK;
834 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 break;
836
Michael Krufky6cffcc22005-11-08 21:38:36 -0800837 case BTTV_BOARD_DVICO_DVBT_LITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 card->gpio_mode = 0x0400C060;
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300839 card->op_sync_orin = BT878_RISC_SYNC_MASK;
840 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* 26, 15, 14, 6, 5
842 * A_PWRDN DA_DPM DA_SBR DA_IOM_DA
843 * DA_APP(parallel) */
844 break;
845
Michael Krufky6cffcc22005-11-08 21:38:36 -0800846 case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE:
Michael Krufky3cff00d2005-11-08 21:35:12 -0800847 card->gpio_mode = 0x0400c060;
848 card->op_sync_orin = BT878_RISC_SYNC_MASK;
849 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
850 break;
851
Michael Krufky6cffcc22005-11-08 21:38:36 -0800852 case BTTV_BOARD_NEBULA_DIGITV:
Michael Krufky6cffcc22005-11-08 21:38:36 -0800853 case BTTV_BOARD_AVDVBT_761:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 card->gpio_mode = (1 << 26) | (1 << 14) | (1 << 5);
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300855 card->op_sync_orin = BT878_RISC_SYNC_MASK;
856 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* A_PWRDN DA_SBR DA_APP (high speed serial) */
858 break;
859
Michael Krufky6cffcc22005-11-08 21:38:36 -0800860 case BTTV_BOARD_AVDVBT_771: //case 0x07711461:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 card->gpio_mode = 0x0400402B;
862 card->op_sync_orin = BT878_RISC_SYNC_MASK;
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300863 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /* A_PWRDN DA_SBR DA_APP[0] PKTP=10 RISC_ENABLE FIFO_ENABLE*/
865 break;
866
Michael Krufky6cffcc22005-11-08 21:38:36 -0800867 case BTTV_BOARD_TWINHAN_DST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 card->gpio_mode = 0x2204f2c;
869 card->op_sync_orin = BT878_RISC_SYNC_MASK;
870 card->irq_err_ignore = BT878_APABORT | BT878_ARIPERR |
871 BT878_APPERR | BT878_AFBUS;
872 /* 25,21,14,11,10,9,8,3,2 then
873 * 0x33 = 5,4,1,0
874 * A_SEL=SML, DA_MLB, DA_SBR,
875 * DA_SDR=f, fifo trigger = 32 DWORDS
876 * IOM = 0 == audio A/D
877 * DPM = 0 == digital audio mode
878 * == async data parallel port
879 * then 0x33 (13 is set by start_capture)
880 * DA_APP = async data parallel port,
881 * ACAP_EN = 1,
882 * RISC+FIFO ENABLE */
883 break;
884
Michael Krufky6cffcc22005-11-08 21:38:36 -0800885 case BTTV_BOARD_PC_HDTV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 card->gpio_mode = 0x0100EC7B;
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300887 card->op_sync_orin = BT878_RISC_SYNC_MASK;
888 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 break;
890
David Johnson05ade5a2005-09-09 13:02:55 -0700891 default:
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300892 pr_err("Unknown bttv card type: %d\n", sub->core->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 kfree(card);
894 return -ENODEV;
895 }
896
897 dprintk("dvb_bt8xx: identified card%d as %s\n", card->bttv_nr, card->card_name);
898
899 if (!(bttv_pci_dev = bttv_get_pcidev(card->bttv_nr))) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300900 pr_err("no pci device for card %d\n", card->bttv_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 kfree(card);
Mauro Carvalho Chehab16d6c0b2011-07-06 09:05:41 -0300902 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
905 if (!(card->bt = dvb_bt8xx_878_match(card->bttv_nr, bttv_pci_dev))) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300906 pr_err("unable to determine DMA core of card %d,\n", card->bttv_nr);
907 pr_err("if you have the ALSA bt87x audio driver installed, try removing it.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909 kfree(card);
Mauro Carvalho Chehab16d6c0b2011-07-06 09:05:41 -0300910 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912
Ingo Molnar3593cab2006-02-07 06:49:14 -0200913 mutex_init(&card->bt->gpio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 card->bt->bttv_nr = sub->core->nr;
915
916 if ( (ret = dvb_bt8xx_load_card(card, sub->core->type)) ) {
917 kfree(card);
918 return ret;
919 }
920
Russell King348290a2006-01-06 11:42:03 +0000921 dev_set_drvdata(&sub->dev, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return 0;
923}
924
Dmitry Torokhova462e9f2006-01-15 23:32:53 -0500925static void dvb_bt8xx_remove(struct bttv_sub_device *sub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Russell King348290a2006-01-06 11:42:03 +0000927 struct dvb_bt8xx_card *card = dev_get_drvdata(&sub->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 dprintk("dvb_bt8xx: unloading card%d\n", card->bttv_nr);
930
931 bt878_stop(card->bt);
932 tasklet_kill(&card->bt->tasklet);
933 dvb_net_release(&card->dvbnet);
934 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
935 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
936 dvb_dmxdev_release(&card->dmxdev);
937 dvb_dmx_release(&card->demux);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300938 if (card->fe) {
David Johnson1f15ddd2005-09-09 13:02:54 -0700939 dvb_unregister_frontend(card->fe);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -0300940 dvb_frontend_detach(card->fe);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300941 }
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -0700942 dvb_unregister_adapter(&card->dvb_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 kfree(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
947static struct bttv_sub_driver driver = {
948 .drv = {
949 .name = "dvb-bt8xx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 },
Russell King348290a2006-01-06 11:42:03 +0000951 .probe = dvb_bt8xx_probe,
952 .remove = dvb_bt8xx_remove,
953 /* FIXME:
954 * .shutdown = dvb_bt8xx_shutdown,
955 * .suspend = dvb_bt8xx_suspend,
956 * .resume = dvb_bt8xx_resume,
957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958};
959
960static int __init dvb_bt8xx_init(void)
961{
962 return bttv_sub_register(&driver, "dvb");
963}
964
965static void __exit dvb_bt8xx_exit(void)
966{
967 bttv_sub_unregister(&driver);
968}
969
970module_init(dvb_bt8xx_init);
971module_exit(dvb_bt8xx_exit);
972
973MODULE_DESCRIPTION("Bt8xx based DVB adapter driver");
974MODULE_AUTHOR("Florian Schirmer <jolt@tuxbox.org>");
975MODULE_LICENSE("GPL");