blob: 11d9865e34f14049c5187920e19e444c960b3728 [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
42static unsigned int debug = 0;
43module_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);
Michael Krufky0d723c02005-07-07 17:58:42 -0700105 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;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700120 default:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700121 cx_write(TS_SOP_STAT, 0x00);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700122 break;
Michael Krufkyf1798492005-07-07 17:58:39 -0700123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
125 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200126 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
Trent Piepho6a59d642007-08-15 14:41:57 -0300127 (core->board.mpeg & CX88_MPEG_BLACKBIRD) ) {
Steven Toth6c5be742006-12-02 21:15:51 -0200128 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
132 udelay(100);
133
134 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 cx_write(TS_VALERR_CNTRL, 0x2000);
136
137 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
138 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200139 } else {
140 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __FUNCTION__,
Trent Piepho6a59d642007-08-15 14:41:57 -0300141 core->board.mpeg );
Steven Toth6c5be742006-12-02 21:15:51 -0200142 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* reset counter */
146 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
147 q->count = 1;
148
149 /* enable irqs */
Trent Piepho76d313b2006-04-10 09:27:08 -0300150 dprintk( 1, "setting the interrupt mask\n" );
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300151 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700152 cx_set(MO_TS_INTMSK, 0x1f0011);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* start dma */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700155 cx_set(MO_DEV_CNTRL2, (1<<5));
156 cx_set(MO_TS_DMACNTRL, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return 0;
158}
159
160static int cx8802_stop_dma(struct cx8802_dev *dev)
161{
162 struct cx88_core *core = dev->core;
Trent Piepho76d313b2006-04-10 09:27:08 -0300163 dprintk( 1, "cx8802_stop_dma\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 /* stop dma */
166 cx_clear(MO_TS_DMACNTRL, 0x11);
167
168 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300169 cx_clear(MO_PCI_INTMSK, PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 cx_clear(MO_TS_INTMSK, 0x1f0011);
171
172 /* Reset the controller */
173 cx_write(TS_GEN_CNTRL, 0xcd);
174 return 0;
175}
176
177static int cx8802_restart_queue(struct cx8802_dev *dev,
178 struct cx88_dmaqueue *q)
179{
180 struct cx88_buffer *buf;
181 struct list_head *item;
182
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300183 dprintk( 1, "cx8802_restart_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 if (list_empty(&q->active))
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700185 {
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300186 struct cx88_buffer *prev;
187 prev = NULL;
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300188
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300189 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300190
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300191 for (;;) {
192 if (list_empty(&q->queued))
193 return 0;
194 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
195 if (NULL == prev) {
196 list_del(&buf->vb.queue);
197 list_add_tail(&buf->vb.queue,&q->active);
198 cx8802_start_dma(dev, q, buf);
199 buf->vb.state = STATE_ACTIVE;
200 buf->count = q->count++;
201 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
202 dprintk(1,"[%p/%d] restart_queue - first active\n",
203 buf,buf->vb.i);
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300204
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300205 } else if (prev->vb.width == buf->vb.width &&
206 prev->vb.height == buf->vb.height &&
207 prev->fmt == buf->fmt) {
208 list_del(&buf->vb.queue);
209 list_add_tail(&buf->vb.queue,&q->active);
210 buf->vb.state = STATE_ACTIVE;
211 buf->count = q->count++;
212 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
213 dprintk(1,"[%p/%d] restart_queue - move to active\n",
214 buf,buf->vb.i);
215 } else {
216 return 0;
217 }
218 prev = buf;
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
224 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
225 buf, buf->vb.i);
226 cx8802_start_dma(dev, q, buf);
227 list_for_each(item,&q->active) {
228 buf = list_entry(item, struct cx88_buffer, vb.queue);
229 buf->count = q->count++;
230 }
231 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
232 return 0;
233}
234
235/* ------------------------------------------------------------------ */
236
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300237int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
238 struct cx88_buffer *buf, enum v4l2_field field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
240 int size = dev->ts_packet_size * dev->ts_packet_count;
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300241 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 int rc;
243
244 dprintk(1, "%s: %p\n", __FUNCTION__, buf);
245 if (0 != buf->vb.baddr && buf->vb.bsize < size)
246 return -EINVAL;
247
248 if (STATE_NEEDS_INIT == buf->vb.state) {
249 buf->vb.width = dev->ts_packet_size;
250 buf->vb.height = dev->ts_packet_count;
251 buf->vb.size = size;
Catalin Climov31629422005-11-08 21:36:17 -0800252 buf->vb.field = field /*V4L2_FIELD_TOP*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300254 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 goto fail;
256 cx88_risc_databuffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300257 dma->sglist,
Trent Piepho05b27232007-08-24 01:06:34 -0300258 buf->vb.width, buf->vb.height, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260 buf->vb.state = STATE_PREPARED;
261 return 0;
262
263 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300264 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return rc;
266}
267
268void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
269{
270 struct cx88_buffer *prev;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300271 struct cx88_dmaqueue *cx88q = &dev->mpegq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700273 dprintk( 1, "cx8802_buf_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* add jump to stopper */
275 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300276 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300278 if (list_empty(&cx88q->active)) {
Trent Piepho76d313b2006-04-10 09:27:08 -0300279 dprintk( 1, "queue is empty - first active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300280 list_add_tail(&buf->vb.queue,&cx88q->active);
281 cx8802_start_dma(dev, cx88q, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 buf->vb.state = STATE_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300283 buf->count = cx88q->count++;
284 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
Trent Piepho76d313b2006-04-10 09:27:08 -0300285 dprintk(1,"[%p/%d] %s - first active\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 buf, buf->vb.i, __FUNCTION__);
287
288 } else {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700289 dprintk( 1, "queue is not empty - append to active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300290 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
291 list_add_tail(&buf->vb.queue,&cx88q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 buf->vb.state = STATE_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300293 buf->count = cx88q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700295 dprintk( 1, "[%p/%d] %s - append to active\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 buf, buf->vb.i, __FUNCTION__);
297 }
298}
299
300/* ----------------------------------------------------------- */
301
302static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
303{
304 struct cx88_dmaqueue *q = &dev->mpegq;
305 struct cx88_buffer *buf;
306 unsigned long flags;
307
308 spin_lock_irqsave(&dev->slock,flags);
309 while (!list_empty(&q->active)) {
310 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
311 list_del(&buf->vb.queue);
312 buf->vb.state = STATE_ERROR;
313 wake_up(&buf->vb.done);
314 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
315 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
316 }
317 if (restart)
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700318 {
Trent Piepho76d313b2006-04-10 09:27:08 -0300319 dprintk(1, "restarting queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 cx8802_restart_queue(dev,q);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 spin_unlock_irqrestore(&dev->slock,flags);
323}
324
325void cx8802_cancel_buffers(struct cx8802_dev *dev)
326{
327 struct cx88_dmaqueue *q = &dev->mpegq;
328
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700329 dprintk( 1, "cx8802_cancel_buffers" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 del_timer_sync(&q->timeout);
331 cx8802_stop_dma(dev);
332 do_cancel_buffers(dev,"cancel",0);
333}
334
335static void cx8802_timeout(unsigned long data)
336{
337 struct cx8802_dev *dev = (struct cx8802_dev*)data;
338
Mauro Carvalho Chehab7d816b22007-06-22 17:26:54 -0300339 dprintk(1, "%s\n",__FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (debug)
342 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
343 cx8802_stop_dma(dev);
344 do_cancel_buffers(dev,"timeout",1);
345}
346
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700347static char *cx88_mpeg_irqs[32] = {
348 "ts_risci1", NULL, NULL, NULL,
349 "ts_risci2", NULL, NULL, NULL,
350 "ts_oflow", NULL, NULL, NULL,
351 "ts_sync", NULL, NULL, NULL,
352 "opc_err", "par_err", "rip_err", "pci_abort",
353 "ts_err?",
354};
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356static void cx8802_mpeg_irq(struct cx8802_dev *dev)
357{
358 struct cx88_core *core = dev->core;
359 u32 status, mask, count;
360
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700361 dprintk( 1, "cx8802_mpeg_irq\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 status = cx_read(MO_TS_INTSTAT);
363 mask = cx_read(MO_TS_INTMSK);
364 if (0 == (status & mask))
365 return;
366
367 cx_write(MO_TS_INTSTAT, status);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (debug || (status & mask & ~0xff))
370 cx88_print_irqbits(core->name, "irq mpeg ",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300371 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
372 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* risc op code error */
375 if (status & (1 << 16)) {
376 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
377 cx_clear(MO_TS_DMACNTRL, 0x11);
378 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
379 }
380
381 /* risc1 y */
382 if (status & 0x01) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700383 dprintk( 1, "wake up\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 spin_lock(&dev->slock);
385 count = cx_read(MO_TS_GPCNT);
386 cx88_wakeup(dev->core, &dev->mpegq, count);
387 spin_unlock(&dev->slock);
388 }
389
390 /* risc2 y */
391 if (status & 0x10) {
392 spin_lock(&dev->slock);
393 cx8802_restart_queue(dev,&dev->mpegq);
394 spin_unlock(&dev->slock);
395 }
396
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800397 /* other general errors */
398 if (status & 0x1f0100) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700399 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800400 spin_lock(&dev->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 cx8802_stop_dma(dev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800402 cx8802_restart_queue(dev,&dev->mpegq);
403 spin_unlock(&dev->slock);
404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700407#define MAX_IRQ_LOOP 10
408
David Howells7d12e782006-10-05 14:55:46 +0100409static irqreturn_t cx8802_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 struct cx8802_dev *dev = dev_id;
412 struct cx88_core *core = dev->core;
413 u32 status;
414 int loop, handled = 0;
415
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700416 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300417 status = cx_read(MO_PCI_INTSTAT) &
418 (core->pci_irqmask | PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (0 == status)
420 goto out;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700421 dprintk( 1, "cx8802_irq\n" );
422 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
423 dprintk( 1, " status: %d\n", status );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 handled = 1;
425 cx_write(MO_PCI_INTSTAT, status);
426
427 if (status & core->pci_irqmask)
428 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300429 if (status & PCI_INT_TSINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 cx8802_mpeg_irq(dev);
431 };
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700432 if (MAX_IRQ_LOOP == loop) {
433 dprintk( 0, "clearing mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
435 core->name);
436 cx_write(MO_PCI_INTMSK,0);
437 }
438
439 out:
440 return IRQ_RETVAL(handled);
441}
442
443/* ----------------------------------------------------------- */
444/* exported stuff */
445
446int cx8802_init_common(struct cx8802_dev *dev)
447{
448 struct cx88_core *core = dev->core;
449 int err;
450
451 /* pci init */
452 if (pci_enable_device(dev->pci))
453 return -EIO;
454 pci_set_master(dev->pci);
Mauro Carvalho Chehabaaa40cb2007-03-30 10:58:01 -0300455 if (!pci_dma_supported(dev->pci,DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
457 return -EIO;
458 }
459
460 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800461 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
462 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700463 "latency: %d, mmio: 0x%llx\n", dev->core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700465 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 spin_lock_init(&dev->slock);
469
470 /* init dma queue */
471 INIT_LIST_HEAD(&dev->mpegq.active);
472 INIT_LIST_HEAD(&dev->mpegq.queued);
473 dev->mpegq.timeout.function = cx8802_timeout;
474 dev->mpegq.timeout.data = (unsigned long)dev;
475 init_timer(&dev->mpegq.timeout);
476 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
477 MO_TS_DMACNTRL,0x11,0x00);
478
479 /* get irq */
480 err = request_irq(dev->pci->irq, cx8802_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700481 IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (err < 0) {
483 printk(KERN_ERR "%s: can't get IRQ %d\n",
484 dev->core->name, dev->pci->irq);
485 return err;
486 }
487 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
488
489 /* everything worked */
490 pci_set_drvdata(dev->pci,dev);
491 return 0;
492}
493
494void cx8802_fini_common(struct cx8802_dev *dev)
495{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700496 dprintk( 2, "cx8802_fini_common\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 cx8802_stop_dma(dev);
498 pci_disable_device(dev->pci);
499
500 /* unregister stuff */
501 free_irq(dev->pci->irq, dev);
502 pci_set_drvdata(dev->pci, NULL);
503
504 /* free memory */
505 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
506}
507
508/* ----------------------------------------------------------- */
509
510int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
511{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800512 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct cx88_core *core = dev->core;
514
515 /* stop mpeg dma */
516 spin_lock(&dev->slock);
517 if (!list_empty(&dev->mpegq.active)) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700518 dprintk( 2, "suspend\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 printk("%s: suspend mpeg\n", core->name);
520 cx8802_stop_dma(dev);
521 del_timer(&dev->mpegq.timeout);
522 }
523 spin_unlock(&dev->slock);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* FIXME -- shutdown device */
526 cx88_shutdown(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 pci_save_state(pci_dev);
529 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
530 pci_disable_device(pci_dev);
531 dev->state.disabled = 1;
532 }
533 return 0;
534}
535
536int cx8802_resume_common(struct pci_dev *pci_dev)
537{
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700538 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700540 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700543 err=pci_enable_device(pci_dev);
544 if (err) {
545 printk(KERN_ERR "%s: can't enable device\n",
546 dev->core->name);
547 return err;
548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 dev->state.disabled = 0;
550 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700551 err=pci_set_power_state(pci_dev, PCI_D0);
552 if (err) {
553 printk(KERN_ERR "%s: can't enable device\n",
554 dev->core->name);
555 pci_disable_device(pci_dev);
556 dev->state.disabled = 1;
557
558 return err;
559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 pci_restore_state(pci_dev);
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /* FIXME: re-initialize hardware */
563 cx88_reset(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 /* restart video+vbi capture */
566 spin_lock(&dev->slock);
567 if (!list_empty(&dev->mpegq.active)) {
568 printk("%s: resume mpeg\n", core->name);
569 cx8802_restart_queue(dev,&dev->mpegq);
570 }
571 spin_unlock(&dev->slock);
572
573 return 0;
574}
575
Trent Piepho7717cbe2007-10-14 02:52:16 -0300576#if defined(CONFIG_VIDEO_CX88_BLACKBIRD) || \
577 defined(CONFIG_VIDEO_CX88_BLACKBIRD_MODULE)
Steven Toth6c5be742006-12-02 21:15:51 -0200578struct cx8802_dev * cx8802_get_device(struct inode *inode)
579{
580 int minor = iminor(inode);
581 struct cx8802_dev *h = NULL;
582 struct list_head *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Steven Toth6c5be742006-12-02 21:15:51 -0200584 list_for_each(list,&cx8802_devlist) {
585 h = list_entry(list, struct cx8802_dev, devlist);
Steven Toth48200ba2007-09-06 22:48:35 -0300586 if (h->mpeg_dev && h->mpeg_dev->minor == minor)
Steven Toth6c5be742006-12-02 21:15:51 -0200587 return h;
588 }
589
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 struct list_head *list;
Steven Toth6c5be742006-12-02 21:15:51 -0200599
Trent Piepho081c2fc2007-10-14 02:52:17 -0300600 list_for_each(list, &dev->drvlist) {
601 d = list_entry(list, struct cx8802_driver, drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200602
Trent Piepho081c2fc2007-10-14 02:52:17 -0300603 if (d->type_id == btype)
604 return d;
Steven Toth6c5be742006-12-02 21:15:51 -0200605 }
606
607 return NULL;
608}
609
610/* Driver asked for hardware access. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300611static int cx8802_request_acquire(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200612{
613 struct cx88_core *core = drv->core;
614
615 /* Fail a request for hardware if the device is busy. */
616 if (core->active_type_id != CX88_BOARD_NONE)
617 return -EBUSY;
618
619 if (drv->advise_acquire)
620 {
621 core->active_type_id = drv->type_id;
622 drv->advise_acquire(drv);
623
624 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __FUNCTION__, cx_read(MO_GP0_IO));
625 }
626
627 return 0;
628}
629
630/* Driver asked to release hardware. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300631static int cx8802_request_release(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200632{
633 struct cx88_core *core = drv->core;
634
635 if (drv->advise_release)
636 {
637 drv->advise_release(drv);
638 core->active_type_id = CX88_BOARD_NONE;
639 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __FUNCTION__, cx_read(MO_GP0_IO));
640 }
641
642 return 0;
643}
644
645static int cx8802_check_driver(struct cx8802_driver *drv)
646{
647 if (drv == NULL)
648 return -ENODEV;
649
650 if ((drv->type_id != CX88_MPEG_DVB) &&
651 (drv->type_id != CX88_MPEG_BLACKBIRD))
652 return -EINVAL;
653
654 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
655 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
656 return -EINVAL;
657
658 if ((drv->probe == NULL) ||
659 (drv->remove == NULL) ||
660 (drv->advise_acquire == NULL) ||
661 (drv->advise_release == NULL))
662 return -EINVAL;
663
664 return 0;
665}
666
667int cx8802_register_driver(struct cx8802_driver *drv)
668{
669 struct cx8802_dev *h;
670 struct cx8802_driver *driver;
671 struct list_head *list;
672 int err = 0, i = 0;
673
Trent Piepho5772f812007-08-15 14:41:59 -0300674 printk(KERN_INFO
675 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
676 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
677 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200678
679 if ((err = cx8802_check_driver(drv)) != 0) {
Trent Piepho5772f812007-08-15 14:41:59 -0300680 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
Steven Toth6c5be742006-12-02 21:15:51 -0200681 return err;
682 }
683
684 list_for_each(list,&cx8802_devlist) {
Steven Toth6c5be742006-12-02 21:15:51 -0200685 h = list_entry(list, struct cx8802_dev, devlist);
686
Trent Piepho5772f812007-08-15 14:41:59 -0300687 printk(KERN_INFO
688 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
689 h->core->name, h->pci->subsystem_vendor,
690 h->pci->subsystem_device, h->core->board.name,
691 h->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200692
693 /* Bring up a new struct for each driver instance */
694 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
695 if (driver == NULL)
696 return -ENOMEM;
697
698 /* Snapshot of the driver registration data */
699 drv->core = h->core;
700 drv->suspend = cx8802_suspend_common;
701 drv->resume = cx8802_resume_common;
702 drv->request_acquire = cx8802_request_acquire;
703 drv->request_release = cx8802_request_release;
704 memcpy(driver, drv, sizeof(*driver));
705
706 err = drv->probe(driver);
707 if (err == 0) {
Steven Toth019391e42006-10-06 21:29:25 -0300708 i++;
Steven Toth6c5be742006-12-02 21:15:51 -0200709 mutex_lock(&drv->core->lock);
Trent Piepho081c2fc2007-10-14 02:52:17 -0300710 list_add_tail(&driver->drvlist, &h->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200711 mutex_unlock(&drv->core->lock);
712 } else {
Trent Piepho5772f812007-08-15 14:41:59 -0300713 printk(KERN_ERR
714 "%s/2: cx8802 probe failed, err = %d\n",
715 h->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200716 }
717
718 }
719 if (i == 0)
720 err = -ENODEV;
Steven Toth019391e42006-10-06 21:29:25 -0300721 else
722 err = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200723
724 return err;
725}
726
727int cx8802_unregister_driver(struct cx8802_driver *drv)
728{
729 struct cx8802_dev *h;
730 struct cx8802_driver *d;
731 struct list_head *list;
732 struct list_head *list2, *q;
733 int err = 0, i = 0;
734
Trent Piepho5772f812007-08-15 14:41:59 -0300735 printk(KERN_INFO
736 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
737 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
738 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200739
740 list_for_each(list,&cx8802_devlist) {
741 i++;
742 h = list_entry(list, struct cx8802_dev, devlist);
743
Trent Piepho5772f812007-08-15 14:41:59 -0300744 printk(KERN_INFO
745 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
746 h->core->name, h->pci->subsystem_vendor,
747 h->pci->subsystem_device, h->core->board.name,
748 h->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200749
Trent Piepho081c2fc2007-10-14 02:52:17 -0300750 list_for_each_safe(list2, q, &h->drvlist) {
751 d = list_entry(list2, struct cx8802_driver, drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200752
753 /* only unregister the correct driver type */
754 if (d->type_id != drv->type_id)
755 continue;
756
757 err = d->remove(d);
758 if (err == 0) {
759 mutex_lock(&drv->core->lock);
760 list_del(list2);
761 mutex_unlock(&drv->core->lock);
762 } else
Trent Piepho5772f812007-08-15 14:41:59 -0300763 printk(KERN_ERR "%s/2: cx8802 driver remove "
764 "failed (%d)\n", h->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200765 }
766
767 }
768
769 return err;
770}
771
772/* ----------------------------------------------------------- */
773static int __devinit cx8802_probe(struct pci_dev *pci_dev,
774 const struct pci_device_id *pci_id)
775{
776 struct cx8802_dev *dev;
777 struct cx88_core *core;
778 int err;
779
780 /* general setup */
781 core = cx88_core_get(pci_dev);
782 if (NULL == core)
783 return -EINVAL;
784
785 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
786
787 err = -ENODEV;
Trent Piepho6a59d642007-08-15 14:41:57 -0300788 if (!core->board.mpeg)
Steven Toth6c5be742006-12-02 21:15:51 -0200789 goto fail_core;
790
791 err = -ENOMEM;
792 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
793 if (NULL == dev)
794 goto fail_core;
795 dev->pci = pci_dev;
796 dev->core = core;
797
798 err = cx8802_init_common(dev);
799 if (err != 0)
800 goto fail_free;
801
Trent Piepho081c2fc2007-10-14 02:52:17 -0300802 INIT_LIST_HEAD(&dev->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200803 list_add_tail(&dev->devlist,&cx8802_devlist);
804
805 /* Maintain a reference so cx88-video can query the 8802 device. */
806 core->dvbdev = dev;
Markus Rechberger77b74772007-04-27 12:31:06 -0300807
808 /* now autoload cx88-dvb or cx88-blackbird */
809 request_modules(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200810 return 0;
811
812 fail_free:
813 kfree(dev);
814 fail_core:
815 cx88_core_put(core,pci_dev);
816 return err;
817}
818
819static void __devexit cx8802_remove(struct pci_dev *pci_dev)
820{
821 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200822
823 dev = pci_get_drvdata(pci_dev);
824
825 dprintk( 1, "%s\n", __FUNCTION__);
826
Trent Piepho081c2fc2007-10-14 02:52:17 -0300827 if (!list_empty(&dev->drvlist)) {
828 struct list_head *list, *tmp;
829 struct cx8802_driver *drv;
830 int err;
831
832 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
833 "while cx8802 sub-drivers still loaded?!\n",
834 dev->core->name);
835
836 list_for_each_safe(list, tmp, &dev->drvlist) {
837 drv = list_entry(list, struct cx8802_driver, drvlist);
838
839 err = drv->remove(drv);
840 if (err == 0) {
841 mutex_lock(&drv->core->lock);
842 list_del(list);
843 mutex_unlock(&drv->core->lock);
844 } else
845 printk(KERN_ERR "%s/2: cx8802 driver remove "
846 "failed (%d)\n", dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200847 }
Steven Toth6c5be742006-12-02 21:15:51 -0200848 }
849
850 /* Destroy any 8802 reference. */
851 dev->core->dvbdev = NULL;
852
853 /* common */
854 cx8802_fini_common(dev);
855 cx88_core_put(dev->core,dev->pci);
856 kfree(dev);
857}
858
859static struct pci_device_id cx8802_pci_tbl[] = {
860 {
861 .vendor = 0x14f1,
862 .device = 0x8802,
863 .subvendor = PCI_ANY_ID,
864 .subdevice = PCI_ANY_ID,
865 },{
866 /* --- end of list --- */
867 }
868};
869MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
870
871static struct pci_driver cx8802_pci_driver = {
872 .name = "cx88-mpeg driver manager",
873 .id_table = cx8802_pci_tbl,
874 .probe = cx8802_probe,
875 .remove = __devexit_p(cx8802_remove),
876};
877
878static int cx8802_init(void)
879{
Trent Piepho5772f812007-08-15 14:41:59 -0300880 printk(KERN_INFO "cx88/2: cx2388x MPEG-TS Driver Manager version %d.%d.%d loaded\n",
Steven Toth6c5be742006-12-02 21:15:51 -0200881 (CX88_VERSION_CODE >> 16) & 0xff,
882 (CX88_VERSION_CODE >> 8) & 0xff,
883 CX88_VERSION_CODE & 0xff);
884#ifdef SNAPSHOT
885 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
886 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
887#endif
888 return pci_register_driver(&cx8802_pci_driver);
889}
890
891static void cx8802_fini(void)
892{
893 pci_unregister_driver(&cx8802_pci_driver);
894}
895
896module_init(cx8802_init);
897module_exit(cx8802_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898EXPORT_SYMBOL(cx8802_buf_prepare);
899EXPORT_SYMBOL(cx8802_buf_queue);
900EXPORT_SYMBOL(cx8802_cancel_buffers);
901
902EXPORT_SYMBOL(cx8802_init_common);
903EXPORT_SYMBOL(cx8802_fini_common);
904
Steven Toth6c5be742006-12-02 21:15:51 -0200905EXPORT_SYMBOL(cx8802_register_driver);
906EXPORT_SYMBOL(cx8802_unregister_driver);
Steven Toth6c5be742006-12-02 21:15:51 -0200907EXPORT_SYMBOL(cx8802_get_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908/* ----------------------------------------------------------- */
909/*
910 * Local variables:
911 * c-basic-offset: 8
912 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700913 * 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 -0700914 */