blob: ae550a1803649fb24d40871d037f0c2815c8d00c [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. Darwish0496daa72007-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
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800121static struct bt878 *dvb_bt8xx_878_match(unsigned int bttv_nr,
122 struct pci_dev* bttv_pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 unsigned int card_nr;
125
126 /* Hmm, n squared. Hope n is small */
David Johnson1f15ddd2005-09-09 13:02:54 -0700127 for (card_nr = 0; card_nr < bt878_num; card_nr++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (is_pci_slot_eq(bt878[card_nr].dev, bttv_pci_dev))
129 return &bt878[card_nr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return NULL;
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static int thomson_dtt7579_demod_init(struct dvb_frontend* fe)
134{
135 static u8 mt352_clock_config [] = { 0x89, 0x38, 0x38 };
136 static u8 mt352_reset [] = { 0x50, 0x80 };
137 static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
138 static u8 mt352_agc_cfg [] = { 0x67, 0x28, 0x20 };
139 static u8 mt352_gpp_ctl_cfg [] = { 0x8C, 0x33 };
140 static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };
141
142 mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
143 udelay(2000);
144 mt352_write(fe, mt352_reset, sizeof(mt352_reset));
145 mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
146
147 mt352_write(fe, mt352_agc_cfg, sizeof(mt352_agc_cfg));
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700148 mt352_write(fe, mt352_gpp_ctl_cfg, sizeof(mt352_gpp_ctl_cfg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));
150
151 return 0;
152}
153
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300154static int thomson_dtt7579_tuner_calc_regs(struct dvb_frontend *fe, u8* pllbuf, int buf_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300156 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 u32 div;
158 unsigned char bs = 0;
159 unsigned char cp = 0;
160
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300161 if (buf_len < 5)
162 return -EINVAL;
163
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300164 div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300166 if (c->frequency < 542000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700167 cp = 0xb4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300168 else if (c->frequency < 771000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700169 cp = 0xbc;
170 else
171 cp = 0xf4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300173 if (c->frequency == 0)
David Johnson1f15ddd2005-09-09 13:02:54 -0700174 bs = 0x03;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300175 else if (c->frequency < 443250000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700176 bs = 0x02;
177 else
178 bs = 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300180 pllbuf[0] = 0x60;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 pllbuf[1] = div >> 8;
182 pllbuf[2] = div & 0xff;
183 pllbuf[3] = cp;
184 pllbuf[4] = bs;
185
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300186 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189static struct mt352_config thomson_dtt7579_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 .demod_address = 0x0f,
191 .demod_init = thomson_dtt7579_demod_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192};
193
Michael Krufky8c990242006-04-11 01:46:46 -0300194static struct zl10353_config thomson_dtt7579_zl10353_config = {
195 .demod_address = 0x0f,
Michael Krufky8c990242006-04-11 01:46:46 -0300196};
197
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300198static int cx24108_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300200 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
201 u32 freq = c->frequency;
David Johnson1f15ddd2005-09-09 13:02:54 -0700202 int i, a, n, pump;
203 u32 band, pll;
David Johnson1f15ddd2005-09-09 13:02:54 -0700204 u32 osci[]={950000,1019000,1075000,1178000,1296000,1432000,
205 1576000,1718000,1856000,2036000,2150000};
206 u32 bandsel[]={0,0x00020000,0x00040000,0x00100800,0x00101000,
207 0x00102000,0x00104000,0x00108000,0x00110000,
208 0x00120000,0x00140000};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
David Johnson1f15ddd2005-09-09 13:02:54 -0700210 #define XTAL 1011100 /* Hz, really 1.0111 MHz and a /10 prescaler */
Jonathan Nieder37965542012-01-06 14:26:14 -0300211 dprintk("cx24108 debug: entering SetTunerFreq, freq=%d\n", freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700213 /* This is really the bit driving the tuner chip cx24108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
David Johnson1f15ddd2005-09-09 13:02:54 -0700215 if (freq<950000)
216 freq = 950000; /* kHz */
217 else if (freq>2150000)
218 freq = 2150000; /* satellite IF is 950..2150MHz */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700220 /* decide which VCO to use for the input frequency */
Hans Verkuil491aa962009-11-25 18:48:54 -0300221 for(i = 1; (i < ARRAY_SIZE(osci) - 1) && (osci[i] < freq); i++);
Jonathan Nieder37965542012-01-06 14:26:14 -0300222 dprintk("cx24108 debug: select vco #%d (f=%d)\n", i, freq);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700223 band=bandsel[i];
224 /* the gain values must be set by SetSymbolrate */
225 /* compute the pll divider needed, from Conexant data sheet,
226 resolved for (n*32+a), remember f(vco) is f(receive) *2 or *4,
227 depending on the divider bit. It is set to /4 on the 2 lowest
228 bands */
229 n=((i<=2?2:1)*freq*10L)/(XTAL/100);
230 a=n%32; n/=32; if(a==0) n--;
231 pump=(freq<(osci[i-1]+osci[i])/2);
232 pll=0xf8000000|
233 ((pump?1:2)<<(14+11))|
234 ((n&0x1ff)<<(5+11))|
235 ((a&0x1f)<<11);
236 /* everything is shifted left 11 bits to left-align the bits in the
237 32bit word. Output to the tuner goes MSB-aligned, after all */
Jonathan Nieder37965542012-01-06 14:26:14 -0300238 dprintk("cx24108 debug: pump=%d, n=%d, a=%d\n", pump, n, a);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700239 cx24110_pll_write(fe,band);
240 /* set vga and vca to their widest-band settings, as a precaution.
241 SetSymbolrate might not be called to set this up */
242 cx24110_pll_write(fe,0x500c0000);
243 cx24110_pll_write(fe,0x83f1f800);
244 cx24110_pll_write(fe,pll);
David Johnson1f15ddd2005-09-09 13:02:54 -0700245 //writereg(client,0x56,0x7f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 return 0;
248}
249
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300250static int pinnsat_tuner_init(struct dvb_frontend* fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Manu Abrahame7ac4642006-02-27 00:09:29 -0300252 struct dvb_bt8xx_card *card = fe->dvb->priv;
253
254 bttv_gpio_enable(card->bttv_nr, 1, 1); /* output */
255 bttv_write_gpio(card->bttv_nr, 1, 1); /* relay on */
Ian Pickworth6457af52006-02-27 00:09:45 -0300256
Manu Abrahame7ac4642006-02-27 00:09:29 -0300257 return 0;
258}
259
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300260static int pinnsat_tuner_sleep(struct dvb_frontend* fe)
Manu Abrahame7ac4642006-02-27 00:09:29 -0300261{
262 struct dvb_bt8xx_card *card = fe->dvb->priv;
263
264 bttv_write_gpio(card->bttv_nr, 1, 0); /* relay off */
265
David Johnson1f15ddd2005-09-09 13:02:54 -0700266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static struct cx24110_config pctvsat_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 .demod_address = 0x55,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271};
272
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300273static int microtune_mt7202dtf_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300275 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv;
277 u8 cfg, cpump, band_select;
278 u8 data[4];
279 u32 div;
280 struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = data, .len = sizeof(data) };
281
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300282 div = (36000000 + c->frequency + 83333) / 166666;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 cfg = 0x88;
284
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300285 if (c->frequency < 175000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700286 cpump = 2;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300287 else if (c->frequency < 390000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700288 cpump = 1;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300289 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700290 cpump = 2;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300291 else if (c->frequency < 750000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700292 cpump = 2;
293 else
294 cpump = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300296 if (c->frequency < 175000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700297 band_select = 0x0e;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300298 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700299 band_select = 0x05;
300 else
301 band_select = 0x03;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 data[0] = (div >> 8) & 0x7f;
304 data[1] = div & 0xff;
305 data[2] = ((div >> 10) & 0x60) | cfg;
Michael Krufky2b70a2f2005-11-08 21:35:16 -0800306 data[3] = (cpump << 6) | band_select;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Patrick Boettcherdea74862006-05-14 05:01:31 -0300308 if (fe->ops.i2c_gate_ctrl)
309 fe->ops.i2c_gate_ctrl(fe, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 i2c_transfer(card->i2c_adapter, &msg, 1);
311 return (div * 166666 - 36000000);
312}
313
314static int microtune_mt7202dtf_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name)
315{
316 struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv;
317
318 return request_firmware(fw, name, &bt->bt->dev->dev);
319}
320
Julia Lawall64e423d2016-01-03 10:27:53 -0200321static const struct sp887x_config microtune_mt7202dtf_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 .demod_address = 0x70,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 .request_firmware = microtune_mt7202dtf_request_firmware,
324};
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326static int advbt771_samsung_tdtc9251dh0_demod_init(struct dvb_frontend* fe)
327{
328 static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d };
329 static u8 mt352_reset [] = { 0x50, 0x80 };
330 static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
331 static u8 mt352_agc_cfg [] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700332 0x00, 0xFF, 0x00, 0x40, 0x40 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 static u8 mt352_av771_extra[] = { 0xB5, 0x7A };
334 static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
337 udelay(2000);
338 mt352_write(fe, mt352_reset, sizeof(mt352_reset));
339 mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
340
341 mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg));
342 udelay(2000);
343 mt352_write(fe, mt352_av771_extra,sizeof(mt352_av771_extra));
344 mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));
345
346 return 0;
347}
348
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300349static int advbt771_samsung_tdtc9251dh0_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300351 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 u32 div;
353 unsigned char bs = 0;
354 unsigned char cp = 0;
355
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300356 if (buf_len < 5) return -EINVAL;
357
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300358 div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300360 if (c->frequency < 150000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700361 cp = 0xB4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300362 else if (c->frequency < 173000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700363 cp = 0xBC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300364 else if (c->frequency < 250000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700365 cp = 0xB4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300366 else if (c->frequency < 400000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700367 cp = 0xBC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300368 else if (c->frequency < 420000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700369 cp = 0xF4;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300370 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700371 cp = 0xFC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300372 else if (c->frequency < 600000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700373 cp = 0xBC;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300374 else if (c->frequency < 730000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700375 cp = 0xF4;
376 else
377 cp = 0xFC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300379 if (c->frequency < 150000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700380 bs = 0x01;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300381 else if (c->frequency < 173000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700382 bs = 0x01;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300383 else if (c->frequency < 250000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700384 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300385 else if (c->frequency < 400000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700386 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300387 else if (c->frequency < 420000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700388 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300389 else if (c->frequency < 470000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700390 bs = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300391 else if (c->frequency < 600000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700392 bs = 0x08;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300393 else if (c->frequency < 730000000)
David Johnson1f15ddd2005-09-09 13:02:54 -0700394 bs = 0x08;
395 else
396 bs = 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300398 pllbuf[0] = 0x61;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 pllbuf[1] = div >> 8;
400 pllbuf[2] = div & 0xff;
401 pllbuf[3] = cp;
402 pllbuf[4] = bs;
403
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300404 return 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407static struct mt352_config advbt771_samsung_tdtc9251dh0_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 .demod_address = 0x0f,
409 .demod_init = advbt771_samsung_tdtc9251dh0_demod_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410};
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static struct dst_config dst_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 .demod_address = 0x55,
414};
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static int or51211_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name)
417{
418 struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv;
419
420 return request_firmware(fw, name, &bt->bt->dev->dev);
421}
422
423static void or51211_setmode(struct dvb_frontend * fe, int mode)
424{
425 struct dvb_bt8xx_card *bt = fe->dvb->priv;
426 bttv_write_gpio(bt->bttv_nr, 0x0002, mode); /* Reset */
427 msleep(20);
428}
429
430static void or51211_reset(struct dvb_frontend * fe)
431{
432 struct dvb_bt8xx_card *bt = fe->dvb->priv;
433
434 /* RESET DEVICE
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300435 * reset is controlled by GPIO-0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 * when set to 0 causes reset and when to 1 for normal op
437 * must remain reset for 128 clock cycles on a 50Mhz clock
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300438 * also PRM1 PRM2 & PRM4 are controlled by GPIO-1,GPIO-2 & GPIO-4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * We assume that the reset has be held low long enough or we
440 * have been reset by a power on. When the driver is unloaded
441 * reset set to 0 so if reloaded we have been reset.
442 */
443 /* reset & PRM1,2&4 are outputs */
444 int ret = bttv_gpio_enable(bt->bttv_nr, 0x001F, 0x001F);
David Johnson1f15ddd2005-09-09 13:02:54 -0700445 if (ret != 0)
David Johnson05ade5a2005-09-09 13:02:55 -0700446 printk(KERN_WARNING "or51211: Init Error - Can't Reset DVR (%i)\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 bttv_write_gpio(bt->bttv_nr, 0x001F, 0x0000); /* Reset */
448 msleep(20);
449 /* Now set for normal operation */
450 bttv_write_gpio(bt->bttv_nr, 0x0001F, 0x0001);
451 /* wait for operation to begin */
452 msleep(500);
453}
454
455static void or51211_sleep(struct dvb_frontend * fe)
456{
457 struct dvb_bt8xx_card *bt = fe->dvb->priv;
458 bttv_write_gpio(bt->bttv_nr, 0x0001, 0x0000);
459}
460
Julia Lawall4a40c732016-01-03 10:19:52 -0200461static const struct or51211_config or51211_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .demod_address = 0x15,
463 .request_firmware = or51211_request_firmware,
464 .setmode = or51211_setmode,
465 .reset = or51211_reset,
466 .sleep = or51211_sleep,
467};
468
Mauro Carvalho Chehab14d24d12011-12-24 12:24:33 -0300469static int vp3021_alps_tded4_tuner_set_params(struct dvb_frontend *fe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300471 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv;
473 u8 buf[4];
474 u32 div;
475 struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf) };
476
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300477 div = (c->frequency + 36166667) / 166667;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 buf[0] = (div >> 8) & 0x7F;
480 buf[1] = div & 0xFF;
481 buf[2] = 0x85;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300482 if ((c->frequency >= 47000000) && (c->frequency < 153000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 buf[3] = 0x01;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300484 else if ((c->frequency >= 153000000) && (c->frequency < 430000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 buf[3] = 0x02;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300486 else if ((c->frequency >= 430000000) && (c->frequency < 824000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 buf[3] = 0x0C;
Mauro Carvalho Chehabcba3f882011-12-21 10:21:21 -0300488 else if ((c->frequency >= 824000000) && (c->frequency < 863000000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 buf[3] = 0x8C;
490 else
491 return -EINVAL;
492
Patrick Boettcherdea74862006-05-14 05:01:31 -0300493 if (fe->ops.i2c_gate_ctrl)
494 fe->ops.i2c_gate_ctrl(fe, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 i2c_transfer(card->i2c_adapter, &msg, 1);
496 return 0;
497}
498
499static struct nxt6000_config vp3021_alps_tded4_config = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 .demod_address = 0x0a,
501 .clock_inversion = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502};
503
David Johnson05ade5a2005-09-09 13:02:55 -0700504static int digitv_alps_tded4_demod_init(struct dvb_frontend* fe)
505{
506 static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d };
507 static u8 mt352_reset [] = { 0x50, 0x80 };
508 static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
509 static u8 mt352_agc_cfg [] = { 0x67, 0x20, 0xa0 };
510 static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };
511
512 mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
513 udelay(2000);
514 mt352_write(fe, mt352_reset, sizeof(mt352_reset));
515 mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
516 mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg));
517 mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));
518
519 return 0;
520}
521
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300522static int digitv_alps_tded4_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len)
David Johnson05ade5a2005-09-09 13:02:55 -0700523{
524 u32 div;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300525 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
David Johnson05ade5a2005-09-09 13:02:55 -0700526
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300527 if (buf_len < 5)
528 return -EINVAL;
529
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300530 div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
David Johnson05ade5a2005-09-09 13:02:55 -0700531
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300532 pllbuf[0] = 0x61;
David Johnson05ade5a2005-09-09 13:02:55 -0700533 pllbuf[1] = (div >> 8) & 0x7F;
534 pllbuf[2] = div & 0xFF;
535 pllbuf[3] = 0x85;
536
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300537 dprintk("frequency %u, div %u\n", c->frequency, div);
David Johnson05ade5a2005-09-09 13:02:55 -0700538
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300539 if (c->frequency < 470000000)
David Johnson05ade5a2005-09-09 13:02:55 -0700540 pllbuf[4] = 0x02;
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300541 else if (c->frequency > 823000000)
David Johnson05ade5a2005-09-09 13:02:55 -0700542 pllbuf[4] = 0x88;
543 else
544 pllbuf[4] = 0x08;
545
Mauro Carvalho Chehab249fa0b2011-12-24 12:03:05 -0300546 if (c->bandwidth_hz == 8000000)
David Johnson05ade5a2005-09-09 13:02:55 -0700547 pllbuf[4] |= 0x04;
548
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300549 return 5;
David Johnson05ade5a2005-09-09 13:02:55 -0700550}
551
552static void digitv_alps_tded4_reset(struct dvb_bt8xx_card *bt)
553{
554 /*
555 * Reset the frontend, must be called before trying
556 * to initialise the MT352 or mt352_attach
Stuart Auchterlonie163d8fe2005-11-08 21:35:40 -0800557 * will fail. Same goes for the nxt6000 frontend.
David Johnson05ade5a2005-09-09 13:02:55 -0700558 *
559 */
560
561 int ret = bttv_gpio_enable(bt->bttv_nr, 0x08, 0x08);
562 if (ret != 0)
563 printk(KERN_WARNING "digitv_alps_tded4: Init Error - Can't Reset DVR (%i)\n", ret);
564
565 /* Pulse the reset line */
566 bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */
567 bttv_write_gpio(bt->bttv_nr, 0x08, 0x00); /* Low */
568 msleep(100);
569
570 bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */
571}
572
573static struct mt352_config digitv_alps_tded4_config = {
574 .demod_address = 0x0a,
575 .demod_init = digitv_alps_tded4_demod_init,
David Johnson05ade5a2005-09-09 13:02:55 -0700576};
577
Michael Krufky3cff00d2005-11-08 21:35:12 -0800578static struct lgdt330x_config tdvs_tua6034_config = {
579 .demod_address = 0x0e,
580 .demod_chip = LGDT3303,
581 .serial_mpeg = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
Michael Krufky3cff00d2005-11-08 21:35:12 -0800582};
583
584static void lgdt330x_reset(struct dvb_bt8xx_card *bt)
585{
586 /* Set pin 27 of the lgdt3303 chip high to reset the frontend */
587
588 /* Pulse the reset line */
589 bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */
590 bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000000); /* Low */
591 msleep(100);
592
593 bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */
594 msleep(100);
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597static void frontend_init(struct dvb_bt8xx_card *card, u32 type)
598{
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700599 struct dst_state* state = NULL;
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 switch(type) {
Michael Krufky6cffcc22005-11-08 21:38:36 -0800602 case BTTV_BOARD_DVICO_DVBT_LITE:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300603 card->fe = dvb_attach(mt352_attach, &thomson_dtt7579_config, card->i2c_adapter);
Michael Krufky8c990242006-04-11 01:46:46 -0300604
605 if (card->fe == NULL)
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300606 card->fe = dvb_attach(zl10353_attach, &thomson_dtt7579_zl10353_config,
Michael Krufky8c990242006-04-11 01:46:46 -0300607 card->i2c_adapter);
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300610 card->fe->ops.tuner_ops.calc_regs = thomson_dtt7579_tuner_calc_regs;
611 card->fe->ops.info.frequency_min = 174000000;
612 card->fe->ops.info.frequency_max = 862000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Michael Krufky6cffcc22005-11-08 21:38:36 -0800616 case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE:
Michael Krufky3cff00d2005-11-08 21:35:12 -0800617 lgdt330x_reset(card);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300618 card->fe = dvb_attach(lgdt330x_attach, &tdvs_tua6034_config, card->i2c_adapter);
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300619 if (card->fe != NULL) {
Michael Krufky827855d2008-04-22 14:46:16 -0300620 dvb_attach(simple_tuner_attach, card->fe,
621 card->i2c_adapter, 0x61,
622 TUNER_LG_TDVS_H06XF);
Michael Krufky3cff00d2005-11-08 21:35:12 -0800623 dprintk ("dvb_bt8xx: lgdt330x detected\n");
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300624 }
Michael Krufky3cff00d2005-11-08 21:35:12 -0800625 break;
Michael Krufky3cff00d2005-11-08 21:35:12 -0800626
Michael Krufky6cffcc22005-11-08 21:38:36 -0800627 case BTTV_BOARD_NEBULA_DIGITV:
David Johnson05ade5a2005-09-09 13:02:55 -0700628 /*
629 * It is possible to determine the correct frontend using the I2C bus (see the Nebula SDK);
630 * this would be a cleaner solution than trying each frontend in turn.
631 */
632
633 /* Old Nebula (marked (c)2003 on high profile pci card) has nxt6000 demod */
Stuart Auchterlonie163d8fe2005-11-08 21:35:40 -0800634 digitv_alps_tded4_reset(card);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300635 card->fe = dvb_attach(nxt6000_attach, &vp3021_alps_tded4_config, card->i2c_adapter);
Stuart Auchterlonief30db062005-09-09 13:02:56 -0700636 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300637 card->fe->ops.tuner_ops.set_params = vp3021_alps_tded4_tuner_set_params;
David Johnson05ade5a2005-09-09 13:02:55 -0700638 dprintk ("dvb_bt8xx: an nxt6000 was detected on your digitv card\n");
Stuart Auchterlonief30db062005-09-09 13:02:56 -0700639 break;
640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
David Johnson05ade5a2005-09-09 13:02:55 -0700642 /* New Nebula (marked (c)2005 on low profile pci card) has mt352 demod */
643 digitv_alps_tded4_reset(card);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300644 card->fe = dvb_attach(mt352_attach, &digitv_alps_tded4_config, card->i2c_adapter);
David Johnson05ade5a2005-09-09 13:02:55 -0700645
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300646 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300647 card->fe->ops.tuner_ops.calc_regs = digitv_alps_tded4_tuner_calc_regs;
David Johnson05ade5a2005-09-09 13:02:55 -0700648 dprintk ("dvb_bt8xx: an mt352 was detected on your digitv card\n");
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 break;
651
Michael Krufky6cffcc22005-11-08 21:38:36 -0800652 case BTTV_BOARD_AVDVBT_761:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300653 card->fe = dvb_attach(sp887x_attach, &microtune_mt7202dtf_config, card->i2c_adapter);
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300654 if (card->fe) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300655 card->fe->ops.tuner_ops.set_params = microtune_mt7202dtf_tuner_set_params;
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300656 }
David Johnson05ade5a2005-09-09 13:02:55 -0700657 break;
658
Michael Krufky6cffcc22005-11-08 21:38:36 -0800659 case BTTV_BOARD_AVDVBT_771:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300660 card->fe = dvb_attach(mt352_attach, &advbt771_samsung_tdtc9251dh0_config, card->i2c_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 if (card->fe != NULL) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300662 card->fe->ops.tuner_ops.calc_regs = advbt771_samsung_tdtc9251dh0_tuner_calc_regs;
663 card->fe->ops.info.frequency_min = 174000000;
664 card->fe->ops.info.frequency_max = 862000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 break;
667
Michael Krufky6cffcc22005-11-08 21:38:36 -0800668 case BTTV_BOARD_TWINHAN_DST:
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700669 /* DST is not a frontend driver !!! */
Robert P. J. Day5cbded52006-12-13 00:35:56 -0800670 state = kmalloc(sizeof (struct dst_state), GFP_KERNEL);
Amit Choudhary626ae832006-10-09 15:50:10 -0300671 if (!state) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300672 pr_err("No memory\n");
Amit Choudhary626ae832006-10-09 15:50:10 -0300673 break;
674 }
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700675 /* Setup the Card */
676 state->config = &dst_config;
677 state->i2c = card->i2c_adapter;
678 state->bt = card->bt;
Manu Abrahambbdd11f2006-08-08 15:48:08 -0300679 state->dst_ca = NULL;
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700680 /* DST is not a frontend, attaching the ASIC */
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300681 if (dvb_attach(dst_attach, state, &card->dvb_adapter) == NULL) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300682 pr_err("%s: Could not find a Twinhan DST\n", __func__);
Sudip Mukherjee2a6576f2017-10-07 22:36:57 +0000683 kfree(state);
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700684 break;
685 }
Manu Abrahambbdd11f2006-08-08 15:48:08 -0300686 /* Attach other DST peripherals if any */
687 /* Conditional Access device */
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700688 card->fe = &state->frontend;
Manu Abrahambbdd11f2006-08-08 15:48:08 -0300689 if (state->dst_hw_cap & DST_TYPE_HAS_CA)
690 dvb_attach(dst_ca_attach, state, &card->dvb_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 break;
692
Michael Krufky6cffcc22005-11-08 21:38:36 -0800693 case BTTV_BOARD_PINNACLESAT:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300694 card->fe = dvb_attach(cx24110_attach, &pctvsat_config, card->i2c_adapter);
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300695 if (card->fe) {
Patrick Boettcherdea74862006-05-14 05:01:31 -0300696 card->fe->ops.tuner_ops.init = pinnsat_tuner_init;
697 card->fe->ops.tuner_ops.sleep = pinnsat_tuner_sleep;
698 card->fe->ops.tuner_ops.set_params = cx24108_tuner_set_params;
Andrew de Quincey74aa7a22006-04-18 17:47:12 -0300699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 break;
701
Michael Krufky6cffcc22005-11-08 21:38:36 -0800702 case BTTV_BOARD_PC_HDTV:
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300703 card->fe = dvb_attach(or51211_attach, &or51211_config, card->i2c_adapter);
Michael Krufkycd2cd0a2007-06-24 18:14:52 -0300704 if (card->fe != NULL)
Michael Krufky967be9a2008-04-22 14:46:13 -0300705 dvb_attach(simple_tuner_attach, card->fe,
706 card->i2c_adapter, 0x61,
707 TUNER_PHILIPS_FCV1236D);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
709 }
710
David Johnson1f15ddd2005-09-09 13:02:54 -0700711 if (card->fe == NULL)
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300712 pr_err("A frontend driver was not found for device [%04x:%04x] subsystem [%04x:%04x]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 card->bt->dev->vendor,
714 card->bt->dev->device,
715 card->bt->dev->subsystem_vendor,
716 card->bt->dev->subsystem_device);
David Johnson1f15ddd2005-09-09 13:02:54 -0700717 else
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -0700718 if (dvb_register_frontend(&card->dvb_adapter, card->fe)) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300719 pr_err("Frontend registration failed!\n");
Andrew de Quinceyf52a8382006-08-08 09:10:09 -0300720 dvb_frontend_detach(card->fe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 card->fe = NULL;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800725static int dvb_bt8xx_load_card(struct dvb_bt8xx_card *card, u32 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 int result;
728
Janne Grunau78e92002008-04-09 19:13:13 -0300729 result = dvb_register_adapter(&card->dvb_adapter, card->card_name,
730 THIS_MODULE, &card->bt->dev->dev,
731 adapter_nr);
732 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300733 pr_err("dvb_register_adapter failed (errno = %d)\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -0700736 card->dvb_adapter.priv = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 card->bt->adapter = card->i2c_adapter;
739
740 memset(&card->demux, 0, sizeof(struct dvb_demux));
741
742 card->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING;
743
744 card->demux.priv = card;
745 card->demux.filternum = 256;
746 card->demux.feednum = 256;
747 card->demux.start_feed = dvb_bt8xx_start_feed;
748 card->demux.stop_feed = dvb_bt8xx_stop_feed;
749 card->demux.write_to_decoder = NULL;
750
Jonathan Niedere4b85372011-12-31 07:58:34 -0300751 result = dvb_dmx_init(&card->demux);
752 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300753 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300754 goto err_unregister_adaptor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
757 card->dmxdev.filternum = 256;
758 card->dmxdev.demux = &card->demux.dmx;
759 card->dmxdev.capabilities = 0;
760
Jonathan Niedere4b85372011-12-31 07:58:34 -0300761 result = dvb_dmxdev_init(&card->dmxdev, &card->dvb_adapter);
762 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300763 pr_err("dvb_dmxdev_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300764 goto err_dmx_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766
767 card->fe_hw.source = DMX_FRONTEND_0;
768
Jonathan Niedere4b85372011-12-31 07:58:34 -0300769 result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_hw);
770 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300771 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300772 goto err_dmxdev_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
775 card->fe_mem.source = DMX_MEMORY_FE;
776
Jonathan Niedere4b85372011-12-31 07:58:34 -0300777 result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_mem);
778 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300779 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300780 goto err_remove_hw_frontend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Jonathan Niedere4b85372011-12-31 07:58:34 -0300783 result = card->demux.dmx.connect_frontend(&card->demux.dmx, &card->fe_hw);
784 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300785 pr_err("dvb_dmx_init failed (errno = %d)\n", result);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300786 goto err_remove_mem_frontend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788
Jonathan Nieder2dbbac32011-12-31 08:06:37 -0300789 result = dvb_net_init(&card->dvb_adapter, &card->dvbnet, &card->demux.dmx);
790 if (result < 0) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300791 pr_err("dvb_net_init failed (errno = %d)\n", result);
Jonathan Nieder2dbbac32011-12-31 08:06:37 -0300792 goto err_disconnect_frontend;
793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 tasklet_init(&card->bt->tasklet, dvb_bt8xx_task, (unsigned long) card);
796
797 frontend_init(card, type);
798
799 return 0;
Jonathan Niedere4b85372011-12-31 07:58:34 -0300800
Jonathan Nieder2dbbac32011-12-31 08:06:37 -0300801err_disconnect_frontend:
802 card->demux.dmx.disconnect_frontend(&card->demux.dmx);
Jonathan Niedere4b85372011-12-31 07:58:34 -0300803err_remove_mem_frontend:
804 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
805err_remove_hw_frontend:
806 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
807err_dmxdev_release:
808 dvb_dmxdev_release(&card->dmxdev);
809err_dmx_release:
810 dvb_dmx_release(&card->demux);
811err_unregister_adaptor:
812 dvb_unregister_adapter(&card->dvb_adapter);
813 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800816static int dvb_bt8xx_probe(struct bttv_sub_device *sub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct dvb_bt8xx_card *card;
819 struct pci_dev* bttv_pci_dev;
820 int ret;
821
Panagiotis Issaris74081872006-01-11 19:40:56 -0200822 if (!(card = kzalloc(sizeof(struct dvb_bt8xx_card), GFP_KERNEL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return -ENOMEM;
824
Ingo Molnar3593cab2006-02-07 06:49:14 -0200825 mutex_init(&card->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 card->bttv_nr = sub->core->nr;
Hans Verkuil74fc7bd2009-03-14 12:36:54 -0300827 strlcpy(card->card_name, sub->core->v4l2_dev.name, sizeof(card->card_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 card->i2c_adapter = &sub->core->i2c_adap;
829
David Johnson1f15ddd2005-09-09 13:02:54 -0700830 switch(sub->core->type) {
Michael Krufky6cffcc22005-11-08 21:38:36 -0800831 case BTTV_BOARD_PINNACLESAT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 card->gpio_mode = 0x0400c060;
833 /* should be: BT878_A_GAIN=0,BT878_A_PWRDN,BT878_DA_DPM,BT878_DA_SBR,
Johannes Stezenbach50b215a2005-05-16 21:54:41 -0700834 BT878_DA_IOM=1,BT878_DA_APP to enable serial highspeed mode. */
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300835 card->op_sync_orin = BT878_RISC_SYNC_MASK;
836 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 break;
838
Michael Krufky6cffcc22005-11-08 21:38:36 -0800839 case BTTV_BOARD_DVICO_DVBT_LITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 card->gpio_mode = 0x0400C060;
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300841 card->op_sync_orin = BT878_RISC_SYNC_MASK;
842 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* 26, 15, 14, 6, 5
844 * A_PWRDN DA_DPM DA_SBR DA_IOM_DA
845 * DA_APP(parallel) */
846 break;
847
Michael Krufky6cffcc22005-11-08 21:38:36 -0800848 case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE:
Michael Krufky3cff00d2005-11-08 21:35:12 -0800849 card->gpio_mode = 0x0400c060;
850 card->op_sync_orin = BT878_RISC_SYNC_MASK;
851 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
852 break;
853
Michael Krufky6cffcc22005-11-08 21:38:36 -0800854 case BTTV_BOARD_NEBULA_DIGITV:
Michael Krufky6cffcc22005-11-08 21:38:36 -0800855 case BTTV_BOARD_AVDVBT_761:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 card->gpio_mode = (1 << 26) | (1 << 14) | (1 << 5);
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300857 card->op_sync_orin = BT878_RISC_SYNC_MASK;
858 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* A_PWRDN DA_SBR DA_APP (high speed serial) */
860 break;
861
Michael Krufky6cffcc22005-11-08 21:38:36 -0800862 case BTTV_BOARD_AVDVBT_771: //case 0x07711461:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 card->gpio_mode = 0x0400402B;
864 card->op_sync_orin = BT878_RISC_SYNC_MASK;
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300865 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* A_PWRDN DA_SBR DA_APP[0] PKTP=10 RISC_ENABLE FIFO_ENABLE*/
867 break;
868
Michael Krufky6cffcc22005-11-08 21:38:36 -0800869 case BTTV_BOARD_TWINHAN_DST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 card->gpio_mode = 0x2204f2c;
871 card->op_sync_orin = BT878_RISC_SYNC_MASK;
872 card->irq_err_ignore = BT878_APABORT | BT878_ARIPERR |
873 BT878_APPERR | BT878_AFBUS;
874 /* 25,21,14,11,10,9,8,3,2 then
875 * 0x33 = 5,4,1,0
876 * A_SEL=SML, DA_MLB, DA_SBR,
877 * DA_SDR=f, fifo trigger = 32 DWORDS
878 * IOM = 0 == audio A/D
879 * DPM = 0 == digital audio mode
880 * == async data parallel port
881 * then 0x33 (13 is set by start_capture)
882 * DA_APP = async data parallel port,
883 * ACAP_EN = 1,
884 * RISC+FIFO ENABLE */
885 break;
886
Michael Krufky6cffcc22005-11-08 21:38:36 -0800887 case BTTV_BOARD_PC_HDTV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 card->gpio_mode = 0x0100EC7B;
Manu Abrahamdf5a4f42006-02-27 00:09:37 -0300889 card->op_sync_orin = BT878_RISC_SYNC_MASK;
890 card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 break;
892
David Johnson05ade5a2005-09-09 13:02:55 -0700893 default:
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300894 pr_err("Unknown bttv card type: %d\n", sub->core->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 kfree(card);
896 return -ENODEV;
897 }
898
899 dprintk("dvb_bt8xx: identified card%d as %s\n", card->bttv_nr, card->card_name);
900
901 if (!(bttv_pci_dev = bttv_get_pcidev(card->bttv_nr))) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300902 pr_err("no pci device for card %d\n", card->bttv_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 kfree(card);
Mauro Carvalho Chehab16d6c0b2011-07-06 09:05:41 -0300904 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
907 if (!(card->bt = dvb_bt8xx_878_match(card->bttv_nr, bttv_pci_dev))) {
Jonathan Nieder6c59eef2012-01-06 14:26:41 -0300908 pr_err("unable to determine DMA core of card %d,\n", card->bttv_nr);
909 pr_err("if you have the ALSA bt87x audio driver installed, try removing it.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 kfree(card);
Mauro Carvalho Chehab16d6c0b2011-07-06 09:05:41 -0300912 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
Ingo Molnar3593cab2006-02-07 06:49:14 -0200915 mutex_init(&card->bt->gpio_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 card->bt->bttv_nr = sub->core->nr;
917
918 if ( (ret = dvb_bt8xx_load_card(card, sub->core->type)) ) {
919 kfree(card);
920 return ret;
921 }
922
Russell King348290a2006-01-06 11:42:03 +0000923 dev_set_drvdata(&sub->dev, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return 0;
925}
926
Dmitry Torokhova462e9f2006-01-15 23:32:53 -0500927static void dvb_bt8xx_remove(struct bttv_sub_device *sub)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Russell King348290a2006-01-06 11:42:03 +0000929 struct dvb_bt8xx_card *card = dev_get_drvdata(&sub->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 dprintk("dvb_bt8xx: unloading card%d\n", card->bttv_nr);
932
933 bt878_stop(card->bt);
934 tasklet_kill(&card->bt->tasklet);
935 dvb_net_release(&card->dvbnet);
936 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
937 card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
938 dvb_dmxdev_release(&card->dmxdev);
939 dvb_dmx_release(&card->demux);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300940 if (card->fe) {
David Johnson1f15ddd2005-09-09 13:02:54 -0700941 dvb_unregister_frontend(card->fe);
Andrew de Quinceyf52a8382006-08-08 09:10:09 -0300942 dvb_frontend_detach(card->fe);
Andrew de Quincey2bfe0312006-08-08 09:10:08 -0300943 }
Johannes Stezenbachfdc53a62005-05-16 21:54:39 -0700944 dvb_unregister_adapter(&card->dvb_adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 kfree(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949static struct bttv_sub_driver driver = {
950 .drv = {
951 .name = "dvb-bt8xx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 },
Russell King348290a2006-01-06 11:42:03 +0000953 .probe = dvb_bt8xx_probe,
954 .remove = dvb_bt8xx_remove,
955 /* FIXME:
956 * .shutdown = dvb_bt8xx_shutdown,
957 * .suspend = dvb_bt8xx_suspend,
958 * .resume = dvb_bt8xx_resume,
959 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960};
961
962static int __init dvb_bt8xx_init(void)
963{
964 return bttv_sub_register(&driver, "dvb");
965}
966
967static void __exit dvb_bt8xx_exit(void)
968{
969 bttv_sub_unregister(&driver);
970}
971
972module_init(dvb_bt8xx_init);
973module_exit(dvb_bt8xx_exit);
974
975MODULE_DESCRIPTION("Bt8xx based DVB adapter driver");
976MODULE_AUTHOR("Florian Schirmer <jolt@tuxbox.org>");
977MODULE_LICENSE("GPL");