blob: db98f1fd3965589bb3483ef7c7d84fea14d5d2b0 [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>
26#include <linux/moduleparam.h>
27#include <linux/init.h>
28#include <linux/device.h>
29#include <linux/interrupt.h>
30#include <asm/delay.h>
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
57 if (cx88_boards[dev->core->board].mpeg & CX88_MPEG_DVB)
Markus Rechberger77b74772007-04-27 12:31:06 -030058 request_module("cx88-dvb");
Markus Rechbergerced80c62007-04-27 12:31:07 -030059 if (cx88_boards[dev->core->board].mpeg & CX88_MPEG_BLACKBIRD)
60 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 Piepho76d313b2006-04-10 09:27:08 -030082 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n", dev->width, dev->height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 /* setup fifo + format */
85 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
86 dev->ts_packet_size, buf->risc.dma);
87
88 /* write TS length to chip */
89 cx_write(MO_TS_LNGTH, buf->vb.width);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 /* FIXME: this needs a review.
92 * also: move to cx88-blackbird + cx88-dvb source files? */
93
Steven Toth6c5be742006-12-02 21:15:51 -020094 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id);
95
96 if ( (core->active_type_id == CX88_MPEG_DVB) &&
97 (cx88_boards[core->board].mpeg & CX88_MPEG_DVB) ) {
98
99 dprintk( 1, "cx8802_start_dma doing .dvb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* negedge driven & software reset */
Michael Krufkyf1798492005-07-07 17:58:39 -0700101 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 udelay(100);
103 cx_write(MO_PINMUX_IO, 0x00);
Michael Krufky0d723c02005-07-07 17:58:42 -0700104 cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700105 switch (core->board) {
106 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
107 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
108 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
Rusty Scottda215d22006-04-07 02:21:31 -0300109 case CX88_BOARD_PCHDTV_HD5500:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700110 cx_write(TS_SOP_STAT, 1<<13);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700111 break;
Steven Toth0fa14aa2006-01-09 15:25:02 -0200112 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
113 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
114 cx_write(MO_PINMUX_IO, 0x88); /* Enable MPEG parallel IO and video signal pins */
115 udelay(100);
116 break;
Steven Toth6c5be742006-12-02 21:15:51 -0200117 case CX88_BOARD_HAUPPAUGE_HVR1300:
118 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700119 default:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700120 cx_write(TS_SOP_STAT, 0x00);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700121 break;
Michael Krufkyf1798492005-07-07 17:58:39 -0700122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
124 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200125 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
126 (cx88_boards[core->board].mpeg & CX88_MPEG_BLACKBIRD) ) {
127 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
131 udelay(100);
132
133 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 cx_write(TS_VALERR_CNTRL, 0x2000);
135
136 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
137 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200138 } else {
139 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __FUNCTION__,
140 cx88_boards[core->board].mpeg );
141 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* reset counter */
145 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
146 q->count = 1;
147
148 /* enable irqs */
Trent Piepho76d313b2006-04-10 09:27:08 -0300149 dprintk( 1, "setting the interrupt mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x04);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700151 cx_set(MO_TS_INTMSK, 0x1f0011);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /* start dma */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700154 cx_set(MO_DEV_CNTRL2, (1<<5));
155 cx_set(MO_TS_DMACNTRL, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 0;
157}
158
159static int cx8802_stop_dma(struct cx8802_dev *dev)
160{
161 struct cx88_core *core = dev->core;
Trent Piepho76d313b2006-04-10 09:27:08 -0300162 dprintk( 1, "cx8802_stop_dma\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* stop dma */
165 cx_clear(MO_TS_DMACNTRL, 0x11);
166
167 /* disable irqs */
168 cx_clear(MO_PCI_INTMSK, 0x000004);
169 cx_clear(MO_TS_INTMSK, 0x1f0011);
170
171 /* Reset the controller */
172 cx_write(TS_GEN_CNTRL, 0xcd);
173 return 0;
174}
175
176static int cx8802_restart_queue(struct cx8802_dev *dev,
177 struct cx88_dmaqueue *q)
178{
179 struct cx88_buffer *buf;
180 struct list_head *item;
181
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300182 dprintk( 1, "cx8802_restart_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (list_empty(&q->active))
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700184 {
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300185 struct cx88_buffer *prev;
186 prev = NULL;
187
188 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
189
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 = STATE_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);
203
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 = STATE_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;
216 }
217 prev = buf;
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
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(item,&q->active) {
227 buf = list_entry(item, struct cx88_buffer, vb.queue);
228 buf->count = q->count++;
229 }
230 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
231 return 0;
232}
233
234/* ------------------------------------------------------------------ */
235
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300236int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
237 struct cx88_buffer *buf, enum v4l2_field field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 int size = dev->ts_packet_size * dev->ts_packet_count;
240 int rc;
241
242 dprintk(1, "%s: %p\n", __FUNCTION__, buf);
243 if (0 != buf->vb.baddr && buf->vb.bsize < size)
244 return -EINVAL;
245
246 if (STATE_NEEDS_INIT == buf->vb.state) {
247 buf->vb.width = dev->ts_packet_size;
248 buf->vb.height = dev->ts_packet_count;
249 buf->vb.size = size;
Catalin Climov31629422005-11-08 21:36:17 -0800250 buf->vb.field = field /*V4L2_FIELD_TOP*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300252 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 goto fail;
254 cx88_risc_databuffer(dev->pci, &buf->risc,
255 buf->vb.dma.sglist,
256 buf->vb.width, buf->vb.height);
257 }
258 buf->vb.state = STATE_PREPARED;
259 return 0;
260
261 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300262 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return rc;
264}
265
266void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
267{
268 struct cx88_buffer *prev;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300269 struct cx88_dmaqueue *cx88q = &dev->mpegq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700271 dprintk( 1, "cx8802_buf_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* add jump to stopper */
273 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300274 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300276 if (list_empty(&cx88q->active)) {
Trent Piepho76d313b2006-04-10 09:27:08 -0300277 dprintk( 1, "queue is empty - first active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300278 list_add_tail(&buf->vb.queue,&cx88q->active);
279 cx8802_start_dma(dev, cx88q, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 buf->vb.state = STATE_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300281 buf->count = cx88q->count++;
282 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
Trent Piepho76d313b2006-04-10 09:27:08 -0300283 dprintk(1,"[%p/%d] %s - first active\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 buf, buf->vb.i, __FUNCTION__);
285
286 } else {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700287 dprintk( 1, "queue is not empty - append to active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300288 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
289 list_add_tail(&buf->vb.queue,&cx88q->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 buf->vb.state = STATE_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300291 buf->count = cx88q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700293 dprintk( 1, "[%p/%d] %s - append to active\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 buf, buf->vb.i, __FUNCTION__);
295 }
296}
297
298/* ----------------------------------------------------------- */
299
300static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
301{
302 struct cx88_dmaqueue *q = &dev->mpegq;
303 struct cx88_buffer *buf;
304 unsigned long flags;
305
306 spin_lock_irqsave(&dev->slock,flags);
307 while (!list_empty(&q->active)) {
308 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
309 list_del(&buf->vb.queue);
310 buf->vb.state = STATE_ERROR;
311 wake_up(&buf->vb.done);
312 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
313 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
314 }
315 if (restart)
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700316 {
Trent Piepho76d313b2006-04-10 09:27:08 -0300317 dprintk(1, "restarting queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 cx8802_restart_queue(dev,q);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 spin_unlock_irqrestore(&dev->slock,flags);
321}
322
323void cx8802_cancel_buffers(struct cx8802_dev *dev)
324{
325 struct cx88_dmaqueue *q = &dev->mpegq;
326
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700327 dprintk( 1, "cx8802_cancel_buffers" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 del_timer_sync(&q->timeout);
329 cx8802_stop_dma(dev);
330 do_cancel_buffers(dev,"cancel",0);
331}
332
333static void cx8802_timeout(unsigned long data)
334{
335 struct cx8802_dev *dev = (struct cx8802_dev*)data;
336
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700337 dprintk(0, "%s\n",__FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (debug)
340 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
341 cx8802_stop_dma(dev);
342 do_cancel_buffers(dev,"timeout",1);
343}
344
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700345static char *cx88_mpeg_irqs[32] = {
346 "ts_risci1", NULL, NULL, NULL,
347 "ts_risci2", NULL, NULL, NULL,
348 "ts_oflow", NULL, NULL, NULL,
349 "ts_sync", NULL, NULL, NULL,
350 "opc_err", "par_err", "rip_err", "pci_abort",
351 "ts_err?",
352};
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static void cx8802_mpeg_irq(struct cx8802_dev *dev)
355{
356 struct cx88_core *core = dev->core;
357 u32 status, mask, count;
358
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700359 dprintk( 1, "cx8802_mpeg_irq\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 status = cx_read(MO_TS_INTSTAT);
361 mask = cx_read(MO_TS_INTMSK);
362 if (0 == (status & mask))
363 return;
364
365 cx_write(MO_TS_INTSTAT, status);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (debug || (status & mask & ~0xff))
368 cx88_print_irqbits(core->name, "irq mpeg ",
369 cx88_mpeg_irqs, status, mask);
370
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]);
376 }
377
378 /* risc1 y */
379 if (status & 0x01) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700380 dprintk( 1, "wake up\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 spin_lock(&dev->slock);
382 count = cx_read(MO_TS_GPCNT);
383 cx88_wakeup(dev->core, &dev->mpegq, count);
384 spin_unlock(&dev->slock);
385 }
386
387 /* risc2 y */
388 if (status & 0x10) {
389 spin_lock(&dev->slock);
390 cx8802_restart_queue(dev,&dev->mpegq);
391 spin_unlock(&dev->slock);
392 }
393
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800394 /* other general errors */
395 if (status & 0x1f0100) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700396 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800397 spin_lock(&dev->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 cx8802_stop_dma(dev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800399 cx8802_restart_queue(dev,&dev->mpegq);
400 spin_unlock(&dev->slock);
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700404#define MAX_IRQ_LOOP 10
405
David Howells7d12e782006-10-05 14:55:46 +0100406static irqreturn_t cx8802_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct cx8802_dev *dev = dev_id;
409 struct cx88_core *core = dev->core;
410 u32 status;
411 int loop, handled = 0;
412
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700413 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 status = cx_read(MO_PCI_INTSTAT) & (core->pci_irqmask | 0x04);
415 if (0 == status)
416 goto out;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700417 dprintk( 1, "cx8802_irq\n" );
418 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
419 dprintk( 1, " status: %d\n", status );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 handled = 1;
421 cx_write(MO_PCI_INTSTAT, status);
422
423 if (status & core->pci_irqmask)
424 cx88_core_irq(core,status);
425 if (status & 0x04)
426 cx8802_mpeg_irq(dev);
427 };
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700428 if (MAX_IRQ_LOOP == loop) {
429 dprintk( 0, "clearing mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
431 core->name);
432 cx_write(MO_PCI_INTMSK,0);
433 }
434
435 out:
436 return IRQ_RETVAL(handled);
437}
438
439/* ----------------------------------------------------------- */
440/* exported stuff */
441
442int cx8802_init_common(struct cx8802_dev *dev)
443{
444 struct cx88_core *core = dev->core;
445 int err;
446
447 /* pci init */
448 if (pci_enable_device(dev->pci))
449 return -EIO;
450 pci_set_master(dev->pci);
451 if (!pci_dma_supported(dev->pci,0xffffffff)) {
452 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
453 return -EIO;
454 }
455
456 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800457 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
458 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700459 "latency: %d, mmio: 0x%llx\n", dev->core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700461 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 spin_lock_init(&dev->slock);
465
466 /* init dma queue */
467 INIT_LIST_HEAD(&dev->mpegq.active);
468 INIT_LIST_HEAD(&dev->mpegq.queued);
469 dev->mpegq.timeout.function = cx8802_timeout;
470 dev->mpegq.timeout.data = (unsigned long)dev;
471 init_timer(&dev->mpegq.timeout);
472 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
473 MO_TS_DMACNTRL,0x11,0x00);
474
475 /* get irq */
476 err = request_irq(dev->pci->irq, cx8802_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700477 IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (err < 0) {
479 printk(KERN_ERR "%s: can't get IRQ %d\n",
480 dev->core->name, dev->pci->irq);
481 return err;
482 }
483 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
484
485 /* everything worked */
486 pci_set_drvdata(dev->pci,dev);
487 return 0;
488}
489
490void cx8802_fini_common(struct cx8802_dev *dev)
491{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700492 dprintk( 2, "cx8802_fini_common\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 cx8802_stop_dma(dev);
494 pci_disable_device(dev->pci);
495
496 /* unregister stuff */
497 free_irq(dev->pci->irq, dev);
498 pci_set_drvdata(dev->pci, NULL);
499
500 /* free memory */
501 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
502}
503
504/* ----------------------------------------------------------- */
505
506int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
507{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800508 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 struct cx88_core *core = dev->core;
510
511 /* stop mpeg dma */
512 spin_lock(&dev->slock);
513 if (!list_empty(&dev->mpegq.active)) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700514 dprintk( 2, "suspend\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 printk("%s: suspend mpeg\n", core->name);
516 cx8802_stop_dma(dev);
517 del_timer(&dev->mpegq.timeout);
518 }
519 spin_unlock(&dev->slock);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* FIXME -- shutdown device */
522 cx88_shutdown(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 pci_save_state(pci_dev);
525 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
526 pci_disable_device(pci_dev);
527 dev->state.disabled = 1;
528 }
529 return 0;
530}
531
532int cx8802_resume_common(struct pci_dev *pci_dev)
533{
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700534 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700536 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700539 err=pci_enable_device(pci_dev);
540 if (err) {
541 printk(KERN_ERR "%s: can't enable device\n",
542 dev->core->name);
543 return err;
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 dev->state.disabled = 0;
546 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700547 err=pci_set_power_state(pci_dev, PCI_D0);
548 if (err) {
549 printk(KERN_ERR "%s: can't enable device\n",
550 dev->core->name);
551 pci_disable_device(pci_dev);
552 dev->state.disabled = 1;
553
554 return err;
555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 pci_restore_state(pci_dev);
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* FIXME: re-initialize hardware */
559 cx88_reset(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* restart video+vbi capture */
562 spin_lock(&dev->slock);
563 if (!list_empty(&dev->mpegq.active)) {
564 printk("%s: resume mpeg\n", core->name);
565 cx8802_restart_queue(dev,&dev->mpegq);
566 }
567 spin_unlock(&dev->slock);
568
569 return 0;
570}
571
Steven Toth6c5be742006-12-02 21:15:51 -0200572struct cx8802_dev * cx8802_get_device(struct inode *inode)
573{
574 int minor = iminor(inode);
575 struct cx8802_dev *h = NULL;
576 struct list_head *list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Steven Toth6c5be742006-12-02 21:15:51 -0200578 list_for_each(list,&cx8802_devlist) {
579 h = list_entry(list, struct cx8802_dev, devlist);
580 if (h->mpeg_dev->minor == minor)
581 return h;
582 }
583
584 return NULL;
585}
586
587struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
588{
589 struct cx8802_dev *h = NULL;
590 struct cx8802_driver *d = NULL;
591 struct list_head *list;
592 struct list_head *list2;
593
594 list_for_each(list,&cx8802_devlist) {
595 h = list_entry(list, struct cx8802_dev, devlist);
Steven Toth73438262006-10-05 21:28:24 -0300596 if (h != dev)
597 continue;
Steven Toth6c5be742006-12-02 21:15:51 -0200598
599 list_for_each(list2, &h->drvlist.devlist) {
600 d = list_entry(list2, struct cx8802_driver, devlist);
601
602 /* only unregister the correct driver type */
603 if (d->type_id == btype) {
604 return d;
605 }
606 }
607 }
608
609 return NULL;
610}
611
612/* Driver asked for hardware access. */
613int cx8802_request_acquire(struct cx8802_driver *drv)
614{
615 struct cx88_core *core = drv->core;
616
617 /* Fail a request for hardware if the device is busy. */
618 if (core->active_type_id != CX88_BOARD_NONE)
619 return -EBUSY;
620
621 if (drv->advise_acquire)
622 {
623 core->active_type_id = drv->type_id;
624 drv->advise_acquire(drv);
625
626 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __FUNCTION__, cx_read(MO_GP0_IO));
627 }
628
629 return 0;
630}
631
632/* Driver asked to release hardware. */
633int cx8802_request_release(struct cx8802_driver *drv)
634{
635 struct cx88_core *core = drv->core;
636
637 if (drv->advise_release)
638 {
639 drv->advise_release(drv);
640 core->active_type_id = CX88_BOARD_NONE;
641 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __FUNCTION__, cx_read(MO_GP0_IO));
642 }
643
644 return 0;
645}
646
647static int cx8802_check_driver(struct cx8802_driver *drv)
648{
649 if (drv == NULL)
650 return -ENODEV;
651
652 if ((drv->type_id != CX88_MPEG_DVB) &&
653 (drv->type_id != CX88_MPEG_BLACKBIRD))
654 return -EINVAL;
655
656 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
657 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
658 return -EINVAL;
659
660 if ((drv->probe == NULL) ||
661 (drv->remove == NULL) ||
662 (drv->advise_acquire == NULL) ||
663 (drv->advise_release == NULL))
664 return -EINVAL;
665
666 return 0;
667}
668
669int cx8802_register_driver(struct cx8802_driver *drv)
670{
671 struct cx8802_dev *h;
672 struct cx8802_driver *driver;
673 struct list_head *list;
674 int err = 0, i = 0;
675
676 printk(KERN_INFO "%s() ->registering driver type=%s access=%s\n", __FUNCTION__ ,
677 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
678 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
679
680 if ((err = cx8802_check_driver(drv)) != 0) {
681 printk(KERN_INFO "%s() cx8802_driver is invalid\n", __FUNCTION__ );
682 return err;
683 }
684
685 list_for_each(list,&cx8802_devlist) {
Steven Toth6c5be742006-12-02 21:15:51 -0200686 h = list_entry(list, struct cx8802_dev, devlist);
687
688 printk(KERN_INFO "CORE %s: subsystem: %04x:%04x, board: %s [card=%d]\n",
689 h->core->name,h->pci->subsystem_vendor,
690 h->pci->subsystem_device,cx88_boards[h->core->board].name,
691 h->core->board);
692
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);
710 list_add_tail(&driver->devlist,&h->drvlist.devlist);
711 mutex_unlock(&drv->core->lock);
712 } else {
713 printk(KERN_ERR "%s() ->probe failed err = %d\n", __FUNCTION__, err);
714 }
715
716 }
717 if (i == 0)
718 err = -ENODEV;
Steven Toth019391e42006-10-06 21:29:25 -0300719 else
720 err = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200721
722 return err;
723}
724
725int cx8802_unregister_driver(struct cx8802_driver *drv)
726{
727 struct cx8802_dev *h;
728 struct cx8802_driver *d;
729 struct list_head *list;
730 struct list_head *list2, *q;
731 int err = 0, i = 0;
732
733 printk(KERN_INFO "%s() ->unregistering driver type=%s\n", __FUNCTION__ ,
734 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird");
735
736 list_for_each(list,&cx8802_devlist) {
737 i++;
738 h = list_entry(list, struct cx8802_dev, devlist);
739
740 printk(KERN_INFO "CORE %s: subsystem: %04x:%04x, board: %s [card=%d]\n",
741 h->core->name,h->pci->subsystem_vendor,
742 h->pci->subsystem_device,cx88_boards[h->core->board].name,
743 h->core->board);
744
745 list_for_each_safe(list2, q, &h->drvlist.devlist) {
746 d = list_entry(list2, struct cx8802_driver, devlist);
747
748 /* only unregister the correct driver type */
749 if (d->type_id != drv->type_id)
750 continue;
751
752 err = d->remove(d);
753 if (err == 0) {
754 mutex_lock(&drv->core->lock);
755 list_del(list2);
756 mutex_unlock(&drv->core->lock);
757 } else
758 printk(KERN_ERR "%s() ->remove failed err = %d\n", __FUNCTION__, err);
759
760 }
761
762 }
763
764 return err;
765}
766
767/* ----------------------------------------------------------- */
768static int __devinit cx8802_probe(struct pci_dev *pci_dev,
769 const struct pci_device_id *pci_id)
770{
771 struct cx8802_dev *dev;
772 struct cx88_core *core;
773 int err;
774
775 /* general setup */
776 core = cx88_core_get(pci_dev);
777 if (NULL == core)
778 return -EINVAL;
779
780 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
781
782 err = -ENODEV;
783 if (!cx88_boards[core->board].mpeg)
784 goto fail_core;
785
786 err = -ENOMEM;
787 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
788 if (NULL == dev)
789 goto fail_core;
790 dev->pci = pci_dev;
791 dev->core = core;
792
793 err = cx8802_init_common(dev);
794 if (err != 0)
795 goto fail_free;
796
797 INIT_LIST_HEAD(&dev->drvlist.devlist);
798 list_add_tail(&dev->devlist,&cx8802_devlist);
799
800 /* Maintain a reference so cx88-video can query the 8802 device. */
801 core->dvbdev = dev;
Markus Rechberger77b74772007-04-27 12:31:06 -0300802
803 /* now autoload cx88-dvb or cx88-blackbird */
804 request_modules(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200805 return 0;
806
807 fail_free:
808 kfree(dev);
809 fail_core:
810 cx88_core_put(core,pci_dev);
811 return err;
812}
813
814static void __devexit cx8802_remove(struct pci_dev *pci_dev)
815{
816 struct cx8802_dev *dev;
817 struct cx8802_driver *h;
818 struct list_head *list;
819
820 dev = pci_get_drvdata(pci_dev);
821
822 dprintk( 1, "%s\n", __FUNCTION__);
823
824 list_for_each(list,&dev->drvlist.devlist) {
825 h = list_entry(list, struct cx8802_driver, devlist);
826 dprintk( 1, " ->driver\n");
827 if (h->remove == NULL) {
828 printk(KERN_ERR "%s .. skipping driver, no probe function\n", __FUNCTION__);
829 continue;
830 }
831 printk(KERN_INFO "%s .. Removing driver type %d\n", __FUNCTION__, h->type_id);
832 cx8802_unregister_driver(h);
833 list_del(&dev->drvlist.devlist);
834 }
835
836 /* Destroy any 8802 reference. */
837 dev->core->dvbdev = NULL;
838
839 /* common */
840 cx8802_fini_common(dev);
841 cx88_core_put(dev->core,dev->pci);
842 kfree(dev);
843}
844
845static struct pci_device_id cx8802_pci_tbl[] = {
846 {
847 .vendor = 0x14f1,
848 .device = 0x8802,
849 .subvendor = PCI_ANY_ID,
850 .subdevice = PCI_ANY_ID,
851 },{
852 /* --- end of list --- */
853 }
854};
855MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
856
857static struct pci_driver cx8802_pci_driver = {
858 .name = "cx88-mpeg driver manager",
859 .id_table = cx8802_pci_tbl,
860 .probe = cx8802_probe,
861 .remove = __devexit_p(cx8802_remove),
862};
863
864static int cx8802_init(void)
865{
866 printk(KERN_INFO "cx2388x cx88-mpeg Driver Manager version %d.%d.%d loaded\n",
867 (CX88_VERSION_CODE >> 16) & 0xff,
868 (CX88_VERSION_CODE >> 8) & 0xff,
869 CX88_VERSION_CODE & 0xff);
870#ifdef SNAPSHOT
871 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
872 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
873#endif
874 return pci_register_driver(&cx8802_pci_driver);
875}
876
877static void cx8802_fini(void)
878{
879 pci_unregister_driver(&cx8802_pci_driver);
880}
881
882module_init(cx8802_init);
883module_exit(cx8802_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884EXPORT_SYMBOL(cx8802_buf_prepare);
885EXPORT_SYMBOL(cx8802_buf_queue);
886EXPORT_SYMBOL(cx8802_cancel_buffers);
887
888EXPORT_SYMBOL(cx8802_init_common);
889EXPORT_SYMBOL(cx8802_fini_common);
890
Steven Toth6c5be742006-12-02 21:15:51 -0200891EXPORT_SYMBOL(cx8802_register_driver);
892EXPORT_SYMBOL(cx8802_unregister_driver);
893EXPORT_SYMBOL(cx8802_get_device);
894EXPORT_SYMBOL(cx8802_get_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/* ----------------------------------------------------------- */
896/*
897 * Local variables:
898 * c-basic-offset: 8
899 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700900 * 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 -0700901 */