]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/media/pci/cx88/cx88-mpeg.c
[media] cx88: drop cx88_free_buffer
[mirror_ubuntu-focal-kernel.git] / drivers / media / pci / 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 *
f8de18d4 6 * (c) 2004 Jelle Foks <jelle@foks.us>
1da177e4
LT
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>
5a0e3ad6 26#include <linux/slab.h>
1da177e4
LT
27#include <linux/init.h>
28#include <linux/device.h>
c24228da 29#include <linux/dma-mapping.h>
1da177e4
LT
30#include <linux/interrupt.h>
31#include <asm/delay.h>
32
33#include "cx88.h"
34
35/* ------------------------------------------------------------------ */
36
37MODULE_DESCRIPTION("mpeg driver for cx2388x based TV cards");
f8de18d4 38MODULE_AUTHOR("Jelle Foks <jelle@foks.us>");
1da177e4
LT
39MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
40MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
41MODULE_LICENSE("GPL");
1990d50b 42MODULE_VERSION(CX88_VERSION);
1da177e4 43
ff699e6b 44static unsigned int debug;
1da177e4
LT
45module_param(debug,int,0644);
46MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
47
db613710
MCC
48#define dprintk(level, fmt, arg...) do { \
49 if (debug + 1 > level) \
50 printk(KERN_DEBUG "%s/2-mpeg: " fmt, dev->core->name, ## arg); \
51} while(0)
1da177e4 52
db613710
MCC
53#define mpeg_dbg(level, fmt, arg...) do { \
54 if (debug + 1 > level) \
55 printk(KERN_DEBUG "%s/2-mpeg: " fmt, core->name, ## arg); \
56} while(0)
6c5be74c 57
77b74774
MR
58#if defined(CONFIG_MODULES) && defined(MODULE)
59static void request_module_async(struct work_struct *work)
60{
61 struct cx8802_dev *dev=container_of(work, struct cx8802_dev, request_module_wk);
ced80c67 62
6a59d64c 63 if (dev->core->board.mpeg & CX88_MPEG_DVB)
77b74774 64 request_module("cx88-dvb");
6a59d64c 65 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD)
ced80c67 66 request_module("cx88-blackbird");
77b74774
MR
67}
68
69static void request_modules(struct cx8802_dev *dev)
70{
71 INIT_WORK(&dev->request_module_wk, request_module_async);
72 schedule_work(&dev->request_module_wk);
73}
707bcf32
TH
74
75static void flush_request_modules(struct cx8802_dev *dev)
76{
43829731 77 flush_work(&dev->request_module_wk);
707bcf32 78}
77b74774
MR
79#else
80#define request_modules(dev)
707bcf32 81#define flush_request_modules(dev)
77b74774
MR
82#endif /* CONFIG_MODULES */
83
84
6c5be74c 85static LIST_HEAD(cx8802_devlist);
344d6c6b 86static DEFINE_MUTEX(cx8802_mutex);
1da177e4
LT
87/* ------------------------------------------------------------------ */
88
0b6b6302 89int cx8802_start_dma(struct cx8802_dev *dev,
1da177e4
LT
90 struct cx88_dmaqueue *q,
91 struct cx88_buffer *buf)
92{
93 struct cx88_core *core = dev->core;
94
7717cbed 95 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n",
0b6b6302 96 dev->width, dev->height, dev->field);
1da177e4
LT
97
98 /* setup fifo + format */
99 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
100 dev->ts_packet_size, buf->risc.dma);
101
102 /* write TS length to chip */
0b6b6302 103 cx_write(MO_TS_LNGTH, dev->ts_packet_size);
1da177e4 104
1da177e4
LT
105 /* FIXME: this needs a review.
106 * also: move to cx88-blackbird + cx88-dvb source files? */
107
6c5be74c
ST
108 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id);
109
110 if ( (core->active_type_id == CX88_MPEG_DVB) &&
6a59d64c 111 (core->board.mpeg & CX88_MPEG_DVB) ) {
6c5be74c
ST
112
113 dprintk( 1, "cx8802_start_dma doing .dvb\n");
1da177e4 114 /* negedge driven & software reset */
f1798495 115 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
1da177e4
LT
116 udelay(100);
117 cx_write(MO_PINMUX_IO, 0x00);
60464da8 118 cx_write(TS_HW_SOP_CNTRL, 0x47<<16|188<<4|0x01);
6a59d64c 119 switch (core->boardnr) {
e52e98a7
MCC
120 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
121 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
122 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
da215d22 123 case CX88_BOARD_PCHDTV_HD5500:
41ef7c1e 124 cx_write(TS_SOP_STAT, 1<<13);
e52e98a7 125 break;
4f3ca2f1
DH
126 case CX88_BOARD_SAMSUNG_SMT_7020:
127 cx_write(TS_SOP_STAT, 0x00);
128 break;
0fa14aa6
ST
129 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
130 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
131 cx_write(MO_PINMUX_IO, 0x88); /* Enable MPEG parallel IO and video signal pins */
132 udelay(100);
133 break;
6c5be74c 134 case CX88_BOARD_HAUPPAUGE_HVR1300:
337ab6d3
SS
135 /* Enable MPEG parallel IO and video signal pins */
136 cx_write(MO_PINMUX_IO, 0x88);
137 cx_write(TS_SOP_STAT, 0);
138 cx_write(TS_VALERR_CNTRL, 0);
6c5be74c 139 break;
60464da8 140 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
4917019d
ST
141 /* Enable MPEG parallel IO and video signal pins */
142 cx_write(MO_PINMUX_IO, 0x88);
143 cx_write(TS_HW_SOP_CNTRL, (0x47 << 16) | (188 << 4));
144 dev->ts_gen_cntrl = 5;
145 cx_write(TS_SOP_STAT, 0);
146 cx_write(TS_VALERR_CNTRL, 0);
60464da8
ST
147 udelay(100);
148 break;
e52e98a7 149 default:
41ef7c1e 150 cx_write(TS_SOP_STAT, 0x00);
e52e98a7 151 break;
f1798495 152 }
1da177e4
LT
153 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
154 udelay(100);
6c5be74c 155 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
6a59d64c 156 (core->board.mpeg & CX88_MPEG_BLACKBIRD) ) {
6c5be74c 157 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
1da177e4
LT
158 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
159
1da177e4
LT
160 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
161 udelay(100);
162
163 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
1da177e4
LT
164 cx_write(TS_VALERR_CNTRL, 0x2000);
165
166 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
167 udelay(100);
6c5be74c 168 } else {
32d83efc 169 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __func__,
6a59d64c 170 core->board.mpeg );
6c5be74c 171 return -EINVAL;
1da177e4 172 }
1da177e4
LT
173
174 /* reset counter */
175 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
176 q->count = 1;
177
178 /* enable irqs */
76d313bf 179 dprintk( 1, "setting the interrupt mask\n" );
8ddac9ee 180 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
b45009b0 181 cx_set(MO_TS_INTMSK, 0x1f0011);
1da177e4
LT
182
183 /* start dma */
b45009b0
MCC
184 cx_set(MO_DEV_CNTRL2, (1<<5));
185 cx_set(MO_TS_DMACNTRL, 0x11);
1da177e4
LT
186 return 0;
187}
188
189static int cx8802_stop_dma(struct cx8802_dev *dev)
190{
191 struct cx88_core *core = dev->core;
76d313bf 192 dprintk( 1, "cx8802_stop_dma\n" );
1da177e4
LT
193
194 /* stop dma */
195 cx_clear(MO_TS_DMACNTRL, 0x11);
196
197 /* disable irqs */
8ddac9ee 198 cx_clear(MO_PCI_INTMSK, PCI_INT_TSINT);
1da177e4
LT
199 cx_clear(MO_TS_INTMSK, 0x1f0011);
200
201 /* Reset the controller */
202 cx_write(TS_GEN_CNTRL, 0xcd);
203 return 0;
204}
205
206static int cx8802_restart_queue(struct cx8802_dev *dev,
207 struct cx88_dmaqueue *q)
208{
209 struct cx88_buffer *buf;
1da177e4 210
b930e1d8 211 dprintk( 1, "cx8802_restart_queue\n" );
1da177e4
LT
212 if (list_empty(&q->active))
213 return 0;
214
0b6b6302 215 buf = list_entry(q->active.next, struct cx88_buffer, list);
1da177e4 216 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
0b6b6302 217 buf, buf->vb.v4l2_buf.index);
1da177e4 218 cx8802_start_dma(dev, q, buf);
0b6b6302 219 list_for_each_entry(buf, &q->active, list)
1da177e4 220 buf->count = q->count++;
1da177e4
LT
221 return 0;
222}
223
224/* ------------------------------------------------------------------ */
225
0b6b6302 226int cx8802_buf_prepare(struct vb2_queue *q, struct cx8802_dev *dev,
c7b0ac05 227 struct cx88_buffer *buf, enum v4l2_field field)
1da177e4
LT
228{
229 int size = dev->ts_packet_size * dev->ts_packet_count;
0b6b6302 230 struct sg_table *sgt = vb2_dma_sg_plane_desc(&buf->vb, 0);
1da177e4
LT
231 int rc;
232
0b6b6302 233 if (vb2_plane_size(&buf->vb, 0) < size)
1da177e4 234 return -EINVAL;
0b6b6302 235 vb2_set_plane_payload(&buf->vb, 0, size);
1da177e4 236
0b6b6302
HV
237 rc = dma_map_sg(&dev->pci->dev, sgt->sgl, sgt->nents, DMA_FROM_DEVICE);
238 if (!rc)
239 return -EIO;
1da177e4 240
999b3ceb 241 rc = cx88_risc_databuffer(dev->pci, &buf->risc, sgt->sgl,
0b6b6302 242 dev->ts_packet_size, dev->ts_packet_count, 0);
999b3ceb
HV
243 if (rc) {
244 btcx_riscmem_free(dev->pci, &buf->risc);
245 return rc;
246 }
0b6b6302 247 return 0;
1da177e4
LT
248}
249
250void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
251{
252 struct cx88_buffer *prev;
c7b0ac05 253 struct cx88_dmaqueue *cx88q = &dev->mpegq;
1da177e4 254
b45009b0 255 dprintk( 1, "cx8802_buf_queue\n" );
0b6b6302
HV
256 /* add jump to start */
257 buf->risc.cpu[1] = cpu_to_le32(buf->risc.dma + 8);
258 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_CNT_INC);
259 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma + 8);
1da177e4 260
c7b0ac05 261 if (list_empty(&cx88q->active)) {
76d313bf 262 dprintk( 1, "queue is empty - first active\n" );
0b6b6302 263 list_add_tail(&buf->list, &cx88q->active);
c7b0ac05 264 buf->count = cx88q->count++;
76d313bf 265 dprintk(1,"[%p/%d] %s - first active\n",
0b6b6302 266 buf, buf->vb.v4l2_buf.index, __func__);
1da177e4
LT
267
268 } else {
0b6b6302 269 buf->risc.cpu[0] |= cpu_to_le32(RISC_IRQ1);
b45009b0 270 dprintk( 1, "queue is not empty - append to active\n" );
0b6b6302
HV
271 prev = list_entry(cx88q->active.prev, struct cx88_buffer, list);
272 list_add_tail(&buf->list, &cx88q->active);
c7b0ac05 273 buf->count = cx88q->count++;
1da177e4 274 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
b45009b0 275 dprintk( 1, "[%p/%d] %s - append to active\n",
0b6b6302 276 buf, buf->vb.v4l2_buf.index, __func__);
1da177e4
LT
277 }
278}
279
280/* ----------------------------------------------------------- */
281
0b6b6302 282static void do_cancel_buffers(struct cx8802_dev *dev)
1da177e4
LT
283{
284 struct cx88_dmaqueue *q = &dev->mpegq;
285 struct cx88_buffer *buf;
286 unsigned long flags;
287
288 spin_lock_irqsave(&dev->slock,flags);
289 while (!list_empty(&q->active)) {
0b6b6302
HV
290 buf = list_entry(q->active.next, struct cx88_buffer, list);
291 list_del(&buf->list);
292 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
b45009b0 293 }
1da177e4
LT
294 spin_unlock_irqrestore(&dev->slock,flags);
295}
296
297void cx8802_cancel_buffers(struct cx8802_dev *dev)
298{
b45009b0 299 dprintk( 1, "cx8802_cancel_buffers" );
1da177e4 300 cx8802_stop_dma(dev);
0b6b6302 301 do_cancel_buffers(dev);
1da177e4
LT
302}
303
2e4e98e7 304static const char * cx88_mpeg_irqs[32] = {
41ef7c1e
MCC
305 "ts_risci1", NULL, NULL, NULL,
306 "ts_risci2", NULL, NULL, NULL,
307 "ts_oflow", NULL, NULL, NULL,
308 "ts_sync", NULL, NULL, NULL,
309 "opc_err", "par_err", "rip_err", "pci_abort",
310 "ts_err?",
311};
312
1da177e4
LT
313static void cx8802_mpeg_irq(struct cx8802_dev *dev)
314{
315 struct cx88_core *core = dev->core;
316 u32 status, mask, count;
317
b45009b0 318 dprintk( 1, "cx8802_mpeg_irq\n" );
1da177e4
LT
319 status = cx_read(MO_TS_INTSTAT);
320 mask = cx_read(MO_TS_INTMSK);
321 if (0 == (status & mask))
322 return;
323
324 cx_write(MO_TS_INTSTAT, status);
41ef7c1e 325
1da177e4
LT
326 if (debug || (status & mask & ~0xff))
327 cx88_print_irqbits(core->name, "irq mpeg ",
66623a04
MCC
328 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
329 status, mask);
1da177e4
LT
330
331 /* risc op code error */
332 if (status & (1 << 16)) {
333 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
334 cx_clear(MO_TS_DMACNTRL, 0x11);
335 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
336 }
337
338 /* risc1 y */
339 if (status & 0x01) {
b45009b0 340 dprintk( 1, "wake up\n" );
1da177e4
LT
341 spin_lock(&dev->slock);
342 count = cx_read(MO_TS_GPCNT);
343 cx88_wakeup(dev->core, &dev->mpegq, count);
344 spin_unlock(&dev->slock);
345 }
346
4ac97914
MCC
347 /* other general errors */
348 if (status & 0x1f0100) {
b45009b0 349 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
4ac97914 350 spin_lock(&dev->slock);
1da177e4 351 cx8802_stop_dma(dev);
4ac97914
MCC
352 spin_unlock(&dev->slock);
353 }
1da177e4
LT
354}
355
b45009b0
MCC
356#define MAX_IRQ_LOOP 10
357
7d12e780 358static irqreturn_t cx8802_irq(int irq, void *dev_id)
1da177e4
LT
359{
360 struct cx8802_dev *dev = dev_id;
361 struct cx88_core *core = dev->core;
362 u32 status;
363 int loop, handled = 0;
364
b45009b0 365 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
8ddac9ee
TP
366 status = cx_read(MO_PCI_INTSTAT) &
367 (core->pci_irqmask | PCI_INT_TSINT);
1da177e4
LT
368 if (0 == status)
369 goto out;
b45009b0
MCC
370 dprintk( 1, "cx8802_irq\n" );
371 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
372 dprintk( 1, " status: %d\n", status );
1da177e4
LT
373 handled = 1;
374 cx_write(MO_PCI_INTSTAT, status);
375
376 if (status & core->pci_irqmask)
377 cx88_core_irq(core,status);
8ddac9ee 378 if (status & PCI_INT_TSINT)
1da177e4 379 cx8802_mpeg_irq(dev);
c2c1b415 380 }
b45009b0
MCC
381 if (MAX_IRQ_LOOP == loop) {
382 dprintk( 0, "clearing mask\n" );
1da177e4
LT
383 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
384 core->name);
385 cx_write(MO_PCI_INTMSK,0);
386 }
387
388 out:
389 return IRQ_RETVAL(handled);
390}
391
a2fbaa51 392static int cx8802_init_common(struct cx8802_dev *dev)
1da177e4
LT
393{
394 struct cx88_core *core = dev->core;
395 int err;
396
397 /* pci init */
398 if (pci_enable_device(dev->pci))
399 return -EIO;
400 pci_set_master(dev->pci);
284901a9 401 if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) {
1da177e4
LT
402 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
403 return -EIO;
404 }
405
abd34d8d 406 dev->pci_rev = dev->pci->revision;
4ac97914
MCC
407 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
408 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
228aef63 409 "latency: %d, mmio: 0x%llx\n", dev->core->name,
1da177e4 410 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
228aef63 411 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
1da177e4
LT
412
413 /* initialize driver struct */
1da177e4
LT
414 spin_lock_init(&dev->slock);
415
416 /* init dma queue */
417 INIT_LIST_HEAD(&dev->mpegq.active);
1da177e4
LT
418
419 /* get irq */
420 err = request_irq(dev->pci->irq, cx8802_irq,
3e018fe4 421 IRQF_SHARED, dev->core->name, dev);
1da177e4
LT
422 if (err < 0) {
423 printk(KERN_ERR "%s: can't get IRQ %d\n",
424 dev->core->name, dev->pci->irq);
425 return err;
426 }
427 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
428
429 /* everything worked */
430 pci_set_drvdata(dev->pci,dev);
431 return 0;
432}
433
a2fbaa51 434static void cx8802_fini_common(struct cx8802_dev *dev)
1da177e4 435{
b45009b0 436 dprintk( 2, "cx8802_fini_common\n" );
1da177e4
LT
437 cx8802_stop_dma(dev);
438 pci_disable_device(dev->pci);
439
440 /* unregister stuff */
441 free_irq(dev->pci->irq, dev);
1da177e4
LT
442}
443
444/* ----------------------------------------------------------- */
445
a2fbaa51 446static int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
1da177e4 447{
4ac97914 448 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
1da177e4 449 struct cx88_core *core = dev->core;
5ddfbbb9 450 unsigned long flags;
1da177e4
LT
451
452 /* stop mpeg dma */
5ddfbbb9 453 spin_lock_irqsave(&dev->slock, flags);
1da177e4 454 if (!list_empty(&dev->mpegq.active)) {
b45009b0 455 dprintk( 2, "suspend\n" );
1da177e4
LT
456 printk("%s: suspend mpeg\n", core->name);
457 cx8802_stop_dma(dev);
1da177e4 458 }
5ddfbbb9 459 spin_unlock_irqrestore(&dev->slock, flags);
1da177e4 460
1da177e4
LT
461 /* FIXME -- shutdown device */
462 cx88_shutdown(dev->core);
1da177e4
LT
463
464 pci_save_state(pci_dev);
465 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
466 pci_disable_device(pci_dev);
467 dev->state.disabled = 1;
468 }
469 return 0;
470}
471
a2fbaa51 472static int cx8802_resume_common(struct pci_dev *pci_dev)
1da177e4 473{
08adb9e2 474 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
1da177e4 475 struct cx88_core *core = dev->core;
5ddfbbb9 476 unsigned long flags;
08adb9e2 477 int err;
1da177e4
LT
478
479 if (dev->state.disabled) {
08adb9e2
MCC
480 err=pci_enable_device(pci_dev);
481 if (err) {
482 printk(KERN_ERR "%s: can't enable device\n",
483 dev->core->name);
484 return err;
485 }
1da177e4
LT
486 dev->state.disabled = 0;
487 }
08adb9e2
MCC
488 err=pci_set_power_state(pci_dev, PCI_D0);
489 if (err) {
490 printk(KERN_ERR "%s: can't enable device\n",
491 dev->core->name);
492 pci_disable_device(pci_dev);
493 dev->state.disabled = 1;
494
495 return err;
496 }
1da177e4
LT
497 pci_restore_state(pci_dev);
498
1da177e4
LT
499 /* FIXME: re-initialize hardware */
500 cx88_reset(dev->core);
1da177e4
LT
501
502 /* restart video+vbi capture */
5ddfbbb9 503 spin_lock_irqsave(&dev->slock, flags);
1da177e4
LT
504 if (!list_empty(&dev->mpegq.active)) {
505 printk("%s: resume mpeg\n", core->name);
506 cx8802_restart_queue(dev,&dev->mpegq);
507 }
5ddfbbb9 508 spin_unlock_irqrestore(&dev->slock, flags);
1da177e4
LT
509
510 return 0;
511}
512
6c5be74c
ST
513struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
514{
081c2fc8 515 struct cx8802_driver *d;
6c5be74c 516
89a47942 517 list_for_each_entry(d, &dev->drvlist, drvlist)
081c2fc8
TP
518 if (d->type_id == btype)
519 return d;
6c5be74c
ST
520
521 return NULL;
522}
523
524/* Driver asked for hardware access. */
9df2ead5 525static int cx8802_request_acquire(struct cx8802_driver *drv)
6c5be74c
ST
526{
527 struct cx88_core *core = drv->core;
d922b8ea 528 unsigned int i;
6c5be74c
ST
529
530 /* Fail a request for hardware if the device is busy. */
27d0fe18
RS
531 if (core->active_type_id != CX88_BOARD_NONE &&
532 core->active_type_id != drv->type_id)
6c5be74c
ST
533 return -EBUSY;
534
243bf1a2
DH
535 if (drv->type_id == CX88_MPEG_DVB) {
536 /* When switching to DVB, always set the input to the tuner */
537 core->last_analog_input = core->input;
538 core->input = 0;
539 for (i = 0;
540 i < (sizeof(core->board.input) / sizeof(struct cx88_input));
541 i++) {
542 if (core->board.input[i].type == CX88_VMUX_DVB) {
543 core->input = i;
544 break;
545 }
d922b8ea
IV
546 }
547 }
c2cb8fcc 548
6c5be74c
ST
549 if (drv->advise_acquire)
550 {
baff6cdd 551 core->active_ref++;
27d0fe18
RS
552 if (core->active_type_id == CX88_BOARD_NONE) {
553 core->active_type_id = drv->type_id;
554 drv->advise_acquire(drv);
555 }
6c5be74c 556
32d83efc 557 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
6c5be74c
ST
558 }
559
560 return 0;
561}
562
563/* Driver asked to release hardware. */
9df2ead5 564static int cx8802_request_release(struct cx8802_driver *drv)
6c5be74c
ST
565{
566 struct cx88_core *core = drv->core;
567
27d0fe18 568 if (drv->advise_release && --core->active_ref == 0)
6c5be74c 569 {
243bf1a2
DH
570 if (drv->type_id == CX88_MPEG_DVB) {
571 /* If the DVB driver is releasing, reset the input
572 state to the last configured analog input */
573 core->input = core->last_analog_input;
574 }
575
6c5be74c
ST
576 drv->advise_release(drv);
577 core->active_type_id = CX88_BOARD_NONE;
32d83efc 578 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
6c5be74c
ST
579 }
580
581 return 0;
582}
583
584static int cx8802_check_driver(struct cx8802_driver *drv)
585{
586 if (drv == NULL)
587 return -ENODEV;
588
589 if ((drv->type_id != CX88_MPEG_DVB) &&
590 (drv->type_id != CX88_MPEG_BLACKBIRD))
591 return -EINVAL;
592
593 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
594 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
595 return -EINVAL;
596
597 if ((drv->probe == NULL) ||
598 (drv->remove == NULL) ||
599 (drv->advise_acquire == NULL) ||
600 (drv->advise_release == NULL))
601 return -EINVAL;
602
603 return 0;
604}
605
606int cx8802_register_driver(struct cx8802_driver *drv)
607{
89a47942 608 struct cx8802_dev *dev;
6c5be74c 609 struct cx8802_driver *driver;
89a47942 610 int err, i = 0;
6c5be74c 611
5772f813
TP
612 printk(KERN_INFO
613 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
614 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
615 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
6c5be74c
ST
616
617 if ((err = cx8802_check_driver(drv)) != 0) {
5772f813 618 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
6c5be74c
ST
619 return err;
620 }
621
344d6c6b
JN
622 mutex_lock(&cx8802_mutex);
623
89a47942 624 list_for_each_entry(dev, &cx8802_devlist, devlist) {
5772f813
TP
625 printk(KERN_INFO
626 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
89a47942
TP
627 dev->core->name, dev->pci->subsystem_vendor,
628 dev->pci->subsystem_device, dev->core->board.name,
629 dev->core->boardnr);
6c5be74c
ST
630
631 /* Bring up a new struct for each driver instance */
632 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
344d6c6b
JN
633 if (driver == NULL) {
634 err = -ENOMEM;
635 goto out;
636 }
6c5be74c
ST
637
638 /* Snapshot of the driver registration data */
89a47942 639 drv->core = dev->core;
6c5be74c
ST
640 drv->suspend = cx8802_suspend_common;
641 drv->resume = cx8802_resume_common;
642 drv->request_acquire = cx8802_request_acquire;
643 drv->request_release = cx8802_request_release;
644 memcpy(driver, drv, sizeof(*driver));
645
1d6213ab 646 mutex_lock(&drv->core->lock);
6c5be74c
ST
647 err = drv->probe(driver);
648 if (err == 0) {
019391e4 649 i++;
89a47942 650 list_add_tail(&driver->drvlist, &dev->drvlist);
6c5be74c 651 } else {
5772f813
TP
652 printk(KERN_ERR
653 "%s/2: cx8802 probe failed, err = %d\n",
89a47942 654 dev->core->name, err);
6c5be74c 655 }
1d6213ab 656 mutex_unlock(&drv->core->lock);
6c5be74c 657 }
6c5be74c 658
344d6c6b
JN
659 err = i ? 0 : -ENODEV;
660out:
661 mutex_unlock(&cx8802_mutex);
662 return err;
6c5be74c
ST
663}
664
665int cx8802_unregister_driver(struct cx8802_driver *drv)
666{
89a47942
TP
667 struct cx8802_dev *dev;
668 struct cx8802_driver *d, *dtmp;
669 int err = 0;
6c5be74c 670
5772f813
TP
671 printk(KERN_INFO
672 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
673 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
674 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
6c5be74c 675
344d6c6b
JN
676 mutex_lock(&cx8802_mutex);
677
89a47942 678 list_for_each_entry(dev, &cx8802_devlist, devlist) {
5772f813
TP
679 printk(KERN_INFO
680 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
89a47942
TP
681 dev->core->name, dev->pci->subsystem_vendor,
682 dev->pci->subsystem_device, dev->core->board.name,
683 dev->core->boardnr);
6c5be74c 684
8a317a87
JN
685 mutex_lock(&dev->core->lock);
686
89a47942 687 list_for_each_entry_safe(d, dtmp, &dev->drvlist, drvlist) {
6c5be74c
ST
688 /* only unregister the correct driver type */
689 if (d->type_id != drv->type_id)
690 continue;
691
692 err = d->remove(d);
693 if (err == 0) {
89a47942 694 list_del(&d->drvlist);
a04036a3 695 kfree(d);
6c5be74c 696 } else
5772f813 697 printk(KERN_ERR "%s/2: cx8802 driver remove "
89a47942 698 "failed (%d)\n", dev->core->name, err);
6c5be74c
ST
699 }
700
8a317a87 701 mutex_unlock(&dev->core->lock);
6c5be74c
ST
702 }
703
344d6c6b
JN
704 mutex_unlock(&cx8802_mutex);
705
6c5be74c
ST
706 return err;
707}
708
1da177e4 709/* ----------------------------------------------------------- */
4c62e976
GKH
710static int cx8802_probe(struct pci_dev *pci_dev,
711 const struct pci_device_id *pci_id)
6c5be74c
ST
712{
713 struct cx8802_dev *dev;
714 struct cx88_core *core;
9212a572 715 int err;
6c5be74c
ST
716
717 /* general setup */
718 core = cx88_core_get(pci_dev);
719 if (NULL == core)
720 return -EINVAL;
721
722 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
723
724 err = -ENODEV;
6a59d64c 725 if (!core->board.mpeg)
6c5be74c
ST
726 goto fail_core;
727
728 err = -ENOMEM;
729 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
730 if (NULL == dev)
731 goto fail_core;
732 dev->pci = pci_dev;
733 dev->core = core;
734
e32fadc4
MCC
735 /* Maintain a reference so cx88-video can query the 8802 device. */
736 core->dvbdev = dev;
737
6c5be74c
ST
738 err = cx8802_init_common(dev);
739 if (err != 0)
740 goto fail_free;
741
081c2fc8 742 INIT_LIST_HEAD(&dev->drvlist);
344d6c6b 743 mutex_lock(&cx8802_mutex);
6c5be74c 744 list_add_tail(&dev->devlist,&cx8802_devlist);
344d6c6b 745 mutex_unlock(&cx8802_mutex);
1da177e4 746
77b74774
MR
747 /* now autoload cx88-dvb or cx88-blackbird */
748 request_modules(dev);
6c5be74c
ST
749 return 0;
750
751 fail_free:
752 kfree(dev);
753 fail_core:
e32fadc4 754 core->dvbdev = NULL;
6c5be74c
ST
755 cx88_core_put(core,pci_dev);
756 return err;
757}
758
4c62e976 759static void cx8802_remove(struct pci_dev *pci_dev)
6c5be74c
ST
760{
761 struct cx8802_dev *dev;
6c5be74c
ST
762
763 dev = pci_get_drvdata(pci_dev);
764
32d83efc 765 dprintk( 1, "%s\n", __func__);
6c5be74c 766
707bcf32
TH
767 flush_request_modules(dev);
768
8a317a87
JN
769 mutex_lock(&dev->core->lock);
770
081c2fc8 771 if (!list_empty(&dev->drvlist)) {
89a47942 772 struct cx8802_driver *drv, *tmp;
081c2fc8
TP
773 int err;
774
775 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
776 "while cx8802 sub-drivers still loaded?!\n",
777 dev->core->name);
778
89a47942 779 list_for_each_entry_safe(drv, tmp, &dev->drvlist, drvlist) {
081c2fc8
TP
780 err = drv->remove(drv);
781 if (err == 0) {
89a47942 782 list_del(&drv->drvlist);
081c2fc8
TP
783 } else
784 printk(KERN_ERR "%s/2: cx8802 driver remove "
785 "failed (%d)\n", dev->core->name, err);
a04036a3 786 kfree(drv);
6c5be74c 787 }
6c5be74c
ST
788 }
789
8a317a87
JN
790 mutex_unlock(&dev->core->lock);
791
6c5be74c
ST
792 /* Destroy any 8802 reference. */
793 dev->core->dvbdev = NULL;
794
795 /* common */
796 cx8802_fini_common(dev);
797 cx88_core_put(dev->core,dev->pci);
798 kfree(dev);
799}
800
2e4e98e7 801static const struct pci_device_id cx8802_pci_tbl[] = {
6c5be74c
ST
802 {
803 .vendor = 0x14f1,
804 .device = 0x8802,
805 .subvendor = PCI_ANY_ID,
806 .subdevice = PCI_ANY_ID,
807 },{
808 /* --- end of list --- */
809 }
810};
811MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
812
813static struct pci_driver cx8802_pci_driver = {
814 .name = "cx88-mpeg driver manager",
815 .id_table = cx8802_pci_tbl,
816 .probe = cx8802_probe,
4c62e976 817 .remove = cx8802_remove,
6c5be74c
ST
818};
819
38b25adc 820module_pci_driver(cx8802_pci_driver);
6c5be74c 821
1da177e4
LT
822EXPORT_SYMBOL(cx8802_buf_prepare);
823EXPORT_SYMBOL(cx8802_buf_queue);
824EXPORT_SYMBOL(cx8802_cancel_buffers);
0b6b6302 825EXPORT_SYMBOL(cx8802_start_dma);
1da177e4 826
6c5be74c
ST
827EXPORT_SYMBOL(cx8802_register_driver);
828EXPORT_SYMBOL(cx8802_unregister_driver);
6c5be74c 829EXPORT_SYMBOL(cx8802_get_driver);
1da177e4
LT
830/* ----------------------------------------------------------- */
831/*
832 * Local variables:
833 * c-basic-offset: 8
834 * End:
b45009b0 835 * 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 836 */