blob: 98344540c51f83bb57be721a98d9c8b6288357c2 [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
Hans Verkuil0b6b6302014-09-20 09:22:18 -030089int cx8802_start_dma(struct cx8802_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 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",
Hans Verkuilccd6f1d2014-09-20 09:23:44 -030096 core->width, core->height, core->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 */
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300103 cx_write(MO_TS_LNGTH, dev->ts_packet_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
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))
213 return 0;
214
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300215 buf = list_entry(q->active.next, struct cx88_buffer, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 dprintk(2,"restart_queue [%p/%d]: restart dma\n",
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300217 buf, buf->vb.v4l2_buf.index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 cx8802_start_dma(dev, q, buf);
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300219 list_for_each_entry(buf, &q->active, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 buf->count = q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return 0;
222}
223
224/* ------------------------------------------------------------------ */
225
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300226int cx8802_buf_prepare(struct vb2_queue *q, struct cx8802_dev *dev,
Hans Verkuilccd6f1d2014-09-20 09:23:44 -0300227 struct cx88_buffer *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 int size = dev->ts_packet_size * dev->ts_packet_count;
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300230 struct sg_table *sgt = vb2_dma_sg_plane_desc(&buf->vb, 0);
Hans Verkuil5e7045e2014-08-29 04:11:54 -0300231 struct cx88_riscmem *risc = &buf->risc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int rc;
233
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300234 if (vb2_plane_size(&buf->vb, 0) < size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return -EINVAL;
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300236 vb2_set_plane_payload(&buf->vb, 0, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Hans Verkuil5e7045e2014-08-29 04:11:54 -0300238 rc = cx88_risc_databuffer(dev->pci, risc, sgt->sgl,
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300239 dev->ts_packet_size, dev->ts_packet_count, 0);
Hans Verkuil999b3ceb2014-08-29 05:40:47 -0300240 if (rc) {
Hans Verkuil5e7045e2014-08-29 04:11:54 -0300241 if (risc->cpu)
242 pci_free_consistent(dev->pci, risc->size, risc->cpu, risc->dma);
243 memset(risc, 0, sizeof(*risc));
Hans Verkuil999b3ceb2014-08-29 05:40:47 -0300244 return rc;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
250{
251 struct cx88_buffer *prev;
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300252 struct cx88_dmaqueue *cx88q = &dev->mpegq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700254 dprintk( 1, "cx8802_buf_queue\n" );
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300255 /* add jump to start */
256 buf->risc.cpu[1] = cpu_to_le32(buf->risc.dma + 8);
257 buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_CNT_INC);
258 buf->risc.jmp[1] = cpu_to_le32(buf->risc.dma + 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300260 if (list_empty(&cx88q->active)) {
Trent Piepho76d313b2006-04-10 09:27:08 -0300261 dprintk( 1, "queue is empty - first active\n" );
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300262 list_add_tail(&buf->list, &cx88q->active);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300263 buf->count = cx88q->count++;
Trent Piepho76d313b2006-04-10 09:27:08 -0300264 dprintk(1,"[%p/%d] %s - first active\n",
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300265 buf, buf->vb.v4l2_buf.index, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 } else {
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300268 buf->risc.cpu[0] |= cpu_to_le32(RISC_IRQ1);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700269 dprintk( 1, "queue is not empty - append to active\n" );
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300270 prev = list_entry(cx88q->active.prev, struct cx88_buffer, list);
271 list_add_tail(&buf->list, &cx88q->active);
Mauro Carvalho Chehabc7b0ac02006-03-10 12:29:15 -0300272 buf->count = cx88q->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700274 dprintk( 1, "[%p/%d] %s - append to active\n",
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300275 buf, buf->vb.v4l2_buf.index, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277}
278
279/* ----------------------------------------------------------- */
280
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300281static void do_cancel_buffers(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct cx88_dmaqueue *q = &dev->mpegq;
284 struct cx88_buffer *buf;
285 unsigned long flags;
286
287 spin_lock_irqsave(&dev->slock,flags);
288 while (!list_empty(&q->active)) {
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300289 buf = list_entry(q->active.next, struct cx88_buffer, list);
290 list_del(&buf->list);
291 vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 spin_unlock_irqrestore(&dev->slock,flags);
294}
295
296void cx8802_cancel_buffers(struct cx8802_dev *dev)
297{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700298 dprintk( 1, "cx8802_cancel_buffers" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 cx8802_stop_dma(dev);
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300300 do_cancel_buffers(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
lawrence rust2e4e98e2010-08-25 09:50:20 -0300303static const char * cx88_mpeg_irqs[32] = {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700304 "ts_risci1", NULL, NULL, NULL,
305 "ts_risci2", NULL, NULL, NULL,
306 "ts_oflow", NULL, NULL, NULL,
307 "ts_sync", NULL, NULL, NULL,
308 "opc_err", "par_err", "rip_err", "pci_abort",
309 "ts_err?",
310};
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312static void cx8802_mpeg_irq(struct cx8802_dev *dev)
313{
314 struct cx88_core *core = dev->core;
315 u32 status, mask, count;
316
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700317 dprintk( 1, "cx8802_mpeg_irq\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 status = cx_read(MO_TS_INTSTAT);
319 mask = cx_read(MO_TS_INTMSK);
320 if (0 == (status & mask))
321 return;
322
323 cx_write(MO_TS_INTSTAT, status);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (debug || (status & mask & ~0xff))
326 cx88_print_irqbits(core->name, "irq mpeg ",
Mauro Carvalho Chehab66623a02007-03-29 08:47:04 -0300327 cx88_mpeg_irqs, ARRAY_SIZE(cx88_mpeg_irqs),
328 status, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /* risc op code error */
331 if (status & (1 << 16)) {
332 printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
333 cx_clear(MO_TS_DMACNTRL, 0x11);
334 cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
335 }
336
337 /* risc1 y */
338 if (status & 0x01) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700339 dprintk( 1, "wake up\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 spin_lock(&dev->slock);
341 count = cx_read(MO_TS_GPCNT);
342 cx88_wakeup(dev->core, &dev->mpegq, count);
343 spin_unlock(&dev->slock);
344 }
345
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800346 /* other general errors */
347 if (status & 0x1f0100) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700348 dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800349 spin_lock(&dev->slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 cx8802_stop_dma(dev);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800351 spin_unlock(&dev->slock);
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700355#define MAX_IRQ_LOOP 10
356
David Howells7d12e782006-10-05 14:55:46 +0100357static irqreturn_t cx8802_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct cx8802_dev *dev = dev_id;
360 struct cx88_core *core = dev->core;
361 u32 status;
362 int loop, handled = 0;
363
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700364 for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300365 status = cx_read(MO_PCI_INTSTAT) &
366 (core->pci_irqmask | PCI_INT_TSINT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (0 == status)
368 goto out;
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700369 dprintk( 1, "cx8802_irq\n" );
370 dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
371 dprintk( 1, " status: %d\n", status );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 handled = 1;
373 cx_write(MO_PCI_INTSTAT, status);
374
375 if (status & core->pci_irqmask)
376 cx88_core_irq(core,status);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300377 if (status & PCI_INT_TSINT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 cx8802_mpeg_irq(dev);
Peter Senna Tschudinc2c1b412012-09-28 05:37:22 -0300379 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700380 if (MAX_IRQ_LOOP == loop) {
381 dprintk( 0, "clearing mask\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
383 core->name);
384 cx_write(MO_PCI_INTMSK,0);
385 }
386
387 out:
388 return IRQ_RETVAL(handled);
389}
390
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300391static int cx8802_init_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct cx88_core *core = dev->core;
394 int err;
395
396 /* pci init */
397 if (pci_enable_device(dev->pci))
398 return -EIO;
399 pci_set_master(dev->pci);
Yang Hongyang284901a2009-04-06 19:01:15 -0700400 if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
402 return -EIO;
403 }
404
Bjørn Morkabd34d82011-03-21 11:35:56 -0300405 dev->pci_rev = dev->pci->revision;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800406 pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
407 printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700408 "latency: %d, mmio: 0x%llx\n", dev->core->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
Greg Kroah-Hartman228aef62006-06-12 15:16:52 -0700410 dev->pci_lat,(unsigned long long)pci_resource_start(dev->pci,0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* initialize driver struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 spin_lock_init(&dev->slock);
414
415 /* init dma queue */
416 INIT_LIST_HEAD(&dev->mpegq.active);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /* get irq */
419 err = request_irq(dev->pci->irq, cx8802_irq,
Michael Opdenacker3e018fe2013-10-13 02:49:29 -0300420 IRQF_SHARED, dev->core->name, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (err < 0) {
422 printk(KERN_ERR "%s: can't get IRQ %d\n",
423 dev->core->name, dev->pci->irq);
424 return err;
425 }
426 cx_set(MO_PCI_INTMSK, core->pci_irqmask);
427
428 /* everything worked */
429 pci_set_drvdata(dev->pci,dev);
430 return 0;
431}
432
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300433static void cx8802_fini_common(struct cx8802_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700435 dprintk( 2, "cx8802_fini_common\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 cx8802_stop_dma(dev);
437 pci_disable_device(dev->pci);
438
439 /* unregister stuff */
440 free_irq(dev->pci->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443/* ----------------------------------------------------------- */
444
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300445static int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800447 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct cx88_core *core = dev->core;
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -0300449 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* stop mpeg dma */
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -0300452 spin_lock_irqsave(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (!list_empty(&dev->mpegq.active)) {
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700454 dprintk( 2, "suspend\n" );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 printk("%s: suspend mpeg\n", core->name);
456 cx8802_stop_dma(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -0300458 spin_unlock_irqrestore(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /* FIXME -- shutdown device */
461 cx88_shutdown(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 pci_save_state(pci_dev);
464 if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
465 pci_disable_device(pci_dev);
466 dev->state.disabled = 1;
467 }
468 return 0;
469}
470
Adrian Bunka2fbaa52007-11-05 14:07:22 -0300471static int cx8802_resume_common(struct pci_dev *pci_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700473 struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct cx88_core *core = dev->core;
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -0300475 unsigned long flags;
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700476 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (dev->state.disabled) {
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700479 err=pci_enable_device(pci_dev);
480 if (err) {
481 printk(KERN_ERR "%s: can't enable device\n",
482 dev->core->name);
483 return err;
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 dev->state.disabled = 0;
486 }
Mauro Carvalho Chehab08adb9e2005-09-09 13:03:55 -0700487 err=pci_set_power_state(pci_dev, PCI_D0);
488 if (err) {
489 printk(KERN_ERR "%s: can't enable device\n",
490 dev->core->name);
491 pci_disable_device(pci_dev);
492 dev->state.disabled = 1;
493
494 return err;
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 pci_restore_state(pci_dev);
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 /* FIXME: re-initialize hardware */
499 cx88_reset(dev->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* restart video+vbi capture */
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -0300502 spin_lock_irqsave(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (!list_empty(&dev->mpegq.active)) {
504 printk("%s: resume mpeg\n", core->name);
505 cx8802_restart_queue(dev,&dev->mpegq);
506 }
Alexey Khoroshilov5ddfbbb2013-04-13 18:52:04 -0300507 spin_unlock_irqrestore(&dev->slock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 return 0;
510}
511
Steven Toth6c5be742006-12-02 21:15:51 -0200512struct cx8802_driver * cx8802_get_driver(struct cx8802_dev *dev, enum cx88_board_type btype)
513{
Trent Piepho081c2fc2007-10-14 02:52:17 -0300514 struct cx8802_driver *d;
Steven Toth6c5be742006-12-02 21:15:51 -0200515
Trent Piepho89a47942007-10-14 02:52:17 -0300516 list_for_each_entry(d, &dev->drvlist, drvlist)
Trent Piepho081c2fc2007-10-14 02:52:17 -0300517 if (d->type_id == btype)
518 return d;
Steven Toth6c5be742006-12-02 21:15:51 -0200519
520 return NULL;
521}
522
523/* Driver asked for hardware access. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300524static int cx8802_request_acquire(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200525{
526 struct cx88_core *core = drv->core;
Istvan Vargad922b8e2010-03-27 09:47:45 -0300527 unsigned int i;
Steven Toth6c5be742006-12-02 21:15:51 -0200528
529 /* Fail a request for hardware if the device is busy. */
Roland Stoll27d0fe12008-02-11 13:00:34 -0300530 if (core->active_type_id != CX88_BOARD_NONE &&
531 core->active_type_id != drv->type_id)
Steven Toth6c5be742006-12-02 21:15:51 -0200532 return -EBUSY;
533
Devin Heitmueller243bf1a22011-07-14 12:44:46 -0300534 if (drv->type_id == CX88_MPEG_DVB) {
535 /* When switching to DVB, always set the input to the tuner */
536 core->last_analog_input = core->input;
537 core->input = 0;
538 for (i = 0;
539 i < (sizeof(core->board.input) / sizeof(struct cx88_input));
540 i++) {
541 if (core->board.input[i].type == CX88_VMUX_DVB) {
542 core->input = i;
543 break;
544 }
Istvan Vargad922b8e2010-03-27 09:47:45 -0300545 }
546 }
Mauro Carvalho Chehabc2cb8fc2008-04-22 14:45:14 -0300547
Steven Toth6c5be742006-12-02 21:15:51 -0200548 if (drv->advise_acquire)
549 {
Ricardo Cerqueirabaff6cd2008-02-13 22:41:15 -0300550 core->active_ref++;
Roland Stoll27d0fe12008-02-11 13:00:34 -0300551 if (core->active_type_id == CX88_BOARD_NONE) {
552 core->active_type_id = drv->type_id;
553 drv->advise_acquire(drv);
554 }
Steven Toth6c5be742006-12-02 21:15:51 -0200555
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300556 mpeg_dbg(1,"%s() Post acquire GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200557 }
558
559 return 0;
560}
561
562/* Driver asked to release hardware. */
Adrian Bunk9df2ead2007-05-01 08:35:10 -0300563static int cx8802_request_release(struct cx8802_driver *drv)
Steven Toth6c5be742006-12-02 21:15:51 -0200564{
565 struct cx88_core *core = drv->core;
566
Roland Stoll27d0fe12008-02-11 13:00:34 -0300567 if (drv->advise_release && --core->active_ref == 0)
Steven Toth6c5be742006-12-02 21:15:51 -0200568 {
Devin Heitmueller243bf1a22011-07-14 12:44:46 -0300569 if (drv->type_id == CX88_MPEG_DVB) {
570 /* If the DVB driver is releasing, reset the input
571 state to the last configured analog input */
572 core->input = core->last_analog_input;
573 }
574
Steven Toth6c5be742006-12-02 21:15:51 -0200575 drv->advise_release(drv);
576 core->active_type_id = CX88_BOARD_NONE;
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300577 mpeg_dbg(1,"%s() Post release GPIO=%x\n", __func__, cx_read(MO_GP0_IO));
Steven Toth6c5be742006-12-02 21:15:51 -0200578 }
579
580 return 0;
581}
582
583static int cx8802_check_driver(struct cx8802_driver *drv)
584{
585 if (drv == NULL)
586 return -ENODEV;
587
588 if ((drv->type_id != CX88_MPEG_DVB) &&
589 (drv->type_id != CX88_MPEG_BLACKBIRD))
590 return -EINVAL;
591
592 if ((drv->hw_access != CX8802_DRVCTL_SHARED) &&
593 (drv->hw_access != CX8802_DRVCTL_EXCLUSIVE))
594 return -EINVAL;
595
596 if ((drv->probe == NULL) ||
597 (drv->remove == NULL) ||
598 (drv->advise_acquire == NULL) ||
599 (drv->advise_release == NULL))
600 return -EINVAL;
601
602 return 0;
603}
604
605int cx8802_register_driver(struct cx8802_driver *drv)
606{
Trent Piepho89a47942007-10-14 02:52:17 -0300607 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200608 struct cx8802_driver *driver;
Trent Piepho89a47942007-10-14 02:52:17 -0300609 int err, i = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200610
Trent Piepho5772f812007-08-15 14:41:59 -0300611 printk(KERN_INFO
612 "cx88/2: registering cx8802 driver, type: %s access: %s\n",
613 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
614 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200615
616 if ((err = cx8802_check_driver(drv)) != 0) {
Trent Piepho5772f812007-08-15 14:41:59 -0300617 printk(KERN_ERR "cx88/2: cx8802_driver is invalid\n");
Steven Toth6c5be742006-12-02 21:15:51 -0200618 return err;
619 }
620
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300621 mutex_lock(&cx8802_mutex);
622
Trent Piepho89a47942007-10-14 02:52:17 -0300623 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300624 printk(KERN_INFO
625 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300626 dev->core->name, dev->pci->subsystem_vendor,
627 dev->pci->subsystem_device, dev->core->board.name,
628 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200629
630 /* Bring up a new struct for each driver instance */
631 driver = kzalloc(sizeof(*drv),GFP_KERNEL);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300632 if (driver == NULL) {
633 err = -ENOMEM;
634 goto out;
635 }
Steven Toth6c5be742006-12-02 21:15:51 -0200636
637 /* Snapshot of the driver registration data */
Trent Piepho89a47942007-10-14 02:52:17 -0300638 drv->core = dev->core;
Steven Toth6c5be742006-12-02 21:15:51 -0200639 drv->suspend = cx8802_suspend_common;
640 drv->resume = cx8802_resume_common;
641 drv->request_acquire = cx8802_request_acquire;
642 drv->request_release = cx8802_request_release;
643 memcpy(driver, drv, sizeof(*driver));
644
Jonathan Nieder1d6213a2011-05-01 06:29:56 -0300645 mutex_lock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200646 err = drv->probe(driver);
647 if (err == 0) {
Steven Toth019391e42006-10-06 21:29:25 -0300648 i++;
Trent Piepho89a47942007-10-14 02:52:17 -0300649 list_add_tail(&driver->drvlist, &dev->drvlist);
Steven Toth6c5be742006-12-02 21:15:51 -0200650 } else {
Trent Piepho5772f812007-08-15 14:41:59 -0300651 printk(KERN_ERR
652 "%s/2: cx8802 probe failed, err = %d\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300653 dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200654 }
Jonathan Nieder1d6213a2011-05-01 06:29:56 -0300655 mutex_unlock(&drv->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200656 }
Steven Toth6c5be742006-12-02 21:15:51 -0200657
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300658 err = i ? 0 : -ENODEV;
659out:
660 mutex_unlock(&cx8802_mutex);
661 return err;
Steven Toth6c5be742006-12-02 21:15:51 -0200662}
663
664int cx8802_unregister_driver(struct cx8802_driver *drv)
665{
Trent Piepho89a47942007-10-14 02:52:17 -0300666 struct cx8802_dev *dev;
667 struct cx8802_driver *d, *dtmp;
668 int err = 0;
Steven Toth6c5be742006-12-02 21:15:51 -0200669
Trent Piepho5772f812007-08-15 14:41:59 -0300670 printk(KERN_INFO
671 "cx88/2: unregistering cx8802 driver, type: %s access: %s\n",
672 drv->type_id == CX88_MPEG_DVB ? "dvb" : "blackbird",
673 drv->hw_access == CX8802_DRVCTL_SHARED ? "shared" : "exclusive");
Steven Toth6c5be742006-12-02 21:15:51 -0200674
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300675 mutex_lock(&cx8802_mutex);
676
Trent Piepho89a47942007-10-14 02:52:17 -0300677 list_for_each_entry(dev, &cx8802_devlist, devlist) {
Trent Piepho5772f812007-08-15 14:41:59 -0300678 printk(KERN_INFO
679 "%s/2: subsystem: %04x:%04x, board: %s [card=%d]\n",
Trent Piepho89a47942007-10-14 02:52:17 -0300680 dev->core->name, dev->pci->subsystem_vendor,
681 dev->pci->subsystem_device, dev->core->board.name,
682 dev->core->boardnr);
Steven Toth6c5be742006-12-02 21:15:51 -0200683
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300684 mutex_lock(&dev->core->lock);
685
Trent Piepho89a47942007-10-14 02:52:17 -0300686 list_for_each_entry_safe(d, dtmp, &dev->drvlist, drvlist) {
Steven Toth6c5be742006-12-02 21:15:51 -0200687 /* only unregister the correct driver type */
688 if (d->type_id != drv->type_id)
689 continue;
690
691 err = d->remove(d);
692 if (err == 0) {
Trent Piepho89a47942007-10-14 02:52:17 -0300693 list_del(&d->drvlist);
Trent Piephoa04036a2007-10-05 11:28:09 -0300694 kfree(d);
Steven Toth6c5be742006-12-02 21:15:51 -0200695 } else
Trent Piepho5772f812007-08-15 14:41:59 -0300696 printk(KERN_ERR "%s/2: cx8802 driver remove "
Trent Piepho89a47942007-10-14 02:52:17 -0300697 "failed (%d)\n", dev->core->name, err);
Steven Toth6c5be742006-12-02 21:15:51 -0200698 }
699
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300700 mutex_unlock(&dev->core->lock);
Steven Toth6c5be742006-12-02 21:15:51 -0200701 }
702
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300703 mutex_unlock(&cx8802_mutex);
704
Steven Toth6c5be742006-12-02 21:15:51 -0200705 return err;
706}
707
708/* ----------------------------------------------------------- */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800709static int cx8802_probe(struct pci_dev *pci_dev,
710 const struct pci_device_id *pci_id)
Steven Toth6c5be742006-12-02 21:15:51 -0200711{
712 struct cx8802_dev *dev;
713 struct cx88_core *core;
Darron Broad9212a572008-10-21 10:42:00 -0300714 int err;
Steven Toth6c5be742006-12-02 21:15:51 -0200715
716 /* general setup */
717 core = cx88_core_get(pci_dev);
718 if (NULL == core)
719 return -EINVAL;
720
721 printk("%s/2: cx2388x 8802 Driver Manager\n", core->name);
722
723 err = -ENODEV;
Trent Piepho6a59d642007-08-15 14:41:57 -0300724 if (!core->board.mpeg)
Steven Toth6c5be742006-12-02 21:15:51 -0200725 goto fail_core;
726
727 err = -ENOMEM;
728 dev = kzalloc(sizeof(*dev),GFP_KERNEL);
729 if (NULL == dev)
730 goto fail_core;
731 dev->pci = pci_dev;
Hans Verkuil165d0042014-12-08 13:23:49 -0300732 dev->alloc_ctx = vb2_dma_sg_init_ctx(&pci_dev->dev);
733 if (IS_ERR(dev->alloc_ctx)) {
734 err = PTR_ERR(dev->alloc_ctx);
Christian Engelmayer96df9882015-02-14 20:12:56 -0300735 goto fail_dev;
Hans Verkuil165d0042014-12-08 13:23:49 -0300736 }
Steven Toth6c5be742006-12-02 21:15:51 -0200737 dev->core = core;
738
Mauro Carvalho Chehabe32fadc2009-01-06 16:06:07 -0300739 /* Maintain a reference so cx88-video can query the 8802 device. */
740 core->dvbdev = dev;
741
Steven Toth6c5be742006-12-02 21:15:51 -0200742 err = cx8802_init_common(dev);
743 if (err != 0)
744 goto fail_free;
745
Trent Piepho081c2fc2007-10-14 02:52:17 -0300746 INIT_LIST_HEAD(&dev->drvlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300747 mutex_lock(&cx8802_mutex);
Steven Toth6c5be742006-12-02 21:15:51 -0200748 list_add_tail(&dev->devlist,&cx8802_devlist);
Jonathan Nieder344d6c62011-05-01 06:30:14 -0300749 mutex_unlock(&cx8802_mutex);
Steven Toth6c5be742006-12-02 21:15:51 -0200750
Markus Rechberger77b74772007-04-27 12:31:06 -0300751 /* now autoload cx88-dvb or cx88-blackbird */
752 request_modules(dev);
Steven Toth6c5be742006-12-02 21:15:51 -0200753 return 0;
754
755 fail_free:
Hans Verkuil165d0042014-12-08 13:23:49 -0300756 vb2_dma_sg_cleanup_ctx(dev->alloc_ctx);
Christian Engelmayer96df9882015-02-14 20:12:56 -0300757 fail_dev:
Steven Toth6c5be742006-12-02 21:15:51 -0200758 kfree(dev);
759 fail_core:
Mauro Carvalho Chehabe32fadc2009-01-06 16:06:07 -0300760 core->dvbdev = NULL;
Steven Toth6c5be742006-12-02 21:15:51 -0200761 cx88_core_put(core,pci_dev);
762 return err;
763}
764
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800765static void cx8802_remove(struct pci_dev *pci_dev)
Steven Toth6c5be742006-12-02 21:15:51 -0200766{
767 struct cx8802_dev *dev;
Steven Toth6c5be742006-12-02 21:15:51 -0200768
769 dev = pci_get_drvdata(pci_dev);
770
Harvey Harrison32d83ef2008-04-08 23:20:00 -0300771 dprintk( 1, "%s\n", __func__);
Steven Toth6c5be742006-12-02 21:15:51 -0200772
Tejun Heo707bcf32010-12-24 16:14:20 +0100773 flush_request_modules(dev);
774
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300775 mutex_lock(&dev->core->lock);
776
Trent Piepho081c2fc2007-10-14 02:52:17 -0300777 if (!list_empty(&dev->drvlist)) {
Trent Piepho89a47942007-10-14 02:52:17 -0300778 struct cx8802_driver *drv, *tmp;
Trent Piepho081c2fc2007-10-14 02:52:17 -0300779 int err;
780
781 printk(KERN_WARNING "%s/2: Trying to remove cx8802 driver "
782 "while cx8802 sub-drivers still loaded?!\n",
783 dev->core->name);
784
Trent Piepho89a47942007-10-14 02:52:17 -0300785 list_for_each_entry_safe(drv, tmp, &dev->drvlist, drvlist) {
Trent Piepho081c2fc2007-10-14 02:52:17 -0300786 err = drv->remove(drv);
787 if (err == 0) {
Trent Piepho89a47942007-10-14 02:52:17 -0300788 list_del(&drv->drvlist);
Trent Piepho081c2fc2007-10-14 02:52:17 -0300789 } else
790 printk(KERN_ERR "%s/2: cx8802 driver remove "
791 "failed (%d)\n", dev->core->name, err);
Trent Piephoa04036a2007-10-05 11:28:09 -0300792 kfree(drv);
Steven Toth6c5be742006-12-02 21:15:51 -0200793 }
Steven Toth6c5be742006-12-02 21:15:51 -0200794 }
795
Jonathan Nieder8a317a82011-05-01 06:29:16 -0300796 mutex_unlock(&dev->core->lock);
797
Steven Toth6c5be742006-12-02 21:15:51 -0200798 /* Destroy any 8802 reference. */
799 dev->core->dvbdev = NULL;
800
801 /* common */
802 cx8802_fini_common(dev);
803 cx88_core_put(dev->core,dev->pci);
Hans Verkuil165d0042014-12-08 13:23:49 -0300804 vb2_dma_sg_cleanup_ctx(dev->alloc_ctx);
Steven Toth6c5be742006-12-02 21:15:51 -0200805 kfree(dev);
806}
807
lawrence rust2e4e98e2010-08-25 09:50:20 -0300808static const struct pci_device_id cx8802_pci_tbl[] = {
Steven Toth6c5be742006-12-02 21:15:51 -0200809 {
810 .vendor = 0x14f1,
811 .device = 0x8802,
812 .subvendor = PCI_ANY_ID,
813 .subdevice = PCI_ANY_ID,
814 },{
815 /* --- end of list --- */
816 }
817};
818MODULE_DEVICE_TABLE(pci, cx8802_pci_tbl);
819
820static struct pci_driver cx8802_pci_driver = {
821 .name = "cx88-mpeg driver manager",
822 .id_table = cx8802_pci_tbl,
823 .probe = cx8802_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800824 .remove = cx8802_remove,
Steven Toth6c5be742006-12-02 21:15:51 -0200825};
826
Sachin Kamat38b25ad2013-09-20 05:32:06 -0300827module_pci_driver(cx8802_pci_driver);
Steven Toth6c5be742006-12-02 21:15:51 -0200828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829EXPORT_SYMBOL(cx8802_buf_prepare);
830EXPORT_SYMBOL(cx8802_buf_queue);
831EXPORT_SYMBOL(cx8802_cancel_buffers);
Hans Verkuil0b6b6302014-09-20 09:22:18 -0300832EXPORT_SYMBOL(cx8802_start_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Steven Toth6c5be742006-12-02 21:15:51 -0200834EXPORT_SYMBOL(cx8802_register_driver);
835EXPORT_SYMBOL(cx8802_unregister_driver);
Steven Toth6c5be742006-12-02 21:15:51 -0200836EXPORT_SYMBOL(cx8802_get_driver);