dvb-bt8xx.c 27.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Bt8xx based DVB adapter driver
 *
 * Copyright (C) 2002,2003 Florian Schirmer <jolt@tuxbox.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#include <linux/bitops.h>
#include <linux/module.h>
#include <linux/init.h>
25
#include <linux/kernel.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
#include <linux/device.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/i2c.h>

#include "dmxdev.h"
#include "dvbdev.h"
#include "dvb_demux.h"
#include "dvb_frontend.h"
#include "dvb-bt8xx.h"
#include "bt878.h"

static int debug;

module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");

43 44
DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

L
Linus Torvalds 已提交
45
#define dprintk( args... ) \
46
	do { \
L
Linus Torvalds 已提交
47
		if (debug) printk(KERN_DEBUG args); \
48
	} while (0)
L
Linus Torvalds 已提交
49

50 51
#define IF_FREQUENCYx6 217    /* 6 * 36.16666666667MHz */

L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
static void dvb_bt8xx_task(unsigned long data)
{
	struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *)data;

	//printk("%d ", card->bt->finished_block);

	while (card->bt->last_block != card->bt->finished_block) {
		(card->bt->TS_Size ? dvb_dmx_swfilter_204 : dvb_dmx_swfilter)
			(&card->demux,
			 &card->bt->buf_cpu[card->bt->last_block *
					    card->bt->block_bytes],
			 card->bt->block_bytes);
		card->bt->last_block = (card->bt->last_block + 1) %
					card->bt->block_count;
	}
}

static int dvb_bt8xx_start_feed(struct dvb_demux_feed *dvbdmxfeed)
{
71
	struct dvb_demux*dvbdmx = dvbdmxfeed->demux;
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79
	struct dvb_bt8xx_card *card = dvbdmx->priv;
	int rc;

	dprintk("dvb_bt8xx: start_feed\n");

	if (!dvbdmx->dmx.frontend)
		return -EINVAL;

80
	mutex_lock(&card->lock);
L
Linus Torvalds 已提交
81 82 83 84 85
	card->nfeeds++;
	rc = card->nfeeds;
	if (card->nfeeds == 1)
		bt878_start(card->bt, card->gpio_mode,
			    card->op_sync_orin, card->irq_err_ignore);
86
	mutex_unlock(&card->lock);
L
Linus Torvalds 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99
	return rc;
}

static int dvb_bt8xx_stop_feed(struct dvb_demux_feed *dvbdmxfeed)
{
	struct dvb_demux *dvbdmx = dvbdmxfeed->demux;
	struct dvb_bt8xx_card *card = dvbdmx->priv;

	dprintk("dvb_bt8xx: stop_feed\n");

	if (!dvbdmx->dmx.frontend)
		return -EINVAL;

100
	mutex_lock(&card->lock);
L
Linus Torvalds 已提交
101 102 103
	card->nfeeds--;
	if (card->nfeeds == 0)
		bt878_stop(card->bt);
104
	mutex_unlock(&card->lock);
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118

	return 0;
}

static int is_pci_slot_eq(struct pci_dev* adev, struct pci_dev* bdev)
{
	if ((adev->subsystem_vendor == bdev->subsystem_vendor) &&
		(adev->subsystem_device == bdev->subsystem_device) &&
		(adev->bus->number == bdev->bus->number) &&
		(PCI_SLOT(adev->devfn) == PCI_SLOT(bdev->devfn)))
		return 1;
	return 0;
}

119
static struct bt878 __devinit *dvb_bt8xx_878_match(unsigned int bttv_nr, struct pci_dev* bttv_pci_dev)
L
Linus Torvalds 已提交
120 121 122 123
{
	unsigned int card_nr;

	/* Hmm, n squared. Hope n is small */
D
David Johnson 已提交
124
	for (card_nr = 0; card_nr < bt878_num; card_nr++)
L
Linus Torvalds 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
		if (is_pci_slot_eq(bt878[card_nr].dev, bttv_pci_dev))
			return &bt878[card_nr];
	return NULL;
}

static int thomson_dtt7579_demod_init(struct dvb_frontend* fe)
{
	static u8 mt352_clock_config [] = { 0x89, 0x38, 0x38 };
	static u8 mt352_reset [] = { 0x50, 0x80 };
	static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
	static u8 mt352_agc_cfg [] = { 0x67, 0x28, 0x20 };
	static u8 mt352_gpp_ctl_cfg [] = { 0x8C, 0x33 };
	static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };

	mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
	udelay(2000);
	mt352_write(fe, mt352_reset, sizeof(mt352_reset));
	mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));

	mt352_write(fe, mt352_agc_cfg, sizeof(mt352_agc_cfg));
145
	mt352_write(fe, mt352_gpp_ctl_cfg, sizeof(mt352_gpp_ctl_cfg));
L
Linus Torvalds 已提交
146 147 148 149 150
	mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));

	return 0;
}

151
static int thomson_dtt7579_tuner_calc_regs(struct dvb_frontend *fe, u8* pllbuf, int buf_len)
L
Linus Torvalds 已提交
152
{
153
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
L
Linus Torvalds 已提交
154 155 156 157
	u32 div;
	unsigned char bs = 0;
	unsigned char cp = 0;

158 159 160
	if (buf_len < 5)
		return -EINVAL;

161
	div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
L
Linus Torvalds 已提交
162

163
	if (c->frequency < 542000000)
D
David Johnson 已提交
164
		cp = 0xb4;
165
	else if (c->frequency < 771000000)
D
David Johnson 已提交
166 167 168
		cp = 0xbc;
	else
		cp = 0xf4;
L
Linus Torvalds 已提交
169

170
	if (c->frequency == 0)
D
David Johnson 已提交
171
		bs = 0x03;
172
	else if (c->frequency < 443250000)
D
David Johnson 已提交
173 174 175
		bs = 0x02;
	else
		bs = 0x08;
L
Linus Torvalds 已提交
176

177
	pllbuf[0] = 0x60;
L
Linus Torvalds 已提交
178 179 180 181 182
	pllbuf[1] = div >> 8;
	pllbuf[2] = div & 0xff;
	pllbuf[3] = cp;
	pllbuf[4] = bs;

183
	return 5;
L
Linus Torvalds 已提交
184 185 186 187 188 189 190
}

static struct mt352_config thomson_dtt7579_config = {
	.demod_address = 0x0f,
	.demod_init = thomson_dtt7579_demod_init,
};

191 192 193 194
static struct zl10353_config thomson_dtt7579_zl10353_config = {
	.demod_address = 0x0f,
};

195
static int cx24108_tuner_set_params(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
196
{
197 198
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
	u32 freq = c->frequency;
D
David Johnson 已提交
199 200 201 202 203 204 205
	int i, a, n, pump;
	u32 band, pll;
	u32 osci[]={950000,1019000,1075000,1178000,1296000,1432000,
		1576000,1718000,1856000,2036000,2150000};
	u32 bandsel[]={0,0x00020000,0x00040000,0x00100800,0x00101000,
		0x00102000,0x00104000,0x00108000,0x00110000,
		0x00120000,0x00140000};
L
Linus Torvalds 已提交
206

D
David Johnson 已提交
207
	#define XTAL 1011100 /* Hz, really 1.0111 MHz and a /10 prescaler */
208 209 210 211
	printk("cx24108 debug: entering SetTunerFreq, freq=%d\n",freq);

	/* This is really the bit driving the tuner chip cx24108 */

D
David Johnson 已提交
212 213 214 215
	if (freq<950000)
		freq = 950000; /* kHz */
	else if (freq>2150000)
		freq = 2150000; /* satellite IF is 950..2150MHz */
216 217

	/* decide which VCO to use for the input frequency */
218
	for(i = 1; (i < ARRAY_SIZE(osci) - 1) && (osci[i] < freq); i++);
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
	printk("cx24108 debug: select vco #%d (f=%d)\n",i,freq);
	band=bandsel[i];
	/* the gain values must be set by SetSymbolrate */
	/* compute the pll divider needed, from Conexant data sheet,
	   resolved for (n*32+a), remember f(vco) is f(receive) *2 or *4,
	   depending on the divider bit. It is set to /4 on the 2 lowest
	   bands  */
	n=((i<=2?2:1)*freq*10L)/(XTAL/100);
	a=n%32; n/=32; if(a==0) n--;
	pump=(freq<(osci[i-1]+osci[i])/2);
	pll=0xf8000000|
	    ((pump?1:2)<<(14+11))|
	    ((n&0x1ff)<<(5+11))|
	    ((a&0x1f)<<11);
	/* everything is shifted left 11 bits to left-align the bits in the
	   32bit word. Output to the tuner goes MSB-aligned, after all */
	printk("cx24108 debug: pump=%d, n=%d, a=%d\n",pump,n,a);
	cx24110_pll_write(fe,band);
	/* set vga and vca to their widest-band settings, as a precaution.
	   SetSymbolrate might not be called to set this up */
	cx24110_pll_write(fe,0x500c0000);
	cx24110_pll_write(fe,0x83f1f800);
	cx24110_pll_write(fe,pll);
D
David Johnson 已提交
242
	//writereg(client,0x56,0x7f);
L
Linus Torvalds 已提交
243 244 245 246

	return 0;
}

247
static int pinnsat_tuner_init(struct dvb_frontend* fe)
L
Linus Torvalds 已提交
248
{
249 250 251 252
	struct dvb_bt8xx_card *card = fe->dvb->priv;

	bttv_gpio_enable(card->bttv_nr, 1, 1);  /* output */
	bttv_write_gpio(card->bttv_nr, 1, 1);   /* relay on */
253

254 255 256
	return 0;
}

257
static int pinnsat_tuner_sleep(struct dvb_frontend* fe)
258 259 260 261 262
{
	struct dvb_bt8xx_card *card = fe->dvb->priv;

	bttv_write_gpio(card->bttv_nr, 1, 0);   /* relay off */

D
David Johnson 已提交
263
	return 0;
L
Linus Torvalds 已提交
264 265 266 267 268 269
}

static struct cx24110_config pctvsat_config = {
	.demod_address = 0x55,
};

270
static int microtune_mt7202dtf_tuner_set_params(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
271
{
272
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
L
Linus Torvalds 已提交
273 274 275 276 277 278
	struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv;
	u8 cfg, cpump, band_select;
	u8 data[4];
	u32 div;
	struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = data, .len = sizeof(data) };

279
	div = (36000000 + c->frequency + 83333) / 166666;
L
Linus Torvalds 已提交
280 281
	cfg = 0x88;

282
	if (c->frequency < 175000000)
D
David Johnson 已提交
283
		cpump = 2;
284
	else if (c->frequency < 390000000)
D
David Johnson 已提交
285
		cpump = 1;
286
	else if (c->frequency < 470000000)
D
David Johnson 已提交
287
		cpump = 2;
288
	else if (c->frequency < 750000000)
D
David Johnson 已提交
289 290 291
		cpump = 2;
	else
		cpump = 3;
L
Linus Torvalds 已提交
292

293
	if (c->frequency < 175000000)
D
David Johnson 已提交
294
		band_select = 0x0e;
295
	else if (c->frequency < 470000000)
D
David Johnson 已提交
296 297 298
		band_select = 0x05;
	else
		band_select = 0x03;
L
Linus Torvalds 已提交
299 300 301 302

	data[0] = (div >> 8) & 0x7f;
	data[1] = div & 0xff;
	data[2] = ((div >> 10) & 0x60) | cfg;
303
	data[3] = (cpump << 6) | band_select;
L
Linus Torvalds 已提交
304

305 306
	if (fe->ops.i2c_gate_ctrl)
		fe->ops.i2c_gate_ctrl(fe, 1);
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
	i2c_transfer(card->i2c_adapter, &msg, 1);
	return (div * 166666 - 36000000);
}

static int microtune_mt7202dtf_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name)
{
	struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv;

	return request_firmware(fw, name, &bt->bt->dev->dev);
}

static struct sp887x_config microtune_mt7202dtf_config = {
	.demod_address = 0x70,
	.request_firmware = microtune_mt7202dtf_request_firmware,
};

static int advbt771_samsung_tdtc9251dh0_demod_init(struct dvb_frontend* fe)
{
	static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d };
	static u8 mt352_reset [] = { 0x50, 0x80 };
	static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
	static u8 mt352_agc_cfg [] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF,
329
				       0x00, 0xFF, 0x00, 0x40, 0x40 };
L
Linus Torvalds 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
	static u8 mt352_av771_extra[] = { 0xB5, 0x7A };
	static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };

	mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
	udelay(2000);
	mt352_write(fe, mt352_reset, sizeof(mt352_reset));
	mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));

	mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg));
	udelay(2000);
	mt352_write(fe, mt352_av771_extra,sizeof(mt352_av771_extra));
	mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));

	return 0;
}

346
static int advbt771_samsung_tdtc9251dh0_tuner_calc_regs(struct dvb_frontend *fe, u8 *pllbuf, int buf_len)
L
Linus Torvalds 已提交
347
{
348
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
L
Linus Torvalds 已提交
349 350 351 352
	u32 div;
	unsigned char bs = 0;
	unsigned char cp = 0;

353 354
	if (buf_len < 5) return -EINVAL;

355
	div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
L
Linus Torvalds 已提交
356

357
	if (c->frequency < 150000000)
D
David Johnson 已提交
358
		cp = 0xB4;
359
	else if (c->frequency < 173000000)
D
David Johnson 已提交
360
		cp = 0xBC;
361
	else if (c->frequency < 250000000)
D
David Johnson 已提交
362
		cp = 0xB4;
363
	else if (c->frequency < 400000000)
D
David Johnson 已提交
364
		cp = 0xBC;
365
	else if (c->frequency < 420000000)
D
David Johnson 已提交
366
		cp = 0xF4;
367
	else if (c->frequency < 470000000)
D
David Johnson 已提交
368
		cp = 0xFC;
369
	else if (c->frequency < 600000000)
D
David Johnson 已提交
370
		cp = 0xBC;
371
	else if (c->frequency < 730000000)
D
David Johnson 已提交
372 373 374 375
		cp = 0xF4;
	else
		cp = 0xFC;

376
	if (c->frequency < 150000000)
D
David Johnson 已提交
377
		bs = 0x01;
378
	else if (c->frequency < 173000000)
D
David Johnson 已提交
379
		bs = 0x01;
380
	else if (c->frequency < 250000000)
D
David Johnson 已提交
381
		bs = 0x02;
382
	else if (c->frequency < 400000000)
D
David Johnson 已提交
383
		bs = 0x02;
384
	else if (c->frequency < 420000000)
D
David Johnson 已提交
385
		bs = 0x02;
386
	else if (c->frequency < 470000000)
D
David Johnson 已提交
387
		bs = 0x02;
388
	else if (c->frequency < 600000000)
D
David Johnson 已提交
389
		bs = 0x08;
390
	else if (c->frequency < 730000000)
D
David Johnson 已提交
391 392 393
		bs = 0x08;
	else
		bs = 0x08;
L
Linus Torvalds 已提交
394

395
	pllbuf[0] = 0x61;
L
Linus Torvalds 已提交
396 397 398 399 400
	pllbuf[1] = div >> 8;
	pllbuf[2] = div & 0xff;
	pllbuf[3] = cp;
	pllbuf[4] = bs;

401
	return 5;
L
Linus Torvalds 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
}

static struct mt352_config advbt771_samsung_tdtc9251dh0_config = {
	.demod_address = 0x0f,
	.demod_init = advbt771_samsung_tdtc9251dh0_demod_init,
};

static struct dst_config dst_config = {
	.demod_address = 0x55,
};

static int or51211_request_firmware(struct dvb_frontend* fe, const struct firmware **fw, char* name)
{
	struct dvb_bt8xx_card* bt = (struct dvb_bt8xx_card*) fe->dvb->priv;

	return request_firmware(fw, name, &bt->bt->dev->dev);
}

static void or51211_setmode(struct dvb_frontend * fe, int mode)
{
	struct dvb_bt8xx_card *bt = fe->dvb->priv;
	bttv_write_gpio(bt->bttv_nr, 0x0002, mode);   /* Reset */
	msleep(20);
}

static void or51211_reset(struct dvb_frontend * fe)
{
	struct dvb_bt8xx_card *bt = fe->dvb->priv;

	/* RESET DEVICE
L
Lucas De Marchi 已提交
432
	 * reset is controlled by GPIO-0
L
Linus Torvalds 已提交
433 434
	 * when set to 0 causes reset and when to 1 for normal op
	 * must remain reset for 128 clock cycles on a 50Mhz clock
L
Lucas De Marchi 已提交
435
	 * also PRM1 PRM2 & PRM4 are controlled by GPIO-1,GPIO-2 & GPIO-4
L
Linus Torvalds 已提交
436 437 438 439 440 441
	 * We assume that the reset has be held low long enough or we
	 * have been reset by a power on.  When the driver is unloaded
	 * reset set to 0 so if reloaded we have been reset.
	 */
	/* reset & PRM1,2&4 are outputs */
	int ret = bttv_gpio_enable(bt->bttv_nr, 0x001F, 0x001F);
D
David Johnson 已提交
442
	if (ret != 0)
443
		printk(KERN_WARNING "or51211: Init Error - Can't Reset DVR (%i)\n", ret);
L
Linus Torvalds 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
	bttv_write_gpio(bt->bttv_nr, 0x001F, 0x0000);   /* Reset */
	msleep(20);
	/* Now set for normal operation */
	bttv_write_gpio(bt->bttv_nr, 0x0001F, 0x0001);
	/* wait for operation to begin */
	msleep(500);
}

static void or51211_sleep(struct dvb_frontend * fe)
{
	struct dvb_bt8xx_card *bt = fe->dvb->priv;
	bttv_write_gpio(bt->bttv_nr, 0x0001, 0x0000);
}

static struct or51211_config or51211_config = {
	.demod_address = 0x15,
	.request_firmware = or51211_request_firmware,
	.setmode = or51211_setmode,
	.reset = or51211_reset,
	.sleep = or51211_sleep,
};

466
static int vp3021_alps_tded4_tuner_set_params(struct dvb_frontend *fe)
L
Linus Torvalds 已提交
467
{
468
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
L
Linus Torvalds 已提交
469 470 471 472 473
	struct dvb_bt8xx_card *card = (struct dvb_bt8xx_card *) fe->dvb->priv;
	u8 buf[4];
	u32 div;
	struct i2c_msg msg = { .addr = 0x60, .flags = 0, .buf = buf, .len = sizeof(buf) };

474
	div = (c->frequency + 36166667) / 166667;
L
Linus Torvalds 已提交
475 476 477 478

	buf[0] = (div >> 8) & 0x7F;
	buf[1] = div & 0xFF;
	buf[2] = 0x85;
479
	if ((c->frequency >= 47000000) && (c->frequency < 153000000))
L
Linus Torvalds 已提交
480
		buf[3] = 0x01;
481
	else if ((c->frequency >= 153000000) && (c->frequency < 430000000))
L
Linus Torvalds 已提交
482
		buf[3] = 0x02;
483
	else if ((c->frequency >= 430000000) && (c->frequency < 824000000))
L
Linus Torvalds 已提交
484
		buf[3] = 0x0C;
485
	else if ((c->frequency >= 824000000) && (c->frequency < 863000000))
L
Linus Torvalds 已提交
486 487 488 489
		buf[3] = 0x8C;
	else
		return -EINVAL;

490 491
	if (fe->ops.i2c_gate_ctrl)
		fe->ops.i2c_gate_ctrl(fe, 1);
L
Linus Torvalds 已提交
492 493 494 495 496 497 498 499 500
	i2c_transfer(card->i2c_adapter, &msg, 1);
	return 0;
}

static struct nxt6000_config vp3021_alps_tded4_config = {
	.demod_address = 0x0a,
	.clock_inversion = 1,
};

501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
static int digitv_alps_tded4_demod_init(struct dvb_frontend* fe)
{
	static u8 mt352_clock_config [] = { 0x89, 0x38, 0x2d };
	static u8 mt352_reset [] = { 0x50, 0x80 };
	static u8 mt352_adc_ctl_1_cfg [] = { 0x8E, 0x40 };
	static u8 mt352_agc_cfg [] = { 0x67, 0x20, 0xa0 };
	static u8 mt352_capt_range_cfg[] = { 0x75, 0x32 };

	mt352_write(fe, mt352_clock_config, sizeof(mt352_clock_config));
	udelay(2000);
	mt352_write(fe, mt352_reset, sizeof(mt352_reset));
	mt352_write(fe, mt352_adc_ctl_1_cfg, sizeof(mt352_adc_ctl_1_cfg));
	mt352_write(fe, mt352_agc_cfg,sizeof(mt352_agc_cfg));
	mt352_write(fe, mt352_capt_range_cfg, sizeof(mt352_capt_range_cfg));

	return 0;
}

519
static int digitv_alps_tded4_tuner_calc_regs(struct dvb_frontend *fe,  u8 *pllbuf, int buf_len)
520 521
{
	u32 div;
522
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
523

524 525 526
	if (buf_len < 5)
		return -EINVAL;

527
	div = (((c->frequency + 83333) * 3) / 500000) + IF_FREQUENCYx6;
528

529
	pllbuf[0] = 0x61;
530 531 532 533
	pllbuf[1] = (div >> 8) & 0x7F;
	pllbuf[2] = div & 0xFF;
	pllbuf[3] = 0x85;

534
	dprintk("frequency %u, div %u\n", c->frequency, div);
535

536
	if (c->frequency < 470000000)
537
		pllbuf[4] = 0x02;
538
	else if (c->frequency > 823000000)
539 540 541 542
		pllbuf[4] = 0x88;
	else
		pllbuf[4] = 0x08;

543
	if (c->bandwidth_hz == 8000000)
544 545
		pllbuf[4] |= 0x04;

546
	return 5;
547 548 549 550 551 552 553
}

static void digitv_alps_tded4_reset(struct dvb_bt8xx_card *bt)
{
	/*
	 * Reset the frontend, must be called before trying
	 * to initialise the MT352 or mt352_attach
554
	 * will fail. Same goes for the nxt6000 frontend.
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
	 *
	 */

	int ret = bttv_gpio_enable(bt->bttv_nr, 0x08, 0x08);
	if (ret != 0)
		printk(KERN_WARNING "digitv_alps_tded4: Init Error - Can't Reset DVR (%i)\n", ret);

	/* Pulse the reset line */
	bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */
	bttv_write_gpio(bt->bttv_nr, 0x08, 0x00); /* Low  */
	msleep(100);

	bttv_write_gpio(bt->bttv_nr, 0x08, 0x08); /* High */
}

static struct mt352_config digitv_alps_tded4_config = {
	.demod_address = 0x0a,
	.demod_init = digitv_alps_tded4_demod_init,
};

575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593
static struct lgdt330x_config tdvs_tua6034_config = {
	.demod_address    = 0x0e,
	.demod_chip       = LGDT3303,
	.serial_mpeg      = 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
};

static void lgdt330x_reset(struct dvb_bt8xx_card *bt)
{
	/* Set pin 27 of the lgdt3303 chip high to reset the frontend */

	/* Pulse the reset line */
	bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */
	bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000000); /* Low  */
	msleep(100);

	bttv_write_gpio(bt->bttv_nr, 0x00e00007, 0x00000001); /* High */
	msleep(100);
}

L
Linus Torvalds 已提交
594 595
static void frontend_init(struct dvb_bt8xx_card *card, u32 type)
{
596 597
	struct dst_state* state = NULL;

L
Linus Torvalds 已提交
598
	switch(type) {
599
	case BTTV_BOARD_DVICO_DVBT_LITE:
600
		card->fe = dvb_attach(mt352_attach, &thomson_dtt7579_config, card->i2c_adapter);
601 602

		if (card->fe == NULL)
603
			card->fe = dvb_attach(zl10353_attach, &thomson_dtt7579_zl10353_config,
604 605
						  card->i2c_adapter);

L
Linus Torvalds 已提交
606
		if (card->fe != NULL) {
607 608 609
			card->fe->ops.tuner_ops.calc_regs = thomson_dtt7579_tuner_calc_regs;
			card->fe->ops.info.frequency_min = 174000000;
			card->fe->ops.info.frequency_max = 862000000;
L
Linus Torvalds 已提交
610 611 612
		}
		break;

613
	case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE:
614
		lgdt330x_reset(card);
615
		card->fe = dvb_attach(lgdt330x_attach, &tdvs_tua6034_config, card->i2c_adapter);
616
		if (card->fe != NULL) {
617 618 619
			dvb_attach(simple_tuner_attach, card->fe,
				   card->i2c_adapter, 0x61,
				   TUNER_LG_TDVS_H06XF);
620
			dprintk ("dvb_bt8xx: lgdt330x detected\n");
621
		}
622 623
		break;

624
	case BTTV_BOARD_NEBULA_DIGITV:
625 626 627 628 629 630
		/*
		 * It is possible to determine the correct frontend using the I2C bus (see the Nebula SDK);
		 * this would be a cleaner solution than trying each frontend in turn.
		 */

		/* Old Nebula (marked (c)2003 on high profile pci card) has nxt6000 demod */
631
		digitv_alps_tded4_reset(card);
632
		card->fe = dvb_attach(nxt6000_attach, &vp3021_alps_tded4_config, card->i2c_adapter);
633
		if (card->fe != NULL) {
634
			card->fe->ops.tuner_ops.set_params = vp3021_alps_tded4_tuner_set_params;
635
			dprintk ("dvb_bt8xx: an nxt6000 was detected on your digitv card\n");
636 637
			break;
		}
638 639 640

		/* New Nebula (marked (c)2005 on low profile pci card) has mt352 demod */
		digitv_alps_tded4_reset(card);
641
		card->fe = dvb_attach(mt352_attach, &digitv_alps_tded4_config, card->i2c_adapter);
642

643
		if (card->fe != NULL) {
644
			card->fe->ops.tuner_ops.calc_regs = digitv_alps_tded4_tuner_calc_regs;
645
			dprintk ("dvb_bt8xx: an mt352 was detected on your digitv card\n");
646
		}
L
Linus Torvalds 已提交
647 648
		break;

649
	case BTTV_BOARD_AVDVBT_761:
650
		card->fe = dvb_attach(sp887x_attach, &microtune_mt7202dtf_config, card->i2c_adapter);
651
		if (card->fe) {
652
			card->fe->ops.tuner_ops.set_params = microtune_mt7202dtf_tuner_set_params;
653
		}
L
Linus Torvalds 已提交
654 655
		break;

656
	case BTTV_BOARD_AVDVBT_771:
657
		card->fe = dvb_attach(mt352_attach, &advbt771_samsung_tdtc9251dh0_config, card->i2c_adapter);
L
Linus Torvalds 已提交
658
		if (card->fe != NULL) {
659 660 661
			card->fe->ops.tuner_ops.calc_regs = advbt771_samsung_tdtc9251dh0_tuner_calc_regs;
			card->fe->ops.info.frequency_min = 174000000;
			card->fe->ops.info.frequency_max = 862000000;
L
Linus Torvalds 已提交
662 663 664
		}
		break;

665
	case BTTV_BOARD_TWINHAN_DST:
666
		/*	DST is not a frontend driver !!!		*/
667
		state = kmalloc(sizeof (struct dst_state), GFP_KERNEL);
668 669 670 671
		if (!state) {
			printk("dvb_bt8xx: No memory\n");
			break;
		}
672 673 674 675
		/*	Setup the Card					*/
		state->config = &dst_config;
		state->i2c = card->i2c_adapter;
		state->bt = card->bt;
676
		state->dst_ca = NULL;
677
		/*	DST is not a frontend, attaching the ASIC	*/
678
		if (dvb_attach(dst_attach, state, &card->dvb_adapter) == NULL) {
679
			printk("%s: Could not find a Twinhan DST.\n", __func__);
680 681
			break;
		}
682 683
		/*	Attach other DST peripherals if any		*/
		/*	Conditional Access device			*/
684
		card->fe = &state->frontend;
685 686
		if (state->dst_hw_cap & DST_TYPE_HAS_CA)
			dvb_attach(dst_ca_attach, state, &card->dvb_adapter);
L
Linus Torvalds 已提交
687 688
		break;

689
	case BTTV_BOARD_PINNACLESAT:
690
		card->fe = dvb_attach(cx24110_attach, &pctvsat_config, card->i2c_adapter);
691
		if (card->fe) {
692 693 694
			card->fe->ops.tuner_ops.init = pinnsat_tuner_init;
			card->fe->ops.tuner_ops.sleep = pinnsat_tuner_sleep;
			card->fe->ops.tuner_ops.set_params = cx24108_tuner_set_params;
695
		}
L
Linus Torvalds 已提交
696 697
		break;

698
	case BTTV_BOARD_PC_HDTV:
699
		card->fe = dvb_attach(or51211_attach, &or51211_config, card->i2c_adapter);
700
		if (card->fe != NULL)
701 702 703
			dvb_attach(simple_tuner_attach, card->fe,
				   card->i2c_adapter, 0x61,
				   TUNER_PHILIPS_FCV1236D);
L
Linus Torvalds 已提交
704 705 706
		break;
	}

D
David Johnson 已提交
707
	if (card->fe == NULL)
708
		printk("dvb-bt8xx: A frontend driver was not found for device [%04x:%04x] subsystem [%04x:%04x]\n",
L
Linus Torvalds 已提交
709 710 711 712
		       card->bt->dev->vendor,
		       card->bt->dev->device,
		       card->bt->dev->subsystem_vendor,
		       card->bt->dev->subsystem_device);
D
David Johnson 已提交
713
	else
714
		if (dvb_register_frontend(&card->dvb_adapter, card->fe)) {
L
Linus Torvalds 已提交
715
			printk("dvb-bt8xx: Frontend registration failed!\n");
716
			dvb_frontend_detach(card->fe);
L
Linus Torvalds 已提交
717 718 719 720
			card->fe = NULL;
		}
}

721
static int __devinit dvb_bt8xx_load_card(struct dvb_bt8xx_card *card, u32 type)
L
Linus Torvalds 已提交
722 723 724
{
	int result;

725 726 727 728
	result = dvb_register_adapter(&card->dvb_adapter, card->card_name,
				      THIS_MODULE, &card->bt->dev->dev,
				      adapter_nr);
	if (result < 0) {
L
Linus Torvalds 已提交
729 730 731
		printk("dvb_bt8xx: dvb_register_adapter failed (errno = %d)\n", result);
		return result;
	}
732
	card->dvb_adapter.priv = card;
L
Linus Torvalds 已提交
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749

	card->bt->adapter = card->i2c_adapter;

	memset(&card->demux, 0, sizeof(struct dvb_demux));

	card->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING | DMX_MEMORY_BASED_FILTERING;

	card->demux.priv = card;
	card->demux.filternum = 256;
	card->demux.feednum = 256;
	card->demux.start_feed = dvb_bt8xx_start_feed;
	card->demux.stop_feed = dvb_bt8xx_stop_feed;
	card->demux.write_to_decoder = NULL;

	if ((result = dvb_dmx_init(&card->demux)) < 0) {
		printk("dvb_bt8xx: dvb_dmx_init failed (errno = %d)\n", result);

750
		dvb_unregister_adapter(&card->dvb_adapter);
L
Linus Torvalds 已提交
751 752 753 754 755 756 757
		return result;
	}

	card->dmxdev.filternum = 256;
	card->dmxdev.demux = &card->demux.dmx;
	card->dmxdev.capabilities = 0;

758
	if ((result = dvb_dmxdev_init(&card->dmxdev, &card->dvb_adapter)) < 0) {
L
Linus Torvalds 已提交
759 760 761
		printk("dvb_bt8xx: dvb_dmxdev_init failed (errno = %d)\n", result);

		dvb_dmx_release(&card->demux);
762
		dvb_unregister_adapter(&card->dvb_adapter);
L
Linus Torvalds 已提交
763 764 765 766 767 768 769 770 771 772
		return result;
	}

	card->fe_hw.source = DMX_FRONTEND_0;

	if ((result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_hw)) < 0) {
		printk("dvb_bt8xx: dvb_dmx_init failed (errno = %d)\n", result);

		dvb_dmxdev_release(&card->dmxdev);
		dvb_dmx_release(&card->demux);
773
		dvb_unregister_adapter(&card->dvb_adapter);
L
Linus Torvalds 已提交
774 775 776 777 778 779 780 781 782 783 784
		return result;
	}

	card->fe_mem.source = DMX_MEMORY_FE;

	if ((result = card->demux.dmx.add_frontend(&card->demux.dmx, &card->fe_mem)) < 0) {
		printk("dvb_bt8xx: dvb_dmx_init failed (errno = %d)\n", result);

		card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
		dvb_dmxdev_release(&card->dmxdev);
		dvb_dmx_release(&card->demux);
785
		dvb_unregister_adapter(&card->dvb_adapter);
L
Linus Torvalds 已提交
786 787 788 789 790 791 792 793 794 795
		return result;
	}

	if ((result = card->demux.dmx.connect_frontend(&card->demux.dmx, &card->fe_hw)) < 0) {
		printk("dvb_bt8xx: dvb_dmx_init failed (errno = %d)\n", result);

		card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
		card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
		dvb_dmxdev_release(&card->dmxdev);
		dvb_dmx_release(&card->demux);
796
		dvb_unregister_adapter(&card->dvb_adapter);
L
Linus Torvalds 已提交
797 798 799
		return result;
	}

800
	dvb_net_init(&card->dvb_adapter, &card->dvbnet, &card->demux.dmx);
L
Linus Torvalds 已提交
801 802 803 804 805 806 807 808

	tasklet_init(&card->bt->tasklet, dvb_bt8xx_task, (unsigned long) card);

	frontend_init(card, type);

	return 0;
}

809
static int __devinit dvb_bt8xx_probe(struct bttv_sub_device *sub)
L
Linus Torvalds 已提交
810 811 812 813 814
{
	struct dvb_bt8xx_card *card;
	struct pci_dev* bttv_pci_dev;
	int ret;

P
 
Panagiotis Issaris 已提交
815
	if (!(card = kzalloc(sizeof(struct dvb_bt8xx_card), GFP_KERNEL)))
L
Linus Torvalds 已提交
816 817
		return -ENOMEM;

818
	mutex_init(&card->lock);
L
Linus Torvalds 已提交
819
	card->bttv_nr = sub->core->nr;
820
	strlcpy(card->card_name, sub->core->v4l2_dev.name, sizeof(card->card_name));
L
Linus Torvalds 已提交
821 822
	card->i2c_adapter = &sub->core->i2c_adap;

D
David Johnson 已提交
823
	switch(sub->core->type) {
824
	case BTTV_BOARD_PINNACLESAT:
L
Linus Torvalds 已提交
825 826
		card->gpio_mode = 0x0400c060;
		/* should be: BT878_A_GAIN=0,BT878_A_PWRDN,BT878_DA_DPM,BT878_DA_SBR,
827
			      BT878_DA_IOM=1,BT878_DA_APP to enable serial highspeed mode. */
828 829
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
		card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
L
Linus Torvalds 已提交
830 831
		break;

832
	case BTTV_BOARD_DVICO_DVBT_LITE:
L
Linus Torvalds 已提交
833
		card->gpio_mode = 0x0400C060;
834 835
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
		card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
L
Linus Torvalds 已提交
836 837 838 839 840
		/* 26, 15, 14, 6, 5
		 * A_PWRDN  DA_DPM DA_SBR DA_IOM_DA
		 * DA_APP(parallel) */
		break;

841
	case BTTV_BOARD_DVICO_FUSIONHDTV_5_LITE:
842 843 844 845 846
		card->gpio_mode = 0x0400c060;
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
		card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
		break;

847 848
	case BTTV_BOARD_NEBULA_DIGITV:
	case BTTV_BOARD_AVDVBT_761:
L
Linus Torvalds 已提交
849
		card->gpio_mode = (1 << 26) | (1 << 14) | (1 << 5);
850 851
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
		card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
L
Linus Torvalds 已提交
852 853 854
		/* A_PWRDN DA_SBR DA_APP (high speed serial) */
		break;

855
	case BTTV_BOARD_AVDVBT_771: //case 0x07711461:
L
Linus Torvalds 已提交
856 857
		card->gpio_mode = 0x0400402B;
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
858
		card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
L
Linus Torvalds 已提交
859 860 861
		/* A_PWRDN DA_SBR  DA_APP[0] PKTP=10 RISC_ENABLE FIFO_ENABLE*/
		break;

862
	case BTTV_BOARD_TWINHAN_DST:
L
Linus Torvalds 已提交
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
		card->gpio_mode = 0x2204f2c;
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
		card->irq_err_ignore = BT878_APABORT | BT878_ARIPERR |
				       BT878_APPERR | BT878_AFBUS;
		/* 25,21,14,11,10,9,8,3,2 then
		 * 0x33 = 5,4,1,0
		 * A_SEL=SML, DA_MLB, DA_SBR,
		 * DA_SDR=f, fifo trigger = 32 DWORDS
		 * IOM = 0 == audio A/D
		 * DPM = 0 == digital audio mode
		 * == async data parallel port
		 * then 0x33 (13 is set by start_capture)
		 * DA_APP = async data parallel port,
		 * ACAP_EN = 1,
		 * RISC+FIFO ENABLE */
		break;

880
	case BTTV_BOARD_PC_HDTV:
L
Linus Torvalds 已提交
881
		card->gpio_mode = 0x0100EC7B;
882 883
		card->op_sync_orin = BT878_RISC_SYNC_MASK;
		card->irq_err_ignore = BT878_AFBUS | BT878_AFDSR;
L
Linus Torvalds 已提交
884 885
		break;

886
	default:
L
Linus Torvalds 已提交
887 888 889 890 891 892 893 894 895 896 897
		printk(KERN_WARNING "dvb_bt8xx: Unknown bttv card type: %d.\n",
				sub->core->type);
		kfree(card);
		return -ENODEV;
	}

	dprintk("dvb_bt8xx: identified card%d as %s\n", card->bttv_nr, card->card_name);

	if (!(bttv_pci_dev = bttv_get_pcidev(card->bttv_nr))) {
		printk("dvb_bt8xx: no pci device for card %d\n", card->bttv_nr);
		kfree(card);
898
		return -ENODEV;
L
Linus Torvalds 已提交
899 900 901 902 903 904 905 906 907
	}

	if (!(card->bt = dvb_bt8xx_878_match(card->bttv_nr, bttv_pci_dev))) {
		printk("dvb_bt8xx: unable to determine DMA core of card %d,\n",
		       card->bttv_nr);
		printk("dvb_bt8xx: if you have the ALSA bt87x audio driver "
		       "installed, try removing it.\n");

		kfree(card);
908
		return -ENODEV;
L
Linus Torvalds 已提交
909 910
	}

911
	mutex_init(&card->bt->gpio_lock);
L
Linus Torvalds 已提交
912 913 914 915 916 917 918
	card->bt->bttv_nr = sub->core->nr;

	if ( (ret = dvb_bt8xx_load_card(card, sub->core->type)) ) {
		kfree(card);
		return ret;
	}

919
	dev_set_drvdata(&sub->dev, card);
L
Linus Torvalds 已提交
920 921 922
	return 0;
}

923
static void dvb_bt8xx_remove(struct bttv_sub_device *sub)
L
Linus Torvalds 已提交
924
{
925
	struct dvb_bt8xx_card *card = dev_get_drvdata(&sub->dev);
L
Linus Torvalds 已提交
926 927 928 929 930 931 932 933 934 935

	dprintk("dvb_bt8xx: unloading card%d\n", card->bttv_nr);

	bt878_stop(card->bt);
	tasklet_kill(&card->bt->tasklet);
	dvb_net_release(&card->dvbnet);
	card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_mem);
	card->demux.dmx.remove_frontend(&card->demux.dmx, &card->fe_hw);
	dvb_dmxdev_release(&card->dmxdev);
	dvb_dmx_release(&card->demux);
936
	if (card->fe) {
D
David Johnson 已提交
937
		dvb_unregister_frontend(card->fe);
938
		dvb_frontend_detach(card->fe);
939
	}
940
	dvb_unregister_adapter(&card->dvb_adapter);
L
Linus Torvalds 已提交
941 942 943 944 945 946 947 948

	kfree(card);
}

static struct bttv_sub_driver driver = {
	.drv = {
		.name		= "dvb-bt8xx",
	},
949 950 951 952 953 954 955
	.probe		= dvb_bt8xx_probe,
	.remove		= dvb_bt8xx_remove,
	/* FIXME:
	 * .shutdown	= dvb_bt8xx_shutdown,
	 * .suspend	= dvb_bt8xx_suspend,
	 * .resume	= dvb_bt8xx_resume,
	 */
L
Linus Torvalds 已提交
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
};

static int __init dvb_bt8xx_init(void)
{
	return bttv_sub_register(&driver, "dvb");
}

static void __exit dvb_bt8xx_exit(void)
{
	bttv_sub_unregister(&driver);
}

module_init(dvb_bt8xx_init);
module_exit(dvb_bt8xx_exit);

MODULE_DESCRIPTION("Bt8xx based DVB adapter driver");
MODULE_AUTHOR("Florian Schirmer <jolt@tuxbox.org>");
MODULE_LICENSE("GPL");