blob: a6b061c2644a7d72446a0a79713180c64e3d6c8d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Support for the mpeg transport stream transfers
4 * PCI function #2 of the cx2388x.
5 *
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>
9 *
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.
14 *
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.
19 *
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.
23 */
24
25#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/device.h>
Andrew Mortonc24228d2007-05-06 14:51:55 -070028#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/interrupt.h>
30#include <asm/delay.h>
31
32#include "cx88.h"
33
34/* ------------------------------------------------------------------ */
35
36MODULE_DESCRIPTION("mpeg driver for cx2388x based TV cards");
37MODULE_AUTHOR("Jelle Foks <jelle@foks.8m.com>");
38MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
39MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
40MODULE_LICENSE("GPL");
41
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030042static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043module_param(debug,int,0644);
44MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
45
46#define dprintk(level,fmt, arg...) if (debug >= level) \
Steven Toth6c5be742006-12-02 21:15:51 -020047 printk(KERN_DEBUG "%s/2-mpeg: " fmt, dev->core->name, ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Steven Toth6c5be742006-12-02 21:15:51 -020049#define mpeg_dbg(level,fmt, arg...) if (debug >= level) \
50 printk(KERN_DEBUG "%s/2-mpeg: " fmt, core->name, ## arg)
51
Markus Rechberger77b74772007-04-27 12:31:06 -030052#if defined(CONFIG_MODULES) && defined(MODULE)
53static void request_module_async(struct work_struct *work)
54{
55 struct cx8802_dev *dev=container_of(work, struct cx8802_dev, request_module_wk);
Markus Rechbergerced80c62007-04-27 12:31:07 -030056
Trent Piepho6a59d642007-08-15 14:41:57 -030057 if (dev->core->board.mpeg & CX88_MPEG_DVB)
Markus Rechberger77b74772007-04-27 12:31:06 -030058 request_module("cx88-dvb");
Trent Piepho6a59d642007-08-15 14:41:57 -030059 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD)
Markus Rechbergerced80c62007-04-27 12:31:07 -030060 request_module("cx88-blackbird");
Markus Rechberger77b74772007-04-27 12:31:06 -030061}
62
63static void request_modules(struct cx8802_dev *dev)
64{
65 INIT_WORK(&dev->request_module_wk, request_module_async);
66 schedule_work(&dev->request_module_wk);
67}
68#else
69#define request_modules(dev)
70#endif /* CONFIG_MODULES */
71
72
Steven Toth6c5be742006-12-02 21:15:51 -020073static LIST_HEAD(cx8802_devlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* ------------------------------------------------------------------ */
75
76static int cx8802_start_dma(struct cx8802_dev *dev,
77 struct cx88_dmaqueue *q,
78 struct cx88_buffer *buf)
79{
80 struct cx88_core *core = dev->core;
81
Trent Piepho7717cbe2007-10-14 02:52:16 -030082 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n",
83 buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 /* setup fifo + format */
86 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
87 dev->ts_packet_size, buf->risc.dma);
88
89 /* write TS length to chip */
90 cx_write(MO_TS_LNGTH, buf->vb.width);
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /* FIXME: this needs a review.
93 * also: move to cx88-blackbird + cx88-dvb source files? */
94
Steven Toth6c5be742006-12-02 21:15:51 -020095 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id);
96
97 if ( (core->active_type_id == CX88_MPEG_DVB) &&
Trent Piepho6a59d642007-08-15 14:41:57 -030098 (core->board.mpeg & CX88_MPEG_DVB) ) {
Steven Toth6c5be742006-12-02 21:15:51 -020099
100 dprintk( 1, "cx8802_start_dma doing .dvb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* negedge driven & software reset */
Michael Krufkyf1798492005-07-07 17:58:39 -0700102 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 udelay(100);
104 cx_write(MO_PINMUX_IO, 0x00);
Steven Toth60464da2008-01-05 16:53:01 -0300105 cx_write(TS_HW_SOP_CNTRL, 0x47<<16|188<<4|0x01);
Trent Piepho6a59d642007-08-15 14:41:57 -0300106 switch (core->boardnr) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700107 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:
Rusty Scottda215d22006-04-07 02:21:31 -0300110 case CX88_BOARD_PCHDTV_HD5500:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700111 cx_write(TS_SOP_STAT, 1<<13);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700112 break;
Steven Toth0fa14aa2006-01-09 15:25:02 -0200113 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;
Steven Toth6c5be742006-12-02 21:15:51 -0200118 case CX88_BOARD_HAUPPAUGE_HVR1300:
119 break;
Steven Toth60464da2008-01-05 16:53:01 -0300120 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Steven Toth49170192008-01-15 21:57:14 -0300121 /* Enable MPEG parallel IO and video signal pins */
122 cx_write(MO_PINMUX_IO, 0x88);
123 cx_write(TS_HW_SOP_CNTRL, (0x47 << 16) | (188 << 4));
124 dev->ts_gen_cntrl = 5;
125 cx_write(TS_SOP_STAT, 0);
126 cx_write(TS_VALERR_CNTRL, 0);
Steven Toth60464da2008-01-05 16:53:01 -0300127 udelay(100);
128 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700129 default:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700130 cx_write(TS_SOP_STAT, 0x00);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700131 break;
Michael Krufkyf1798492005-07-07 17:58:39 -0700132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
134 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200135 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
Trent Piepho6a59d642007-08-15 14:41:57 -0300136 (core->board.mpeg & CX88_MPEG_BLACKBIRD) ) {
Steven Toth6c5be742006-12-02 21:15:51 -0200137 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
141 udelay(100);
142
143 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 cx_write(TS_VALERR_CNTRL, 0x2000);
145
146 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
147 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200148 } else {
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300149 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __func__,
Trent Piepho6a59d642007-08-15 14:41:57 -0300150 core->board.mpeg );
Steven Toth6c5be742006-12-02 21:15:51 -0200151 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* reset counter */
155 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
156 q->count = 1;
157
158 /* enable irqs */
Trent Piepho76d313b2006-04-10 09:27:08 -0300159 dprintk( 1, "setting the interrupt mask\n" );
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300160 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700161 cx_set(MO_TS_INTMSK, 0x1f0011);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 /* start dma */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700164 cx_set(MO_DEV_CNTRL2, (1<<5));
165 cx_set(MO_TS_DMACNTRL, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return 0;
167}
168
169static int cx8802_stop_dma(struct cx8802_dev *dev)
170{
171 struct cx88_core *core = dev->core;
Trent Piepho76d313b2006-04-10 09:27:08 -0300172 dprintk( 1, "cx8802_stop_dma\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /* stop dma */
175 cx_clear(MO_TS_DMACNTRL, 0x11);
176
177 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300178 cx_clear(MO_PCI_INTMSK, PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 cx_clear(MO_TS_INTMSK, 0x1f0011);
180
181 /* Reset the controller */
182 cx_write(TS_GEN_CNTRL, 0xcd);
183 return 0;
184}
185
186static int cx8802_restart_queue(struct cx8802_dev *dev,
187 struct cx88_dmaqueue *q)
188{
189 struct cx88_buffer *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300191 dprintk( 1, "cx8802_restart_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 if (list_empty(&q->active))
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700193 {
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300194 struct cx88_buffer *prev;
195 prev = NULL;
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300196
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300197 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300198
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300199 for (;;) {
200 if (list_empty(&q->queued))
201 return 0;
202 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
203 if (NULL == prev) {
204 list_del(&buf->vb.queue);
205 list_add_tail(&buf->vb.queue,&q->active);
206 cx8802_start_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300207 buf->vb.state = VIDEOBUF_ACTIVE;
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300208 buf->count = q->count++;
209 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
210 dprintk(1,"[%p/%d] restart_queue - first active\n",
211 buf,buf->vb.i);
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300212
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300213 } else if (prev->vb.width == buf->vb.width &&
214 prev->vb.height == buf->vb.height &&
215 prev->fmt == buf->fmt) {
216 list_del(&buf->vb.queue);
217 list_add_tail(&buf->vb.queue,&q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300218 buf->vb.state = VIDEOBUF_ACTIVE;
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300219 buf->count = q->count++;
220 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
221 dprintk(1,"[%p/%d] restart_queue - move to active\n",
222 buf,buf->vb.i);
223 } else {
224 return 0;
225 }
226 prev = buf;
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
232 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
233 buf, buf->vb.i);
234 cx8802_start_dma(dev, q, buf);
Trent Piepho89a47942007-10-14 02:52:17 -0300235 list_for_each_entry(buf, &q->active, vb.queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
238 return 0;
239}
240
241/* ------------------------------------------------------------------ */
242
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300243int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
244 struct cx88_buffer *buf, enum v4l2_field field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 int size = dev->ts_packet_size * dev->ts_packet_count;
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300247 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 int rc;
249
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300250 dprintk(1, "%s: %p\n", __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (0 != buf->vb.baddr && buf->vb.bsize < size)
252 return -EINVAL;
253
Brandon Philips0fc06862007-11-06 20:02:36 -0300254 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 buf->vb.width = dev->ts_packet_size;
256 buf->vb.height = dev->ts_packet_count;
257 buf->vb.size = size;
Catalin Climov31629422005-11-08 21:36:17 -0800258 buf->vb.field = field /*V4L2_FIELD_TOP*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300260 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 goto fail;
262 cx88_risc_databuffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300263 dma->sglist,
Trent Piepho05b27232007-08-24 01:06:34 -0300264 buf->vb.width, buf->vb.height, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Brandon Philips0fc06862007-11-06 20:02:36 -0300266 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
268
269 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300270 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return rc;
272}
273
274void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
275{
276 struct cx88_buffer *prev;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300277 struct cx88_dmaqueue *cx88q = &dev->mpegq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700279 dprintk( 1, "cx8802_buf_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* add jump to stopper */
281 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300282 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300284 if (list_empty(&cx88q->active)) {
Trent Piepho76d313b2006-04-10 09:27:08 -0300285 dprintk( 1, "queue is empty - first active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300286 list_add_tail(&buf->vb.queue,&cx88q->active);
287 cx8802_start_dma(dev, cx88q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300288 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300289 buf->count = cx88q->count++;
290 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
Trent Piepho76d313b2006-04-10 09:27:08 -0300291 dprintk(1,"[%p/%d] %s - first active\n",
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300292 buf, buf->vb.i, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 } else {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700295 dprintk( 1, "queue is not empty - append to active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300296 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
297 list_add_tail(&buf->vb.queue,&cx88q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300298 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300299 buf->count = cx88q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700301 dprintk( 1, "[%p/%d] %s - append to active\n",
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300302 buf, buf->vb.i, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304}
305
306/* ----------------------------------------------------------- */
307
308static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
309{
310 struct cx88_dmaqueue *q = &dev->mpegq;
311 struct cx88_buffer *buf;
312 unsigned long flags;
313
314 spin_lock_irqsave(&dev->slock,flags);
315 while (!list_empty(&q->active)) {
316 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
317 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300318 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 wake_up(&buf->vb.done);
320 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
321 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
322 }
323 if (restart)
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700324 {
Trent Piepho76d313b2006-04-10 09:27:08 -0300325 dprintk(1, "restarting queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 cx8802_restart_queue(dev,q);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 spin_unlock_irqrestore(&dev->slock,flags);
329}
330
331void cx8802_cancel_buffers(struct cx8802_dev *dev)
332{
333 struct cx88_dmaqueue *q = &dev->mpegq;
334
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700335 dprintk( 1, "cx8802_cancel_buffers" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 del_timer_sync(&q->timeout);
337 cx8802_stop_dma(dev);
338 do_cancel_buffers(dev,"cancel",0);
339}
340
341static void cx8802_timeout(unsigned long data)
342{
343 struct cx8802_dev *dev = (struct cx8802_dev*)data;
344
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300345 dprintk(1, "%s\n",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 if (debug)
348 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
349 cx8802_stop_dma(dev);
350 do_cancel_buffers(dev,"timeout",1);
351}
352
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700353static char *cx88_mpeg_irqs[32] = {
354 "ts_risci1", NULL, NULL, NULL,
355 "ts_risci2", NULL, NULL, NULL,
356 "ts_oflow", NULL, NULL, NULL,
357 "ts_sync", NULL, NULL, NULL,
358 "opc_err", "par_err", "rip_err", "pci_abort",
359 "ts_err?",
360};
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362static void cx8802_mpeg_irq(struct cx8802_dev *dev)
363{
364 struct cx88_core *core = dev->core;
365 u32 status, mask, count;
366
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700367 dprintk( 1, "cx8802_mpeg_irq\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 status = cx_read(MO_TS_INTSTAT);
369 mask = cx_read(MO_TS_INTMSK);
370 if (0 == (status & mask))
371 return;
372
373 cx_write(MO_TS_INTSTAT, status);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (debug || (status & mask & ~0xff))
376 cx88_print_irqbits(core->name, "irq mpeg ",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300377 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
378 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 /* risc op code error */
381 if (status & (1 << 16)) {
382 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
383 cx_clear(MO_TS_DMACNTRL, 0x11);
384 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
385 }
386
387 /* risc1 y */
388 if (status & 0x01) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700389 dprintk( 1, "wake up\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 spin_lock(&dev->slock);
391 count = cx_read(MO_TS_GPCNT);
392 cx88_wakeup(dev->core, &dev->mpegq, count);
393 spin_unlock(&dev->slock);
394 }
395
396 /* risc2 y */
397 if (status & 0x10) {
398 spin_lock(&dev->slock);
399 cx8802_restart_queue(dev,&dev->mpegq);
400 spin_unlock(&dev->slock);
401 }
402
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800403 /* other general errors */
404 if (status & 0x1f0100) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700405 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800406 spin_lock(&dev->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 cx8802_stop_dma(dev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800408 cx8802_restart_queue(dev,&dev->mpegq);
409 spin_unlock(&dev->slock);
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700413#define MAX_IRQ_LOOP 10
414
David Howells7d12e782006-10-05 14:55:46 +0100415static irqreturn_t cx8802_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct cx8802_dev *dev = dev_id;
418 struct cx88_core *core = dev->core;
419 u32 status;
420 int loop, handled = 0;
421
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700422 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300423 status = cx_read(MO_PCI_INTSTAT) &
424 (core->pci_irqmask | PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (0 == status)
426 goto out;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700427 dprintk( 1, "cx8802_irq\n" );
428 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
429 dprintk( 1, " status: %d\n", status );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 handled = 1;
431 cx_write(MO_PCI_INTSTAT, status);
432
433 if (status & core->pci_irqmask)
434 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300435 if (status & PCI_INT_TSINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 cx8802_mpeg_irq(dev);
437 };
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700438 if (MAX_IRQ_LOOP == loop) {
439 dprintk( 0, "clearing mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
441 core->name);
442 cx_write(MO_PCI_INTMSK,0);
443 }
444
445 out:
446 return IRQ_RETVAL(handled);
447}
448
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300449static int cx8802_init_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct cx88_core *core = dev->core;
452 int err;
453
454 /* pci init */
455 if (pci_enable_device(dev->pci))
456 return -EIO;
457 pci_set_master(dev->pci);
Mauro Carvalho Chehabaaa40cb2007-03-30 10:58:01 -0300458 if (!pci_dma_supported(dev->pci,DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
460 return -EIO;
461 }
462
463 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800464 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
465 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700466 "latency: %d, mmio: 0x%llx\n", dev->core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700468 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 spin_lock_init(&dev->slock);
472
473 /* init dma queue */
474 INIT_LIST_HEAD(&dev->mpegq.active);
475 INIT_LIST_HEAD(&dev->mpegq.queued);
476 dev->mpegq.timeout.function = cx8802_timeout;
477 dev->mpegq.timeout.data = (unsigned long)dev;
478 init_timer(&dev->mpegq.timeout);
479 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
480 MO_TS_DMACNTRL,0x11,0x00);
481
482 /* get irq */
483 err = request_irq(dev->pci->irq, cx8802_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700484 IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (err < 0) {
486 printk(KERN_ERR "%s: can't get IRQ %d\n",
487 dev->core->name, dev->pci->irq);
488 return err;
489 }
490 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
491
492 /* everything worked */
493 pci_set_drvdata(dev->pci,dev);
494 return 0;
495}
496
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300497static void cx8802_fini_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700499 dprintk( 2, "cx8802_fini_common\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 cx8802_stop_dma(dev);
501 pci_disable_device(dev->pci);
502
503 /* unregister stuff */
504 free_irq(dev->pci->irq, dev);
505 pci_set_drvdata(dev->pci, NULL);
506
507 /* free memory */
508 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
509}
510
511/* ----------------------------------------------------------- */
512
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300513static int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800515 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct cx88_core *core = dev->core;
517
518 /* stop mpeg dma */
519 spin_lock(&dev->slock);
520 if (!list_empty(&dev->mpegq.active)) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700521 dprintk( 2, "suspend\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 printk("%s: suspend mpeg\n", core->name);
523 cx8802_stop_dma(dev);
524 del_timer(&dev->mpegq.timeout);
525 }
526 spin_unlock(&dev->slock);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* FIXME -- shutdown device */
529 cx88_shutdown(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 pci_save_state(pci_dev);
532 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
533 pci_disable_device(pci_dev);
534 dev->state.disabled = 1;
535 }
536 return 0;
537}
538
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300539static int cx8802_resume_common(struct pci_dev *pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700541 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700543 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700546 err=pci_enable_device(pci_dev);
547 if (err) {
548 printk(KERN_ERR "%s: can't enable device\n",
549 dev->core->name);
550 return err;
551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 dev->state.disabled = 0;
553 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700554 err=pci_set_power_state(pci_dev, PCI_D0);
555 if (err) {
556 printk(KERN_ERR "%s: can't enable device\n",
557 dev->core->name);
558 pci_disable_device(pci_dev);
559 dev->state.disabled = 1;
560
561 return err;
562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 pci_restore_state(pci_dev);
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /* FIXME: re-initialize hardware */
566 cx88_reset(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* restart video+vbi capture */
569 spin_lock(&dev->slock);
570 if (!list_empty(&dev->mpegq.active)) {
571 printk("%s: resume mpeg\n", core->name);
572 cx8802_restart_queue(dev,&dev->mpegq);
573 }
574 spin_unlock(&dev->slock);
575
576 return 0;
577}
578
Trent Piepho7717cbe2007-10-14 02:52:16 -0300579#if defined(CONFIG_VIDEO_CX88_BLACKBIRD) || \
580 defined(CONFIG_VIDEO_CX88_BLACKBIRD_MODULE)
Steven Toth6c5be742006-12-02 21:15:51 -0200581struct cx8802_dev * cx8802_get_device(struct inode *inode)
582{
583 int minor = iminor(inode);
Trent Piepho89a47942007-10-14 02:52:17 -0300584 struct cx8802_dev *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Trent Piepho89a47942007-10-14 02:52:17 -0300586 list_for_each_entry(dev, &cx8802_devlist, devlist)
587 if (dev->mpeg_dev && dev->mpeg_dev->minor == minor)
588 return dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200589
590 return NULL;
591}
Trent Piepho7717cbe2007-10-14 02:52:16 -0300592EXPORT_SYMBOL(cx8802_get_device);
593#endif
Steven Toth6c5be742006-12-02 21:15:51 -0200594
595struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
596{
Trent Piepho081c2fc2007-10-14 02:52:17 -0300597 struct cx8802_driver *d;
Steven Toth6c5be742006-12-02 21:15:51 -0200598
Trent Piepho89a47942007-10-14 02:52:17 -0300599 list_for_each_entry(d, &dev->drvlist, drvlist)
Trent Piepho081c2fc2007-10-14 02:52:17 -0300600 if (d->type_id == btype)
601 return d;
Steven Toth6c5be742006-12-02 21:15:51 -0200602
603 return NULL;
604}
605
606/* Driver asked for hardware access. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300607static int cx8802_request_acquire(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200608{
609 struct cx88_core *core = drv->core;
610
611 /* Fail a request for hardware if the device is busy. */
Roland Stoll27d0fe12008-02-11 13:00:34 -0300612 if (core->active_type_id != CX88_BOARD_NONE &&
613 core->active_type_id != drv->type_id)
Steven Toth6c5be742006-12-02 21:15:51 -0200614 return -EBUSY;
615
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -0300616 core->input = CX88_VMUX_DVB;
617
Steven Toth6c5be742006-12-02 21:15:51 -0200618 if (drv->advise_acquire)
619 {
Roland Stoll27d0fe12008-02-11 13:00:34 -0300620 mutex_lock(&drv->core->lock);
Ricardo Cerqueirabaff6cd2008-02-13 22:41:15 -0300621 core->active_ref++;
Roland Stoll27d0fe12008-02-11 13:00:34 -0300622 if (core->active_type_id == CX88_BOARD_NONE) {
623 core->active_type_id = drv->type_id;
624 drv->advise_acquire(drv);
625 }
626 mutex_unlock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200627
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300628 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200629 }
630
631 return 0;
632}
633
634/* Driver asked to release hardware. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300635static int cx8802_request_release(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200636{
637 struct cx88_core *core = drv->core;
638
Ricardo Cerqueirabaff6cd2008-02-13 22:41:15 -0300639 mutex_lock(&drv->core->lock);
Roland Stoll27d0fe12008-02-11 13:00:34 -0300640 if (drv->advise_release && --core->active_ref == 0)
Steven Toth6c5be742006-12-02 21:15:51 -0200641 {
642 drv->advise_release(drv);
643 core->active_type_id = CX88_BOARD_NONE;
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300644 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200645 }
Ricardo Cerqueirabaff6cd2008-02-13 22:41:15 -0300646 mutex_unlock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200647
648 return 0;
649}
650
651static int cx8802_check_driver(struct cx8802_driver *drv)
652{
653 if (drv == NULL)
654 return -ENODEV;
655
656 if ((drv->type_id != CX88_MPEG_DVB) &&
657 (drv->type_id != CX88_MPEG_BLACKBIRD))
658 return -EINVAL;
659
660 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
661 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
662 return -EINVAL;
663
664 if ((drv->probe == NULL) ||
665 (drv->remove == NULL) ||
666 (drv->advise_acquire == NULL) ||
667 (drv->advise_release == NULL))
668 return -EINVAL;
669
670 return 0;
671}
672
673int cx8802_register_driver(struct cx8802_driver *drv)
674{
Trent Piepho89a47942007-10-14 02:52:17 -0300675 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200676 struct cx8802_driver *driver;
Trent Piepho89a47942007-10-14 02:52:17 -0300677 int err, i = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200678
Trent Piepho5772f812007-08-15 14:41:59 -0300679 printk(KERN_INFO
680 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
681 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
682 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200683
684 if ((err = cx8802_check_driver(drv)) != 0) {
Trent Piepho5772f812007-08-15 14:41:59 -0300685 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
Steven Toth6c5be742006-12-02 21:15:51 -0200686 return err;
687 }
688
Trent Piepho89a47942007-10-14 02:52:17 -0300689 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300690 printk(KERN_INFO
691 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300692 dev->core->name, dev->pci->subsystem_vendor,
693 dev->pci->subsystem_device, dev->core->board.name,
694 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200695
696 /* Bring up a new struct for each driver instance */
697 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
698 if (driver == NULL)
699 return -ENOMEM;
700
701 /* Snapshot of the driver registration data */
Trent Piepho89a47942007-10-14 02:52:17 -0300702 drv->core = dev->core;
Steven Toth6c5be742006-12-02 21:15:51 -0200703 drv->suspend = cx8802_suspend_common;
704 drv->resume = cx8802_resume_common;
705 drv->request_acquire = cx8802_request_acquire;
706 drv->request_release = cx8802_request_release;
707 memcpy(driver, drv, sizeof(*driver));
708
709 err = drv->probe(driver);
710 if (err == 0) {
Steven Toth019391e42006-10-06 21:29:25 -0300711 i++;
Steven Toth6c5be742006-12-02 21:15:51 -0200712 mutex_lock(&drv->core->lock);
Trent Piepho89a47942007-10-14 02:52:17 -0300713 list_add_tail(&driver->drvlist, &dev->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200714 mutex_unlock(&drv->core->lock);
715 } else {
Trent Piepho5772f812007-08-15 14:41:59 -0300716 printk(KERN_ERR
717 "%s/2: cx8802 probe failed, err = %d\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300718 dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200719 }
720
721 }
Steven Toth6c5be742006-12-02 21:15:51 -0200722
Trent Piepho89a47942007-10-14 02:52:17 -0300723 return i ? 0 : -ENODEV;
Steven Toth6c5be742006-12-02 21:15:51 -0200724}
725
726int cx8802_unregister_driver(struct cx8802_driver *drv)
727{
Trent Piepho89a47942007-10-14 02:52:17 -0300728 struct cx8802_dev *dev;
729 struct cx8802_driver *d, *dtmp;
730 int err = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200731
Trent Piepho5772f812007-08-15 14:41:59 -0300732 printk(KERN_INFO
733 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
734 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
735 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200736
Trent Piepho89a47942007-10-14 02:52:17 -0300737 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300738 printk(KERN_INFO
739 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300740 dev->core->name, dev->pci->subsystem_vendor,
741 dev->pci->subsystem_device, dev->core->board.name,
742 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200743
Trent Piepho89a47942007-10-14 02:52:17 -0300744 list_for_each_entry_safe(d, dtmp, &dev->drvlist, drvlist) {
Steven Toth6c5be742006-12-02 21:15:51 -0200745 /* only unregister the correct driver type */
746 if (d->type_id != drv->type_id)
747 continue;
748
749 err = d->remove(d);
750 if (err == 0) {
751 mutex_lock(&drv->core->lock);
Trent Piepho89a47942007-10-14 02:52:17 -0300752 list_del(&d->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200753 mutex_unlock(&drv->core->lock);
Trent Piephoa04036a2007-10-05 11:28:09 -0300754 kfree(d);
Steven Toth6c5be742006-12-02 21:15:51 -0200755 } else
Trent Piepho5772f812007-08-15 14:41:59 -0300756 printk(KERN_ERR "%s/2: cx8802 driver remove "
Trent Piepho89a47942007-10-14 02:52:17 -0300757 "failed (%d)\n", dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200758 }
759
760 }
761
762 return err;
763}
764
765/* ----------------------------------------------------------- */
766static int __devinit cx8802_probe(struct pci_dev *pci_dev,
767 const struct pci_device_id *pci_id)
768{
769 struct cx8802_dev *dev;
770 struct cx88_core *core;
771 int err;
772
773 /* general setup */
774 core = cx88_core_get(pci_dev);
775 if (NULL == core)
776 return -EINVAL;
777
778 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
779
780 err = -ENODEV;
Trent Piepho6a59d642007-08-15 14:41:57 -0300781 if (!core->board.mpeg)
Steven Toth6c5be742006-12-02 21:15:51 -0200782 goto fail_core;
783
784 err = -ENOMEM;
785 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
786 if (NULL == dev)
787 goto fail_core;
788 dev->pci = pci_dev;
789 dev->core = core;
790
791 err = cx8802_init_common(dev);
792 if (err != 0)
793 goto fail_free;
794
Trent Piepho081c2fc2007-10-14 02:52:17 -0300795 INIT_LIST_HEAD(&dev->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200796 list_add_tail(&dev->devlist,&cx8802_devlist);
797
798 /* Maintain a reference so cx88-video can query the 8802 device. */
799 core->dvbdev = dev;
Markus Rechberger77b74772007-04-27 12:31:06 -0300800
801 /* now autoload cx88-dvb or cx88-blackbird */
802 request_modules(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200803 return 0;
804
805 fail_free:
806 kfree(dev);
807 fail_core:
808 cx88_core_put(core,pci_dev);
809 return err;
810}
811
812static void __devexit cx8802_remove(struct pci_dev *pci_dev)
813{
814 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200815
816 dev = pci_get_drvdata(pci_dev);
817
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300818 dprintk( 1, "%s\n", __func__);
Steven Toth6c5be742006-12-02 21:15:51 -0200819
Trent Piepho081c2fc2007-10-14 02:52:17 -0300820 if (!list_empty(&dev->drvlist)) {
Trent Piepho89a47942007-10-14 02:52:17 -0300821 struct cx8802_driver *drv, *tmp;
Trent Piepho081c2fc2007-10-14 02:52:17 -0300822 int err;
823
824 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
825 "while cx8802 sub-drivers still loaded?!\n",
826 dev->core->name);
827
Trent Piepho89a47942007-10-14 02:52:17 -0300828 list_for_each_entry_safe(drv, tmp, &dev->drvlist, drvlist) {
Trent Piepho081c2fc2007-10-14 02:52:17 -0300829 err = drv->remove(drv);
830 if (err == 0) {
831 mutex_lock(&drv->core->lock);
Trent Piepho89a47942007-10-14 02:52:17 -0300832 list_del(&drv->drvlist);
Trent Piepho081c2fc2007-10-14 02:52:17 -0300833 mutex_unlock(&drv->core->lock);
834 } else
835 printk(KERN_ERR "%s/2: cx8802 driver remove "
836 "failed (%d)\n", dev->core->name, err);
Trent Piephoa04036a2007-10-05 11:28:09 -0300837 kfree(drv);
Steven Toth6c5be742006-12-02 21:15:51 -0200838 }
Steven Toth6c5be742006-12-02 21:15:51 -0200839 }
840
841 /* Destroy any 8802 reference. */
842 dev->core->dvbdev = NULL;
843
844 /* common */
845 cx8802_fini_common(dev);
846 cx88_core_put(dev->core,dev->pci);
847 kfree(dev);
848}
849
850static struct pci_device_id cx8802_pci_tbl[] = {
851 {
852 .vendor = 0x14f1,
853 .device = 0x8802,
854 .subvendor = PCI_ANY_ID,
855 .subdevice = PCI_ANY_ID,
856 },{
857 /* --- end of list --- */
858 }
859};
860MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
861
862static struct pci_driver cx8802_pci_driver = {
863 .name = "cx88-mpeg driver manager",
864 .id_table = cx8802_pci_tbl,
865 .probe = cx8802_probe,
866 .remove = __devexit_p(cx8802_remove),
867};
868
869static int cx8802_init(void)
870{
Trent Piepho5772f812007-08-15 14:41:59 -0300871 printk(KERN_INFO "cx88/2: cx2388x MPEG-TS Driver Manager version %d.%d.%d loaded\n",
Steven Toth6c5be742006-12-02 21:15:51 -0200872 (CX88_VERSION_CODE >> 16) & 0xff,
873 (CX88_VERSION_CODE >> 8) & 0xff,
874 CX88_VERSION_CODE & 0xff);
875#ifdef SNAPSHOT
876 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
877 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
878#endif
879 return pci_register_driver(&cx8802_pci_driver);
880}
881
882static void cx8802_fini(void)
883{
884 pci_unregister_driver(&cx8802_pci_driver);
885}
886
887module_init(cx8802_init);
888module_exit(cx8802_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889EXPORT_SYMBOL(cx8802_buf_prepare);
890EXPORT_SYMBOL(cx8802_buf_queue);
891EXPORT_SYMBOL(cx8802_cancel_buffers);
892
Steven Toth6c5be742006-12-02 21:15:51 -0200893EXPORT_SYMBOL(cx8802_register_driver);
894EXPORT_SYMBOL(cx8802_unregister_driver);
Steven Toth6c5be742006-12-02 21:15:51 -0200895EXPORT_SYMBOL(cx8802_get_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/* ----------------------------------------------------------- */
897/*
898 * Local variables:
899 * c-basic-offset: 8
900 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700901 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 */