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