3 * Support for the mpeg transport stream transfers
4 * PCI function #2 of the cx2388x.
6 * (c) 2004 Jelle Foks <jelle@foks.8m.com>
7 * (c) 2004 Chris Pascoe <c.pascoe@itee.uq.edu.au>
8 * (c) 2004 Gerd Knorr <kraxel@bytesex.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/init.h>
28 #include <linux/device.h>
29 #include <linux/interrupt.h>
30 #include <asm/delay.h>
34 /* ------------------------------------------------------------------ */
36 MODULE_DESCRIPTION("mpeg driver for cx2388x based TV cards");
37 MODULE_AUTHOR("Jelle Foks <jelle@foks.8m.com>");
38 MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
39 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
40 MODULE_LICENSE("GPL");
42 static unsigned int debug = 0;
43 module_param(debug,int,0644);
44 MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
46 #define dprintk(level,fmt, arg...) if (debug >= level) \
47 printk(KERN_DEBUG "%s/2: " fmt, dev->core->name , ## arg)
49 /* ------------------------------------------------------------------ */
51 static int cx8802_start_dma(struct cx8802_dev *dev,
52 struct cx88_dmaqueue *q,
53 struct cx88_buffer *buf)
55 struct cx88_core *core = dev->core;
57 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n", dev->width, dev->height, buf->vb.field);
59 /* setup fifo + format */
60 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
61 dev->ts_packet_size, buf->risc.dma);
63 /* write TS length to chip */
64 cx_write(MO_TS_LNGTH, buf->vb.width);
66 /* FIXME: this needs a review.
67 * also: move to cx88-blackbird + cx88-dvb source files? */
69 if (cx88_boards[core->board].dvb) {
70 /* negedge driven & software reset */
71 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
73 cx_write(MO_PINMUX_IO, 0x00);
74 cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01);
75 switch (core->board) {
76 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
77 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
78 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
79 case CX88_BOARD_PCHDTV_HD5500:
80 cx_write(TS_SOP_STAT, 1<<13);
82 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
83 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
84 cx_write(MO_PINMUX_IO, 0x88); /* Enable MPEG parallel IO and video signal pins */
88 cx_write(TS_SOP_STAT, 0x00);
91 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
95 if (cx88_boards[core->board].blackbird) {
96 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
98 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
101 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
102 cx_write(TS_VALERR_CNTRL, 0x2000);
104 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
109 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
113 dprintk( 1, "setting the interrupt mask\n" );
114 cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x04);
115 cx_set(MO_TS_INTMSK, 0x1f0011);
118 cx_set(MO_DEV_CNTRL2, (1<<5));
119 cx_set(MO_TS_DMACNTRL, 0x11);
123 static int cx8802_stop_dma(struct cx8802_dev *dev)
125 struct cx88_core *core = dev->core;
126 dprintk( 1, "cx8802_stop_dma\n" );
129 cx_clear(MO_TS_DMACNTRL, 0x11);
132 cx_clear(MO_PCI_INTMSK, 0x000004);
133 cx_clear(MO_TS_INTMSK, 0x1f0011);
135 /* Reset the controller */
136 cx_write(TS_GEN_CNTRL, 0xcd);
140 static int cx8802_restart_queue(struct cx8802_dev *dev,
141 struct cx88_dmaqueue *q)
143 struct cx88_buffer *buf;
144 struct list_head *item;
146 dprintk( 1, "cx8802_restart_queue\n" );
147 if (list_empty(&q->active))
149 struct cx88_buffer *prev;
152 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
155 if (list_empty(&q->queued))
157 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
159 list_del(&buf->vb.queue);
160 list_add_tail(&buf->vb.queue,&q->active);
161 cx8802_start_dma(dev, q, buf);
162 buf->vb.state = STATE_ACTIVE;
163 buf->count = q->count++;
164 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
165 dprintk(1,"[%p/%d] restart_queue - first active\n",
168 } else if (prev->vb.width == buf->vb.width &&
169 prev->vb.height == buf->vb.height &&
170 prev->fmt == buf->fmt) {
171 list_del(&buf->vb.queue);
172 list_add_tail(&buf->vb.queue,&q->active);
173 buf->vb.state = STATE_ACTIVE;
174 buf->count = q->count++;
175 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
176 dprintk(1,"[%p/%d] restart_queue - move to active\n",
186 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
187 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
189 cx8802_start_dma(dev, q, buf);
190 list_for_each(item,&q->active) {
191 buf = list_entry(item, struct cx88_buffer, vb.queue);
192 buf->count = q->count++;
194 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
198 /* ------------------------------------------------------------------ */
200 int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
201 struct cx88_buffer *buf, enum v4l2_field field)
203 int size = dev->ts_packet_size * dev->ts_packet_count;
206 dprintk(1, "%s: %p\n", __FUNCTION__, buf);
207 if (0 != buf->vb.baddr && buf->vb.bsize < size)
210 if (STATE_NEEDS_INIT == buf->vb.state) {
211 buf->vb.width = dev->ts_packet_size;
212 buf->vb.height = dev->ts_packet_count;
214 buf->vb.field = field /*V4L2_FIELD_TOP*/;
216 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
218 cx88_risc_databuffer(dev->pci, &buf->risc,
220 buf->vb.width, buf->vb.height);
222 buf->vb.state = STATE_PREPARED;
226 cx88_free_buffer(q,buf);
230 void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
232 struct cx88_buffer *prev;
233 struct cx88_dmaqueue *cx88q = &dev->mpegq;
235 dprintk( 1, "cx8802_buf_queue\n" );
236 /* add jump to stopper */
237 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
238 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
240 if (list_empty(&cx88q->active)) {
241 dprintk( 1, "queue is empty - first active\n" );
242 list_add_tail(&buf->vb.queue,&cx88q->active);
243 cx8802_start_dma(dev, cx88q, buf);
244 buf->vb.state = STATE_ACTIVE;
245 buf->count = cx88q->count++;
246 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
247 dprintk(1,"[%p/%d] %s - first active\n",
248 buf, buf->vb.i, __FUNCTION__);
251 dprintk( 1, "queue is not empty - append to active\n" );
252 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
253 list_add_tail(&buf->vb.queue,&cx88q->active);
254 buf->vb.state = STATE_ACTIVE;
255 buf->count = cx88q->count++;
256 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
257 dprintk( 1, "[%p/%d] %s - append to active\n",
258 buf, buf->vb.i, __FUNCTION__);
262 /* ----------------------------------------------------------- */
264 static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
266 struct cx88_dmaqueue *q = &dev->mpegq;
267 struct cx88_buffer *buf;
270 spin_lock_irqsave(&dev->slock,flags);
271 while (!list_empty(&q->active)) {
272 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
273 list_del(&buf->vb.queue);
274 buf->vb.state = STATE_ERROR;
275 wake_up(&buf->vb.done);
276 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
277 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
281 dprintk(1, "restarting queue\n" );
282 cx8802_restart_queue(dev,q);
284 spin_unlock_irqrestore(&dev->slock,flags);
287 void cx8802_cancel_buffers(struct cx8802_dev *dev)
289 struct cx88_dmaqueue *q = &dev->mpegq;
291 dprintk( 1, "cx8802_cancel_buffers" );
292 del_timer_sync(&q->timeout);
293 cx8802_stop_dma(dev);
294 do_cancel_buffers(dev,"cancel",0);
297 static void cx8802_timeout(unsigned long data)
299 struct cx8802_dev *dev = (struct cx8802_dev*)data;
301 dprintk(0, "%s\n",__FUNCTION__);
304 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
305 cx8802_stop_dma(dev);
306 do_cancel_buffers(dev,"timeout",1);
309 static char *cx88_mpeg_irqs[32] = {
310 "ts_risci1", NULL, NULL, NULL,
311 "ts_risci2", NULL, NULL, NULL,
312 "ts_oflow", NULL, NULL, NULL,
313 "ts_sync", NULL, NULL, NULL,
314 "opc_err", "par_err", "rip_err", "pci_abort",
318 static void cx8802_mpeg_irq(struct cx8802_dev *dev)
320 struct cx88_core *core = dev->core;
321 u32 status, mask, count;
323 dprintk( 1, "cx8802_mpeg_irq\n" );
324 status = cx_read(MO_TS_INTSTAT);
325 mask = cx_read(MO_TS_INTMSK);
326 if (0 == (status & mask))
329 cx_write(MO_TS_INTSTAT, status);
331 if (debug || (status & mask & ~0xff))
332 cx88_print_irqbits(core->name, "irq mpeg ",
333 cx88_mpeg_irqs, status, mask);
335 /* risc op code error */
336 if (status & (1 << 16)) {
337 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
338 cx_clear(MO_TS_DMACNTRL, 0x11);
339 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
344 dprintk( 1, "wake up\n" );
345 spin_lock(&dev->slock);
346 count = cx_read(MO_TS_GPCNT);
347 cx88_wakeup(dev->core, &dev->mpegq, count);
348 spin_unlock(&dev->slock);
353 spin_lock(&dev->slock);
354 cx8802_restart_queue(dev,&dev->mpegq);
355 spin_unlock(&dev->slock);
358 /* other general errors */
359 if (status & 0x1f0100) {
360 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
361 spin_lock(&dev->slock);
362 cx8802_stop_dma(dev);
363 cx8802_restart_queue(dev,&dev->mpegq);
364 spin_unlock(&dev->slock);
368 #define MAX_IRQ_LOOP 10
370 static irqreturn_t cx8802_irq(int irq, void *dev_id, struct pt_regs *regs)
372 struct cx8802_dev *dev = dev_id;
373 struct cx88_core *core = dev->core;
375 int loop, handled = 0;
377 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
378 status = cx_read(MO_PCI_INTSTAT) & (core->pci_irqmask | 0x04);
381 dprintk( 1, "cx8802_irq\n" );
382 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
383 dprintk( 1, " status: %d\n", status );
385 cx_write(MO_PCI_INTSTAT, status);
387 if (status & core->pci_irqmask)
388 cx88_core_irq(core,status);
390 cx8802_mpeg_irq(dev);
392 if (MAX_IRQ_LOOP == loop) {
393 dprintk( 0, "clearing mask\n" );
394 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
396 cx_write(MO_PCI_INTMSK,0);
400 return IRQ_RETVAL(handled);
403 /* ----------------------------------------------------------- */
406 int cx8802_init_common(struct cx8802_dev *dev)
408 struct cx88_core *core = dev->core;
412 if (pci_enable_device(dev->pci))
414 pci_set_master(dev->pci);
415 if (!pci_dma_supported(dev->pci,0xffffffff)) {
416 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
420 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
421 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
422 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
423 "latency: %d, mmio: 0x%llx\n", dev->core->name,
424 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
425 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
427 /* initialize driver struct */
428 spin_lock_init(&dev->slock);
431 INIT_LIST_HEAD(&dev->mpegq.active);
432 INIT_LIST_HEAD(&dev->mpegq.queued);
433 dev->mpegq.timeout.function = cx8802_timeout;
434 dev->mpegq.timeout.data = (unsigned long)dev;
435 init_timer(&dev->mpegq.timeout);
436 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
437 MO_TS_DMACNTRL,0x11,0x00);
440 err = request_irq(dev->pci->irq, cx8802_irq,
441 SA_SHIRQ | SA_INTERRUPT, dev->core->name, dev);
443 printk(KERN_ERR "%s: can't get IRQ %d\n",
444 dev->core->name, dev->pci->irq);
447 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
449 /* everything worked */
450 pci_set_drvdata(dev->pci,dev);
454 void cx8802_fini_common(struct cx8802_dev *dev)
456 dprintk( 2, "cx8802_fini_common\n" );
457 cx8802_stop_dma(dev);
458 pci_disable_device(dev->pci);
460 /* unregister stuff */
461 free_irq(dev->pci->irq, dev);
462 pci_set_drvdata(dev->pci, NULL);
465 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
468 /* ----------------------------------------------------------- */
470 int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
472 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
473 struct cx88_core *core = dev->core;
476 spin_lock(&dev->slock);
477 if (!list_empty(&dev->mpegq.active)) {
478 dprintk( 2, "suspend\n" );
479 printk("%s: suspend mpeg\n", core->name);
480 cx8802_stop_dma(dev);
481 del_timer(&dev->mpegq.timeout);
483 spin_unlock(&dev->slock);
485 /* FIXME -- shutdown device */
486 cx88_shutdown(dev->core);
488 pci_save_state(pci_dev);
489 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
490 pci_disable_device(pci_dev);
491 dev->state.disabled = 1;
496 int cx8802_resume_common(struct pci_dev *pci_dev)
498 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
499 struct cx88_core *core = dev->core;
502 if (dev->state.disabled) {
503 err=pci_enable_device(pci_dev);
505 printk(KERN_ERR "%s: can't enable device\n",
509 dev->state.disabled = 0;
511 err=pci_set_power_state(pci_dev, PCI_D0);
513 printk(KERN_ERR "%s: can't enable device\n",
515 pci_disable_device(pci_dev);
516 dev->state.disabled = 1;
520 pci_restore_state(pci_dev);
522 /* FIXME: re-initialize hardware */
523 cx88_reset(dev->core);
525 /* restart video+vbi capture */
526 spin_lock(&dev->slock);
527 if (!list_empty(&dev->mpegq.active)) {
528 printk("%s: resume mpeg\n", core->name);
529 cx8802_restart_queue(dev,&dev->mpegq);
531 spin_unlock(&dev->slock);
536 /* ----------------------------------------------------------- */
538 EXPORT_SYMBOL(cx8802_buf_prepare);
539 EXPORT_SYMBOL(cx8802_buf_queue);
540 EXPORT_SYMBOL(cx8802_cancel_buffers);
542 EXPORT_SYMBOL(cx8802_init_common);
543 EXPORT_SYMBOL(cx8802_fini_common);
545 EXPORT_SYMBOL(cx8802_suspend_common);
546 EXPORT_SYMBOL(cx8802_resume_common);
548 /* ----------------------------------------------------------- */
553 * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off