[PATCH] net: ne2k.c won't compile if pci_clone_list is const
[deliverable/linux.git] / drivers / media / video / cx88 / cx88-mpeg.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
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) \
47 printk(KERN_DEBUG "%s/2: " fmt, dev->core->name , ## arg)
48
49/* ------------------------------------------------------------------ */
50
51static int cx8802_start_dma(struct cx8802_dev *dev,
52 struct cx88_dmaqueue *q,
53 struct cx88_buffer *buf)
54{
55 struct cx88_core *core = dev->core;
56
31629424 57 dprintk(0, "cx8802_start_dma w: %d, h: %d, f: %d\n", dev->width, dev->height, buf->vb.field);
1da177e4
LT
58
59 /* setup fifo + format */
60 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
61 dev->ts_packet_size, buf->risc.dma);
62
63 /* write TS length to chip */
64 cx_write(MO_TS_LNGTH, buf->vb.width);
65
1da177e4
LT
66 /* FIXME: this needs a review.
67 * also: move to cx88-blackbird + cx88-dvb source files? */
68
69 if (cx88_boards[core->board].dvb) {
70 /* negedge driven & software reset */
f1798495 71 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
1da177e4
LT
72 udelay(100);
73 cx_write(MO_PINMUX_IO, 0x00);
0d723c09 74 cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01);
e52e98a7
MCC
75 switch (core->board) {
76 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
77 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
78 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
41ef7c1e 79 cx_write(TS_SOP_STAT, 1<<13);
e52e98a7 80 break;
0fa14aa6
ST
81 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
82 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
83 cx_write(MO_PINMUX_IO, 0x88); /* Enable MPEG parallel IO and video signal pins */
84 udelay(100);
85 break;
e52e98a7 86 default:
41ef7c1e 87 cx_write(TS_SOP_STAT, 0x00);
e52e98a7 88 break;
f1798495 89 }
1da177e4
LT
90 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
91 udelay(100);
92 }
93
94 if (cx88_boards[core->board].blackbird) {
95 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
96
1da177e4
LT
97 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
98 udelay(100);
99
100 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
1da177e4
LT
101 cx_write(TS_VALERR_CNTRL, 0x2000);
102
103 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
104 udelay(100);
105 }
1da177e4
LT
106
107 /* reset counter */
108 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
109 q->count = 1;
110
111 /* enable irqs */
b45009b0 112 dprintk( 0, "setting the interrupt mask\n" );
1da177e4 113 cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x04);
b45009b0 114 cx_set(MO_TS_INTMSK, 0x1f0011);
1da177e4
LT
115
116 /* start dma */
b45009b0
MCC
117 cx_set(MO_DEV_CNTRL2, (1<<5));
118 cx_set(MO_TS_DMACNTRL, 0x11);
1da177e4
LT
119 return 0;
120}
121
122static int cx8802_stop_dma(struct cx8802_dev *dev)
123{
124 struct cx88_core *core = dev->core;
b45009b0 125 dprintk( 0, "cx8802_stop_dma\n" );
1da177e4
LT
126
127 /* stop dma */
128 cx_clear(MO_TS_DMACNTRL, 0x11);
129
130 /* disable irqs */
131 cx_clear(MO_PCI_INTMSK, 0x000004);
132 cx_clear(MO_TS_INTMSK, 0x1f0011);
133
134 /* Reset the controller */
135 cx_write(TS_GEN_CNTRL, 0xcd);
136 return 0;
137}
138
139static int cx8802_restart_queue(struct cx8802_dev *dev,
140 struct cx88_dmaqueue *q)
141{
142 struct cx88_buffer *buf;
143 struct list_head *item;
144
b45009b0 145 dprintk( 0, "cx8802_restart_queue\n" );
1da177e4 146 if (list_empty(&q->active))
b45009b0
MCC
147 {
148 dprintk( 0, "cx8802_restart_queue: queue is empty\n" );
1da177e4 149 return 0;
b45009b0 150 }
1da177e4
LT
151
152 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
153 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
154 buf, buf->vb.i);
155 cx8802_start_dma(dev, q, buf);
156 list_for_each(item,&q->active) {
157 buf = list_entry(item, struct cx88_buffer, vb.queue);
158 buf->count = q->count++;
159 }
160 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
161 return 0;
162}
163
164/* ------------------------------------------------------------------ */
165
31629424
CC
166int cx8802_buf_prepare(struct cx8802_dev *dev, struct cx88_buffer *buf,
167 enum v4l2_field field)
1da177e4
LT
168{
169 int size = dev->ts_packet_size * dev->ts_packet_count;
170 int rc;
171
172 dprintk(1, "%s: %p\n", __FUNCTION__, buf);
173 if (0 != buf->vb.baddr && buf->vb.bsize < size)
174 return -EINVAL;
175
176 if (STATE_NEEDS_INIT == buf->vb.state) {
177 buf->vb.width = dev->ts_packet_size;
178 buf->vb.height = dev->ts_packet_count;
179 buf->vb.size = size;
31629424 180 buf->vb.field = field /*V4L2_FIELD_TOP*/;
1da177e4
LT
181
182 if (0 != (rc = videobuf_iolock(dev->pci,&buf->vb,NULL)))
183 goto fail;
184 cx88_risc_databuffer(dev->pci, &buf->risc,
185 buf->vb.dma.sglist,
186 buf->vb.width, buf->vb.height);
187 }
188 buf->vb.state = STATE_PREPARED;
189 return 0;
190
191 fail:
192 cx88_free_buffer(dev->pci,buf);
193 return rc;
194}
195
196void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
197{
198 struct cx88_buffer *prev;
199 struct cx88_dmaqueue *q = &dev->mpegq;
200
b45009b0 201 dprintk( 1, "cx8802_buf_queue\n" );
1da177e4
LT
202 /* add jump to stopper */
203 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
204 buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
205
206 if (list_empty(&q->active)) {
b45009b0 207 dprintk( 0, "queue is empty - first active\n" );
1da177e4
LT
208 list_add_tail(&buf->vb.queue,&q->active);
209 cx8802_start_dma(dev, q, buf);
210 buf->vb.state = STATE_ACTIVE;
211 buf->count = q->count++;
212 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
b45009b0 213 dprintk(0,"[%p/%d] %s - first active\n",
1da177e4
LT
214 buf, buf->vb.i, __FUNCTION__);
215
216 } else {
b45009b0 217 dprintk( 1, "queue is not empty - append to active\n" );
1da177e4
LT
218 prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
219 list_add_tail(&buf->vb.queue,&q->active);
220 buf->vb.state = STATE_ACTIVE;
221 buf->count = q->count++;
222 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
b45009b0 223 dprintk( 1, "[%p/%d] %s - append to active\n",
1da177e4
LT
224 buf, buf->vb.i, __FUNCTION__);
225 }
226}
227
228/* ----------------------------------------------------------- */
229
230static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
231{
232 struct cx88_dmaqueue *q = &dev->mpegq;
233 struct cx88_buffer *buf;
234 unsigned long flags;
235
236 spin_lock_irqsave(&dev->slock,flags);
237 while (!list_empty(&q->active)) {
238 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
239 list_del(&buf->vb.queue);
240 buf->vb.state = STATE_ERROR;
241 wake_up(&buf->vb.done);
242 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
243 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
244 }
245 if (restart)
b45009b0
MCC
246 {
247 dprintk(0, "restarting queue\n" );
1da177e4 248 cx8802_restart_queue(dev,q);
b45009b0 249 }
1da177e4
LT
250 spin_unlock_irqrestore(&dev->slock,flags);
251}
252
253void cx8802_cancel_buffers(struct cx8802_dev *dev)
254{
255 struct cx88_dmaqueue *q = &dev->mpegq;
256
b45009b0 257 dprintk( 1, "cx8802_cancel_buffers" );
1da177e4
LT
258 del_timer_sync(&q->timeout);
259 cx8802_stop_dma(dev);
260 do_cancel_buffers(dev,"cancel",0);
261}
262
263static void cx8802_timeout(unsigned long data)
264{
265 struct cx8802_dev *dev = (struct cx8802_dev*)data;
266
b45009b0 267 dprintk(0, "%s\n",__FUNCTION__);
1da177e4
LT
268
269 if (debug)
270 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
271 cx8802_stop_dma(dev);
272 do_cancel_buffers(dev,"timeout",1);
273}
274
41ef7c1e
MCC
275static char *cx88_mpeg_irqs[32] = {
276 "ts_risci1", NULL, NULL, NULL,
277 "ts_risci2", NULL, NULL, NULL,
278 "ts_oflow", NULL, NULL, NULL,
279 "ts_sync", NULL, NULL, NULL,
280 "opc_err", "par_err", "rip_err", "pci_abort",
281 "ts_err?",
282};
283
1da177e4
LT
284static void cx8802_mpeg_irq(struct cx8802_dev *dev)
285{
286 struct cx88_core *core = dev->core;
287 u32 status, mask, count;
288
b45009b0 289 dprintk( 1, "cx8802_mpeg_irq\n" );
1da177e4
LT
290 status = cx_read(MO_TS_INTSTAT);
291 mask = cx_read(MO_TS_INTMSK);
292 if (0 == (status & mask))
293 return;
294
295 cx_write(MO_TS_INTSTAT, status);
41ef7c1e 296
1da177e4
LT
297 if (debug || (status & mask & ~0xff))
298 cx88_print_irqbits(core->name, "irq mpeg ",
299 cx88_mpeg_irqs, status, mask);
300
301 /* risc op code error */
302 if (status & (1 << 16)) {
303 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
304 cx_clear(MO_TS_DMACNTRL, 0x11);
305 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
306 }
307
308 /* risc1 y */
309 if (status & 0x01) {
b45009b0 310 dprintk( 1, "wake up\n" );
1da177e4
LT
311 spin_lock(&dev->slock);
312 count = cx_read(MO_TS_GPCNT);
313 cx88_wakeup(dev->core, &dev->mpegq, count);
314 spin_unlock(&dev->slock);
315 }
316
317 /* risc2 y */
318 if (status & 0x10) {
319 spin_lock(&dev->slock);
320 cx8802_restart_queue(dev,&dev->mpegq);
321 spin_unlock(&dev->slock);
322 }
323
4ac97914
MCC
324 /* other general errors */
325 if (status & 0x1f0100) {
b45009b0 326 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
4ac97914 327 spin_lock(&dev->slock);
1da177e4 328 cx8802_stop_dma(dev);
4ac97914
MCC
329 cx8802_restart_queue(dev,&dev->mpegq);
330 spin_unlock(&dev->slock);
331 }
1da177e4
LT
332}
333
b45009b0
MCC
334#define MAX_IRQ_LOOP 10
335
1da177e4
LT
336static irqreturn_t cx8802_irq(int irq, void *dev_id, struct pt_regs *regs)
337{
338 struct cx8802_dev *dev = dev_id;
339 struct cx88_core *core = dev->core;
340 u32 status;
341 int loop, handled = 0;
342
b45009b0 343 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
1da177e4
LT
344 status = cx_read(MO_PCI_INTSTAT) & (core->pci_irqmask | 0x04);
345 if (0 == status)
346 goto out;
b45009b0
MCC
347 dprintk( 1, "cx8802_irq\n" );
348 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
349 dprintk( 1, " status: %d\n", status );
1da177e4
LT
350 handled = 1;
351 cx_write(MO_PCI_INTSTAT, status);
352
353 if (status & core->pci_irqmask)
354 cx88_core_irq(core,status);
355 if (status & 0x04)
356 cx8802_mpeg_irq(dev);
357 };
b45009b0
MCC
358 if (MAX_IRQ_LOOP == loop) {
359 dprintk( 0, "clearing mask\n" );
1da177e4
LT
360 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
361 core->name);
362 cx_write(MO_PCI_INTMSK,0);
363 }
364
365 out:
366 return IRQ_RETVAL(handled);
367}
368
369/* ----------------------------------------------------------- */
370/* exported stuff */
371
372int cx8802_init_common(struct cx8802_dev *dev)
373{
374 struct cx88_core *core = dev->core;
375 int err;
376
377 /* pci init */
378 if (pci_enable_device(dev->pci))
379 return -EIO;
380 pci_set_master(dev->pci);
381 if (!pci_dma_supported(dev->pci,0xffffffff)) {
382 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
383 return -EIO;
384 }
385
386 pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
4ac97914
MCC
387 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
388 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
1da177e4
LT
389 "latency: %d, mmio: 0x%lx\n", dev->core->name,
390 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
391 dev->pci_lat,pci_resource_start(dev->pci,0));
392
393 /* initialize driver struct */
1da177e4
LT
394 spin_lock_init(&dev->slock);
395
396 /* init dma queue */
397 INIT_LIST_HEAD(&dev->mpegq.active);
398 INIT_LIST_HEAD(&dev->mpegq.queued);
399 dev->mpegq.timeout.function = cx8802_timeout;
400 dev->mpegq.timeout.data = (unsigned long)dev;
401 init_timer(&dev->mpegq.timeout);
402 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
403 MO_TS_DMACNTRL,0x11,0x00);
404
405 /* get irq */
406 err = request_irq(dev->pci->irq, cx8802_irq,
407 SA_SHIRQ | SA_INTERRUPT, dev->core->name, dev);
408 if (err < 0) {
409 printk(KERN_ERR "%s: can't get IRQ %d\n",
410 dev->core->name, dev->pci->irq);
411 return err;
412 }
413 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
414
415 /* everything worked */
416 pci_set_drvdata(dev->pci,dev);
417 return 0;
418}
419
420void cx8802_fini_common(struct cx8802_dev *dev)
421{
b45009b0 422 dprintk( 2, "cx8802_fini_common\n" );
1da177e4
LT
423 cx8802_stop_dma(dev);
424 pci_disable_device(dev->pci);
425
426 /* unregister stuff */
427 free_irq(dev->pci->irq, dev);
428 pci_set_drvdata(dev->pci, NULL);
429
430 /* free memory */
431 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
432}
433
434/* ----------------------------------------------------------- */
435
436int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
437{
4ac97914 438 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
1da177e4
LT
439 struct cx88_core *core = dev->core;
440
441 /* stop mpeg dma */
442 spin_lock(&dev->slock);
443 if (!list_empty(&dev->mpegq.active)) {
b45009b0 444 dprintk( 2, "suspend\n" );
1da177e4
LT
445 printk("%s: suspend mpeg\n", core->name);
446 cx8802_stop_dma(dev);
447 del_timer(&dev->mpegq.timeout);
448 }
449 spin_unlock(&dev->slock);
450
1da177e4
LT
451 /* FIXME -- shutdown device */
452 cx88_shutdown(dev->core);
1da177e4
LT
453
454 pci_save_state(pci_dev);
455 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
456 pci_disable_device(pci_dev);
457 dev->state.disabled = 1;
458 }
459 return 0;
460}
461
462int cx8802_resume_common(struct pci_dev *pci_dev)
463{
08adb9e2 464 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
1da177e4 465 struct cx88_core *core = dev->core;
08adb9e2 466 int err;
1da177e4
LT
467
468 if (dev->state.disabled) {
08adb9e2
MCC
469 err=pci_enable_device(pci_dev);
470 if (err) {
471 printk(KERN_ERR "%s: can't enable device\n",
472 dev->core->name);
473 return err;
474 }
1da177e4
LT
475 dev->state.disabled = 0;
476 }
08adb9e2
MCC
477 err=pci_set_power_state(pci_dev, PCI_D0);
478 if (err) {
479 printk(KERN_ERR "%s: can't enable device\n",
480 dev->core->name);
481 pci_disable_device(pci_dev);
482 dev->state.disabled = 1;
483
484 return err;
485 }
1da177e4
LT
486 pci_restore_state(pci_dev);
487
1da177e4
LT
488 /* FIXME: re-initialize hardware */
489 cx88_reset(dev->core);
1da177e4
LT
490
491 /* restart video+vbi capture */
492 spin_lock(&dev->slock);
493 if (!list_empty(&dev->mpegq.active)) {
494 printk("%s: resume mpeg\n", core->name);
495 cx8802_restart_queue(dev,&dev->mpegq);
496 }
497 spin_unlock(&dev->slock);
498
499 return 0;
500}
501
502/* ----------------------------------------------------------- */
503
504EXPORT_SYMBOL(cx8802_buf_prepare);
505EXPORT_SYMBOL(cx8802_buf_queue);
506EXPORT_SYMBOL(cx8802_cancel_buffers);
507
508EXPORT_SYMBOL(cx8802_init_common);
509EXPORT_SYMBOL(cx8802_fini_common);
510
511EXPORT_SYMBOL(cx8802_suspend_common);
512EXPORT_SYMBOL(cx8802_resume_common);
513
514/* ----------------------------------------------------------- */
515/*
516 * Local variables:
517 * c-basic-offset: 8
518 * End:
b45009b0 519 * 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
1da177e4 520 */
This page took 0.14724 seconds and 5 git commands to generate.