cx23885-core.c 55.5 KB
Newer Older
1 2 3
/*
 *  Driver for the Conexant CX23885 PCIe bridge
 *
4
 *  Copyright (c) 2006 Steven Toth <stoth@linuxtv.org>
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
 *
 *  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/init.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kmod.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/delay.h>
#include <asm/div64.h>

#include "cx23885.h"
34
#include "cimax2.h"
35
#include "cx23888-ir.h"
36
#include "cx23885-ir.h"
37
#include "cx23885-input.h"
38 39

MODULE_DESCRIPTION("Driver for cx23885 based TV cards");
40
MODULE_AUTHOR("Steven Toth <stoth@linuxtv.org>");
41 42
MODULE_LICENSE("GPL");

43
static unsigned int debug;
44 45
module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "enable debug messages");
46 47 48

static unsigned int card[]  = {[0 ... (CX23885_MAXBOARDS - 1)] = UNSET };
module_param_array(card,  int, NULL, 0444);
49
MODULE_PARM_DESC(card, "card type");
50

51 52 53 54
#define dprintk(level, fmt, arg...)\
	do { if (debug >= level)\
		printk(KERN_DEBUG "%s/0: " fmt, dev->name, ## arg);\
	} while (0)
55 56 57 58

static unsigned int cx23885_devcount;

static DEFINE_MUTEX(devlist);
59
LIST_HEAD(cx23885_devlist);
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

#define NO_SYNC_LINE (-1U)

/* FIXME, these allocations will change when
 * analog arrives. The be reviewed.
 * CX23887 Assumptions
 * 1 line = 16 bytes of CDT
 * cmds size = 80
 * cdt size = 16 * linesize
 * iqsize = 64
 * maxlines = 6
 *
 * Address Space:
 * 0x00000000 0x00008fff FIFO clusters
 * 0x00010000 0x000104af Channel Management Data Structures
 * 0x000104b0 0x000104ff Free
 * 0x00010500 0x000108bf 15 channels * iqsize
 * 0x000108c0 0x000108ff Free
 * 0x00010900 0x00010e9f IQ's + Cluster Descriptor Tables
 *                       15 channels * (iqsize + (maxlines * linesize))
 * 0x00010ea0 0x00010xxx Free
 */

83
static struct sram_channel cx23885_sram_channels[] = {
84
	[SRAM_CH01] = {
85 86
		.name		= "VID A",
		.cmds_start	= 0x10000,
87 88
		.ctrl_start	= 0x10380,
		.cdt		= 0x104c0,
89 90
		.fifo_start	= 0x40,
		.fifo_size	= 0x2800,
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
		.ptr1_reg	= DMA1_PTR1,
		.ptr2_reg	= DMA1_PTR2,
		.cnt1_reg	= DMA1_CNT1,
		.cnt2_reg	= DMA1_CNT2,
	},
	[SRAM_CH02] = {
		.name		= "ch2",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA2_PTR1,
		.ptr2_reg	= DMA2_PTR2,
		.cnt1_reg	= DMA2_CNT1,
		.cnt2_reg	= DMA2_CNT2,
	},
	[SRAM_CH03] = {
109 110
		.name		= "TS1 B",
		.cmds_start	= 0x100A0,
111 112
		.ctrl_start	= 0x10400,
		.cdt		= 0x10580,
113 114
		.fifo_start	= 0x5000,
		.fifo_size	= 0x1000,
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
		.ptr1_reg	= DMA3_PTR1,
		.ptr2_reg	= DMA3_PTR2,
		.cnt1_reg	= DMA3_CNT1,
		.cnt2_reg	= DMA3_CNT2,
	},
	[SRAM_CH04] = {
		.name		= "ch4",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA4_PTR1,
		.ptr2_reg	= DMA4_PTR2,
		.cnt1_reg	= DMA4_CNT1,
		.cnt2_reg	= DMA4_CNT2,
	},
	[SRAM_CH05] = {
		.name		= "ch5",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA5_PTR1,
		.ptr2_reg	= DMA5_PTR2,
		.cnt1_reg	= DMA5_CNT1,
		.cnt2_reg	= DMA5_CNT2,
	},
	[SRAM_CH06] = {
		.name		= "TS2 C",
		.cmds_start	= 0x10140,
147 148
		.ctrl_start	= 0x10440,
		.cdt		= 0x105e0,
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
		.fifo_start	= 0x6000,
		.fifo_size	= 0x1000,
		.ptr1_reg	= DMA5_PTR1,
		.ptr2_reg	= DMA5_PTR2,
		.cnt1_reg	= DMA5_CNT1,
		.cnt2_reg	= DMA5_CNT2,
	},
	[SRAM_CH07] = {
		.name		= "ch7",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA6_PTR1,
		.ptr2_reg	= DMA6_PTR2,
		.cnt1_reg	= DMA6_CNT1,
		.cnt2_reg	= DMA6_CNT2,
	},
	[SRAM_CH08] = {
		.name		= "ch8",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA7_PTR1,
		.ptr2_reg	= DMA7_PTR2,
		.cnt1_reg	= DMA7_CNT1,
		.cnt2_reg	= DMA7_CNT2,
	},
	[SRAM_CH09] = {
		.name		= "ch9",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA8_PTR1,
		.ptr2_reg	= DMA8_PTR2,
		.cnt1_reg	= DMA8_CNT1,
		.cnt2_reg	= DMA8_CNT2,
	},
};

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
static struct sram_channel cx23887_sram_channels[] = {
	[SRAM_CH01] = {
		.name		= "VID A",
		.cmds_start	= 0x10000,
		.ctrl_start	= 0x105b0,
		.cdt		= 0x107b0,
		.fifo_start	= 0x40,
		.fifo_size	= 0x2800,
		.ptr1_reg	= DMA1_PTR1,
		.ptr2_reg	= DMA1_PTR2,
		.cnt1_reg	= DMA1_CNT1,
		.cnt2_reg	= DMA1_CNT2,
	},
	[SRAM_CH02] = {
		.name		= "ch2",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA2_PTR1,
		.ptr2_reg	= DMA2_PTR2,
		.cnt1_reg	= DMA2_CNT1,
		.cnt2_reg	= DMA2_CNT2,
	},
	[SRAM_CH03] = {
		.name		= "TS1 B",
		.cmds_start	= 0x100A0,
		.ctrl_start	= 0x10630,
		.cdt		= 0x10870,
		.fifo_start	= 0x5000,
		.fifo_size	= 0x1000,
		.ptr1_reg	= DMA3_PTR1,
		.ptr2_reg	= DMA3_PTR2,
		.cnt1_reg	= DMA3_CNT1,
		.cnt2_reg	= DMA3_CNT2,
	},
	[SRAM_CH04] = {
		.name		= "ch4",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA4_PTR1,
		.ptr2_reg	= DMA4_PTR2,
		.cnt1_reg	= DMA4_CNT1,
		.cnt2_reg	= DMA4_CNT2,
	},
	[SRAM_CH05] = {
		.name		= "ch5",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA5_PTR1,
		.ptr2_reg	= DMA5_PTR2,
		.cnt1_reg	= DMA5_CNT1,
		.cnt2_reg	= DMA5_CNT2,
	},
	[SRAM_CH06] = {
		.name		= "TS2 C",
		.cmds_start	= 0x10140,
		.ctrl_start	= 0x10670,
		.cdt		= 0x108d0,
		.fifo_start	= 0x6000,
		.fifo_size	= 0x1000,
		.ptr1_reg	= DMA5_PTR1,
		.ptr2_reg	= DMA5_PTR2,
		.cnt1_reg	= DMA5_CNT1,
		.cnt2_reg	= DMA5_CNT2,
	},
	[SRAM_CH07] = {
		.name		= "ch7",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA6_PTR1,
		.ptr2_reg	= DMA6_PTR2,
		.cnt1_reg	= DMA6_CNT1,
		.cnt2_reg	= DMA6_CNT2,
	},
	[SRAM_CH08] = {
		.name		= "ch8",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA7_PTR1,
		.ptr2_reg	= DMA7_PTR2,
		.cnt1_reg	= DMA7_CNT1,
		.cnt2_reg	= DMA7_CNT2,
	},
	[SRAM_CH09] = {
		.name		= "ch9",
		.cmds_start	= 0x0,
		.ctrl_start	= 0x0,
		.cdt		= 0x0,
		.fifo_start	= 0x0,
		.fifo_size	= 0x0,
		.ptr1_reg	= DMA8_PTR1,
		.ptr2_reg	= DMA8_PTR2,
		.cnt1_reg	= DMA8_CNT1,
		.cnt2_reg	= DMA8_CNT2,
	},
};

305 306 307
static int cx23885_risc_decode(u32 risc)
{
	static char *instr[16] = {
308 309 310 311 312 313 314 315 316 317
		[RISC_SYNC    >> 28] = "sync",
		[RISC_WRITE   >> 28] = "write",
		[RISC_WRITEC  >> 28] = "writec",
		[RISC_READ    >> 28] = "read",
		[RISC_READC   >> 28] = "readc",
		[RISC_JUMP    >> 28] = "jump",
		[RISC_SKIP    >> 28] = "skip",
		[RISC_WRITERM >> 28] = "writerm",
		[RISC_WRITECM >> 28] = "writecm",
		[RISC_WRITECR >> 28] = "writecr",
318 319
	};
	static int incr[16] = {
320 321 322 323 324 325 326
		[RISC_WRITE   >> 28] = 3,
		[RISC_JUMP    >> 28] = 3,
		[RISC_SKIP    >> 28] = 1,
		[RISC_SYNC    >> 28] = 1,
		[RISC_WRITERM >> 28] = 3,
		[RISC_WRITECM >> 28] = 3,
		[RISC_WRITECR >> 28] = 4,
327 328 329 330 331 332 333 334 335 336 337
	};
	static char *bits[] = {
		"12",   "13",   "14",   "resync",
		"cnt0", "cnt1", "18",   "19",
		"20",   "21",   "22",   "23",
		"irq1", "irq2", "eol",  "sol",
	};
	int i;

	printk("0x%08x [ %s", risc,
	       instr[risc >> 28] ? instr[risc >> 28] : "INVALID");
338
	for (i = ARRAY_SIZE(bits) - 1; i >= 0; i--)
339
		if (risc & (1 << (i + 12)))
340
			printk(" %s", bits[i]);
341 342 343 344
	printk(" count=%d ]\n", risc & 0xfff);
	return incr[risc >> 28] ? incr[risc >> 28] : 1;
}

345
void cx23885_wakeup(struct cx23885_tsport *port,
346
			   struct cx23885_dmaqueue *q, u32 count)
347 348 349 350 351 352 353 354 355 356
{
	struct cx23885_dev *dev = port->dev;
	struct cx23885_buffer *buf;
	int bc;

	for (bc = 0;; bc++) {
		if (list_empty(&q->active))
			break;
		buf = list_entry(q->active.next,
				 struct cx23885_buffer, vb.queue);
357

358 359 360 361 362
		/* count comes from the hw and is is 16bit wide --
		 * this trick handles wrap-arounds correctly for
		 * up to 32767 buffers in flight... */
		if ((s16) (count - buf->count) < 0)
			break;
363

364
		do_gettimeofday(&buf->vb.ts);
365
		dprintk(2, "[%p/%d] wakeup reg=%d buf=%d\n", buf, buf->vb.i,
366
			count, buf->count);
367
		buf->vb.state = VIDEOBUF_DONE;
368 369 370
		list_del(&buf->vb.queue);
		wake_up(&buf->vb.done);
	}
371
	if (list_empty(&q->active))
372
		del_timer(&q->timeout);
373
	else
374
		mod_timer(&q->timeout, jiffies + BUFFER_TIMEOUT);
375
	if (bc != 1)
376
		printk(KERN_WARNING "%s: %d buffers handled (should be 1)\n",
377
		       __func__, bc);
378 379
}

380
int cx23885_sram_channel_setup(struct cx23885_dev *dev,
381 382
				      struct sram_channel *ch,
				      unsigned int bpl, u32 risc)
383
{
384
	unsigned int i, lines;
385 386
	u32 cdt;

387
	if (ch->cmds_start == 0) {
388
		dprintk(1, "%s() Erasing channel [%s]\n", __func__,
389
			ch->name);
390 391 392 393 394 395
		cx_write(ch->ptr1_reg, 0);
		cx_write(ch->ptr2_reg, 0);
		cx_write(ch->cnt2_reg, 0);
		cx_write(ch->cnt1_reg, 0);
		return 0;
	} else {
396
		dprintk(1, "%s() Configuring channel [%s]\n", __func__,
397
			ch->name);
398 399 400 401 402 403 404 405 406
	}

	bpl   = (bpl + 7) & ~7; /* alignment */
	cdt   = ch->cdt;
	lines = ch->fifo_size / bpl;
	if (lines > 6)
		lines = 6;
	BUG_ON(lines < 2);

407 408 409
	cx_write(8 + 0, RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
	cx_write(8 + 4, 8);
	cx_write(8 + 8, 0);
410 411 412

	/* write CDT */
	for (i = 0; i < lines; i++) {
413
		dprintk(2, "%s() 0x%08x <- 0x%08x\n", __func__, cdt + 16*i,
414
			ch->fifo_start + bpl*i);
415 416 417 418 419 420 421 422
		cx_write(cdt + 16*i, ch->fifo_start + bpl*i);
		cx_write(cdt + 16*i +  4, 0);
		cx_write(cdt + 16*i +  8, 0);
		cx_write(cdt + 16*i + 12, 0);
	}

	/* write CMDS */
	if (ch->jumponly)
423
		cx_write(ch->cmds_start + 0, 8);
424
	else
425
		cx_write(ch->cmds_start + 0, risc);
426 427 428 429 430
	cx_write(ch->cmds_start +  4, 0); /* 64 bits 63-32 */
	cx_write(ch->cmds_start +  8, cdt);
	cx_write(ch->cmds_start + 12, (lines*16) >> 3);
	cx_write(ch->cmds_start + 16, ch->ctrl_start);
	if (ch->jumponly)
431
		cx_write(ch->cmds_start + 20, 0x80000000 | (64 >> 2));
432 433 434 435 436 437 438 439 440
	else
		cx_write(ch->cmds_start + 20, 64 >> 2);
	for (i = 24; i < 80; i += 4)
		cx_write(ch->cmds_start + i, 0);

	/* fill registers */
	cx_write(ch->ptr1_reg, ch->fifo_start);
	cx_write(ch->ptr2_reg, cdt);
	cx_write(ch->cnt2_reg, (lines*16) >> 3);
441
	cx_write(ch->cnt1_reg, (bpl >> 3) - 1);
442

443
	dprintk(2, "[bridge %d] sram setup %s: bpl=%d lines=%d\n",
444
		dev->bridge,
445 446 447 448 449 450 451
		ch->name,
		bpl,
		lines);

	return 0;
}

452
void cx23885_sram_channel_dump(struct cx23885_dev *dev,
453
				      struct sram_channel *ch)
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
{
	static char *name[] = {
		"init risc lo",
		"init risc hi",
		"cdt base",
		"cdt size",
		"iq base",
		"iq size",
		"risc pc lo",
		"risc pc hi",
		"iq wr ptr",
		"iq rd ptr",
		"cdt current",
		"pci target lo",
		"pci target hi",
		"line / byte",
	};
	u32 risc;
472
	unsigned int i, j, n;
473

474
	printk(KERN_WARNING "%s: %s - dma channel status dump\n",
475 476
	       dev->name, ch->name);
	for (i = 0; i < ARRAY_SIZE(name); i++)
477
		printk(KERN_WARNING "%s:   cmds: %-15s: 0x%08x\n",
478 479 480 481
		       dev->name, name[i],
		       cx_read(ch->cmds_start + 4*i));

	for (i = 0; i < 4; i++) {
482
		risc = cx_read(ch->cmds_start + 4 * (i + 14));
483
		printk(KERN_WARNING "%s:   risc%d: ", dev->name, i);
484 485 486
		cx23885_risc_decode(risc);
	}
	for (i = 0; i < (64 >> 2); i += n) {
487 488 489
		risc = cx_read(ch->ctrl_start + 4 * i);
		/* No consideration for bits 63-32 */

490
		printk(KERN_WARNING "%s:   (0x%08x) iq %x: ", dev->name,
491
		       ch->ctrl_start + 4 * i, i);
492 493
		n = cx23885_risc_decode(risc);
		for (j = 1; j < n; j++) {
494
			risc = cx_read(ch->ctrl_start + 4 * (i + j));
495
			printk(KERN_WARNING "%s:   iq %x: 0x%08x [ arg #%d ]\n",
496 497 498 499
			       dev->name, i+j, risc, j);
		}
	}

500
	printk(KERN_WARNING "%s: fifo: 0x%08x -> 0x%x\n",
501
	       dev->name, ch->fifo_start, ch->fifo_start+ch->fifo_size);
502
	printk(KERN_WARNING "%s: ctrl: 0x%08x -> 0x%x\n",
503
	       dev->name, ch->ctrl_start, ch->ctrl_start + 6*16);
504
	printk(KERN_WARNING "%s:   ptr1_reg: 0x%08x\n",
505
	       dev->name, cx_read(ch->ptr1_reg));
506
	printk(KERN_WARNING "%s:   ptr2_reg: 0x%08x\n",
507
	       dev->name, cx_read(ch->ptr2_reg));
508
	printk(KERN_WARNING "%s:   cnt1_reg: 0x%08x\n",
509
	       dev->name, cx_read(ch->cnt1_reg));
510
	printk(KERN_WARNING "%s:   cnt2_reg: 0x%08x\n",
511 512 513
	       dev->name, cx_read(ch->cnt2_reg));
}

514 515
static void cx23885_risc_disasm(struct cx23885_tsport *port,
				struct btcx_riscmem *risc)
516 517
{
	struct cx23885_dev *dev = port->dev;
518
	unsigned int i, j, n;
519

520
	printk(KERN_INFO "%s: risc disasm: %p [dma=0x%08lx]\n",
521 522
	       dev->name, risc->cpu, (unsigned long)risc->dma);
	for (i = 0; i < (risc->size >> 2); i += n) {
523
		printk(KERN_INFO "%s:   %04d: ", dev->name, i);
524
		n = cx23885_risc_decode(le32_to_cpu(risc->cpu[i]));
525
		for (j = 1; j < n; j++)
526
			printk(KERN_INFO "%s:   %04d: 0x%08x [ arg #%d ]\n",
527
			       dev->name, i + j, risc->cpu[i + j], j);
528
		if (risc->cpu[i] == cpu_to_le32(RISC_JUMP))
529 530 531 532
			break;
	}
}

533
static void cx23885_shutdown(struct cx23885_dev *dev)
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
{
	/* disable RISC controller */
	cx_write(DEV_CNTRL2, 0);

	/* Disable all IR activity */
	cx_write(IR_CNTRL_REG, 0);

	/* Disable Video A/B activity */
	cx_write(VID_A_DMA_CTL, 0);
	cx_write(VID_B_DMA_CTL, 0);
	cx_write(VID_C_DMA_CTL, 0);

	/* Disable Audio activity */
	cx_write(AUD_INT_DMA_CTL, 0);
	cx_write(AUD_EXT_DMA_CTL, 0);

	/* Disable Serial port */
	cx_write(UART_CTL, 0);

	/* Disable Interrupts */
	cx_write(PCI_INT_MSK, 0);
	cx_write(VID_A_INT_MSK, 0);
	cx_write(VID_B_INT_MSK, 0);
	cx_write(VID_C_INT_MSK, 0);
	cx_write(AUDIO_INT_INT_MSK, 0);
	cx_write(AUDIO_EXT_INT_MSK, 0);

}

563
static void cx23885_reset(struct cx23885_dev *dev)
564
{
565
	dprintk(1, "%s()\n", __func__);
566 567 568 569 570 571 572 573 574 575

	cx23885_shutdown(dev);

	cx_write(PCI_INT_STAT, 0xffffffff);
	cx_write(VID_A_INT_STAT, 0xffffffff);
	cx_write(VID_B_INT_STAT, 0xffffffff);
	cx_write(VID_C_INT_STAT, 0xffffffff);
	cx_write(AUDIO_INT_INT_STAT, 0xffffffff);
	cx_write(AUDIO_EXT_INT_STAT, 0xffffffff);
	cx_write(CLK_DELAY, cx_read(CLK_DELAY) & 0x80000000);
576
	cx_write(PAD_CTRL, 0x00500300);
577 578 579

	mdelay(100);

580 581 582 583 584 585 586 587 588 589 590 591
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH01],
		720*4, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH02], 128, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH03],
		188*4, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH04], 128, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH05], 128, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH06],
		188*4, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH07], 128, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH08], 128, 0);
	cx23885_sram_channel_setup(dev, &dev->sram_channels[SRAM_CH09], 128, 0);
592

593
	cx23885_gpio_setup(dev);
594 595 596 597 598
}


static int cx23885_pci_quirks(struct cx23885_dev *dev)
{
599
	dprintk(1, "%s()\n", __func__);
600

601 602 603 604
	/* The cx23885 bridge has a weird bug which causes NMI to be asserted
	 * when DMA begins if RDR_TLCTL0 bit4 is not cleared. It does not
	 * occur on the cx23887 bridge.
	 */
605
	if (dev->bridge == CX23885_BRIDGE_885)
606
		cx_clear(RDR_TLCTL0, 1 << 4);
607

608 609 610 611 612
	return 0;
}

static int get_resources(struct cx23885_dev *dev)
{
613 614
	if (request_mem_region(pci_resource_start(dev->pci, 0),
			       pci_resource_len(dev->pci, 0),
615
			       dev->name))
616 617 618
		return 0;

	printk(KERN_ERR "%s: can't get MMIO memory @ 0x%llx\n",
619
		dev->name, (unsigned long long)pci_resource_start(dev->pci, 0));
620 621 622 623 624

	return -EBUSY;
}

static void cx23885_timeout(unsigned long data);
625
int cx23885_risc_stopper(struct pci_dev *pci, struct btcx_riscmem *risc,
626
				u32 reg, u32 mask, u32 value);
627

628 629
static int cx23885_init_tsport(struct cx23885_dev *dev,
	struct cx23885_tsport *port, int portno)
630
{
631
	dprintk(1, "%s(portno=%d)\n", __func__, portno);
632 633 634 635

	/* Transport bus init dma queue  - Common settings */
	port->dma_ctl_val        = 0x11; /* Enable RISC controller and Fifo */
	port->ts_int_msk_val     = 0x1111; /* TS port bits for RISC */
636 637
	port->vld_misc_val       = 0x0;
	port->hw_sop_ctrl_val    = (0x47 << 16 | 188 << 4);
638 639 640 641 642 643 644 645 646 647 648

	spin_lock_init(&port->slock);
	port->dev = dev;
	port->nr = portno;

	INIT_LIST_HEAD(&port->mpegq.active);
	INIT_LIST_HEAD(&port->mpegq.queued);
	port->mpegq.timeout.function = cx23885_timeout;
	port->mpegq.timeout.data = (unsigned long)port;
	init_timer(&port->mpegq.timeout);

649
	mutex_init(&port->frontends.lock);
650
	INIT_LIST_HEAD(&port->frontends.felist);
651 652
	port->frontends.active_fe_id = 0;

653 654 655 656
	/* This should be hardcoded allow a single frontend
	 * attachment to this tsport, keeping the -dvb.c
	 * code clean and safe.
	 */
657
	if (!port->num_frontends)
658 659
		port->num_frontends = 1;

660
	switch (portno) {
661 662 663 664 665 666 667 668 669 670 671 672 673 674
	case 1:
		port->reg_gpcnt          = VID_B_GPCNT;
		port->reg_gpcnt_ctl      = VID_B_GPCNT_CTL;
		port->reg_dma_ctl        = VID_B_DMA_CTL;
		port->reg_lngth          = VID_B_LNGTH;
		port->reg_hw_sop_ctrl    = VID_B_HW_SOP_CTL;
		port->reg_gen_ctrl       = VID_B_GEN_CTL;
		port->reg_bd_pkt_status  = VID_B_BD_PKT_STATUS;
		port->reg_sop_status     = VID_B_SOP_STATUS;
		port->reg_fifo_ovfl_stat = VID_B_FIFO_OVFL_STAT;
		port->reg_vld_misc       = VID_B_VLD_MISC;
		port->reg_ts_clk_en      = VID_B_TS_CLK_EN;
		port->reg_src_sel        = VID_B_SRC_SEL;
		port->reg_ts_int_msk     = VID_B_INT_MSK;
675
		port->reg_ts_int_stat    = VID_B_INT_STAT;
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
		port->sram_chno          = SRAM_CH03; /* VID_B */
		port->pci_irqmask        = 0x02; /* VID_B bit1 */
		break;
	case 2:
		port->reg_gpcnt          = VID_C_GPCNT;
		port->reg_gpcnt_ctl      = VID_C_GPCNT_CTL;
		port->reg_dma_ctl        = VID_C_DMA_CTL;
		port->reg_lngth          = VID_C_LNGTH;
		port->reg_hw_sop_ctrl    = VID_C_HW_SOP_CTL;
		port->reg_gen_ctrl       = VID_C_GEN_CTL;
		port->reg_bd_pkt_status  = VID_C_BD_PKT_STATUS;
		port->reg_sop_status     = VID_C_SOP_STATUS;
		port->reg_fifo_ovfl_stat = VID_C_FIFO_OVFL_STAT;
		port->reg_vld_misc       = VID_C_VLD_MISC;
		port->reg_ts_clk_en      = VID_C_TS_CLK_EN;
		port->reg_src_sel        = 0;
		port->reg_ts_int_msk     = VID_C_INT_MSK;
		port->reg_ts_int_stat    = VID_C_INT_STAT;
		port->sram_chno          = SRAM_CH06; /* VID_C */
		port->pci_irqmask        = 0x04; /* VID_C bit2 */
696
		break;
697 698
	default:
		BUG();
699 700
	}

701 702 703
	cx23885_risc_stopper(dev->pci, &port->mpegq.stopper,
		     port->reg_dma_ctl, port->dma_ctl_val, 0x00);

704 705 706
	return 0;
}

707 708 709 710 711 712 713 714 715 716 717 718
static void cx23885_dev_checkrevision(struct cx23885_dev *dev)
{
	switch (cx_read(RDR_CFG2) & 0xff) {
	case 0x00:
		/* cx23885 */
		dev->hwrevision = 0xa0;
		break;
	case 0x01:
		/* CX23885-12Z */
		dev->hwrevision = 0xa1;
		break;
	case 0x02:
719
		/* CX23885-13Z/14Z */
720 721 722
		dev->hwrevision = 0xb0;
		break;
	case 0x03:
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
		if (dev->pci->device == 0x8880) {
			/* CX23888-21Z/22Z */
			dev->hwrevision = 0xc0;
		} else {
			/* CX23885-14Z */
			dev->hwrevision = 0xa4;
		}
		break;
	case 0x04:
		if (dev->pci->device == 0x8880) {
			/* CX23888-31Z */
			dev->hwrevision = 0xd0;
		} else {
			/* CX23885-15Z, CX23888-31Z */
			dev->hwrevision = 0xa5;
		}
739 740 741 742 743 744 745 746 747 748
		break;
	case 0x0e:
		/* CX23887-15Z */
		dev->hwrevision = 0xc0;
	case 0x0f:
		/* CX23887-14Z */
		dev->hwrevision = 0xb1;
		break;
	default:
		printk(KERN_ERR "%s() New hardware revision found 0x%x\n",
749
			__func__, dev->hwrevision);
750 751 752
	}
	if (dev->hwrevision)
		printk(KERN_INFO "%s() Hardware revision = 0x%02x\n",
753
			__func__, dev->hwrevision);
754 755
	else
		printk(KERN_ERR "%s() Hardware revision unknown 0x%x\n",
756
			__func__, dev->hwrevision);
757 758
}

759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775
/* Find the first v4l2_subdev member of the group id in hw */
struct v4l2_subdev *cx23885_find_hw(struct cx23885_dev *dev, u32 hw)
{
	struct v4l2_subdev *result = NULL;
	struct v4l2_subdev *sd;

	spin_lock(&dev->v4l2_dev.lock);
	v4l2_device_for_each_subdev(sd, &dev->v4l2_dev) {
		if (sd->grp_id == hw) {
			result = sd;
			break;
		}
	}
	spin_unlock(&dev->v4l2_dev.lock);
	return result;
}

776 777 778 779 780
static int cx23885_dev_setup(struct cx23885_dev *dev)
{
	int i;

	mutex_init(&dev->lock);
781
	mutex_init(&dev->gpio_lock);
782 783 784 785

	atomic_inc(&dev->refcount);

	dev->nr = cx23885_devcount++;
786 787 788 789 790 791 792
	sprintf(dev->name, "cx23885[%d]", dev->nr);

	mutex_lock(&devlist);
	list_add_tail(&dev->devlist, &cx23885_devlist);
	mutex_unlock(&devlist);

	/* Configure the internal memory */
793
	if (dev->pci->device == 0x8880) {
794
		/* Could be 887 or 888, assume a default */
795
		dev->bridge = CX23885_BRIDGE_887;
796 797
		/* Apply a sensible clock frequency for the PCIe bridge */
		dev->clk_freq = 25000000;
798
		dev->sram_channels = cx23887_sram_channels;
799
	} else
800
	if (dev->pci->device == 0x8852) {
801
		dev->bridge = CX23885_BRIDGE_885;
802 803
		/* Apply a sensible clock frequency for the PCIe bridge */
		dev->clk_freq = 28000000;
804
		dev->sram_channels = cx23885_sram_channels;
805 806 807 808
	} else
		BUG();

	dprintk(1, "%s() Memory configured for PCIe bridge type %d\n",
809
		__func__, dev->bridge);
810 811 812 813 814 815 816 817 818 819 820 821 822 823

	/* board config */
	dev->board = UNSET;
	if (card[dev->nr] < cx23885_bcount)
		dev->board = card[dev->nr];
	for (i = 0; UNSET == dev->board  &&  i < cx23885_idcount; i++)
		if (dev->pci->subsystem_vendor == cx23885_subids[i].subvendor &&
		    dev->pci->subsystem_device == cx23885_subids[i].subdevice)
			dev->board = cx23885_subids[i].card;
	if (UNSET == dev->board) {
		dev->board = CX23885_BOARD_UNKNOWN;
		cx23885_card_list(dev);
	}

824 825 826 827
	/* If the user specific a clk freq override, apply it */
	if (cx23885_boards[dev->board].clk_freq > 0)
		dev->clk_freq = cx23885_boards[dev->board].clk_freq;

828 829 830
	dev->pci_bus  = dev->pci->bus->number;
	dev->pci_slot = PCI_SLOT(dev->pci->devfn);
	dev->pci_irqmask = 0x001f00;
831 832
	if (cx23885_boards[dev->board].cimax > 0)
		dev->pci_irqmask |= 0x01800000; /* for CiMaxes */
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858

	/* External Master 1 Bus */
	dev->i2c_bus[0].nr = 0;
	dev->i2c_bus[0].dev = dev;
	dev->i2c_bus[0].reg_stat  = I2C1_STAT;
	dev->i2c_bus[0].reg_ctrl  = I2C1_CTRL;
	dev->i2c_bus[0].reg_addr  = I2C1_ADDR;
	dev->i2c_bus[0].reg_rdata = I2C1_RDATA;
	dev->i2c_bus[0].reg_wdata = I2C1_WDATA;
	dev->i2c_bus[0].i2c_period = (0x9d << 24); /* 100kHz */

	/* External Master 2 Bus */
	dev->i2c_bus[1].nr = 1;
	dev->i2c_bus[1].dev = dev;
	dev->i2c_bus[1].reg_stat  = I2C2_STAT;
	dev->i2c_bus[1].reg_ctrl  = I2C2_CTRL;
	dev->i2c_bus[1].reg_addr  = I2C2_ADDR;
	dev->i2c_bus[1].reg_rdata = I2C2_RDATA;
	dev->i2c_bus[1].reg_wdata = I2C2_WDATA;
	dev->i2c_bus[1].i2c_period = (0x9d << 24); /* 100kHz */

	/* Internal Master 3 Bus */
	dev->i2c_bus[2].nr = 2;
	dev->i2c_bus[2].dev = dev;
	dev->i2c_bus[2].reg_stat  = I2C3_STAT;
	dev->i2c_bus[2].reg_ctrl  = I2C3_CTRL;
859
	dev->i2c_bus[2].reg_addr  = I2C3_ADDR;
860 861 862 863
	dev->i2c_bus[2].reg_rdata = I2C3_RDATA;
	dev->i2c_bus[2].reg_wdata = I2C3_WDATA;
	dev->i2c_bus[2].i2c_period = (0x07 << 24); /* 1.95MHz */

864 865
	if ((cx23885_boards[dev->board].portb == CX23885_MPEG_DVB) ||
		(cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER))
866
		cx23885_init_tsport(dev, &dev->ts1, 1);
867

868 869
	if ((cx23885_boards[dev->board].portc == CX23885_MPEG_DVB) ||
		(cx23885_boards[dev->board].portc == CX23885_MPEG_ENCODER))
870
		cx23885_init_tsport(dev, &dev->ts2, 2);
871 872 873

	if (get_resources(dev) < 0) {
		printk(KERN_ERR "CORE %s No more PCIe resources for "
874 875 876
		       "subsystem: %04x:%04x\n",
		       dev->name, dev->pci->subsystem_vendor,
		       dev->pci->subsystem_device);
877 878

		cx23885_devcount--;
879
		return -ENODEV;
880 881 882
	}

	/* PCIe stuff */
883 884
	dev->lmmio = ioremap(pci_resource_start(dev->pci, 0),
			     pci_resource_len(dev->pci, 0));
885 886 887 888

	dev->bmmio = (u8 __iomem *)dev->lmmio;

	printk(KERN_INFO "CORE %s: subsystem: %04x:%04x, board: %s [card=%d,%s]\n",
889 890 891 892
	       dev->name, dev->pci->subsystem_vendor,
	       dev->pci->subsystem_device, cx23885_boards[dev->board].name,
	       dev->board, card[dev->nr] == dev->board ?
	       "insmod option" : "autodetected");
893

894 895
	cx23885_pci_quirks(dev);

896 897 898 899 900 901 902
	/* Assume some sensible defaults */
	dev->tuner_type = cx23885_boards[dev->board].tuner_type;
	dev->tuner_addr = cx23885_boards[dev->board].tuner_addr;
	dev->radio_type = cx23885_boards[dev->board].radio_type;
	dev->radio_addr = cx23885_boards[dev->board].radio_addr;

	dprintk(1, "%s() tuner_type = 0x%x tuner_addr = 0x%x\n",
903
		__func__, dev->tuner_type, dev->tuner_addr);
904
	dprintk(1, "%s() radio_type = 0x%x radio_addr = 0x%x\n",
905
		__func__, dev->radio_type, dev->radio_addr);
906

907 908 909 910 911 912 913 914
	/* The cx23417 encoder has GPIO's that need to be initialised
	 * before DVB, so that demodulators and tuners are out of
	 * reset before DVB uses them.
	 */
	if ((cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER) ||
		(cx23885_boards[dev->board].portc == CX23885_MPEG_ENCODER))
			cx23885_mc417_init(dev);

915 916 917 918 919 920 921
	/* init hardware */
	cx23885_reset(dev);

	cx23885_i2c_register(&dev->i2c_bus[0]);
	cx23885_i2c_register(&dev->i2c_bus[1]);
	cx23885_i2c_register(&dev->i2c_bus[2]);
	cx23885_card_setup(dev);
922
	call_all(dev, core, s_power, 0);
923 924
	cx23885_ir_init(dev);

925 926 927
	if (cx23885_boards[dev->board].porta == CX23885_ANALOG_VIDEO) {
		if (cx23885_video_register(dev) < 0) {
			printk(KERN_ERR "%s() Failed to register analog "
928
				"video adapters on VID_A\n", __func__);
929 930 931 932
		}
	}

	if (cx23885_boards[dev->board].portb == CX23885_MPEG_DVB) {
933 934
		if (cx23885_dvb_register(&dev->ts1) < 0) {
			printk(KERN_ERR "%s() Failed to register dvb adapters on VID_B\n",
935
			       __func__);
936
		}
937 938 939 940 941 942 943
	} else
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER) {
		if (cx23885_417_register(dev) < 0) {
			printk(KERN_ERR
				"%s() Failed to register 417 on VID_B\n",
			       __func__);
		}
944 945
	}

946
	if (cx23885_boards[dev->board].portc == CX23885_MPEG_DVB) {
947
		if (cx23885_dvb_register(&dev->ts2) < 0) {
948 949 950 951 952 953 954 955 956
			printk(KERN_ERR
				"%s() Failed to register dvb on VID_C\n",
			       __func__);
		}
	} else
	if (cx23885_boards[dev->board].portc == CX23885_MPEG_ENCODER) {
		if (cx23885_417_register(dev) < 0) {
			printk(KERN_ERR
				"%s() Failed to register 417 on VID_C\n",
957
			       __func__);
958
		}
959 960
	}

961 962
	cx23885_dev_checkrevision(dev);

963 964 965
	return 0;
}

966
static void cx23885_dev_unregister(struct cx23885_dev *dev)
967
{
968 969
	release_mem_region(pci_resource_start(dev->pci, 0),
			   pci_resource_len(dev->pci, 0));
970 971 972 973

	if (!atomic_dec_and_test(&dev->refcount))
		return;

974 975 976
	if (cx23885_boards[dev->board].porta == CX23885_ANALOG_VIDEO)
		cx23885_video_unregister(dev);

977
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_DVB)
978 979
		cx23885_dvb_unregister(&dev->ts1);

980 981 982 983
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER)
		cx23885_417_unregister(dev);

	if (cx23885_boards[dev->board].portc == CX23885_MPEG_DVB)
984 985
		cx23885_dvb_unregister(&dev->ts2);

986 987 988
	if (cx23885_boards[dev->board].portc == CX23885_MPEG_ENCODER)
		cx23885_417_unregister(dev);

989 990 991 992 993 994 995
	cx23885_i2c_unregister(&dev->i2c_bus[2]);
	cx23885_i2c_unregister(&dev->i2c_bus[1]);
	cx23885_i2c_unregister(&dev->i2c_bus[0]);

	iounmap(dev->lmmio);
}

996
static __le32 *cx23885_risc_field(__le32 *rp, struct scatterlist *sglist,
997 998 999
			       unsigned int offset, u32 sync_line,
			       unsigned int bpl, unsigned int padding,
			       unsigned int lines)
1000 1001
{
	struct scatterlist *sg;
1002
	unsigned int line, todo;
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016

	/* sync instruction */
	if (sync_line != NO_SYNC_LINE)
		*(rp++) = cpu_to_le32(RISC_RESYNC | sync_line);

	/* scan lines */
	sg = sglist;
	for (line = 0; line < lines; line++) {
		while (offset && offset >= sg_dma_len(sg)) {
			offset -= sg_dma_len(sg);
			sg++;
		}
		if (bpl <= sg_dma_len(sg)-offset) {
			/* fits into current chunk */
1017 1018 1019 1020
			*(rp++) = cpu_to_le32(RISC_WRITE|RISC_SOL|RISC_EOL|bpl);
			*(rp++) = cpu_to_le32(sg_dma_address(sg)+offset);
			*(rp++) = cpu_to_le32(0); /* bits 63-32 */
			offset += bpl;
1021 1022 1023
		} else {
			/* scanline needs to be split */
			todo = bpl;
1024
			*(rp++) = cpu_to_le32(RISC_WRITE|RISC_SOL|
1025
					    (sg_dma_len(sg)-offset));
1026 1027
			*(rp++) = cpu_to_le32(sg_dma_address(sg)+offset);
			*(rp++) = cpu_to_le32(0); /* bits 63-32 */
1028 1029 1030 1031
			todo -= (sg_dma_len(sg)-offset);
			offset = 0;
			sg++;
			while (todo > sg_dma_len(sg)) {
1032
				*(rp++) = cpu_to_le32(RISC_WRITE|
1033
						    sg_dma_len(sg));
1034 1035
				*(rp++) = cpu_to_le32(sg_dma_address(sg));
				*(rp++) = cpu_to_le32(0); /* bits 63-32 */
1036 1037 1038
				todo -= sg_dma_len(sg);
				sg++;
			}
1039 1040 1041
			*(rp++) = cpu_to_le32(RISC_WRITE|RISC_EOL|todo);
			*(rp++) = cpu_to_le32(sg_dma_address(sg));
			*(rp++) = cpu_to_le32(0); /* bits 63-32 */
1042 1043 1044 1045 1046 1047 1048 1049
			offset += todo;
		}
		offset += padding;
	}

	return rp;
}

1050 1051 1052 1053 1054 1055
int cx23885_risc_buffer(struct pci_dev *pci, struct btcx_riscmem *risc,
			struct scatterlist *sglist, unsigned int top_offset,
			unsigned int bottom_offset, unsigned int bpl,
			unsigned int padding, unsigned int lines)
{
	u32 instructions, fields;
1056
	__le32 *rp;
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
	int rc;

	fields = 0;
	if (UNSET != top_offset)
		fields++;
	if (UNSET != bottom_offset)
		fields++;

	/* estimate risc mem: worst case is one write per page border +
	   one write per scan line + syncs + jump (all 2 dwords).  Padding
	   can cause next bpl to start close to a page border.  First DMA
	   region may be smaller than PAGE_SIZE */
	/* write and jump need and extra dword */
1070 1071
	instructions  = fields * (1 + ((bpl + padding) * lines)
		/ PAGE_SIZE + lines);
1072
	instructions += 2;
1073 1074
	rc = btcx_riscmem_alloc(pci, risc, instructions*12);
	if (rc < 0)
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
		return rc;

	/* write risc instructions */
	rp = risc->cpu;
	if (UNSET != top_offset)
		rp = cx23885_risc_field(rp, sglist, top_offset, 0,
					bpl, padding, lines);
	if (UNSET != bottom_offset)
		rp = cx23885_risc_field(rp, sglist, bottom_offset, 0x200,
					bpl, padding, lines);

	/* save pointer to jmp instruction address */
	risc->jmp = rp;
1088
	BUG_ON((risc->jmp - risc->cpu + 2) * sizeof(*risc->cpu) > risc->size);
1089 1090
	return 0;
}
1091

1092 1093 1094 1095 1096
static int cx23885_risc_databuffer(struct pci_dev *pci,
				   struct btcx_riscmem *risc,
				   struct scatterlist *sglist,
				   unsigned int bpl,
				   unsigned int lines)
1097 1098
{
	u32 instructions;
1099
	__le32 *rp;
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
	int rc;

	/* estimate risc mem: worst case is one write per page border +
	   one write per scan line + syncs + jump (all 2 dwords).  Here
	   there is no padding and no sync.  First DMA region may be smaller
	   than PAGE_SIZE */
	/* Jump and write need an extra dword */
	instructions  = 1 + (bpl * lines) / PAGE_SIZE + lines;
	instructions += 1;

1110 1111
	rc = btcx_riscmem_alloc(pci, risc, instructions*12);
	if (rc < 0)
1112 1113 1114 1115 1116 1117 1118 1119
		return rc;

	/* write risc instructions */
	rp = risc->cpu;
	rp = cx23885_risc_field(rp, sglist, 0, NO_SYNC_LINE, bpl, 0, lines);

	/* save pointer to jmp instruction address */
	risc->jmp = rp;
1120
	BUG_ON((risc->jmp - risc->cpu + 2) * sizeof(*risc->cpu) > risc->size);
1121 1122 1123
	return 0;
}

1124
int cx23885_risc_stopper(struct pci_dev *pci, struct btcx_riscmem *risc,
1125
				u32 reg, u32 mask, u32 value)
1126
{
1127
	__le32 *rp;
1128 1129
	int rc;

1130 1131
	rc = btcx_riscmem_alloc(pci, risc, 4*16);
	if (rc < 0)
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147
		return rc;

	/* write risc instructions */
	rp = risc->cpu;
	*(rp++) = cpu_to_le32(RISC_WRITECR  | RISC_IRQ2);
	*(rp++) = cpu_to_le32(reg);
	*(rp++) = cpu_to_le32(value);
	*(rp++) = cpu_to_le32(mask);
	*(rp++) = cpu_to_le32(RISC_JUMP);
	*(rp++) = cpu_to_le32(risc->dma);
	*(rp++) = cpu_to_le32(0); /* bits 63-32 */
	return 0;
}

void cx23885_free_buffer(struct videobuf_queue *q, struct cx23885_buffer *buf)
{
1148 1149
	struct videobuf_dmabuf *dma = videobuf_to_dma(&buf->vb);

1150
	BUG_ON(in_interrupt());
1151
	videobuf_waiton(&buf->vb, 0, 0);
1152 1153
	videobuf_dma_unmap(q, dma);
	videobuf_dma_free(dma);
1154
	btcx_riscmem_free(to_pci_dev(q->dev), &buf->risc);
1155
	buf->vb.state = VIDEOBUF_NEEDS_INIT;
1156 1157
}

1158 1159 1160 1161
static void cx23885_tsport_reg_dump(struct cx23885_tsport *port)
{
	struct cx23885_dev *dev = port->dev;

1162 1163
	dprintk(1, "%s() Register Dump\n", __func__);
	dprintk(1, "%s() DEV_CNTRL2               0x%08X\n", __func__,
1164
		cx_read(DEV_CNTRL2));
1165
	dprintk(1, "%s() PCI_INT_MSK              0x%08X\n", __func__,
1166
		cx_read(PCI_INT_MSK));
1167
	dprintk(1, "%s() AUD_INT_INT_MSK          0x%08X\n", __func__,
1168
		cx_read(AUDIO_INT_INT_MSK));
1169
	dprintk(1, "%s() AUD_INT_DMA_CTL          0x%08X\n", __func__,
1170
		cx_read(AUD_INT_DMA_CTL));
1171
	dprintk(1, "%s() AUD_EXT_INT_MSK          0x%08X\n", __func__,
1172
		cx_read(AUDIO_EXT_INT_MSK));
1173
	dprintk(1, "%s() AUD_EXT_DMA_CTL          0x%08X\n", __func__,
1174
		cx_read(AUD_EXT_DMA_CTL));
1175
	dprintk(1, "%s() PAD_CTRL                 0x%08X\n", __func__,
1176
		cx_read(PAD_CTRL));
1177
	dprintk(1, "%s() ALT_PIN_OUT_SEL          0x%08X\n", __func__,
1178
		cx_read(ALT_PIN_OUT_SEL));
1179
	dprintk(1, "%s() GPIO2                    0x%08X\n", __func__,
1180
		cx_read(GPIO2));
1181
	dprintk(1, "%s() gpcnt(0x%08X)          0x%08X\n", __func__,
1182
		port->reg_gpcnt, cx_read(port->reg_gpcnt));
1183
	dprintk(1, "%s() gpcnt_ctl(0x%08X)      0x%08x\n", __func__,
1184
		port->reg_gpcnt_ctl, cx_read(port->reg_gpcnt_ctl));
1185
	dprintk(1, "%s() dma_ctl(0x%08X)        0x%08x\n", __func__,
1186
		port->reg_dma_ctl, cx_read(port->reg_dma_ctl));
1187 1188 1189
	if (port->reg_src_sel)
		dprintk(1, "%s() src_sel(0x%08X)        0x%08x\n", __func__,
			port->reg_src_sel, cx_read(port->reg_src_sel));
1190
	dprintk(1, "%s() lngth(0x%08X)          0x%08x\n", __func__,
1191
		port->reg_lngth, cx_read(port->reg_lngth));
1192
	dprintk(1, "%s() hw_sop_ctrl(0x%08X)    0x%08x\n", __func__,
1193
		port->reg_hw_sop_ctrl, cx_read(port->reg_hw_sop_ctrl));
1194
	dprintk(1, "%s() gen_ctrl(0x%08X)       0x%08x\n", __func__,
1195
		port->reg_gen_ctrl, cx_read(port->reg_gen_ctrl));
1196
	dprintk(1, "%s() bd_pkt_status(0x%08X)  0x%08x\n", __func__,
1197
		port->reg_bd_pkt_status, cx_read(port->reg_bd_pkt_status));
1198
	dprintk(1, "%s() sop_status(0x%08X)     0x%08x\n", __func__,
1199
		port->reg_sop_status, cx_read(port->reg_sop_status));
1200
	dprintk(1, "%s() fifo_ovfl_stat(0x%08X) 0x%08x\n", __func__,
1201
		port->reg_fifo_ovfl_stat, cx_read(port->reg_fifo_ovfl_stat));
1202
	dprintk(1, "%s() vld_misc(0x%08X)       0x%08x\n", __func__,
1203
		port->reg_vld_misc, cx_read(port->reg_vld_misc));
1204
	dprintk(1, "%s() ts_clk_en(0x%08X)      0x%08x\n", __func__,
1205
		port->reg_ts_clk_en, cx_read(port->reg_ts_clk_en));
1206
	dprintk(1, "%s() ts_int_msk(0x%08X)     0x%08x\n", __func__,
1207 1208 1209
		port->reg_ts_int_msk, cx_read(port->reg_ts_int_msk));
}

1210
static int cx23885_start_dma(struct cx23885_tsport *port,
1211 1212
			     struct cx23885_dmaqueue *q,
			     struct cx23885_buffer   *buf)
1213 1214
{
	struct cx23885_dev *dev = port->dev;
1215
	u32 reg;
1216

1217
	dprintk(1, "%s() w: %d, h: %d, f: %d\n", __func__,
1218
		buf->vb.width, buf->vb.height, buf->vb.field);
1219

1220 1221 1222
	/* Stop the fifo and risc engine for this port */
	cx_clear(port->reg_dma_ctl, port->dma_ctl_val);

1223 1224
	/* setup fifo + format */
	cx23885_sram_channel_setup(dev,
1225
				   &dev->sram_channels[port->sram_chno],
1226
				   port->ts_packet_size, buf->risc.dma);
1227 1228 1229
	if (debug > 5) {
		cx23885_sram_channel_dump(dev,
			&dev->sram_channels[port->sram_chno]);
1230
		cx23885_risc_disasm(port, &buf->risc);
1231
	}
1232 1233 1234 1235

	/* write TS length to chip */
	cx_write(port->reg_lngth, buf->vb.width);

1236 1237 1238
	if ((!(cx23885_boards[dev->board].portb & CX23885_MPEG_DVB)) &&
		(!(cx23885_boards[dev->board].portc & CX23885_MPEG_DVB))) {
		printk("%s() Unsupported .portb/c (0x%08x)/(0x%08x)\n",
1239
			__func__,
1240
			cx23885_boards[dev->board].portb,
1241
			cx23885_boards[dev->board].portc);
1242 1243 1244
		return -EINVAL;
	}

1245 1246 1247
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER)
		cx23885_av_clk(dev, 0);

1248 1249
	udelay(100);

1250
	/* If the port supports SRC SELECT, configure it */
1251
	if (port->reg_src_sel)
1252 1253
		cx_write(port->reg_src_sel, port->src_sel_val);

1254
	cx_write(port->reg_hw_sop_ctrl, port->hw_sop_ctrl_val);
1255
	cx_write(port->reg_ts_clk_en, port->ts_clk_en_val);
1256
	cx_write(port->reg_vld_misc, port->vld_misc_val);
1257 1258 1259
	cx_write(port->reg_gen_ctrl, port->gen_ctrl_val);
	udelay(100);

1260
	/* NOTE: this is 2 (reserved) for portb, does it matter? */
1261 1262 1263 1264
	/* reset counter to zero */
	cx_write(port->reg_gpcnt_ctl, 3);
	q->count = 1;

1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
	/* Set VIDB pins to input */
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_DVB) {
		reg = cx_read(PAD_CTRL);
		reg &= ~0x3; /* Clear TS1_OE & TS1_SOP_OE */
		cx_write(PAD_CTRL, reg);
	}

	/* Set VIDC pins to input */
	if (cx23885_boards[dev->board].portc == CX23885_MPEG_DVB) {
		reg = cx_read(PAD_CTRL);
		reg &= ~0x4; /* Clear TS2_SOP_OE */
		cx_write(PAD_CTRL, reg);
	}

	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER) {
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293

		reg = cx_read(PAD_CTRL);
		reg = reg & ~0x1;    /* Clear TS1_OE */

		/* FIXME, bit 2 writing here is questionable */
		/* set TS1_SOP_OE and TS1_OE_HI */
		reg = reg | 0xa;
		cx_write(PAD_CTRL, reg);

		/* FIXME and these two registers should be documented. */
		cx_write(CLK_DELAY, cx_read(CLK_DELAY) | 0x80000011);
		cx_write(ALT_PIN_OUT_SEL, 0x10100045);
	}

1294
	switch (dev->bridge) {
1295
	case CX23885_BRIDGE_885:
1296
	case CX23885_BRIDGE_887:
1297
	case CX23885_BRIDGE_888:
1298
		/* enable irqs */
1299
		dprintk(1, "%s() enabling TS int's and DMA\n", __func__);
1300 1301 1302 1303 1304
		cx_set(port->reg_ts_int_msk,  port->ts_int_msk_val);
		cx_set(port->reg_dma_ctl, port->dma_ctl_val);
		cx_set(PCI_INT_MSK, dev->pci_irqmask | port->pci_irqmask);
		break;
	default:
1305
		BUG();
1306 1307 1308 1309
	}

	cx_set(DEV_CNTRL2, (1<<5)); /* Enable RISC controller */

1310 1311 1312
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER)
		cx23885_av_clk(dev, 1);

1313 1314 1315
	if (debug > 4)
		cx23885_tsport_reg_dump(port);

1316 1317 1318 1319 1320 1321
	return 0;
}

static int cx23885_stop_dma(struct cx23885_tsport *port)
{
	struct cx23885_dev *dev = port->dev;
1322 1323
	u32 reg;

1324
	dprintk(1, "%s()\n", __func__);
1325 1326 1327 1328 1329

	/* Stop interrupts and DMA */
	cx_clear(port->reg_ts_int_msk, port->ts_int_msk_val);
	cx_clear(port->reg_dma_ctl, port->dma_ctl_val);

1330
	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER) {
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347

		reg = cx_read(PAD_CTRL);

		/* Set TS1_OE */
		reg = reg | 0x1;

		/* clear TS1_SOP_OE and TS1_OE_HI */
		reg = reg & ~0xa;
		cx_write(PAD_CTRL, reg);
		cx_write(port->reg_src_sel, 0);
		cx_write(port->reg_gen_ctrl, 8);

	}

	if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER)
		cx23885_av_clk(dev, 0);

1348 1349 1350
	return 0;
}

1351
int cx23885_restart_queue(struct cx23885_tsport *port,
1352 1353 1354 1355 1356
				struct cx23885_dmaqueue *q)
{
	struct cx23885_dev *dev = port->dev;
	struct cx23885_buffer *buf;

1357
	dprintk(5, "%s()\n", __func__);
1358
	if (list_empty(&q->active)) {
1359 1360
		struct cx23885_buffer *prev;
		prev = NULL;
1361

1362
		dprintk(5, "%s() queue is empty\n", __func__);
1363

1364 1365 1366 1367 1368 1369 1370 1371 1372
		for (;;) {
			if (list_empty(&q->queued))
				return 0;
			buf = list_entry(q->queued.next, struct cx23885_buffer,
					 vb.queue);
			if (NULL == prev) {
				list_del(&buf->vb.queue);
				list_add_tail(&buf->vb.queue, &q->active);
				cx23885_start_dma(port, q, buf);
1373
				buf->vb.state = VIDEOBUF_ACTIVE;
1374 1375
				buf->count    = q->count++;
				mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
1376
				dprintk(5, "[%p/%d] restart_queue - f/active\n",
1377 1378 1379 1380 1381 1382 1383
					buf, buf->vb.i);

			} else if (prev->vb.width  == buf->vb.width  &&
				   prev->vb.height == buf->vb.height &&
				   prev->fmt       == buf->fmt) {
				list_del(&buf->vb.queue);
				list_add_tail(&buf->vb.queue, &q->active);
1384
				buf->vb.state = VIDEOBUF_ACTIVE;
1385 1386
				buf->count    = q->count++;
				prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
1387 1388 1389
				/* 64 bit bits 63-32 */
				prev->risc.jmp[2] = cpu_to_le32(0);
				dprintk(5, "[%p/%d] restart_queue - m/active\n",
1390 1391 1392 1393 1394 1395
					buf, buf->vb.i);
			} else {
				return 0;
			}
			prev = buf;
		}
1396 1397 1398 1399
		return 0;
	}

	buf = list_entry(q->active.next, struct cx23885_buffer, vb.queue);
1400
	dprintk(2, "restart_queue [%p/%d]: restart dma\n",
1401 1402
		buf, buf->vb.i);
	cx23885_start_dma(port, q, buf);
1403
	list_for_each_entry(buf, &q->active, vb.queue)
1404
		buf->count = q->count++;
1405
	mod_timer(&q->timeout, jiffies + BUFFER_TIMEOUT);
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
	return 0;
}

/* ------------------------------------------------------------------ */

int cx23885_buf_prepare(struct videobuf_queue *q, struct cx23885_tsport *port,
			struct cx23885_buffer *buf, enum v4l2_field field)
{
	struct cx23885_dev *dev = port->dev;
	int size = port->ts_packet_size * port->ts_packet_count;
	int rc;

1418
	dprintk(1, "%s: %p\n", __func__, buf);
1419 1420 1421
	if (0 != buf->vb.baddr  &&  buf->vb.bsize < size)
		return -EINVAL;

1422
	if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
1423 1424 1425 1426 1427
		buf->vb.width  = port->ts_packet_size;
		buf->vb.height = port->ts_packet_count;
		buf->vb.size   = size;
		buf->vb.field  = field /*V4L2_FIELD_TOP*/;

1428 1429
		rc = videobuf_iolock(q, &buf->vb, NULL);
		if (0 != rc)
1430 1431
			goto fail;
		cx23885_risc_databuffer(dev->pci, &buf->risc,
1432 1433
					videobuf_to_dma(&buf->vb)->sglist,
					buf->vb.width, buf->vb.height);
1434
	}
1435
	buf->vb.state = VIDEOBUF_PREPARED;
1436 1437 1438
	return 0;

 fail:
1439
	cx23885_free_buffer(q, buf);
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
	return rc;
}

void cx23885_buf_queue(struct cx23885_tsport *port, struct cx23885_buffer *buf)
{
	struct cx23885_buffer    *prev;
	struct cx23885_dev *dev = port->dev;
	struct cx23885_dmaqueue  *cx88q = &port->mpegq;

	/* add jump to stopper */
	buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
	buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
	buf->risc.jmp[2] = cpu_to_le32(0); /* bits 63-32 */

	if (list_empty(&cx88q->active)) {
1455
		dprintk(1, "queue is empty - first active\n");
1456
		list_add_tail(&buf->vb.queue, &cx88q->active);
1457
		cx23885_start_dma(port, cx88q, buf);
1458
		buf->vb.state = VIDEOBUF_ACTIVE;
1459
		buf->count    = cx88q->count++;
1460 1461
		mod_timer(&cx88q->timeout, jiffies + BUFFER_TIMEOUT);
		dprintk(1, "[%p/%d] %s - first active\n",
1462
			buf, buf->vb.i, __func__);
1463
	} else {
1464
		dprintk(1, "queue is not empty - append to active\n");
1465 1466 1467
		prev = list_entry(cx88q->active.prev, struct cx23885_buffer,
				  vb.queue);
		list_add_tail(&buf->vb.queue, &cx88q->active);
1468
		buf->vb.state = VIDEOBUF_ACTIVE;
1469 1470 1471
		buf->count    = cx88q->count++;
		prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
		prev->risc.jmp[2] = cpu_to_le32(0); /* 64 bit bits 63-32 */
1472
		dprintk(1, "[%p/%d] %s - append to active\n",
1473
			 buf, buf->vb.i, __func__);
1474 1475 1476 1477 1478
	}
}

/* ----------------------------------------------------------- */

1479 1480
static void do_cancel_buffers(struct cx23885_tsport *port, char *reason,
			      int restart)
1481 1482 1483 1484 1485 1486
{
	struct cx23885_dev *dev = port->dev;
	struct cx23885_dmaqueue *q = &port->mpegq;
	struct cx23885_buffer *buf;
	unsigned long flags;

1487
	spin_lock_irqsave(&port->slock, flags);
1488
	while (!list_empty(&q->active)) {
1489 1490
		buf = list_entry(q->active.next, struct cx23885_buffer,
				 vb.queue);
1491
		list_del(&buf->vb.queue);
1492
		buf->vb.state = VIDEOBUF_ERROR;
1493
		wake_up(&buf->vb.done);
1494
		dprintk(1, "[%p/%d] %s - dma=0x%08lx\n",
1495 1496
			buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
	}
1497
	if (restart) {
1498
		dprintk(1, "restarting queue\n");
1499 1500
		cx23885_restart_queue(port, q);
	}
1501
	spin_unlock_irqrestore(&port->slock, flags);
1502 1503
}

1504 1505 1506 1507 1508
void cx23885_cancel_buffers(struct cx23885_tsport *port)
{
	struct cx23885_dev *dev = port->dev;
	struct cx23885_dmaqueue *q = &port->mpegq;

1509
	dprintk(1, "%s()\n", __func__);
1510 1511 1512 1513
	del_timer_sync(&q->timeout);
	cx23885_stop_dma(port);
	do_cancel_buffers(port, "cancel", 0);
}
1514 1515 1516 1517 1518 1519

static void cx23885_timeout(unsigned long data)
{
	struct cx23885_tsport *port = (struct cx23885_tsport *)data;
	struct cx23885_dev *dev = port->dev;

1520
	dprintk(1, "%s()\n", __func__);
1521 1522

	if (debug > 5)
1523 1524
		cx23885_sram_channel_dump(dev,
			&dev->sram_channels[port->sram_chno]);
1525

1526 1527 1528 1529
	cx23885_stop_dma(port);
	do_cancel_buffers(port, "timeout", 1);
}

1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
int cx23885_irq_417(struct cx23885_dev *dev, u32 status)
{
	/* FIXME: port1 assumption here. */
	struct cx23885_tsport *port = &dev->ts1;
	int count = 0;
	int handled = 0;

	if (status == 0)
		return handled;

	count = cx_read(port->reg_gpcnt);
	dprintk(7, "status: 0x%08x  mask: 0x%08x count: 0x%x\n",
		status, cx_read(port->reg_ts_int_msk), count);

	if ((status & VID_B_MSK_BAD_PKT)         ||
		(status & VID_B_MSK_OPC_ERR)     ||
		(status & VID_B_MSK_VBI_OPC_ERR) ||
		(status & VID_B_MSK_SYNC)        ||
		(status & VID_B_MSK_VBI_SYNC)    ||
		(status & VID_B_MSK_OF)          ||
		(status & VID_B_MSK_VBI_OF)) {
		printk(KERN_ERR "%s: V4L mpeg risc op code error, status "
			"= 0x%x\n", dev->name, status);
		if (status & VID_B_MSK_BAD_PKT)
			dprintk(1, "        VID_B_MSK_BAD_PKT\n");
		if (status & VID_B_MSK_OPC_ERR)
			dprintk(1, "        VID_B_MSK_OPC_ERR\n");
		if (status & VID_B_MSK_VBI_OPC_ERR)
			dprintk(1, "        VID_B_MSK_VBI_OPC_ERR\n");
		if (status & VID_B_MSK_SYNC)
			dprintk(1, "        VID_B_MSK_SYNC\n");
		if (status & VID_B_MSK_VBI_SYNC)
			dprintk(1, "        VID_B_MSK_VBI_SYNC\n");
		if (status & VID_B_MSK_OF)
			dprintk(1, "        VID_B_MSK_OF\n");
		if (status & VID_B_MSK_VBI_OF)
			dprintk(1, "        VID_B_MSK_VBI_OF\n");

		cx_clear(port->reg_dma_ctl, port->dma_ctl_val);
		cx23885_sram_channel_dump(dev,
			&dev->sram_channels[port->sram_chno]);
		cx23885_417_check_encoder(dev);
	} else if (status & VID_B_MSK_RISCI1) {
		dprintk(7, "        VID_B_MSK_RISCI1\n");
		spin_lock(&port->slock);
		cx23885_wakeup(port, &port->mpegq, count);
		spin_unlock(&port->slock);
	} else if (status & VID_B_MSK_RISCI2) {
		dprintk(7, "        VID_B_MSK_RISCI2\n");
		spin_lock(&port->slock);
		cx23885_restart_queue(port, &port->mpegq);
		spin_unlock(&port->slock);
	}
	if (status) {
		cx_write(port->reg_ts_int_stat, status);
		handled = 1;
	}

	return handled;
}

1591 1592 1593 1594 1595 1596
static int cx23885_irq_ts(struct cx23885_tsport *port, u32 status)
{
	struct cx23885_dev *dev = port->dev;
	int handled = 0;
	u32 count;

1597 1598 1599
	if ((status & VID_BC_MSK_OPC_ERR) ||
		(status & VID_BC_MSK_BAD_PKT) ||
		(status & VID_BC_MSK_SYNC) ||
1600 1601
		(status & VID_BC_MSK_OF)) {

1602
		if (status & VID_BC_MSK_OPC_ERR)
1603 1604 1605
			dprintk(7, " (VID_BC_MSK_OPC_ERR 0x%08x)\n",
				VID_BC_MSK_OPC_ERR);

1606
		if (status & VID_BC_MSK_BAD_PKT)
1607 1608 1609
			dprintk(7, " (VID_BC_MSK_BAD_PKT 0x%08x)\n",
				VID_BC_MSK_BAD_PKT);

1610
		if (status & VID_BC_MSK_SYNC)
1611 1612 1613
			dprintk(7, " (VID_BC_MSK_SYNC    0x%08x)\n",
				VID_BC_MSK_SYNC);

1614
		if (status & VID_BC_MSK_OF)
1615 1616
			dprintk(7, " (VID_BC_MSK_OF      0x%08x)\n",
				VID_BC_MSK_OF);
1617 1618 1619 1620

		printk(KERN_ERR "%s: mpeg risc op code error\n", dev->name);

		cx_clear(port->reg_dma_ctl, port->dma_ctl_val);
1621 1622
		cx23885_sram_channel_dump(dev,
			&dev->sram_channels[port->sram_chno]);
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649

	} else if (status & VID_BC_MSK_RISCI1) {

		dprintk(7, " (RISCI1            0x%08x)\n", VID_BC_MSK_RISCI1);

		spin_lock(&port->slock);
		count = cx_read(port->reg_gpcnt);
		cx23885_wakeup(port, &port->mpegq, count);
		spin_unlock(&port->slock);

	} else if (status & VID_BC_MSK_RISCI2) {

		dprintk(7, " (RISCI2            0x%08x)\n", VID_BC_MSK_RISCI2);

		spin_lock(&port->slock);
		cx23885_restart_queue(port, &port->mpegq);
		spin_unlock(&port->slock);

	}
	if (status) {
		cx_write(port->reg_ts_int_stat, status);
		handled = 1;
	}

	return handled;
}

1650
static irqreturn_t cx23885_irq(int irq, void *dev_id)
1651 1652
{
	struct cx23885_dev *dev = dev_id;
1653 1654
	struct cx23885_tsport *ts1 = &dev->ts1;
	struct cx23885_tsport *ts2 = &dev->ts2;
1655
	u32 pci_status, pci_mask;
1656
	u32 vida_status, vida_mask;
1657
	u32 ts1_status, ts1_mask;
1658
	u32 ts2_status, ts2_mask;
1659
	int vida_count = 0, ts1_count = 0, ts2_count = 0, handled = 0;
1660
	bool ir_handled = false;
1661 1662 1663

	pci_status = cx_read(PCI_INT_STAT);
	pci_mask = cx_read(PCI_INT_MSK);
1664 1665
	vida_status = cx_read(VID_A_INT_STAT);
	vida_mask = cx_read(VID_A_INT_MSK);
1666 1667
	ts1_status = cx_read(VID_B_INT_STAT);
	ts1_mask = cx_read(VID_B_INT_MSK);
1668 1669 1670
	ts2_status = cx_read(VID_C_INT_STAT);
	ts2_mask = cx_read(VID_C_INT_MSK);

1671
	if ((pci_status == 0) && (ts2_status == 0) && (ts1_status == 0))
1672 1673
		goto out;

1674
	vida_count = cx_read(VID_A_GPCNT);
1675 1676
	ts1_count = cx_read(ts1->reg_gpcnt);
	ts2_count = cx_read(ts2->reg_gpcnt);
1677 1678 1679 1680 1681 1682 1683 1684
	dprintk(7, "pci_status: 0x%08x  pci_mask: 0x%08x\n",
		pci_status, pci_mask);
	dprintk(7, "vida_status: 0x%08x vida_mask: 0x%08x count: 0x%x\n",
		vida_status, vida_mask, vida_count);
	dprintk(7, "ts1_status: 0x%08x  ts1_mask: 0x%08x count: 0x%x\n",
		ts1_status, ts1_mask, ts1_count);
	dprintk(7, "ts2_status: 0x%08x  ts2_mask: 0x%08x count: 0x%x\n",
		ts2_status, ts2_mask, ts2_count);
1685

1686 1687 1688 1689 1690 1691
	if (pci_status & (PCI_MSK_RISC_RD | PCI_MSK_RISC_WR |
			  PCI_MSK_AL_RD   | PCI_MSK_AL_WR   | PCI_MSK_APB_DMA |
			  PCI_MSK_VID_C   | PCI_MSK_VID_B   | PCI_MSK_VID_A   |
			  PCI_MSK_AUD_INT | PCI_MSK_AUD_EXT |
			  PCI_MSK_GPIO0   | PCI_MSK_GPIO1   |
			  PCI_MSK_IR)) {
1692 1693

		if (pci_status & PCI_MSK_RISC_RD)
1694 1695 1696
			dprintk(7, " (PCI_MSK_RISC_RD   0x%08x)\n",
				PCI_MSK_RISC_RD);

1697
		if (pci_status & PCI_MSK_RISC_WR)
1698 1699 1700
			dprintk(7, " (PCI_MSK_RISC_WR   0x%08x)\n",
				PCI_MSK_RISC_WR);

1701
		if (pci_status & PCI_MSK_AL_RD)
1702 1703 1704
			dprintk(7, " (PCI_MSK_AL_RD     0x%08x)\n",
				PCI_MSK_AL_RD);

1705
		if (pci_status & PCI_MSK_AL_WR)
1706 1707 1708
			dprintk(7, " (PCI_MSK_AL_WR     0x%08x)\n",
				PCI_MSK_AL_WR);

1709
		if (pci_status & PCI_MSK_APB_DMA)
1710 1711 1712
			dprintk(7, " (PCI_MSK_APB_DMA   0x%08x)\n",
				PCI_MSK_APB_DMA);

1713
		if (pci_status & PCI_MSK_VID_C)
1714 1715 1716
			dprintk(7, " (PCI_MSK_VID_C     0x%08x)\n",
				PCI_MSK_VID_C);

1717
		if (pci_status & PCI_MSK_VID_B)
1718 1719 1720
			dprintk(7, " (PCI_MSK_VID_B     0x%08x)\n",
				PCI_MSK_VID_B);

1721
		if (pci_status & PCI_MSK_VID_A)
1722 1723 1724
			dprintk(7, " (PCI_MSK_VID_A     0x%08x)\n",
				PCI_MSK_VID_A);

1725
		if (pci_status & PCI_MSK_AUD_INT)
1726 1727 1728
			dprintk(7, " (PCI_MSK_AUD_INT   0x%08x)\n",
				PCI_MSK_AUD_INT);

1729
		if (pci_status & PCI_MSK_AUD_EXT)
1730 1731
			dprintk(7, " (PCI_MSK_AUD_EXT   0x%08x)\n",
				PCI_MSK_AUD_EXT);
1732

1733 1734 1735 1736 1737 1738 1739
		if (pci_status & PCI_MSK_GPIO0)
			dprintk(7, " (PCI_MSK_GPIO0     0x%08x)\n",
				PCI_MSK_GPIO0);

		if (pci_status & PCI_MSK_GPIO1)
			dprintk(7, " (PCI_MSK_GPIO1     0x%08x)\n",
				PCI_MSK_GPIO1);
1740 1741 1742 1743

		if (pci_status & PCI_MSK_IR)
			dprintk(7, " (PCI_MSK_IR        0x%08x)\n",
				PCI_MSK_IR);
1744 1745
	}

1746
	if (cx23885_boards[dev->board].cimax > 0 &&
1747 1748 1749 1750 1751 1752 1753
		((pci_status & PCI_MSK_GPIO0) ||
			(pci_status & PCI_MSK_GPIO1))) {

		if (cx23885_boards[dev->board].cimax > 0)
			handled += netup_ci_slot_status(dev, pci_status);

	}
1754

1755 1756 1757
	if (ts1_status) {
		if (cx23885_boards[dev->board].portb == CX23885_MPEG_DVB)
			handled += cx23885_irq_ts(ts1, ts1_status);
1758 1759 1760
		else
		if (cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER)
			handled += cx23885_irq_417(dev, ts1_status);
1761 1762 1763 1764 1765
	}

	if (ts2_status) {
		if (cx23885_boards[dev->board].portc == CX23885_MPEG_DVB)
			handled += cx23885_irq_ts(ts2, ts2_status);
1766 1767 1768
		else
		if (cx23885_boards[dev->board].portc == CX23885_MPEG_ENCODER)
			handled += cx23885_irq_417(dev, ts2_status);
1769
	}
1770

1771 1772
	if (vida_status)
		handled += cx23885_video_irq(dev, vida_status);
1773

1774 1775 1776 1777 1778 1779 1780
	if (pci_status & PCI_MSK_IR) {
		v4l2_subdev_call(dev->sd_ir, ir, interrupt_service_routine,
				 pci_status, &ir_handled);
		if (ir_handled)
			handled++;
	}

1781 1782
	if (handled)
		cx_write(PCI_INT_STAT, pci_status);
1783 1784 1785 1786
out:
	return IRQ_RETVAL(handled);
}

1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815
static void cx23885_v4l2_dev_notify(struct v4l2_subdev *sd,
				    unsigned int notification, void *arg)
{
	struct cx23885_dev *dev;

	if (sd == NULL)
		return;

	dev = to_cx23885(sd->v4l2_dev);

	switch (notification) {
	case V4L2_SUBDEV_IR_RX_NOTIFY: /* Called in an IRQ context */
		if (sd == dev->sd_ir)
			cx23885_ir_rx_v4l2_dev_notify(sd, *(u32 *)arg);
		break;
	case V4L2_SUBDEV_IR_TX_NOTIFY: /* Called in an IRQ context */
		if (sd == dev->sd_ir)
			cx23885_ir_tx_v4l2_dev_notify(sd, *(u32 *)arg);
		break;
	}
}

static void cx23885_v4l2_dev_notify_init(struct cx23885_dev *dev)
{
	INIT_WORK(&dev->ir_rx_work, cx23885_ir_rx_work_handler);
	INIT_WORK(&dev->ir_tx_work, cx23885_ir_tx_work_handler);
	dev->v4l2_dev.notify = cx23885_v4l2_dev_notify;
}

1816
static inline int encoder_on_portb(struct cx23885_dev *dev)
1817 1818 1819 1820
{
	return cx23885_boards[dev->board].portb == CX23885_MPEG_ENCODER;
}

1821
static inline int encoder_on_portc(struct cx23885_dev *dev)
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
{
	return cx23885_boards[dev->board].portc == CX23885_MPEG_ENCODER;
}

/* Mask represents 32 different GPIOs, GPIO's are split into multiple
 * registers depending on the board configuration (and whether the
 * 417 encoder (wi it's own GPIO's) are present. Each GPIO bit will
 * be pushed into the correct hardware register, regardless of the
 * physical location. Certain registers are shared so we sanity check
 * and report errors if we think we're tampering with a GPIo that might
 * be assigned to the encoder (and used for the host bus).
 *
 * GPIO  2 thru  0 - On the cx23885 bridge
 * GPIO 18 thru  3 - On the cx23417 host bus interface
 * GPIO 23 thru 19 - On the cx25840 a/v core
 */
void cx23885_gpio_set(struct cx23885_dev *dev, u32 mask)
{
	if (mask & 0x7)
		cx_set(GP0_IO, mask & 0x7);

	if (mask & 0x0007fff8) {
		if (encoder_on_portb(dev) || encoder_on_portc(dev))
			printk(KERN_ERR
				"%s: Setting GPIO on encoder ports\n",
				dev->name);
		cx_set(MC417_RWD, (mask & 0x0007fff8) >> 3);
	}

	/* TODO: 23-19 */
	if (mask & 0x00f80000)
		printk(KERN_INFO "%s: Unsupported\n", dev->name);
}

void cx23885_gpio_clear(struct cx23885_dev *dev, u32 mask)
{
	if (mask & 0x00000007)
		cx_clear(GP0_IO, mask & 0x7);

	if (mask & 0x0007fff8) {
		if (encoder_on_portb(dev) || encoder_on_portc(dev))
			printk(KERN_ERR
				"%s: Clearing GPIO moving on encoder ports\n",
				dev->name);
		cx_clear(MC417_RWD, (mask & 0x7fff8) >> 3);
	}

	/* TODO: 23-19 */
	if (mask & 0x00f80000)
		printk(KERN_INFO "%s: Unsupported\n", dev->name);
}

void cx23885_gpio_enable(struct cx23885_dev *dev, u32 mask, int asoutput)
{
	if ((mask & 0x00000007) && asoutput)
		cx_set(GP0_IO, (mask & 0x7) << 16);
	else if ((mask & 0x00000007) && !asoutput)
		cx_clear(GP0_IO, (mask & 0x7) << 16);

	if (mask & 0x0007fff8) {
		if (encoder_on_portb(dev) || encoder_on_portc(dev))
			printk(KERN_ERR
				"%s: Enabling GPIO on encoder ports\n",
				dev->name);
	}

	/* MC417_OEN is active low for output, write 1 for an input */
	if ((mask & 0x0007fff8) && asoutput)
		cx_clear(MC417_OEN, (mask & 0x7fff8) >> 3);

	else if ((mask & 0x0007fff8) && !asoutput)
		cx_set(MC417_OEN, (mask & 0x7fff8) >> 3);

	/* TODO: 23-19 */
}

1898
static int __devinit cx23885_initdev(struct pci_dev *pci_dev,
1899
				     const struct pci_device_id *pci_id)
1900 1901 1902 1903
{
	struct cx23885_dev *dev;
	int err;

1904
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1905 1906 1907
	if (NULL == dev)
		return -ENOMEM;

1908 1909 1910 1911
	err = v4l2_device_register(&pci_dev->dev, &dev->v4l2_dev);
	if (err < 0)
		goto fail_free;

1912 1913 1914
	/* Prepare to handle notifications from subdevices */
	cx23885_v4l2_dev_notify_init(dev);

1915 1916 1917 1918
	/* pci init */
	dev->pci = pci_dev;
	if (pci_enable_device(pci_dev)) {
		err = -EIO;
1919
		goto fail_unreg;
1920 1921 1922 1923
	}

	if (cx23885_dev_setup(dev) < 0) {
		err = -EINVAL;
1924
		goto fail_unreg;
1925 1926 1927 1928 1929 1930 1931 1932
	}

	/* print pci info */
	pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &dev->pci_rev);
	pci_read_config_byte(pci_dev, PCI_LATENCY_TIMER,  &dev->pci_lat);
	printk(KERN_INFO "%s/0: found at %s, rev: %d, irq: %d, "
	       "latency: %d, mmio: 0x%llx\n", dev->name,
	       pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
1933 1934
	       dev->pci_lat,
		(unsigned long long)pci_resource_start(pci_dev, 0));
1935 1936 1937 1938 1939 1940 1941 1942

	pci_set_master(pci_dev);
	if (!pci_dma_supported(pci_dev, 0xffffffff)) {
		printk("%s/0: Oops: no 32bit PCI DMA ???\n", dev->name);
		err = -EIO;
		goto fail_irq;
	}

1943 1944
	err = request_irq(pci_dev->irq, cx23885_irq,
			  IRQF_SHARED | IRQF_DISABLED, dev->name, dev);
1945 1946 1947 1948 1949 1950
	if (err < 0) {
		printk(KERN_ERR "%s: can't get IRQ %d\n",
		       dev->name, pci_dev->irq);
		goto fail_irq;
	}

1951 1952 1953 1954 1955
	switch (dev->board) {
	case CX23885_BOARD_NETUP_DUAL_DVBS2_CI:
		cx_set(PCI_INT_MSK, 0x01800000); /* for NetUP */
		break;
	}
1956

1957 1958 1959 1960 1961 1962
	/*
	 * The CX2388[58] IR controller can start firing interrupts when
	 * enabled, so these have to take place after the cx23885_irq() handler
	 * is hooked up by the call to request_irq() above.
	 */
	cx23885_ir_pci_int_enable(dev);
1963
	cx23885_input_init(dev);
1964

1965 1966 1967 1968
	return 0;

fail_irq:
	cx23885_dev_unregister(dev);
1969 1970
fail_unreg:
	v4l2_device_unregister(&dev->v4l2_dev);
1971 1972 1973 1974 1975 1976 1977
fail_free:
	kfree(dev);
	return err;
}

static void __devexit cx23885_finidev(struct pci_dev *pci_dev)
{
1978 1979
	struct v4l2_device *v4l2_dev = pci_get_drvdata(pci_dev);
	struct cx23885_dev *dev = to_cx23885(v4l2_dev);
1980

1981
	cx23885_input_fini(dev);
1982
	cx23885_ir_fini(dev);
1983

1984
	cx23885_shutdown(dev);
1985

1986 1987 1988 1989 1990 1991 1992 1993 1994 1995
	pci_disable_device(pci_dev);

	/* unregister stuff */
	free_irq(pci_dev->irq, dev);

	mutex_lock(&devlist);
	list_del(&dev->devlist);
	mutex_unlock(&devlist);

	cx23885_dev_unregister(dev);
1996
	v4l2_device_unregister(v4l2_dev);
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006
	kfree(dev);
}

static struct pci_device_id cx23885_pci_tbl[] = {
	{
		/* CX23885 */
		.vendor       = 0x14f1,
		.device       = 0x8852,
		.subvendor    = PCI_ANY_ID,
		.subdevice    = PCI_ANY_ID,
2007
	}, {
2008 2009 2010 2011 2012
		/* CX23887 Rev 2 */
		.vendor       = 0x14f1,
		.device       = 0x8880,
		.subvendor    = PCI_ANY_ID,
		.subdevice    = PCI_ANY_ID,
2013
	}, {
2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028
		/* --- end of list --- */
	}
};
MODULE_DEVICE_TABLE(pci, cx23885_pci_tbl);

static struct pci_driver cx23885_pci_driver = {
	.name     = "cx23885",
	.id_table = cx23885_pci_tbl,
	.probe    = cx23885_initdev,
	.remove   = __devexit_p(cx23885_finidev),
	/* TODO */
	.suspend  = NULL,
	.resume   = NULL,
};

2029
static int __init cx23885_init(void)
2030 2031
{
	printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n",
2032 2033 2034
	       (CX23885_VERSION_CODE >> 16) & 0xff,
	       (CX23885_VERSION_CODE >>  8) & 0xff,
	       CX23885_VERSION_CODE & 0xff);
2035 2036 2037 2038 2039 2040 2041
#ifdef SNAPSHOT
	printk(KERN_INFO "cx23885: snapshot date %04d-%02d-%02d\n",
	       SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
#endif
	return pci_register_driver(&cx23885_pci_driver);
}

2042
static void __exit cx23885_fini(void)
2043 2044 2045 2046 2047 2048 2049 2050
{
	pci_unregister_driver(&cx23885_pci_driver);
}

module_init(cx23885_init);
module_exit(cx23885_fini);

/* ----------------------------------------------------------- */