V4L/DVB (6600): V4L: videobuf: don't chew up namespace STATE_.*, convert to VIDEOBUF_
[linux-2.6.git] / drivers / media / video / cx88 / cx88-mpeg.c
blob339a88a64f5478f186ff4590cbd7897f60ce4bad
1 /*
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/init.h>
27 #include <linux/device.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/interrupt.h>
30 #include <asm/delay.h>
32 #include "cx88.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-mpeg: " fmt, dev->core->name, ## arg)
49 #define mpeg_dbg(level,fmt, arg...) if (debug >= level) \
50 printk(KERN_DEBUG "%s/2-mpeg: " fmt, core->name, ## arg)
52 #if defined(CONFIG_MODULES) && defined(MODULE)
53 static void request_module_async(struct work_struct *work)
55 struct cx8802_dev *dev=container_of(work, struct cx8802_dev, request_module_wk);
57 if (dev->core->board.mpeg & CX88_MPEG_DVB)
58 request_module("cx88-dvb");
59 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD)
60 request_module("cx88-blackbird");
63 static void request_modules(struct cx8802_dev *dev)
65 INIT_WORK(&dev->request_module_wk, request_module_async);
66 schedule_work(&dev->request_module_wk);
68 #else
69 #define request_modules(dev)
70 #endif /* CONFIG_MODULES */
73 static LIST_HEAD(cx8802_devlist);
74 /* ------------------------------------------------------------------ */
76 static int cx8802_start_dma(struct cx8802_dev *dev,
77 struct cx88_dmaqueue *q,
78 struct cx88_buffer *buf)
80 struct cx88_core *core = dev->core;
82 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n",
83 buf->vb.width, buf->vb.height, buf->vb.field);
85 /* setup fifo + format */
86 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
87 dev->ts_packet_size, buf->risc.dma);
89 /* write TS length to chip */
90 cx_write(MO_TS_LNGTH, buf->vb.width);
92 /* FIXME: this needs a review.
93 * also: move to cx88-blackbird + cx88-dvb source files? */
95 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id);
97 if ( (core->active_type_id == CX88_MPEG_DVB) &&
98 (core->board.mpeg & CX88_MPEG_DVB) ) {
100 dprintk( 1, "cx8802_start_dma doing .dvb\n");
101 /* negedge driven & software reset */
102 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
103 udelay(100);
104 cx_write(MO_PINMUX_IO, 0x00);
105 cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01);
106 switch (core->boardnr) {
107 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
108 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
109 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
110 case CX88_BOARD_PCHDTV_HD5500:
111 cx_write(TS_SOP_STAT, 1<<13);
112 break;
113 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
114 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
115 cx_write(MO_PINMUX_IO, 0x88); /* Enable MPEG parallel IO and video signal pins */
116 udelay(100);
117 break;
118 case CX88_BOARD_HAUPPAUGE_HVR1300:
119 break;
120 default:
121 cx_write(TS_SOP_STAT, 0x00);
122 break;
124 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
125 udelay(100);
126 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
127 (core->board.mpeg & CX88_MPEG_BLACKBIRD) ) {
128 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
129 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
131 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
132 udelay(100);
134 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
135 cx_write(TS_VALERR_CNTRL, 0x2000);
137 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
138 udelay(100);
139 } else {
140 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __FUNCTION__,
141 core->board.mpeg );
142 return -EINVAL;
145 /* reset counter */
146 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
147 q->count = 1;
149 /* enable irqs */
150 dprintk( 1, "setting the interrupt mask\n" );
151 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
152 cx_set(MO_TS_INTMSK, 0x1f0011);
154 /* start dma */
155 cx_set(MO_DEV_CNTRL2, (1<<5));
156 cx_set(MO_TS_DMACNTRL, 0x11);
157 return 0;
160 static int cx8802_stop_dma(struct cx8802_dev *dev)
162 struct cx88_core *core = dev->core;
163 dprintk( 1, "cx8802_stop_dma\n" );
165 /* stop dma */
166 cx_clear(MO_TS_DMACNTRL, 0x11);
168 /* disable irqs */
169 cx_clear(MO_PCI_INTMSK, PCI_INT_TSINT);
170 cx_clear(MO_TS_INTMSK, 0x1f0011);
172 /* Reset the controller */
173 cx_write(TS_GEN_CNTRL, 0xcd);
174 return 0;
177 static int cx8802_restart_queue(struct cx8802_dev *dev,
178 struct cx88_dmaqueue *q)
180 struct cx88_buffer *buf;
182 dprintk( 1, "cx8802_restart_queue\n" );
183 if (list_empty(&q->active))
185 struct cx88_buffer *prev;
186 prev = NULL;
188 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
190 for (;;) {
191 if (list_empty(&q->queued))
192 return 0;
193 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
194 if (NULL == prev) {
195 list_del(&buf->vb.queue);
196 list_add_tail(&buf->vb.queue,&q->active);
197 cx8802_start_dma(dev, q, buf);
198 buf->vb.state = VIDEOBUF_ACTIVE;
199 buf->count = q->count++;
200 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
201 dprintk(1,"[%p/%d] restart_queue - first active\n",
202 buf,buf->vb.i);
204 } else if (prev->vb.width == buf->vb.width &&
205 prev->vb.height == buf->vb.height &&
206 prev->fmt == buf->fmt) {
207 list_del(&buf->vb.queue);
208 list_add_tail(&buf->vb.queue,&q->active);
209 buf->vb.state = VIDEOBUF_ACTIVE;
210 buf->count = q->count++;
211 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
212 dprintk(1,"[%p/%d] restart_queue - move to active\n",
213 buf,buf->vb.i);
214 } else {
215 return 0;
217 prev = buf;
219 return 0;
222 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
223 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
224 buf, buf->vb.i);
225 cx8802_start_dma(dev, q, buf);
226 list_for_each_entry(buf, &q->active, vb.queue)
227 buf->count = q->count++;
228 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
229 return 0;
232 /* ------------------------------------------------------------------ */
234 int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
235 struct cx88_buffer *buf, enum v4l2_field field)
237 int size = dev->ts_packet_size * dev->ts_packet_count;
238 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
239 int rc;
241 dprintk(1, "%s: %p\n", __FUNCTION__, buf);
242 if (0 != buf->vb.baddr && buf->vb.bsize < size)
243 return -EINVAL;
245 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
246 buf->vb.width = dev->ts_packet_size;
247 buf->vb.height = dev->ts_packet_count;
248 buf->vb.size = size;
249 buf->vb.field = field /*V4L2_FIELD_TOP*/;
251 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
252 goto fail;
253 cx88_risc_databuffer(dev->pci, &buf->risc,
254 dma->sglist,
255 buf->vb.width, buf->vb.height, 0);
257 buf->vb.state = VIDEOBUF_PREPARED;
258 return 0;
260 fail:
261 cx88_free_buffer(q,buf);
262 return rc;
265 void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
267 struct cx88_buffer *prev;
268 struct cx88_dmaqueue *cx88q = &dev->mpegq;
270 dprintk( 1, "cx8802_buf_queue\n" );
271 /* add jump to stopper */
272 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
273 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
275 if (list_empty(&cx88q->active)) {
276 dprintk( 1, "queue is empty - first active\n" );
277 list_add_tail(&buf->vb.queue,&cx88q->active);
278 cx8802_start_dma(dev, cx88q, buf);
279 buf->vb.state = VIDEOBUF_ACTIVE;
280 buf->count = cx88q->count++;
281 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
282 dprintk(1,"[%p/%d] %s - first active\n",
283 buf, buf->vb.i, __FUNCTION__);
285 } else {
286 dprintk( 1, "queue is not empty - append to active\n" );
287 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
288 list_add_tail(&buf->vb.queue,&cx88q->active);
289 buf->vb.state = VIDEOBUF_ACTIVE;
290 buf->count = cx88q->count++;
291 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
292 dprintk( 1, "[%p/%d] %s - append to active\n",
293 buf, buf->vb.i, __FUNCTION__);
297 /* ----------------------------------------------------------- */
299 static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
301 struct cx88_dmaqueue *q = &dev->mpegq;
302 struct cx88_buffer *buf;
303 unsigned long flags;
305 spin_lock_irqsave(&dev->slock,flags);
306 while (!list_empty(&q->active)) {
307 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
308 list_del(&buf->vb.queue);
309 buf->vb.state = VIDEOBUF_ERROR;
310 wake_up(&buf->vb.done);
311 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
312 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
314 if (restart)
316 dprintk(1, "restarting queue\n" );
317 cx8802_restart_queue(dev,q);
319 spin_unlock_irqrestore(&dev->slock,flags);
322 void cx8802_cancel_buffers(struct cx8802_dev *dev)
324 struct cx88_dmaqueue *q = &dev->mpegq;
326 dprintk( 1, "cx8802_cancel_buffers" );
327 del_timer_sync(&q->timeout);
328 cx8802_stop_dma(dev);
329 do_cancel_buffers(dev,"cancel",0);
332 static void cx8802_timeout(unsigned long data)
334 struct cx8802_dev *dev = (struct cx8802_dev*)data;
336 dprintk(1, "%s\n",__FUNCTION__);
338 if (debug)
339 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
340 cx8802_stop_dma(dev);
341 do_cancel_buffers(dev,"timeout",1);
344 static char *cx88_mpeg_irqs[32] = {
345 "ts_risci1", NULL, NULL, NULL,
346 "ts_risci2", NULL, NULL, NULL,
347 "ts_oflow", NULL, NULL, NULL,
348 "ts_sync", NULL, NULL, NULL,
349 "opc_err", "par_err", "rip_err", "pci_abort",
350 "ts_err?",
353 static void cx8802_mpeg_irq(struct cx8802_dev *dev)
355 struct cx88_core *core = dev->core;
356 u32 status, mask, count;
358 dprintk( 1, "cx8802_mpeg_irq\n" );
359 status = cx_read(MO_TS_INTSTAT);
360 mask = cx_read(MO_TS_INTMSK);
361 if (0 == (status & mask))
362 return;
364 cx_write(MO_TS_INTSTAT, status);
366 if (debug || (status & mask & ~0xff))
367 cx88_print_irqbits(core->name, "irq mpeg ",
368 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
369 status, mask);
371 /* risc op code error */
372 if (status & (1 << 16)) {
373 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
374 cx_clear(MO_TS_DMACNTRL, 0x11);
375 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
378 /* risc1 y */
379 if (status & 0x01) {
380 dprintk( 1, "wake up\n" );
381 spin_lock(&dev->slock);
382 count = cx_read(MO_TS_GPCNT);
383 cx88_wakeup(dev->core, &dev->mpegq, count);
384 spin_unlock(&dev->slock);
387 /* risc2 y */
388 if (status & 0x10) {
389 spin_lock(&dev->slock);
390 cx8802_restart_queue(dev,&dev->mpegq);
391 spin_unlock(&dev->slock);
394 /* other general errors */
395 if (status & 0x1f0100) {
396 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
397 spin_lock(&dev->slock);
398 cx8802_stop_dma(dev);
399 cx8802_restart_queue(dev,&dev->mpegq);
400 spin_unlock(&dev->slock);
404 #define MAX_IRQ_LOOP 10
406 static irqreturn_t cx8802_irq(int irq, void *dev_id)
408 struct cx8802_dev *dev = dev_id;
409 struct cx88_core *core = dev->core;
410 u32 status;
411 int loop, handled = 0;
413 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
414 status = cx_read(MO_PCI_INTSTAT) &
415 (core->pci_irqmask | PCI_INT_TSINT);
416 if (0 == status)
417 goto out;
418 dprintk( 1, "cx8802_irq\n" );
419 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
420 dprintk( 1, " status: %d\n", status );
421 handled = 1;
422 cx_write(MO_PCI_INTSTAT, status);
424 if (status & core->pci_irqmask)
425 cx88_core_irq(core,status);
426 if (status & PCI_INT_TSINT)
427 cx8802_mpeg_irq(dev);
429 if (MAX_IRQ_LOOP == loop) {
430 dprintk( 0, "clearing mask\n" );
431 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
432 core->name);
433 cx_write(MO_PCI_INTMSK,0);
436 out:
437 return IRQ_RETVAL(handled);
440 static int cx8802_init_common(struct cx8802_dev *dev)
442 struct cx88_core *core = dev->core;
443 int err;
445 /* pci init */
446 if (pci_enable_device(dev->pci))
447 return -EIO;
448 pci_set_master(dev->pci);
449 if (!pci_dma_supported(dev->pci,DMA_32BIT_MASK)) {
450 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
451 return -EIO;
454 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
455 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
456 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
457 "latency: %d, mmio: 0x%llx\n", dev->core->name,
458 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
459 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
461 /* initialize driver struct */
462 spin_lock_init(&dev->slock);
464 /* init dma queue */
465 INIT_LIST_HEAD(&dev->mpegq.active);
466 INIT_LIST_HEAD(&dev->mpegq.queued);
467 dev->mpegq.timeout.function = cx8802_timeout;
468 dev->mpegq.timeout.data = (unsigned long)dev;
469 init_timer(&dev->mpegq.timeout);
470 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
471 MO_TS_DMACNTRL,0x11,0x00);
473 /* get irq */
474 err = request_irq(dev->pci->irq, cx8802_irq,
475 IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev);
476 if (err < 0) {
477 printk(KERN_ERR "%s: can't get IRQ %d\n",
478 dev->core->name, dev->pci->irq);
479 return err;
481 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
483 /* everything worked */
484 pci_set_drvdata(dev->pci,dev);
485 return 0;
488 static void cx8802_fini_common(struct cx8802_dev *dev)
490 dprintk( 2, "cx8802_fini_common\n" );
491 cx8802_stop_dma(dev);
492 pci_disable_device(dev->pci);
494 /* unregister stuff */
495 free_irq(dev->pci->irq, dev);
496 pci_set_drvdata(dev->pci, NULL);
498 /* free memory */
499 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
502 /* ----------------------------------------------------------- */
504 static int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
506 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
507 struct cx88_core *core = dev->core;
509 /* stop mpeg dma */
510 spin_lock(&dev->slock);
511 if (!list_empty(&dev->mpegq.active)) {
512 dprintk( 2, "suspend\n" );
513 printk("%s: suspend mpeg\n", core->name);
514 cx8802_stop_dma(dev);
515 del_timer(&dev->mpegq.timeout);
517 spin_unlock(&dev->slock);
519 /* FIXME -- shutdown device */
520 cx88_shutdown(dev->core);
522 pci_save_state(pci_dev);
523 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
524 pci_disable_device(pci_dev);
525 dev->state.disabled = 1;
527 return 0;
530 static int cx8802_resume_common(struct pci_dev *pci_dev)
532 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
533 struct cx88_core *core = dev->core;
534 int err;
536 if (dev->state.disabled) {
537 err=pci_enable_device(pci_dev);
538 if (err) {
539 printk(KERN_ERR "%s: can't enable device\n",
540 dev->core->name);
541 return err;
543 dev->state.disabled = 0;
545 err=pci_set_power_state(pci_dev, PCI_D0);
546 if (err) {
547 printk(KERN_ERR "%s: can't enable device\n",
548 dev->core->name);
549 pci_disable_device(pci_dev);
550 dev->state.disabled = 1;
552 return err;
554 pci_restore_state(pci_dev);
556 /* FIXME: re-initialize hardware */
557 cx88_reset(dev->core);
559 /* restart video+vbi capture */
560 spin_lock(&dev->slock);
561 if (!list_empty(&dev->mpegq.active)) {
562 printk("%s: resume mpeg\n", core->name);
563 cx8802_restart_queue(dev,&dev->mpegq);
565 spin_unlock(&dev->slock);
567 return 0;
570 #if defined(CONFIG_VIDEO_CX88_BLACKBIRD) || \
571 defined(CONFIG_VIDEO_CX88_BLACKBIRD_MODULE)
572 struct cx8802_dev * cx8802_get_device(struct inode *inode)
574 int minor = iminor(inode);
575 struct cx8802_dev *dev;
577 list_for_each_entry(dev, &cx8802_devlist, devlist)
578 if (dev->mpeg_dev && dev->mpeg_dev->minor == minor)
579 return dev;
581 return NULL;
583 EXPORT_SYMBOL(cx8802_get_device);
584 #endif
586 struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
588 struct cx8802_driver *d;
590 list_for_each_entry(d, &dev->drvlist, drvlist)
591 if (d->type_id == btype)
592 return d;
594 return NULL;
597 /* Driver asked for hardware access. */
598 static int cx8802_request_acquire(struct cx8802_driver *drv)
600 struct cx88_core *core = drv->core;
602 /* Fail a request for hardware if the device is busy. */
603 if (core->active_type_id != CX88_BOARD_NONE)
604 return -EBUSY;
606 if (drv->advise_acquire)
608 core->active_type_id = drv->type_id;
609 drv->advise_acquire(drv);
611 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __FUNCTION__, cx_read(MO_GP0_IO));
614 return 0;
617 /* Driver asked to release hardware. */
618 static int cx8802_request_release(struct cx8802_driver *drv)
620 struct cx88_core *core = drv->core;
622 if (drv->advise_release)
624 drv->advise_release(drv);
625 core->active_type_id = CX88_BOARD_NONE;
626 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __FUNCTION__, cx_read(MO_GP0_IO));
629 return 0;
632 static int cx8802_check_driver(struct cx8802_driver *drv)
634 if (drv == NULL)
635 return -ENODEV;
637 if ((drv->type_id != CX88_MPEG_DVB) &&
638 (drv->type_id != CX88_MPEG_BLACKBIRD))
639 return -EINVAL;
641 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
642 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
643 return -EINVAL;
645 if ((drv->probe == NULL) ||
646 (drv->remove == NULL) ||
647 (drv->advise_acquire == NULL) ||
648 (drv->advise_release == NULL))
649 return -EINVAL;
651 return 0;
654 int cx8802_register_driver(struct cx8802_driver *drv)
656 struct cx8802_dev *dev;
657 struct cx8802_driver *driver;
658 int err, i = 0;
660 printk(KERN_INFO
661 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
662 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
663 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
665 if ((err = cx8802_check_driver(drv)) != 0) {
666 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
667 return err;
670 list_for_each_entry(dev, &cx8802_devlist, devlist) {
671 printk(KERN_INFO
672 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
673 dev->core->name, dev->pci->subsystem_vendor,
674 dev->pci->subsystem_device, dev->core->board.name,
675 dev->core->boardnr);
677 /* Bring up a new struct for each driver instance */
678 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
679 if (driver == NULL)
680 return -ENOMEM;
682 /* Snapshot of the driver registration data */
683 drv->core = dev->core;
684 drv->suspend = cx8802_suspend_common;
685 drv->resume = cx8802_resume_common;
686 drv->request_acquire = cx8802_request_acquire;
687 drv->request_release = cx8802_request_release;
688 memcpy(driver, drv, sizeof(*driver));
690 err = drv->probe(driver);
691 if (err == 0) {
692 i++;
693 mutex_lock(&drv->core->lock);
694 list_add_tail(&driver->drvlist, &dev->drvlist);
695 mutex_unlock(&drv->core->lock);
696 } else {
697 printk(KERN_ERR
698 "%s/2: cx8802 probe failed, err = %d\n",
699 dev->core->name, err);
704 return i ? 0 : -ENODEV;
707 int cx8802_unregister_driver(struct cx8802_driver *drv)
709 struct cx8802_dev *dev;
710 struct cx8802_driver *d, *dtmp;
711 int err = 0;
713 printk(KERN_INFO
714 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
715 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
716 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
718 list_for_each_entry(dev, &cx8802_devlist, devlist) {
719 printk(KERN_INFO
720 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
721 dev->core->name, dev->pci->subsystem_vendor,
722 dev->pci->subsystem_device, dev->core->board.name,
723 dev->core->boardnr);
725 list_for_each_entry_safe(d, dtmp, &dev->drvlist, drvlist) {
726 /* only unregister the correct driver type */
727 if (d->type_id != drv->type_id)
728 continue;
730 err = d->remove(d);
731 if (err == 0) {
732 mutex_lock(&drv->core->lock);
733 list_del(&d->drvlist);
734 mutex_unlock(&drv->core->lock);
735 kfree(d);
736 } else
737 printk(KERN_ERR "%s/2: cx8802 driver remove "
738 "failed (%d)\n", dev->core->name, err);
743 return err;
746 /* ----------------------------------------------------------- */
747 static int __devinit cx8802_probe(struct pci_dev *pci_dev,
748 const struct pci_device_id *pci_id)
750 struct cx8802_dev *dev;
751 struct cx88_core *core;
752 int err;
754 /* general setup */
755 core = cx88_core_get(pci_dev);
756 if (NULL == core)
757 return -EINVAL;
759 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
761 err = -ENODEV;
762 if (!core->board.mpeg)
763 goto fail_core;
765 err = -ENOMEM;
766 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
767 if (NULL == dev)
768 goto fail_core;
769 dev->pci = pci_dev;
770 dev->core = core;
772 err = cx8802_init_common(dev);
773 if (err != 0)
774 goto fail_free;
776 INIT_LIST_HEAD(&dev->drvlist);
777 list_add_tail(&dev->devlist,&cx8802_devlist);
779 /* Maintain a reference so cx88-video can query the 8802 device. */
780 core->dvbdev = dev;
782 /* now autoload cx88-dvb or cx88-blackbird */
783 request_modules(dev);
784 return 0;
786 fail_free:
787 kfree(dev);
788 fail_core:
789 cx88_core_put(core,pci_dev);
790 return err;
793 static void __devexit cx8802_remove(struct pci_dev *pci_dev)
795 struct cx8802_dev *dev;
797 dev = pci_get_drvdata(pci_dev);
799 dprintk( 1, "%s\n", __FUNCTION__);
801 if (!list_empty(&dev->drvlist)) {
802 struct cx8802_driver *drv, *tmp;
803 int err;
805 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
806 "while cx8802 sub-drivers still loaded?!\n",
807 dev->core->name);
809 list_for_each_entry_safe(drv, tmp, &dev->drvlist, drvlist) {
810 err = drv->remove(drv);
811 if (err == 0) {
812 mutex_lock(&drv->core->lock);
813 list_del(&drv->drvlist);
814 mutex_unlock(&drv->core->lock);
815 } else
816 printk(KERN_ERR "%s/2: cx8802 driver remove "
817 "failed (%d)\n", dev->core->name, err);
818 kfree(drv);
822 /* Destroy any 8802 reference. */
823 dev->core->dvbdev = NULL;
825 /* common */
826 cx8802_fini_common(dev);
827 cx88_core_put(dev->core,dev->pci);
828 kfree(dev);
831 static struct pci_device_id cx8802_pci_tbl[] = {
833 .vendor = 0x14f1,
834 .device = 0x8802,
835 .subvendor = PCI_ANY_ID,
836 .subdevice = PCI_ANY_ID,
838 /* --- end of list --- */
841 MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
843 static struct pci_driver cx8802_pci_driver = {
844 .name = "cx88-mpeg driver manager",
845 .id_table = cx8802_pci_tbl,
846 .probe = cx8802_probe,
847 .remove = __devexit_p(cx8802_remove),
850 static int cx8802_init(void)
852 printk(KERN_INFO "cx88/2: cx2388x MPEG-TS Driver Manager version %d.%d.%d loaded\n",
853 (CX88_VERSION_CODE >> 16) & 0xff,
854 (CX88_VERSION_CODE >> 8) & 0xff,
855 CX88_VERSION_CODE & 0xff);
856 #ifdef SNAPSHOT
857 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
858 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
859 #endif
860 return pci_register_driver(&cx8802_pci_driver);
863 static void cx8802_fini(void)
865 pci_unregister_driver(&cx8802_pci_driver);
868 module_init(cx8802_init);
869 module_exit(cx8802_fini);
870 EXPORT_SYMBOL(cx8802_buf_prepare);
871 EXPORT_SYMBOL(cx8802_buf_queue);
872 EXPORT_SYMBOL(cx8802_cancel_buffers);
874 EXPORT_SYMBOL(cx8802_register_driver);
875 EXPORT_SYMBOL(cx8802_unregister_driver);
876 EXPORT_SYMBOL(cx8802_get_driver);
877 /* ----------------------------------------------------------- */
879 * Local variables:
880 * c-basic-offset: 8
881 * End:
882 * 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