blob: 1a7b983f82976eeb5b66a0da1fc6316104faee45 [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 *
Jelle Foksf8de18d2008-11-20 07:07:45 -03006 * (c) 2004 Jelle Foks <jelle@foks.us>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/device.h>
Andrew Mortonc24228d2007-05-06 14:51:55 -070029#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#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");
Jelle Foksf8de18d2008-11-20 07:07:45 -030038MODULE_AUTHOR("Jelle Foks <jelle@foks.us>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070039MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
40MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
41MODULE_LICENSE("GPL");
42
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030043static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044module_param(debug,int,0644);
45MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
46
47#define dprintk(level,fmt, arg...) if (debug >= level) \
Steven Toth6c5be742006-12-02 21:15:51 -020048 printk(KERN_DEBUG "%s/2-mpeg: " fmt, dev->core->name, ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Steven Toth6c5be742006-12-02 21:15:51 -020050#define mpeg_dbg(level,fmt, arg...) if (debug >= level) \
51 printk(KERN_DEBUG "%s/2-mpeg: " fmt, core->name, ## arg)
52
Markus Rechberger77b74772007-04-27 12:31:06 -030053#if defined(CONFIG_MODULES) && defined(MODULE)
54static void request_module_async(struct work_struct *work)
55{
56 struct cx8802_dev *dev=container_of(work, struct cx8802_dev, request_module_wk);
Markus Rechbergerced80c62007-04-27 12:31:07 -030057
Trent Piepho6a59d642007-08-15 14:41:57 -030058 if (dev->core->board.mpeg & CX88_MPEG_DVB)
Markus Rechberger77b74772007-04-27 12:31:06 -030059 request_module("cx88-dvb");
Trent Piepho6a59d642007-08-15 14:41:57 -030060 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD)
Markus Rechbergerced80c62007-04-27 12:31:07 -030061 request_module("cx88-blackbird");
Markus Rechberger77b74772007-04-27 12:31:06 -030062}
63
64static void request_modules(struct cx8802_dev *dev)
65{
66 INIT_WORK(&dev->request_module_wk, request_module_async);
67 schedule_work(&dev->request_module_wk);
68}
Tejun Heo707bcf32010-12-24 16:14:20 +010069
70static void flush_request_modules(struct cx8802_dev *dev)
71{
72 flush_work_sync(&dev->request_module_wk);
73}
Markus Rechberger77b74772007-04-27 12:31:06 -030074#else
75#define request_modules(dev)
Tejun Heo707bcf32010-12-24 16:14:20 +010076#define flush_request_modules(dev)
Markus Rechberger77b74772007-04-27 12:31:06 -030077#endif /* CONFIG_MODULES */
78
79
Steven Toth6c5be742006-12-02 21:15:51 -020080static LIST_HEAD(cx8802_devlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -030081static DEFINE_MUTEX(cx8802_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* ------------------------------------------------------------------ */
83
84static int cx8802_start_dma(struct cx8802_dev *dev,
85 struct cx88_dmaqueue *q,
86 struct cx88_buffer *buf)
87{
88 struct cx88_core *core = dev->core;
89
Trent Piepho7717cbe2007-10-14 02:52:16 -030090 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n",
91 buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* setup fifo + format */
94 cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
95 dev->ts_packet_size, buf->risc.dma);
96
97 /* write TS length to chip */
98 cx_write(MO_TS_LNGTH, buf->vb.width);
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 /* FIXME: this needs a review.
101 * also: move to cx88-blackbird + cx88-dvb source files? */
102
Steven Toth6c5be742006-12-02 21:15:51 -0200103 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id);
104
105 if ( (core->active_type_id == CX88_MPEG_DVB) &&
Trent Piepho6a59d642007-08-15 14:41:57 -0300106 (core->board.mpeg & CX88_MPEG_DVB) ) {
Steven Toth6c5be742006-12-02 21:15:51 -0200107
108 dprintk( 1, "cx8802_start_dma doing .dvb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* negedge driven & software reset */
Michael Krufkyf1798492005-07-07 17:58:39 -0700110 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 udelay(100);
112 cx_write(MO_PINMUX_IO, 0x00);
Steven Toth60464da2008-01-05 16:53:01 -0300113 cx_write(TS_HW_SOP_CNTRL, 0x47<<16|188<<4|0x01);
Trent Piepho6a59d642007-08-15 14:41:57 -0300114 switch (core->boardnr) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700115 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
116 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
117 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
Rusty Scottda215d22006-04-07 02:21:31 -0300118 case CX88_BOARD_PCHDTV_HD5500:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700119 cx_write(TS_SOP_STAT, 1<<13);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700120 break;
Dirk Herrendoerfer4f3ca2f12010-02-11 18:06:34 -0300121 case CX88_BOARD_SAMSUNG_SMT_7020:
122 cx_write(TS_SOP_STAT, 0x00);
123 break;
Steven Toth0fa14aa2006-01-09 15:25:02 -0200124 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
125 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
126 cx_write(MO_PINMUX_IO, 0x88); /* Enable MPEG parallel IO and video signal pins */
127 udelay(100);
128 break;
Steven Toth6c5be742006-12-02 21:15:51 -0200129 case CX88_BOARD_HAUPPAUGE_HVR1300:
Sohail Syyed337ab6d2009-07-26 11:06:20 -0300130 /* Enable MPEG parallel IO and video signal pins */
131 cx_write(MO_PINMUX_IO, 0x88);
132 cx_write(TS_SOP_STAT, 0);
133 cx_write(TS_VALERR_CNTRL, 0);
Steven Toth6c5be742006-12-02 21:15:51 -0200134 break;
Steven Toth60464da2008-01-05 16:53:01 -0300135 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Steven Toth49170192008-01-15 21:57:14 -0300136 /* Enable MPEG parallel IO and video signal pins */
137 cx_write(MO_PINMUX_IO, 0x88);
138 cx_write(TS_HW_SOP_CNTRL, (0x47 << 16) | (188 << 4));
139 dev->ts_gen_cntrl = 5;
140 cx_write(TS_SOP_STAT, 0);
141 cx_write(TS_VALERR_CNTRL, 0);
Steven Toth60464da2008-01-05 16:53:01 -0300142 udelay(100);
143 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700144 default:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700145 cx_write(TS_SOP_STAT, 0x00);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700146 break;
Michael Krufkyf1798492005-07-07 17:58:39 -0700147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
149 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200150 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
Trent Piepho6a59d642007-08-15 14:41:57 -0300151 (core->board.mpeg & CX88_MPEG_BLACKBIRD) ) {
Steven Toth6c5be742006-12-02 21:15:51 -0200152 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
156 udelay(100);
157
158 cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 cx_write(TS_VALERR_CNTRL, 0x2000);
160
161 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
162 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200163 } else {
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300164 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __func__,
Trent Piepho6a59d642007-08-15 14:41:57 -0300165 core->board.mpeg );
Steven Toth6c5be742006-12-02 21:15:51 -0200166 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* reset counter */
170 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
171 q->count = 1;
172
173 /* enable irqs */
Trent Piepho76d313b2006-04-10 09:27:08 -0300174 dprintk( 1, "setting the interrupt mask\n" );
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300175 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700176 cx_set(MO_TS_INTMSK, 0x1f0011);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 /* start dma */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700179 cx_set(MO_DEV_CNTRL2, (1<<5));
180 cx_set(MO_TS_DMACNTRL, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return 0;
182}
183
184static int cx8802_stop_dma(struct cx8802_dev *dev)
185{
186 struct cx88_core *core = dev->core;
Trent Piepho76d313b2006-04-10 09:27:08 -0300187 dprintk( 1, "cx8802_stop_dma\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /* stop dma */
190 cx_clear(MO_TS_DMACNTRL, 0x11);
191
192 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300193 cx_clear(MO_PCI_INTMSK, PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 cx_clear(MO_TS_INTMSK, 0x1f0011);
195
196 /* Reset the controller */
197 cx_write(TS_GEN_CNTRL, 0xcd);
198 return 0;
199}
200
201static int cx8802_restart_queue(struct cx8802_dev *dev,
202 struct cx88_dmaqueue *q)
203{
204 struct cx88_buffer *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300206 dprintk( 1, "cx8802_restart_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (list_empty(&q->active))
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700208 {
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300209 struct cx88_buffer *prev;
210 prev = NULL;
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300211
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300212 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300213
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300214 for (;;) {
215 if (list_empty(&q->queued))
216 return 0;
217 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
218 if (NULL == prev) {
219 list_del(&buf->vb.queue);
220 list_add_tail(&buf->vb.queue,&q->active);
221 cx8802_start_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300222 buf->vb.state = VIDEOBUF_ACTIVE;
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300223 buf->count = q->count++;
224 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
225 dprintk(1,"[%p/%d] restart_queue - first active\n",
226 buf,buf->vb.i);
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300227
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300228 } else if (prev->vb.width == buf->vb.width &&
229 prev->vb.height == buf->vb.height &&
230 prev->fmt == buf->fmt) {
231 list_del(&buf->vb.queue);
232 list_add_tail(&buf->vb.queue,&q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300233 buf->vb.state = VIDEOBUF_ACTIVE;
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300234 buf->count = q->count++;
235 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
236 dprintk(1,"[%p/%d] restart_queue - move to active\n",
237 buf,buf->vb.i);
238 } else {
239 return 0;
240 }
241 prev = buf;
242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return 0;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
247 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
248 buf, buf->vb.i);
249 cx8802_start_dma(dev, q, buf);
Trent Piepho89a47942007-10-14 02:52:17 -0300250 list_for_each_entry(buf, &q->active, vb.queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
253 return 0;
254}
255
256/* ------------------------------------------------------------------ */
257
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300258int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
259 struct cx88_buffer *buf, enum v4l2_field field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 int size = dev->ts_packet_size * dev->ts_packet_count;
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300262 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int rc;
264
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300265 dprintk(1, "%s: %p\n", __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 if (0 != buf->vb.baddr && buf->vb.bsize < size)
267 return -EINVAL;
268
Brandon Philips0fc06862007-11-06 20:02:36 -0300269 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 buf->vb.width = dev->ts_packet_size;
271 buf->vb.height = dev->ts_packet_count;
272 buf->vb.size = size;
Catalin Climov31629422005-11-08 21:36:17 -0800273 buf->vb.field = field /*V4L2_FIELD_TOP*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300275 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 goto fail;
277 cx88_risc_databuffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300278 dma->sglist,
Trent Piepho05b27232007-08-24 01:06:34 -0300279 buf->vb.width, buf->vb.height, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Brandon Philips0fc06862007-11-06 20:02:36 -0300281 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return 0;
283
284 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300285 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return rc;
287}
288
289void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
290{
291 struct cx88_buffer *prev;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300292 struct cx88_dmaqueue *cx88q = &dev->mpegq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700294 dprintk( 1, "cx8802_buf_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* add jump to stopper */
296 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300297 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300299 if (list_empty(&cx88q->active)) {
Trent Piepho76d313b2006-04-10 09:27:08 -0300300 dprintk( 1, "queue is empty - first active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300301 list_add_tail(&buf->vb.queue,&cx88q->active);
302 cx8802_start_dma(dev, cx88q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300303 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300304 buf->count = cx88q->count++;
305 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
Trent Piepho76d313b2006-04-10 09:27:08 -0300306 dprintk(1,"[%p/%d] %s - first active\n",
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300307 buf, buf->vb.i, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309 } else {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700310 dprintk( 1, "queue is not empty - append to active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300311 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
312 list_add_tail(&buf->vb.queue,&cx88q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300313 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300314 buf->count = cx88q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700316 dprintk( 1, "[%p/%d] %s - append to active\n",
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300317 buf, buf->vb.i, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319}
320
321/* ----------------------------------------------------------- */
322
lawrence rust2e4e98e2010-08-25 09:50:20 -0300323static void do_cancel_buffers(struct cx8802_dev *dev, const char *reason, int restart)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
325 struct cx88_dmaqueue *q = &dev->mpegq;
326 struct cx88_buffer *buf;
327 unsigned long flags;
328
329 spin_lock_irqsave(&dev->slock,flags);
330 while (!list_empty(&q->active)) {
331 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
332 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300333 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 wake_up(&buf->vb.done);
335 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
336 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
337 }
338 if (restart)
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700339 {
Trent Piepho76d313b2006-04-10 09:27:08 -0300340 dprintk(1, "restarting queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 cx8802_restart_queue(dev,q);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 spin_unlock_irqrestore(&dev->slock,flags);
344}
345
346void cx8802_cancel_buffers(struct cx8802_dev *dev)
347{
348 struct cx88_dmaqueue *q = &dev->mpegq;
349
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700350 dprintk( 1, "cx8802_cancel_buffers" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 del_timer_sync(&q->timeout);
352 cx8802_stop_dma(dev);
353 do_cancel_buffers(dev,"cancel",0);
354}
355
356static void cx8802_timeout(unsigned long data)
357{
358 struct cx8802_dev *dev = (struct cx8802_dev*)data;
359
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300360 dprintk(1, "%s\n",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 if (debug)
363 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
364 cx8802_stop_dma(dev);
365 do_cancel_buffers(dev,"timeout",1);
366}
367
lawrence rust2e4e98e2010-08-25 09:50:20 -0300368static const char * cx88_mpeg_irqs[32] = {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700369 "ts_risci1", NULL, NULL, NULL,
370 "ts_risci2", NULL, NULL, NULL,
371 "ts_oflow", NULL, NULL, NULL,
372 "ts_sync", NULL, NULL, NULL,
373 "opc_err", "par_err", "rip_err", "pci_abort",
374 "ts_err?",
375};
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377static void cx8802_mpeg_irq(struct cx8802_dev *dev)
378{
379 struct cx88_core *core = dev->core;
380 u32 status, mask, count;
381
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700382 dprintk( 1, "cx8802_mpeg_irq\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 status = cx_read(MO_TS_INTSTAT);
384 mask = cx_read(MO_TS_INTMSK);
385 if (0 == (status & mask))
386 return;
387
388 cx_write(MO_TS_INTSTAT, status);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (debug || (status & mask & ~0xff))
391 cx88_print_irqbits(core->name, "irq mpeg ",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300392 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
393 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /* risc op code error */
396 if (status & (1 << 16)) {
397 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
398 cx_clear(MO_TS_DMACNTRL, 0x11);
399 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
400 }
401
402 /* risc1 y */
403 if (status & 0x01) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700404 dprintk( 1, "wake up\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 spin_lock(&dev->slock);
406 count = cx_read(MO_TS_GPCNT);
407 cx88_wakeup(dev->core, &dev->mpegq, count);
408 spin_unlock(&dev->slock);
409 }
410
411 /* risc2 y */
412 if (status & 0x10) {
413 spin_lock(&dev->slock);
414 cx8802_restart_queue(dev,&dev->mpegq);
415 spin_unlock(&dev->slock);
416 }
417
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800418 /* other general errors */
419 if (status & 0x1f0100) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700420 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800421 spin_lock(&dev->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 cx8802_stop_dma(dev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800423 cx8802_restart_queue(dev,&dev->mpegq);
424 spin_unlock(&dev->slock);
425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700428#define MAX_IRQ_LOOP 10
429
David Howells7d12e782006-10-05 14:55:46 +0100430static irqreturn_t cx8802_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
432 struct cx8802_dev *dev = dev_id;
433 struct cx88_core *core = dev->core;
434 u32 status;
435 int loop, handled = 0;
436
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700437 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300438 status = cx_read(MO_PCI_INTSTAT) &
439 (core->pci_irqmask | PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (0 == status)
441 goto out;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700442 dprintk( 1, "cx8802_irq\n" );
443 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
444 dprintk( 1, " status: %d\n", status );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 handled = 1;
446 cx_write(MO_PCI_INTSTAT, status);
447
448 if (status & core->pci_irqmask)
449 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300450 if (status & PCI_INT_TSINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 cx8802_mpeg_irq(dev);
452 };
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700453 if (MAX_IRQ_LOOP == loop) {
454 dprintk( 0, "clearing mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
456 core->name);
457 cx_write(MO_PCI_INTMSK,0);
458 }
459
460 out:
461 return IRQ_RETVAL(handled);
462}
463
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300464static int cx8802_init_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 struct cx88_core *core = dev->core;
467 int err;
468
469 /* pci init */
470 if (pci_enable_device(dev->pci))
471 return -EIO;
472 pci_set_master(dev->pci);
Yang Hongyang284901a2009-04-06 19:01:15 -0700473 if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
475 return -EIO;
476 }
477
Bjørn Morkabd34d82011-03-21 11:35:56 -0300478 dev->pci_rev = dev->pci->revision;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800479 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
480 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700481 "latency: %d, mmio: 0x%llx\n", dev->core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700483 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 spin_lock_init(&dev->slock);
487
488 /* init dma queue */
489 INIT_LIST_HEAD(&dev->mpegq.active);
490 INIT_LIST_HEAD(&dev->mpegq.queued);
491 dev->mpegq.timeout.function = cx8802_timeout;
492 dev->mpegq.timeout.data = (unsigned long)dev;
493 init_timer(&dev->mpegq.timeout);
494 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
495 MO_TS_DMACNTRL,0x11,0x00);
496
497 /* get irq */
498 err = request_irq(dev->pci->irq, cx8802_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700499 IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (err < 0) {
501 printk(KERN_ERR "%s: can't get IRQ %d\n",
502 dev->core->name, dev->pci->irq);
503 return err;
504 }
505 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
506
507 /* everything worked */
508 pci_set_drvdata(dev->pci,dev);
509 return 0;
510}
511
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300512static void cx8802_fini_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700514 dprintk( 2, "cx8802_fini_common\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 cx8802_stop_dma(dev);
516 pci_disable_device(dev->pci);
517
518 /* unregister stuff */
519 free_irq(dev->pci->irq, dev);
520 pci_set_drvdata(dev->pci, NULL);
521
522 /* free memory */
523 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
524}
525
526/* ----------------------------------------------------------- */
527
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300528static int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800530 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 struct cx88_core *core = dev->core;
532
533 /* stop mpeg dma */
534 spin_lock(&dev->slock);
535 if (!list_empty(&dev->mpegq.active)) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700536 dprintk( 2, "suspend\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 printk("%s: suspend mpeg\n", core->name);
538 cx8802_stop_dma(dev);
539 del_timer(&dev->mpegq.timeout);
540 }
541 spin_unlock(&dev->slock);
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /* FIXME -- shutdown device */
544 cx88_shutdown(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 pci_save_state(pci_dev);
547 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
548 pci_disable_device(pci_dev);
549 dev->state.disabled = 1;
550 }
551 return 0;
552}
553
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300554static int cx8802_resume_common(struct pci_dev *pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700556 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700558 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700561 err=pci_enable_device(pci_dev);
562 if (err) {
563 printk(KERN_ERR "%s: can't enable device\n",
564 dev->core->name);
565 return err;
566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 dev->state.disabled = 0;
568 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700569 err=pci_set_power_state(pci_dev, PCI_D0);
570 if (err) {
571 printk(KERN_ERR "%s: can't enable device\n",
572 dev->core->name);
573 pci_disable_device(pci_dev);
574 dev->state.disabled = 1;
575
576 return err;
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 pci_restore_state(pci_dev);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* FIXME: re-initialize hardware */
581 cx88_reset(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /* restart video+vbi capture */
584 spin_lock(&dev->slock);
585 if (!list_empty(&dev->mpegq.active)) {
586 printk("%s: resume mpeg\n", core->name);
587 cx8802_restart_queue(dev,&dev->mpegq);
588 }
589 spin_unlock(&dev->slock);
590
591 return 0;
592}
593
Steven Toth6c5be742006-12-02 21:15:51 -0200594struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
595{
Trent Piepho081c2fc2007-10-14 02:52:17 -0300596 struct cx8802_driver *d;
Steven Toth6c5be742006-12-02 21:15:51 -0200597
Trent Piepho89a47942007-10-14 02:52:17 -0300598 list_for_each_entry(d, &dev->drvlist, drvlist)
Trent Piepho081c2fc2007-10-14 02:52:17 -0300599 if (d->type_id == btype)
600 return d;
Steven Toth6c5be742006-12-02 21:15:51 -0200601
602 return NULL;
603}
604
605/* Driver asked for hardware access. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300606static int cx8802_request_acquire(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200607{
608 struct cx88_core *core = drv->core;
Istvan Vargad922b8e2010-03-27 09:47:45 -0300609 unsigned int i;
Steven Toth6c5be742006-12-02 21:15:51 -0200610
611 /* Fail a request for hardware if the device is busy. */
Roland Stoll27d0fe12008-02-11 13:00:34 -0300612 if (core->active_type_id != CX88_BOARD_NONE &&
613 core->active_type_id != drv->type_id)
Steven Toth6c5be742006-12-02 21:15:51 -0200614 return -EBUSY;
615
Istvan Vargad922b8e2010-03-27 09:47:45 -0300616 core->input = 0;
617 for (i = 0;
618 i < (sizeof(core->board.input) / sizeof(struct cx88_input));
619 i++) {
620 if (core->board.input[i].type == CX88_VMUX_DVB) {
621 core->input = i;
622 break;
623 }
624 }
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -0300625
Steven Toth6c5be742006-12-02 21:15:51 -0200626 if (drv->advise_acquire)
627 {
Ricardo Cerqueirabaff6cd2008-02-13 22:41:15 -0300628 core->active_ref++;
Roland Stoll27d0fe12008-02-11 13:00:34 -0300629 if (core->active_type_id == CX88_BOARD_NONE) {
630 core->active_type_id = drv->type_id;
631 drv->advise_acquire(drv);
632 }
Steven Toth6c5be742006-12-02 21:15:51 -0200633
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300634 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200635 }
636
637 return 0;
638}
639
640/* Driver asked to release hardware. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300641static int cx8802_request_release(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200642{
643 struct cx88_core *core = drv->core;
644
Roland Stoll27d0fe12008-02-11 13:00:34 -0300645 if (drv->advise_release && --core->active_ref == 0)
Steven Toth6c5be742006-12-02 21:15:51 -0200646 {
647 drv->advise_release(drv);
648 core->active_type_id = CX88_BOARD_NONE;
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300649 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200650 }
651
652 return 0;
653}
654
655static int cx8802_check_driver(struct cx8802_driver *drv)
656{
657 if (drv == NULL)
658 return -ENODEV;
659
660 if ((drv->type_id != CX88_MPEG_DVB) &&
661 (drv->type_id != CX88_MPEG_BLACKBIRD))
662 return -EINVAL;
663
664 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
665 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
666 return -EINVAL;
667
668 if ((drv->probe == NULL) ||
669 (drv->remove == NULL) ||
670 (drv->advise_acquire == NULL) ||
671 (drv->advise_release == NULL))
672 return -EINVAL;
673
674 return 0;
675}
676
677int cx8802_register_driver(struct cx8802_driver *drv)
678{
Trent Piepho89a47942007-10-14 02:52:17 -0300679 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200680 struct cx8802_driver *driver;
Trent Piepho89a47942007-10-14 02:52:17 -0300681 int err, i = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200682
Trent Piepho5772f812007-08-15 14:41:59 -0300683 printk(KERN_INFO
684 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
685 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
686 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200687
688 if ((err = cx8802_check_driver(drv)) != 0) {
Trent Piepho5772f812007-08-15 14:41:59 -0300689 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
Steven Toth6c5be742006-12-02 21:15:51 -0200690 return err;
691 }
692
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300693 mutex_lock(&cx8802_mutex);
694
Trent Piepho89a47942007-10-14 02:52:17 -0300695 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300696 printk(KERN_INFO
697 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300698 dev->core->name, dev->pci->subsystem_vendor,
699 dev->pci->subsystem_device, dev->core->board.name,
700 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200701
702 /* Bring up a new struct for each driver instance */
703 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300704 if (driver == NULL) {
705 err = -ENOMEM;
706 goto out;
707 }
Steven Toth6c5be742006-12-02 21:15:51 -0200708
709 /* Snapshot of the driver registration data */
Trent Piepho89a47942007-10-14 02:52:17 -0300710 drv->core = dev->core;
Steven Toth6c5be742006-12-02 21:15:51 -0200711 drv->suspend = cx8802_suspend_common;
712 drv->resume = cx8802_resume_common;
713 drv->request_acquire = cx8802_request_acquire;
714 drv->request_release = cx8802_request_release;
715 memcpy(driver, drv, sizeof(*driver));
716
Jonathan Nieder1d6213a2011-05-01 06:29:56 -0300717 mutex_lock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200718 err = drv->probe(driver);
719 if (err == 0) {
Steven Toth019391e42006-10-06 21:29:25 -0300720 i++;
Trent Piepho89a47942007-10-14 02:52:17 -0300721 list_add_tail(&driver->drvlist, &dev->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200722 } else {
Trent Piepho5772f812007-08-15 14:41:59 -0300723 printk(KERN_ERR
724 "%s/2: cx8802 probe failed, err = %d\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300725 dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200726 }
Jonathan Nieder1d6213a2011-05-01 06:29:56 -0300727 mutex_unlock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200728 }
Steven Toth6c5be742006-12-02 21:15:51 -0200729
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300730 err = i ? 0 : -ENODEV;
731out:
732 mutex_unlock(&cx8802_mutex);
733 return err;
Steven Toth6c5be742006-12-02 21:15:51 -0200734}
735
736int cx8802_unregister_driver(struct cx8802_driver *drv)
737{
Trent Piepho89a47942007-10-14 02:52:17 -0300738 struct cx8802_dev *dev;
739 struct cx8802_driver *d, *dtmp;
740 int err = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200741
Trent Piepho5772f812007-08-15 14:41:59 -0300742 printk(KERN_INFO
743 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
744 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
745 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200746
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300747 mutex_lock(&cx8802_mutex);
748
Trent Piepho89a47942007-10-14 02:52:17 -0300749 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300750 printk(KERN_INFO
751 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300752 dev->core->name, dev->pci->subsystem_vendor,
753 dev->pci->subsystem_device, dev->core->board.name,
754 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200755
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300756 mutex_lock(&dev->core->lock);
757
Trent Piepho89a47942007-10-14 02:52:17 -0300758 list_for_each_entry_safe(d, dtmp, &dev->drvlist, drvlist) {
Steven Toth6c5be742006-12-02 21:15:51 -0200759 /* only unregister the correct driver type */
760 if (d->type_id != drv->type_id)
761 continue;
762
763 err = d->remove(d);
764 if (err == 0) {
Trent Piepho89a47942007-10-14 02:52:17 -0300765 list_del(&d->drvlist);
Trent Piephoa04036a2007-10-05 11:28:09 -0300766 kfree(d);
Steven Toth6c5be742006-12-02 21:15:51 -0200767 } else
Trent Piepho5772f812007-08-15 14:41:59 -0300768 printk(KERN_ERR "%s/2: cx8802 driver remove "
Trent Piepho89a47942007-10-14 02:52:17 -0300769 "failed (%d)\n", dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200770 }
771
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300772 mutex_unlock(&dev->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200773 }
774
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300775 mutex_unlock(&cx8802_mutex);
776
Steven Toth6c5be742006-12-02 21:15:51 -0200777 return err;
778}
779
780/* ----------------------------------------------------------- */
781static int __devinit cx8802_probe(struct pci_dev *pci_dev,
782 const struct pci_device_id *pci_id)
783{
784 struct cx8802_dev *dev;
785 struct cx88_core *core;
Darron Broad9212a572008-10-21 10:42:00 -0300786 int err;
Steven Toth6c5be742006-12-02 21:15:51 -0200787
788 /* general setup */
789 core = cx88_core_get(pci_dev);
790 if (NULL == core)
791 return -EINVAL;
792
793 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
794
795 err = -ENODEV;
Trent Piepho6a59d642007-08-15 14:41:57 -0300796 if (!core->board.mpeg)
Steven Toth6c5be742006-12-02 21:15:51 -0200797 goto fail_core;
798
799 err = -ENOMEM;
800 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
801 if (NULL == dev)
802 goto fail_core;
803 dev->pci = pci_dev;
804 dev->core = core;
805
Mauro Carvalho Chehabe32fadc2009-01-06 16:06:07 -0300806 /* Maintain a reference so cx88-video can query the 8802 device. */
807 core->dvbdev = dev;
808
Steven Toth6c5be742006-12-02 21:15:51 -0200809 err = cx8802_init_common(dev);
810 if (err != 0)
811 goto fail_free;
812
Trent Piepho081c2fc2007-10-14 02:52:17 -0300813 INIT_LIST_HEAD(&dev->drvlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300814 mutex_lock(&cx8802_mutex);
Steven Toth6c5be742006-12-02 21:15:51 -0200815 list_add_tail(&dev->devlist,&cx8802_devlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300816 mutex_unlock(&cx8802_mutex);
Steven Toth6c5be742006-12-02 21:15:51 -0200817
Markus Rechberger77b74772007-04-27 12:31:06 -0300818 /* now autoload cx88-dvb or cx88-blackbird */
819 request_modules(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200820 return 0;
821
822 fail_free:
823 kfree(dev);
824 fail_core:
Mauro Carvalho Chehabe32fadc2009-01-06 16:06:07 -0300825 core->dvbdev = NULL;
Steven Toth6c5be742006-12-02 21:15:51 -0200826 cx88_core_put(core,pci_dev);
827 return err;
828}
829
830static void __devexit cx8802_remove(struct pci_dev *pci_dev)
831{
832 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200833
834 dev = pci_get_drvdata(pci_dev);
835
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300836 dprintk( 1, "%s\n", __func__);
Steven Toth6c5be742006-12-02 21:15:51 -0200837
Tejun Heo707bcf32010-12-24 16:14:20 +0100838 flush_request_modules(dev);
839
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300840 mutex_lock(&dev->core->lock);
841
Trent Piepho081c2fc2007-10-14 02:52:17 -0300842 if (!list_empty(&dev->drvlist)) {
Trent Piepho89a47942007-10-14 02:52:17 -0300843 struct cx8802_driver *drv, *tmp;
Trent Piepho081c2fc2007-10-14 02:52:17 -0300844 int err;
845
846 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
847 "while cx8802 sub-drivers still loaded?!\n",
848 dev->core->name);
849
Trent Piepho89a47942007-10-14 02:52:17 -0300850 list_for_each_entry_safe(drv, tmp, &dev->drvlist, drvlist) {
Trent Piepho081c2fc2007-10-14 02:52:17 -0300851 err = drv->remove(drv);
852 if (err == 0) {
Trent Piepho89a47942007-10-14 02:52:17 -0300853 list_del(&drv->drvlist);
Trent Piepho081c2fc2007-10-14 02:52:17 -0300854 } else
855 printk(KERN_ERR "%s/2: cx8802 driver remove "
856 "failed (%d)\n", dev->core->name, err);
Trent Piephoa04036a2007-10-05 11:28:09 -0300857 kfree(drv);
Steven Toth6c5be742006-12-02 21:15:51 -0200858 }
Steven Toth6c5be742006-12-02 21:15:51 -0200859 }
860
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300861 mutex_unlock(&dev->core->lock);
862
Steven Toth6c5be742006-12-02 21:15:51 -0200863 /* Destroy any 8802 reference. */
864 dev->core->dvbdev = NULL;
865
866 /* common */
867 cx8802_fini_common(dev);
868 cx88_core_put(dev->core,dev->pci);
869 kfree(dev);
870}
871
lawrence rust2e4e98e2010-08-25 09:50:20 -0300872static const struct pci_device_id cx8802_pci_tbl[] = {
Steven Toth6c5be742006-12-02 21:15:51 -0200873 {
874 .vendor = 0x14f1,
875 .device = 0x8802,
876 .subvendor = PCI_ANY_ID,
877 .subdevice = PCI_ANY_ID,
878 },{
879 /* --- end of list --- */
880 }
881};
882MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
883
884static struct pci_driver cx8802_pci_driver = {
885 .name = "cx88-mpeg driver manager",
886 .id_table = cx8802_pci_tbl,
887 .probe = cx8802_probe,
888 .remove = __devexit_p(cx8802_remove),
889};
890
Peter Huewe31d0f842009-07-17 01:00:01 +0200891static int __init cx8802_init(void)
Steven Toth6c5be742006-12-02 21:15:51 -0200892{
Trent Piepho5772f812007-08-15 14:41:59 -0300893 printk(KERN_INFO "cx88/2: cx2388x MPEG-TS Driver Manager version %d.%d.%d loaded\n",
Steven Toth6c5be742006-12-02 21:15:51 -0200894 (CX88_VERSION_CODE >> 16) & 0xff,
895 (CX88_VERSION_CODE >> 8) & 0xff,
896 CX88_VERSION_CODE & 0xff);
897#ifdef SNAPSHOT
898 printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n",
899 SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100);
900#endif
901 return pci_register_driver(&cx8802_pci_driver);
902}
903
Peter Huewe31d0f842009-07-17 01:00:01 +0200904static void __exit cx8802_fini(void)
Steven Toth6c5be742006-12-02 21:15:51 -0200905{
906 pci_unregister_driver(&cx8802_pci_driver);
907}
908
909module_init(cx8802_init);
910module_exit(cx8802_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911EXPORT_SYMBOL(cx8802_buf_prepare);
912EXPORT_SYMBOL(cx8802_buf_queue);
913EXPORT_SYMBOL(cx8802_cancel_buffers);
914
Steven Toth6c5be742006-12-02 21:15:51 -0200915EXPORT_SYMBOL(cx8802_register_driver);
916EXPORT_SYMBOL(cx8802_unregister_driver);
Steven Toth6c5be742006-12-02 21:15:51 -0200917EXPORT_SYMBOL(cx8802_get_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918/* ----------------------------------------------------------- */
919/*
920 * Local variables:
921 * c-basic-offset: 8
922 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700923 * 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 -0700924 */