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(0, "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 cx_write(TS_SOP_STAT, 1<<13);
82 cx_write(TS_SOP_STAT, 0x00);
85 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
89 if (cx88_boards[core->board].blackbird) {
90 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
92 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
95 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
96 cx_write(TS_VALERR_CNTRL, 0x2000);
98 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
103 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
107 dprintk( 0, "setting the interrupt mask\n" );
108 cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x04);
109 cx_set(MO_TS_INTMSK, 0x1f0011);
112 cx_set(MO_DEV_CNTRL2, (1<<5));
113 cx_set(MO_TS_DMACNTRL, 0x11);
117 static int cx8802_stop_dma(struct cx8802_dev *dev)
119 struct cx88_core *core = dev->core;
120 dprintk( 0, "cx8802_stop_dma\n" );
123 cx_clear(MO_TS_DMACNTRL, 0x11);
126 cx_clear(MO_PCI_INTMSK, 0x000004);
127 cx_clear(MO_TS_INTMSK, 0x1f0011);
129 /* Reset the controller */
130 cx_write(TS_GEN_CNTRL, 0xcd);
134 static int cx8802_restart_queue(struct cx8802_dev *dev,
135 struct cx88_dmaqueue *q)
137 struct cx88_buffer *buf;
138 struct list_head *item;
140 dprintk( 0, "cx8802_restart_queue\n" );
141 if (list_empty(&q->active))
143 dprintk( 0, "cx8802_restart_queue: queue is empty\n" );
147 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
148 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
150 cx8802_start_dma(dev, q, buf);
151 list_for_each(item,&q->active) {
152 buf = list_entry(item, struct cx88_buffer, vb.queue);
153 buf->count = q->count++;
155 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
159 /* ------------------------------------------------------------------ */
161 int cx8802_buf_prepare(struct cx8802_dev *dev, struct cx88_buffer *buf,
162 enum v4l2_field field)
164 int size = dev->ts_packet_size * dev->ts_packet_count;
167 dprintk(1, "%s: %p\n", __FUNCTION__, buf);
168 if (0 != buf->vb.baddr && buf->vb.bsize < size)
171 if (STATE_NEEDS_INIT == buf->vb.state) {
172 buf->vb.width = dev->ts_packet_size;
173 buf->vb.height = dev->ts_packet_count;
175 buf->vb.field = field /*V4L2_FIELD_TOP*/;
177 if (0 != (rc = videobuf_iolock(dev->pci,&buf->vb,NULL)))
179 cx88_risc_databuffer(dev->pci, &buf->risc,
181 buf->vb.width, buf->vb.height);
183 buf->vb.state = STATE_PREPARED;
187 cx88_free_buffer(dev->pci,buf);
191 void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
193 struct cx88_buffer *prev;
194 struct cx88_dmaqueue *q = &dev->mpegq;
196 dprintk( 1, "cx8802_buf_queue\n" );
197 /* add jump to stopper */
198 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
199 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
201 if (list_empty(&q->active)) {
202 dprintk( 0, "queue is empty - first active\n" );
203 list_add_tail(&buf->vb.queue,&q->active);
204 cx8802_start_dma(dev, q, buf);
205 buf->vb.state = STATE_ACTIVE;
206 buf->count = q->count++;
207 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
208 dprintk(0,"[%p/%d] %s - first active\n",
209 buf, buf->vb.i, __FUNCTION__);
212 dprintk( 1, "queue is not empty - append to active\n" );
213 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
214 list_add_tail(&buf->vb.queue,&q->active);
215 buf->vb.state = STATE_ACTIVE;
216 buf->count = q->count++;
217 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
218 dprintk( 1, "[%p/%d] %s - append to active\n",
219 buf, buf->vb.i, __FUNCTION__);
223 /* ----------------------------------------------------------- */
225 static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
227 struct cx88_dmaqueue *q = &dev->mpegq;
228 struct cx88_buffer *buf;
231 spin_lock_irqsave(&dev->slock,flags);
232 while (!list_empty(&q->active)) {
233 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
234 list_del(&buf->vb.queue);
235 buf->vb.state = STATE_ERROR;
236 wake_up(&buf->vb.done);
237 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
238 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
242 dprintk(0, "restarting queue\n" );
243 cx8802_restart_queue(dev,q);
245 spin_unlock_irqrestore(&dev->slock,flags);
248 void cx8802_cancel_buffers(struct cx8802_dev *dev)
250 struct cx88_dmaqueue *q = &dev->mpegq;
252 dprintk( 1, "cx8802_cancel_buffers" );
253 del_timer_sync(&q->timeout);
254 cx8802_stop_dma(dev);
255 do_cancel_buffers(dev,"cancel",0);
258 static void cx8802_timeout(unsigned long data)
260 struct cx8802_dev *dev = (struct cx8802_dev*)data;
262 dprintk(0, "%s\n",__FUNCTION__);
265 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
266 cx8802_stop_dma(dev);
267 do_cancel_buffers(dev,"timeout",1);
270 static char *cx88_mpeg_irqs[32] = {
271 "ts_risci1", NULL, NULL, NULL,
272 "ts_risci2", NULL, NULL, NULL,
273 "ts_oflow", NULL, NULL, NULL,
274 "ts_sync", NULL, NULL, NULL,
275 "opc_err", "par_err", "rip_err", "pci_abort",
279 static void cx8802_mpeg_irq(struct cx8802_dev *dev)
281 struct cx88_core *core = dev->core;
282 u32 status, mask, count;
284 dprintk( 1, "cx8802_mpeg_irq\n" );
285 status = cx_read(MO_TS_INTSTAT);
286 mask = cx_read(MO_TS_INTMSK);
287 if (0 == (status & mask))
290 cx_write(MO_TS_INTSTAT, status);
292 if (debug || (status & mask & ~0xff))
293 cx88_print_irqbits(core->name, "irq mpeg ",
294 cx88_mpeg_irqs, status, mask);
296 /* risc op code error */
297 if (status & (1 << 16)) {
298 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
299 cx_clear(MO_TS_DMACNTRL, 0x11);
300 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
305 dprintk( 1, "wake up\n" );
306 spin_lock(&dev->slock);
307 count = cx_read(MO_TS_GPCNT);
308 cx88_wakeup(dev->core, &dev->mpegq, count);
309 spin_unlock(&dev->slock);
314 spin_lock(&dev->slock);
315 cx8802_restart_queue(dev,&dev->mpegq);
316 spin_unlock(&dev->slock);
319 /* other general errors */
320 if (status & 0x1f0100) {
321 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
322 spin_lock(&dev->slock);
323 cx8802_stop_dma(dev);
324 cx8802_restart_queue(dev,&dev->mpegq);
325 spin_unlock(&dev->slock);
329 #define MAX_IRQ_LOOP 10
331 static irqreturn_t cx8802_irq(int irq, void *dev_id, struct pt_regs *regs)
333 struct cx8802_dev *dev = dev_id;
334 struct cx88_core *core = dev->core;
336 int loop, handled = 0;
338 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
339 status = cx_read(MO_PCI_INTSTAT) & (core->pci_irqmask | 0x04);
342 dprintk( 1, "cx8802_irq\n" );
343 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
344 dprintk( 1, " status: %d\n", status );
346 cx_write(MO_PCI_INTSTAT, status);
348 if (status & core->pci_irqmask)
349 cx88_core_irq(core,status);
351 cx8802_mpeg_irq(dev);
353 if (MAX_IRQ_LOOP == loop) {
354 dprintk( 0, "clearing mask\n" );
355 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
357 cx_write(MO_PCI_INTMSK,0);
361 return IRQ_RETVAL(handled);
364 /* ----------------------------------------------------------- */
367 int cx8802_init_common(struct cx8802_dev *dev)
369 struct cx88_core *core = dev->core;
373 if (pci_enable_device(dev->pci))
375 pci_set_master(dev->pci);
376 if (!pci_dma_supported(dev->pci,0xffffffff)) {
377 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
381 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
382 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
383 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
384 "latency: %d, mmio: 0x%lx\n", dev->core->name,
385 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
386 dev->pci_lat,pci_resource_start(dev->pci,0));
388 /* initialize driver struct */
389 spin_lock_init(&dev->slock);
392 INIT_LIST_HEAD(&dev->mpegq.active);
393 INIT_LIST_HEAD(&dev->mpegq.queued);
394 dev->mpegq.timeout.function = cx8802_timeout;
395 dev->mpegq.timeout.data = (unsigned long)dev;
396 init_timer(&dev->mpegq.timeout);
397 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
398 MO_TS_DMACNTRL,0x11,0x00);
401 err = request_irq(dev->pci->irq, cx8802_irq,
402 SA_SHIRQ | SA_INTERRUPT, dev->core->name, dev);
404 printk(KERN_ERR "%s: can't get IRQ %d\n",
405 dev->core->name, dev->pci->irq);
408 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
410 /* everything worked */
411 pci_set_drvdata(dev->pci,dev);
415 void cx8802_fini_common(struct cx8802_dev *dev)
417 dprintk( 2, "cx8802_fini_common\n" );
418 cx8802_stop_dma(dev);
419 pci_disable_device(dev->pci);
421 /* unregister stuff */
422 free_irq(dev->pci->irq, dev);
423 pci_set_drvdata(dev->pci, NULL);
426 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
429 /* ----------------------------------------------------------- */
431 int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
433 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
434 struct cx88_core *core = dev->core;
437 spin_lock(&dev->slock);
438 if (!list_empty(&dev->mpegq.active)) {
439 dprintk( 2, "suspend\n" );
440 printk("%s: suspend mpeg\n", core->name);
441 cx8802_stop_dma(dev);
442 del_timer(&dev->mpegq.timeout);
444 spin_unlock(&dev->slock);
446 /* FIXME -- shutdown device */
447 cx88_shutdown(dev->core);
449 pci_save_state(pci_dev);
450 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
451 pci_disable_device(pci_dev);
452 dev->state.disabled = 1;
457 int cx8802_resume_common(struct pci_dev *pci_dev)
459 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
460 struct cx88_core *core = dev->core;
463 if (dev->state.disabled) {
464 err=pci_enable_device(pci_dev);
466 printk(KERN_ERR "%s: can't enable device\n",
470 dev->state.disabled = 0;
472 err=pci_set_power_state(pci_dev, PCI_D0);
474 printk(KERN_ERR "%s: can't enable device\n",
476 pci_disable_device(pci_dev);
477 dev->state.disabled = 1;
481 pci_restore_state(pci_dev);
483 /* FIXME: re-initialize hardware */
484 cx88_reset(dev->core);
486 /* restart video+vbi capture */
487 spin_lock(&dev->slock);
488 if (!list_empty(&dev->mpegq.active)) {
489 printk("%s: resume mpeg\n", core->name);
490 cx8802_restart_queue(dev,&dev->mpegq);
492 spin_unlock(&dev->slock);
497 /* ----------------------------------------------------------- */
499 EXPORT_SYMBOL(cx8802_buf_prepare);
500 EXPORT_SYMBOL(cx8802_buf_queue);
501 EXPORT_SYMBOL(cx8802_cancel_buffers);
503 EXPORT_SYMBOL(cx8802_init_common);
504 EXPORT_SYMBOL(cx8802_fini_common);
506 EXPORT_SYMBOL(cx8802_suspend_common);
507 EXPORT_SYMBOL(cx8802_resume_common);
509 /* ----------------------------------------------------------- */
514 * 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