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