blob: c9d3182f79d57a0a9fd26b321ca27fbf66c0a9ce [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");
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030042MODULE_VERSION(CX88_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030044static unsigned int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045module_param(debug,int,0644);
46MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
47
Mauro Carvalho Chehabdb613712012-10-27 15:25:02 -030048#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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Mauro Carvalho Chehabdb613712012-10-27 15:25:02 -030053#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)
Steven Toth6c5be742006-12-02 21:15:51 -020057
Markus Rechberger77b74772007-04-27 12:31:06 -030058#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);
Markus Rechbergerced80c62007-04-27 12:31:07 -030062
Trent Piepho6a59d642007-08-15 14:41:57 -030063 if (dev->core->board.mpeg & CX88_MPEG_DVB)
Markus Rechberger77b74772007-04-27 12:31:06 -030064 request_module("cx88-dvb");
Trent Piepho6a59d642007-08-15 14:41:57 -030065 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD)
Markus Rechbergerced80c62007-04-27 12:31:07 -030066 request_module("cx88-blackbird");
Markus Rechberger77b74772007-04-27 12:31:06 -030067}
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}
Tejun Heo707bcf32010-12-24 16:14:20 +010074
75static void flush_request_modules(struct cx8802_dev *dev)
76{
Tejun Heo43829732012-08-20 14:51:24 -070077 flush_work(&dev->request_module_wk);
Tejun Heo707bcf32010-12-24 16:14:20 +010078}
Markus Rechberger77b74772007-04-27 12:31:06 -030079#else
80#define request_modules(dev)
Tejun Heo707bcf32010-12-24 16:14:20 +010081#define flush_request_modules(dev)
Markus Rechberger77b74772007-04-27 12:31:06 -030082#endif /* CONFIG_MODULES */
83
84
Steven Toth6c5be742006-12-02 21:15:51 -020085static LIST_HEAD(cx8802_devlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -030086static DEFINE_MUTEX(cx8802_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* ------------------------------------------------------------------ */
88
89static int cx8802_start_dma(struct cx8802_dev *dev,
90 struct cx88_dmaqueue *q,
91 struct cx88_buffer *buf)
92{
93 struct cx88_core *core = dev->core;
94
Trent Piepho7717cbe2007-10-14 02:52:16 -030095 dprintk(1, "cx8802_start_dma w: %d, h: %d, f: %d\n",
96 buf->vb.width, buf->vb.height, buf->vb.field);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
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 */
103 cx_write(MO_TS_LNGTH, buf->vb.width);
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /* FIXME: this needs a review.
106 * also: move to cx88-blackbird + cx88-dvb source files? */
107
Steven Toth6c5be742006-12-02 21:15:51 -0200108 dprintk( 1, "core->active_type_id = 0x%08x\n", core->active_type_id);
109
110 if ( (core->active_type_id == CX88_MPEG_DVB) &&
Trent Piepho6a59d642007-08-15 14:41:57 -0300111 (core->board.mpeg & CX88_MPEG_DVB) ) {
Steven Toth6c5be742006-12-02 21:15:51 -0200112
113 dprintk( 1, "cx8802_start_dma doing .dvb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* negedge driven & software reset */
Michael Krufkyf1798492005-07-07 17:58:39 -0700115 cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 udelay(100);
117 cx_write(MO_PINMUX_IO, 0x00);
Steven Toth60464da2008-01-05 16:53:01 -0300118 cx_write(TS_HW_SOP_CNTRL, 0x47<<16|188<<4|0x01);
Trent Piepho6a59d642007-08-15 14:41:57 -0300119 switch (core->boardnr) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700120 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:
Rusty Scottda215d22006-04-07 02:21:31 -0300123 case CX88_BOARD_PCHDTV_HD5500:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700124 cx_write(TS_SOP_STAT, 1<<13);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700125 break;
Dirk Herrendoerfer4f3ca2f12010-02-11 18:06:34 -0300126 case CX88_BOARD_SAMSUNG_SMT_7020:
127 cx_write(TS_SOP_STAT, 0x00);
128 break;
Steven Toth0fa14aa2006-01-09 15:25:02 -0200129 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;
Steven Toth6c5be742006-12-02 21:15:51 -0200134 case CX88_BOARD_HAUPPAUGE_HVR1300:
Sohail Syyed337ab6d2009-07-26 11:06:20 -0300135 /* 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);
Steven Toth6c5be742006-12-02 21:15:51 -0200139 break;
Steven Toth60464da2008-01-05 16:53:01 -0300140 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Steven Toth49170192008-01-15 21:57:14 -0300141 /* 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);
Steven Toth60464da2008-01-05 16:53:01 -0300147 udelay(100);
148 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700149 default:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700150 cx_write(TS_SOP_STAT, 0x00);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700151 break;
Michael Krufkyf1798492005-07-07 17:58:39 -0700152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
154 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200155 } else if ( (core->active_type_id == CX88_MPEG_BLACKBIRD) &&
Trent Piepho6a59d642007-08-15 14:41:57 -0300156 (core->board.mpeg & CX88_MPEG_BLACKBIRD) ) {
Steven Toth6c5be742006-12-02 21:15:51 -0200157 dprintk( 1, "cx8802_start_dma doing .blackbird\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 cx_write(TS_VALERR_CNTRL, 0x2000);
165
166 cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
167 udelay(100);
Steven Toth6c5be742006-12-02 21:15:51 -0200168 } else {
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300169 printk( "%s() Failed. Unsupported value in .mpeg (0x%08x)\n", __func__,
Trent Piepho6a59d642007-08-15 14:41:57 -0300170 core->board.mpeg );
Steven Toth6c5be742006-12-02 21:15:51 -0200171 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /* reset counter */
175 cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
176 q->count = 1;
177
178 /* enable irqs */
Trent Piepho76d313b2006-04-10 09:27:08 -0300179 dprintk( 1, "setting the interrupt mask\n" );
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300180 cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700181 cx_set(MO_TS_INTMSK, 0x1f0011);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 /* start dma */
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700184 cx_set(MO_DEV_CNTRL2, (1<<5));
185 cx_set(MO_TS_DMACNTRL, 0x11);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return 0;
187}
188
189static int cx8802_stop_dma(struct cx8802_dev *dev)
190{
191 struct cx88_core *core = dev->core;
Trent Piepho76d313b2006-04-10 09:27:08 -0300192 dprintk( 1, "cx8802_stop_dma\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* stop dma */
195 cx_clear(MO_TS_DMACNTRL, 0x11);
196
197 /* disable irqs */
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300198 cx_clear(MO_PCI_INTMSK, PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300211 dprintk( 1, "cx8802_restart_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (list_empty(&q->active))
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700213 {
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300214 struct cx88_buffer *prev;
215 prev = NULL;
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300216
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300217 dprintk(1, "cx8802_restart_queue: queue is empty\n" );
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300218
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300219 for (;;) {
220 if (list_empty(&q->queued))
221 return 0;
222 buf = list_entry(q->queued.next, struct cx88_buffer, vb.queue);
223 if (NULL == prev) {
Wei Yongjun8d6b1252012-10-08 08:33:49 -0300224 list_move_tail(&buf->vb.queue, &q->active);
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300225 cx8802_start_dma(dev, q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300226 buf->vb.state = VIDEOBUF_ACTIVE;
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300227 buf->count = q->count++;
228 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
229 dprintk(1,"[%p/%d] restart_queue - first active\n",
230 buf,buf->vb.i);
Jelle Foksf14ac0b2006-03-09 17:44:07 -0300231
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300232 } else if (prev->vb.width == buf->vb.width &&
233 prev->vb.height == buf->vb.height &&
234 prev->fmt == buf->fmt) {
Wei Yongjun8d6b1252012-10-08 08:33:49 -0300235 list_move_tail(&buf->vb.queue, &q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300236 buf->vb.state = VIDEOBUF_ACTIVE;
Michael Krufkyb930e1d2007-08-27 18:16:54 -0300237 buf->count = q->count++;
238 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
239 dprintk(1,"[%p/%d] restart_queue - move to active\n",
240 buf,buf->vb.i);
241 } else {
242 return 0;
243 }
244 prev = buf;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
250 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
251 buf, buf->vb.i);
252 cx8802_start_dma(dev, q, buf);
Trent Piepho89a47942007-10-14 02:52:17 -0300253 list_for_each_entry(buf, &q->active, vb.queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
256 return 0;
257}
258
259/* ------------------------------------------------------------------ */
260
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300261int cx8802_buf_prepare(struct videobuf_queue *q, struct cx8802_dev *dev,
262 struct cx88_buffer *buf, enum v4l2_field field)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 int size = dev->ts_packet_size * dev->ts_packet_count;
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300265 struct videobuf_dmabuf *dma=videobuf_to_dma(&buf->vb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int rc;
267
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300268 dprintk(1, "%s: %p\n", __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (0 != buf->vb.baddr && buf->vb.bsize < size)
270 return -EINVAL;
271
Brandon Philips0fc06862007-11-06 20:02:36 -0300272 if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 buf->vb.width = dev->ts_packet_size;
274 buf->vb.height = dev->ts_packet_count;
275 buf->vb.size = size;
Catalin Climov31629422005-11-08 21:36:17 -0800276 buf->vb.field = field /*V4L2_FIELD_TOP*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300278 if (0 != (rc = videobuf_iolock(q,&buf->vb,NULL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 goto fail;
280 cx88_risc_databuffer(dev->pci, &buf->risc,
Mauro Carvalho Chehabc1accaa2007-08-23 16:37:49 -0300281 dma->sglist,
Trent Piepho05b27232007-08-24 01:06:34 -0300282 buf->vb.width, buf->vb.height, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Brandon Philips0fc06862007-11-06 20:02:36 -0300284 buf->vb.state = VIDEOBUF_PREPARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return 0;
286
287 fail:
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300288 cx88_free_buffer(q,buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return rc;
290}
291
292void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
293{
294 struct cx88_buffer *prev;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300295 struct cx88_dmaqueue *cx88q = &dev->mpegq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700297 dprintk( 1, "cx8802_buf_queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* add jump to stopper */
299 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300300 buf->risc.jmp[1] = cpu_to_le32(cx88q->stopper.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300302 if (list_empty(&cx88q->active)) {
Trent Piepho76d313b2006-04-10 09:27:08 -0300303 dprintk( 1, "queue is empty - first active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300304 list_add_tail(&buf->vb.queue,&cx88q->active);
305 cx8802_start_dma(dev, cx88q, buf);
Brandon Philips0fc06862007-11-06 20:02:36 -0300306 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300307 buf->count = cx88q->count++;
308 mod_timer(&cx88q->timeout, jiffies+BUFFER_TIMEOUT);
Trent Piepho76d313b2006-04-10 09:27:08 -0300309 dprintk(1,"[%p/%d] %s - first active\n",
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300310 buf, buf->vb.i, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 } else {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700313 dprintk( 1, "queue is not empty - append to active\n" );
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300314 prev = list_entry(cx88q->active.prev, struct cx88_buffer, vb.queue);
315 list_add_tail(&buf->vb.queue,&cx88q->active);
Brandon Philips0fc06862007-11-06 20:02:36 -0300316 buf->vb.state = VIDEOBUF_ACTIVE;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300317 buf->count = cx88q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700319 dprintk( 1, "[%p/%d] %s - append to active\n",
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300320 buf, buf->vb.i, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322}
323
324/* ----------------------------------------------------------- */
325
lawrence rust2e4e98e2010-08-25 09:50:20 -0300326static void do_cancel_buffers(struct cx8802_dev *dev, const char *reason, int restart)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct cx88_dmaqueue *q = &dev->mpegq;
329 struct cx88_buffer *buf;
330 unsigned long flags;
331
332 spin_lock_irqsave(&dev->slock,flags);
333 while (!list_empty(&q->active)) {
334 buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
335 list_del(&buf->vb.queue);
Brandon Philips0fc06862007-11-06 20:02:36 -0300336 buf->vb.state = VIDEOBUF_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 wake_up(&buf->vb.done);
338 dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
339 buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
340 }
341 if (restart)
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700342 {
Trent Piepho76d313b2006-04-10 09:27:08 -0300343 dprintk(1, "restarting queue\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 cx8802_restart_queue(dev,q);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 spin_unlock_irqrestore(&dev->slock,flags);
347}
348
349void cx8802_cancel_buffers(struct cx8802_dev *dev)
350{
351 struct cx88_dmaqueue *q = &dev->mpegq;
352
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700353 dprintk( 1, "cx8802_cancel_buffers" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 del_timer_sync(&q->timeout);
355 cx8802_stop_dma(dev);
356 do_cancel_buffers(dev,"cancel",0);
357}
358
359static void cx8802_timeout(unsigned long data)
360{
361 struct cx8802_dev *dev = (struct cx8802_dev*)data;
362
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300363 dprintk(1, "%s\n",__func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (debug)
366 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
367 cx8802_stop_dma(dev);
368 do_cancel_buffers(dev,"timeout",1);
369}
370
lawrence rust2e4e98e2010-08-25 09:50:20 -0300371static const char * cx88_mpeg_irqs[32] = {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700372 "ts_risci1", NULL, NULL, NULL,
373 "ts_risci2", NULL, NULL, NULL,
374 "ts_oflow", NULL, NULL, NULL,
375 "ts_sync", NULL, NULL, NULL,
376 "opc_err", "par_err", "rip_err", "pci_abort",
377 "ts_err?",
378};
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static void cx8802_mpeg_irq(struct cx8802_dev *dev)
381{
382 struct cx88_core *core = dev->core;
383 u32 status, mask, count;
384
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700385 dprintk( 1, "cx8802_mpeg_irq\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 status = cx_read(MO_TS_INTSTAT);
387 mask = cx_read(MO_TS_INTMSK);
388 if (0 == (status & mask))
389 return;
390
391 cx_write(MO_TS_INTSTAT, status);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (debug || (status & mask & ~0xff))
394 cx88_print_irqbits(core->name, "irq mpeg ",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300395 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
396 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /* risc op code error */
399 if (status & (1 << 16)) {
400 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
401 cx_clear(MO_TS_DMACNTRL, 0x11);
402 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
403 }
404
405 /* risc1 y */
406 if (status & 0x01) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700407 dprintk( 1, "wake up\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 spin_lock(&dev->slock);
409 count = cx_read(MO_TS_GPCNT);
410 cx88_wakeup(dev->core, &dev->mpegq, count);
411 spin_unlock(&dev->slock);
412 }
413
414 /* risc2 y */
415 if (status & 0x10) {
416 spin_lock(&dev->slock);
417 cx8802_restart_queue(dev,&dev->mpegq);
418 spin_unlock(&dev->slock);
419 }
420
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800421 /* other general errors */
422 if (status & 0x1f0100) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700423 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800424 spin_lock(&dev->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 cx8802_stop_dma(dev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800426 cx8802_restart_queue(dev,&dev->mpegq);
427 spin_unlock(&dev->slock);
428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700431#define MAX_IRQ_LOOP 10
432
David Howells7d12e782006-10-05 14:55:46 +0100433static irqreturn_t cx8802_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 struct cx8802_dev *dev = dev_id;
436 struct cx88_core *core = dev->core;
437 u32 status;
438 int loop, handled = 0;
439
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700440 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300441 status = cx_read(MO_PCI_INTSTAT) &
442 (core->pci_irqmask | PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (0 == status)
444 goto out;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700445 dprintk( 1, "cx8802_irq\n" );
446 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
447 dprintk( 1, " status: %d\n", status );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 handled = 1;
449 cx_write(MO_PCI_INTSTAT, status);
450
451 if (status & core->pci_irqmask)
452 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300453 if (status & PCI_INT_TSINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 cx8802_mpeg_irq(dev);
Peter Senna Tschudinc2c1b412012-09-28 05:37:22 -0300455 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700456 if (MAX_IRQ_LOOP == loop) {
457 dprintk( 0, "clearing mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
459 core->name);
460 cx_write(MO_PCI_INTMSK,0);
461 }
462
463 out:
464 return IRQ_RETVAL(handled);
465}
466
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300467static int cx8802_init_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct cx88_core *core = dev->core;
470 int err;
471
472 /* pci init */
473 if (pci_enable_device(dev->pci))
474 return -EIO;
475 pci_set_master(dev->pci);
Yang Hongyang284901a2009-04-06 19:01:15 -0700476 if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
478 return -EIO;
479 }
480
Bjørn Morkabd34d82011-03-21 11:35:56 -0300481 dev->pci_rev = dev->pci->revision;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800482 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
483 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700484 "latency: %d, mmio: 0x%llx\n", dev->core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700486 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 spin_lock_init(&dev->slock);
490
491 /* init dma queue */
492 INIT_LIST_HEAD(&dev->mpegq.active);
493 INIT_LIST_HEAD(&dev->mpegq.queued);
494 dev->mpegq.timeout.function = cx8802_timeout;
495 dev->mpegq.timeout.data = (unsigned long)dev;
496 init_timer(&dev->mpegq.timeout);
497 cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
498 MO_TS_DMACNTRL,0x11,0x00);
499
500 /* get irq */
501 err = request_irq(dev->pci->irq, cx8802_irq,
Thomas Gleixner8076fe32006-07-01 19:29:37 -0700502 IRQF_SHARED | IRQF_DISABLED, dev->core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (err < 0) {
504 printk(KERN_ERR "%s: can't get IRQ %d\n",
505 dev->core->name, dev->pci->irq);
506 return err;
507 }
508 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
509
510 /* everything worked */
511 pci_set_drvdata(dev->pci,dev);
512 return 0;
513}
514
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300515static void cx8802_fini_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700517 dprintk( 2, "cx8802_fini_common\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 cx8802_stop_dma(dev);
519 pci_disable_device(dev->pci);
520
521 /* unregister stuff */
522 free_irq(dev->pci->irq, dev);
523 pci_set_drvdata(dev->pci, NULL);
524
525 /* free memory */
526 btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
527}
528
529/* ----------------------------------------------------------- */
530
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300531static int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800533 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct cx88_core *core = dev->core;
535
536 /* stop mpeg dma */
537 spin_lock(&dev->slock);
538 if (!list_empty(&dev->mpegq.active)) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700539 dprintk( 2, "suspend\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 printk("%s: suspend mpeg\n", core->name);
541 cx8802_stop_dma(dev);
542 del_timer(&dev->mpegq.timeout);
543 }
544 spin_unlock(&dev->slock);
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* FIXME -- shutdown device */
547 cx88_shutdown(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 pci_save_state(pci_dev);
550 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
551 pci_disable_device(pci_dev);
552 dev->state.disabled = 1;
553 }
554 return 0;
555}
556
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300557static int cx8802_resume_common(struct pci_dev *pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700559 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct cx88_core *core = dev->core;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700561 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700564 err=pci_enable_device(pci_dev);
565 if (err) {
566 printk(KERN_ERR "%s: can't enable device\n",
567 dev->core->name);
568 return err;
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 dev->state.disabled = 0;
571 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700572 err=pci_set_power_state(pci_dev, PCI_D0);
573 if (err) {
574 printk(KERN_ERR "%s: can't enable device\n",
575 dev->core->name);
576 pci_disable_device(pci_dev);
577 dev->state.disabled = 1;
578
579 return err;
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 pci_restore_state(pci_dev);
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* FIXME: re-initialize hardware */
584 cx88_reset(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 /* restart video+vbi capture */
587 spin_lock(&dev->slock);
588 if (!list_empty(&dev->mpegq.active)) {
589 printk("%s: resume mpeg\n", core->name);
590 cx8802_restart_queue(dev,&dev->mpegq);
591 }
592 spin_unlock(&dev->slock);
593
594 return 0;
595}
596
Steven Toth6c5be742006-12-02 21:15:51 -0200597struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
598{
Trent Piepho081c2fc2007-10-14 02:52:17 -0300599 struct cx8802_driver *d;
Steven Toth6c5be742006-12-02 21:15:51 -0200600
Trent Piepho89a47942007-10-14 02:52:17 -0300601 list_for_each_entry(d, &dev->drvlist, drvlist)
Trent Piepho081c2fc2007-10-14 02:52:17 -0300602 if (d->type_id == btype)
603 return d;
Steven Toth6c5be742006-12-02 21:15:51 -0200604
605 return NULL;
606}
607
608/* Driver asked for hardware access. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300609static int cx8802_request_acquire(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200610{
611 struct cx88_core *core = drv->core;
Istvan Vargad922b8e2010-03-27 09:47:45 -0300612 unsigned int i;
Steven Toth6c5be742006-12-02 21:15:51 -0200613
614 /* Fail a request for hardware if the device is busy. */
Roland Stoll27d0fe12008-02-11 13:00:34 -0300615 if (core->active_type_id != CX88_BOARD_NONE &&
616 core->active_type_id != drv->type_id)
Steven Toth6c5be742006-12-02 21:15:51 -0200617 return -EBUSY;
618
Devin Heitmueller243bf1a22011-07-14 12:44:46 -0300619 if (drv->type_id == CX88_MPEG_DVB) {
620 /* When switching to DVB, always set the input to the tuner */
621 core->last_analog_input = core->input;
622 core->input = 0;
623 for (i = 0;
624 i < (sizeof(core->board.input) / sizeof(struct cx88_input));
625 i++) {
626 if (core->board.input[i].type == CX88_VMUX_DVB) {
627 core->input = i;
628 break;
629 }
Istvan Vargad922b8e2010-03-27 09:47:45 -0300630 }
631 }
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -0300632
Steven Toth6c5be742006-12-02 21:15:51 -0200633 if (drv->advise_acquire)
634 {
Ricardo Cerqueirabaff6cd2008-02-13 22:41:15 -0300635 core->active_ref++;
Roland Stoll27d0fe12008-02-11 13:00:34 -0300636 if (core->active_type_id == CX88_BOARD_NONE) {
637 core->active_type_id = drv->type_id;
638 drv->advise_acquire(drv);
639 }
Steven Toth6c5be742006-12-02 21:15:51 -0200640
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300641 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200642 }
643
644 return 0;
645}
646
647/* Driver asked to release hardware. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300648static int cx8802_request_release(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200649{
650 struct cx88_core *core = drv->core;
651
Roland Stoll27d0fe12008-02-11 13:00:34 -0300652 if (drv->advise_release && --core->active_ref == 0)
Steven Toth6c5be742006-12-02 21:15:51 -0200653 {
Devin Heitmueller243bf1a22011-07-14 12:44:46 -0300654 if (drv->type_id == CX88_MPEG_DVB) {
655 /* If the DVB driver is releasing, reset the input
656 state to the last configured analog input */
657 core->input = core->last_analog_input;
658 }
659
Steven Toth6c5be742006-12-02 21:15:51 -0200660 drv->advise_release(drv);
661 core->active_type_id = CX88_BOARD_NONE;
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300662 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200663 }
664
665 return 0;
666}
667
668static int cx8802_check_driver(struct cx8802_driver *drv)
669{
670 if (drv == NULL)
671 return -ENODEV;
672
673 if ((drv->type_id != CX88_MPEG_DVB) &&
674 (drv->type_id != CX88_MPEG_BLACKBIRD))
675 return -EINVAL;
676
677 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
678 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
679 return -EINVAL;
680
681 if ((drv->probe == NULL) ||
682 (drv->remove == NULL) ||
683 (drv->advise_acquire == NULL) ||
684 (drv->advise_release == NULL))
685 return -EINVAL;
686
687 return 0;
688}
689
690int cx8802_register_driver(struct cx8802_driver *drv)
691{
Trent Piepho89a47942007-10-14 02:52:17 -0300692 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200693 struct cx8802_driver *driver;
Trent Piepho89a47942007-10-14 02:52:17 -0300694 int err, i = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200695
Trent Piepho5772f812007-08-15 14:41:59 -0300696 printk(KERN_INFO
697 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
698 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
699 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200700
701 if ((err = cx8802_check_driver(drv)) != 0) {
Trent Piepho5772f812007-08-15 14:41:59 -0300702 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
Steven Toth6c5be742006-12-02 21:15:51 -0200703 return err;
704 }
705
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300706 mutex_lock(&cx8802_mutex);
707
Trent Piepho89a47942007-10-14 02:52:17 -0300708 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300709 printk(KERN_INFO
710 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300711 dev->core->name, dev->pci->subsystem_vendor,
712 dev->pci->subsystem_device, dev->core->board.name,
713 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200714
715 /* Bring up a new struct for each driver instance */
716 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300717 if (driver == NULL) {
718 err = -ENOMEM;
719 goto out;
720 }
Steven Toth6c5be742006-12-02 21:15:51 -0200721
722 /* Snapshot of the driver registration data */
Trent Piepho89a47942007-10-14 02:52:17 -0300723 drv->core = dev->core;
Steven Toth6c5be742006-12-02 21:15:51 -0200724 drv->suspend = cx8802_suspend_common;
725 drv->resume = cx8802_resume_common;
726 drv->request_acquire = cx8802_request_acquire;
727 drv->request_release = cx8802_request_release;
728 memcpy(driver, drv, sizeof(*driver));
729
Jonathan Nieder1d6213a2011-05-01 06:29:56 -0300730 mutex_lock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200731 err = drv->probe(driver);
732 if (err == 0) {
Steven Toth019391e42006-10-06 21:29:25 -0300733 i++;
Trent Piepho89a47942007-10-14 02:52:17 -0300734 list_add_tail(&driver->drvlist, &dev->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200735 } else {
Trent Piepho5772f812007-08-15 14:41:59 -0300736 printk(KERN_ERR
737 "%s/2: cx8802 probe failed, err = %d\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300738 dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200739 }
Jonathan Nieder1d6213a2011-05-01 06:29:56 -0300740 mutex_unlock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200741 }
Steven Toth6c5be742006-12-02 21:15:51 -0200742
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300743 err = i ? 0 : -ENODEV;
744out:
745 mutex_unlock(&cx8802_mutex);
746 return err;
Steven Toth6c5be742006-12-02 21:15:51 -0200747}
748
749int cx8802_unregister_driver(struct cx8802_driver *drv)
750{
Trent Piepho89a47942007-10-14 02:52:17 -0300751 struct cx8802_dev *dev;
752 struct cx8802_driver *d, *dtmp;
753 int err = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200754
Trent Piepho5772f812007-08-15 14:41:59 -0300755 printk(KERN_INFO
756 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
757 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
758 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200759
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300760 mutex_lock(&cx8802_mutex);
761
Trent Piepho89a47942007-10-14 02:52:17 -0300762 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300763 printk(KERN_INFO
764 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300765 dev->core->name, dev->pci->subsystem_vendor,
766 dev->pci->subsystem_device, dev->core->board.name,
767 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200768
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300769 mutex_lock(&dev->core->lock);
770
Trent Piepho89a47942007-10-14 02:52:17 -0300771 list_for_each_entry_safe(d, dtmp, &dev->drvlist, drvlist) {
Steven Toth6c5be742006-12-02 21:15:51 -0200772 /* only unregister the correct driver type */
773 if (d->type_id != drv->type_id)
774 continue;
775
776 err = d->remove(d);
777 if (err == 0) {
Trent Piepho89a47942007-10-14 02:52:17 -0300778 list_del(&d->drvlist);
Trent Piephoa04036a2007-10-05 11:28:09 -0300779 kfree(d);
Steven Toth6c5be742006-12-02 21:15:51 -0200780 } else
Trent Piepho5772f812007-08-15 14:41:59 -0300781 printk(KERN_ERR "%s/2: cx8802 driver remove "
Trent Piepho89a47942007-10-14 02:52:17 -0300782 "failed (%d)\n", dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200783 }
784
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300785 mutex_unlock(&dev->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200786 }
787
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300788 mutex_unlock(&cx8802_mutex);
789
Steven Toth6c5be742006-12-02 21:15:51 -0200790 return err;
791}
792
793/* ----------------------------------------------------------- */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800794static int cx8802_probe(struct pci_dev *pci_dev,
795 const struct pci_device_id *pci_id)
Steven Toth6c5be742006-12-02 21:15:51 -0200796{
797 struct cx8802_dev *dev;
798 struct cx88_core *core;
Darron Broad9212a572008-10-21 10:42:00 -0300799 int err;
Steven Toth6c5be742006-12-02 21:15:51 -0200800
801 /* general setup */
802 core = cx88_core_get(pci_dev);
803 if (NULL == core)
804 return -EINVAL;
805
806 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
807
808 err = -ENODEV;
Trent Piepho6a59d642007-08-15 14:41:57 -0300809 if (!core->board.mpeg)
Steven Toth6c5be742006-12-02 21:15:51 -0200810 goto fail_core;
811
812 err = -ENOMEM;
813 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
814 if (NULL == dev)
815 goto fail_core;
816 dev->pci = pci_dev;
817 dev->core = core;
818
Mauro Carvalho Chehabe32fadc2009-01-06 16:06:07 -0300819 /* Maintain a reference so cx88-video can query the 8802 device. */
820 core->dvbdev = dev;
821
Steven Toth6c5be742006-12-02 21:15:51 -0200822 err = cx8802_init_common(dev);
823 if (err != 0)
824 goto fail_free;
825
Trent Piepho081c2fc2007-10-14 02:52:17 -0300826 INIT_LIST_HEAD(&dev->drvlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300827 mutex_lock(&cx8802_mutex);
Steven Toth6c5be742006-12-02 21:15:51 -0200828 list_add_tail(&dev->devlist,&cx8802_devlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300829 mutex_unlock(&cx8802_mutex);
Steven Toth6c5be742006-12-02 21:15:51 -0200830
Markus Rechberger77b74772007-04-27 12:31:06 -0300831 /* now autoload cx88-dvb or cx88-blackbird */
832 request_modules(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200833 return 0;
834
835 fail_free:
836 kfree(dev);
837 fail_core:
Mauro Carvalho Chehabe32fadc2009-01-06 16:06:07 -0300838 core->dvbdev = NULL;
Steven Toth6c5be742006-12-02 21:15:51 -0200839 cx88_core_put(core,pci_dev);
840 return err;
841}
842
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800843static void cx8802_remove(struct pci_dev *pci_dev)
Steven Toth6c5be742006-12-02 21:15:51 -0200844{
845 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200846
847 dev = pci_get_drvdata(pci_dev);
848
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300849 dprintk( 1, "%s\n", __func__);
Steven Toth6c5be742006-12-02 21:15:51 -0200850
Tejun Heo707bcf32010-12-24 16:14:20 +0100851 flush_request_modules(dev);
852
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300853 mutex_lock(&dev->core->lock);
854
Trent Piepho081c2fc2007-10-14 02:52:17 -0300855 if (!list_empty(&dev->drvlist)) {
Trent Piepho89a47942007-10-14 02:52:17 -0300856 struct cx8802_driver *drv, *tmp;
Trent Piepho081c2fc2007-10-14 02:52:17 -0300857 int err;
858
859 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
860 "while cx8802 sub-drivers still loaded?!\n",
861 dev->core->name);
862
Trent Piepho89a47942007-10-14 02:52:17 -0300863 list_for_each_entry_safe(drv, tmp, &dev->drvlist, drvlist) {
Trent Piepho081c2fc2007-10-14 02:52:17 -0300864 err = drv->remove(drv);
865 if (err == 0) {
Trent Piepho89a47942007-10-14 02:52:17 -0300866 list_del(&drv->drvlist);
Trent Piepho081c2fc2007-10-14 02:52:17 -0300867 } else
868 printk(KERN_ERR "%s/2: cx8802 driver remove "
869 "failed (%d)\n", dev->core->name, err);
Trent Piephoa04036a2007-10-05 11:28:09 -0300870 kfree(drv);
Steven Toth6c5be742006-12-02 21:15:51 -0200871 }
Steven Toth6c5be742006-12-02 21:15:51 -0200872 }
873
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300874 mutex_unlock(&dev->core->lock);
875
Steven Toth6c5be742006-12-02 21:15:51 -0200876 /* Destroy any 8802 reference. */
877 dev->core->dvbdev = NULL;
878
879 /* common */
880 cx8802_fini_common(dev);
881 cx88_core_put(dev->core,dev->pci);
882 kfree(dev);
883}
884
lawrence rust2e4e98e2010-08-25 09:50:20 -0300885static const struct pci_device_id cx8802_pci_tbl[] = {
Steven Toth6c5be742006-12-02 21:15:51 -0200886 {
887 .vendor = 0x14f1,
888 .device = 0x8802,
889 .subvendor = PCI_ANY_ID,
890 .subdevice = PCI_ANY_ID,
891 },{
892 /* --- end of list --- */
893 }
894};
895MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
896
897static struct pci_driver cx8802_pci_driver = {
898 .name = "cx88-mpeg driver manager",
899 .id_table = cx8802_pci_tbl,
900 .probe = cx8802_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800901 .remove = cx8802_remove,
Steven Toth6c5be742006-12-02 21:15:51 -0200902};
903
Peter Huewe31d0f842009-07-17 01:00:01 +0200904static int __init cx8802_init(void)
Steven Toth6c5be742006-12-02 21:15:51 -0200905{
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -0300906 printk(KERN_INFO "cx88/2: cx2388x MPEG-TS Driver Manager version %s loaded\n",
907 CX88_VERSION);
Steven Toth6c5be742006-12-02 21:15:51 -0200908 return pci_register_driver(&cx8802_pci_driver);
909}
910
Peter Huewe31d0f842009-07-17 01:00:01 +0200911static void __exit cx8802_fini(void)
Steven Toth6c5be742006-12-02 21:15:51 -0200912{
913 pci_unregister_driver(&cx8802_pci_driver);
914}
915
916module_init(cx8802_init);
917module_exit(cx8802_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918EXPORT_SYMBOL(cx8802_buf_prepare);
919EXPORT_SYMBOL(cx8802_buf_queue);
920EXPORT_SYMBOL(cx8802_cancel_buffers);
921
Steven Toth6c5be742006-12-02 21:15:51 -0200922EXPORT_SYMBOL(cx8802_register_driver);
923EXPORT_SYMBOL(cx8802_unregister_driver);
Steven Toth6c5be742006-12-02 21:15:51 -0200924EXPORT_SYMBOL(cx8802_get_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925/* ----------------------------------------------------------- */
926/*
927 * Local variables:
928 * c-basic-offset: 8
929 * End:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700930 * 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 -0700931 */