Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 1 | /* |
Ruslan Pisarev | d005864 | 2010-10-20 06:35:54 -0300 | [diff] [blame] | 2 | * tm6000-dvb.c - dvb-t support for TM5600/TM6000/TM6010 USB video capture devices |
| 3 | * |
| 4 | * Copyright (C) 2007 Michel Ludwig <michel.ludwig@gmail.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation version 2 |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 18 | */ |
| 19 | |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Tejun Heo | 4ef0988 | 2010-03-30 02:52:33 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 22 | #include <linux/usb.h> |
| 23 | |
| 24 | #include "tm6000.h" |
| 25 | #include "tm6000-regs.h" |
| 26 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 27 | #include "zl10353.h" |
| 28 | |
| 29 | #include <media/tuner.h> |
| 30 | |
Michel Ludwig | 5b74c2c | 2007-11-16 13:16:59 -0300 | [diff] [blame] | 31 | #include "tuner-xc2028.h" |
Stefan Ringel | 7e2d982 | 2010-05-23 15:31:44 -0300 | [diff] [blame] | 32 | #include "xc5000.h" |
Michel Ludwig | 5b74c2c | 2007-11-16 13:16:59 -0300 | [diff] [blame] | 33 | |
Stefan Ringel | cee3926 | 2010-05-30 09:19:04 -0300 | [diff] [blame] | 34 | MODULE_DESCRIPTION("DVB driver extension module for tm5600/6000/6010 based TV cards"); |
| 35 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |
| 36 | MODULE_LICENSE("GPL"); |
| 37 | |
| 38 | MODULE_SUPPORTED_DEVICE("{{Trident, tm5600}," |
| 39 | "{{Trident, tm6000}," |
| 40 | "{{Trident, tm6010}"); |
| 41 | |
| 42 | static int debug; |
| 43 | |
| 44 | module_param(debug, int, 0644); |
| 45 | MODULE_PARM_DESC(debug, "enable debug message"); |
| 46 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 47 | static inline void print_err_status(struct tm6000_core *dev, |
| 48 | int packet, int status) |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 49 | { |
| 50 | char *errmsg = "Unknown"; |
| 51 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 52 | switch (status) { |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 53 | case -ENOENT: |
| 54 | errmsg = "unlinked synchronuously"; |
| 55 | break; |
| 56 | case -ECONNRESET: |
| 57 | errmsg = "unlinked asynchronuously"; |
| 58 | break; |
| 59 | case -ENOSR: |
| 60 | errmsg = "Buffer error (overrun)"; |
| 61 | break; |
| 62 | case -EPIPE: |
| 63 | errmsg = "Stalled (device not responding)"; |
| 64 | break; |
| 65 | case -EOVERFLOW: |
| 66 | errmsg = "Babble (bad cable?)"; |
| 67 | break; |
| 68 | case -EPROTO: |
| 69 | errmsg = "Bit-stuff error (bad cable?)"; |
| 70 | break; |
| 71 | case -EILSEQ: |
| 72 | errmsg = "CRC/Timeout (could be anything)"; |
| 73 | break; |
| 74 | case -ETIME: |
| 75 | errmsg = "Device does not respond"; |
| 76 | break; |
| 77 | } |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 78 | if (packet < 0) { |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 79 | dprintk(dev, 1, "URB status %d [%s].\n", |
| 80 | status, errmsg); |
| 81 | } else { |
| 82 | dprintk(dev, 1, "URB packet %d, status %d [%s].\n", |
| 83 | packet, status, errmsg); |
| 84 | } |
| 85 | } |
| 86 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 87 | static void tm6000_urb_received(struct urb *urb) |
| 88 | { |
| 89 | int ret; |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 90 | struct tm6000_core *dev = urb->context; |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 91 | |
Stefan Ringel | de2a20b | 2011-11-28 15:46:19 -0300 | [diff] [blame] | 92 | switch (urb->status) { |
| 93 | case 0: |
| 94 | case -ETIMEDOUT: |
| 95 | break; |
| 96 | case -ENOENT: |
| 97 | case -ECONNRESET: |
| 98 | case -ESHUTDOWN: |
| 99 | return; |
| 100 | default: |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 101 | print_err_status(dev, 0, urb->status); |
Stefan Ringel | de2a20b | 2011-11-28 15:46:19 -0300 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | if (urb->actual_length > 0) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 105 | dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer, |
| 106 | urb->actual_length); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 107 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 108 | if (dev->dvb->streams > 0) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 109 | ret = usb_submit_urb(urb, GFP_ATOMIC); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 110 | if (ret < 0) { |
Curtis McEnroe | 94b2766 | 2011-06-02 20:33:31 -0400 | [diff] [blame] | 111 | printk(KERN_ERR "tm6000: error %s\n", __func__); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 112 | kfree(urb->transfer_buffer); |
| 113 | usb_free_urb(urb); |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 118 | static int tm6000_start_stream(struct tm6000_core *dev) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 119 | { |
| 120 | int ret; |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 121 | unsigned int pipe, size; |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 122 | struct tm6000_dvb *dvb = dev->dvb; |
| 123 | |
Curtis McEnroe | 94b2766 | 2011-06-02 20:33:31 -0400 | [diff] [blame] | 124 | printk(KERN_INFO "tm6000: got start stream request %s\n", __func__); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 125 | |
Stefan Ringel | dcf5d3a | 2010-05-23 15:29:26 -0300 | [diff] [blame] | 126 | if (dev->mode != TM6000_MODE_DIGITAL) { |
| 127 | tm6000_init_digital_mode(dev); |
| 128 | dev->mode = TM6000_MODE_DIGITAL; |
| 129 | } |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 130 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 131 | dvb->bulk_urb = usb_alloc_urb(0, GFP_KERNEL); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 132 | if (dvb->bulk_urb == NULL) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 133 | printk(KERN_ERR "tm6000: couldn't allocate urb\n"); |
| 134 | return -ENOMEM; |
| 135 | } |
| 136 | |
Mauro Carvalho Chehab | 6ae635c | 2010-04-26 11:24:18 -0300 | [diff] [blame] | 137 | pipe = usb_rcvbulkpipe(dev->udev, dev->bulk_in.endp->desc.bEndpointAddress |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 138 | & USB_ENDPOINT_NUMBER_MASK); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 139 | |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 140 | size = usb_maxpacket(dev->udev, pipe, usb_pipeout(pipe)); |
| 141 | size = size * 15; /* 512 x 8 or 12 or 15 */ |
| 142 | |
| 143 | dvb->bulk_urb->transfer_buffer = kzalloc(size, GFP_KERNEL); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 144 | if (dvb->bulk_urb->transfer_buffer == NULL) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 145 | usb_free_urb(dvb->bulk_urb); |
| 146 | printk(KERN_ERR "tm6000: couldn't allocate transfer buffer!\n"); |
| 147 | return -ENOMEM; |
| 148 | } |
| 149 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 150 | usb_fill_bulk_urb(dvb->bulk_urb, dev->udev, pipe, |
| 151 | dvb->bulk_urb->transfer_buffer, |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 152 | size, |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 153 | tm6000_urb_received, dev); |
Michel Ludwig | 4386136 | 2007-09-24 17:01:49 -0300 | [diff] [blame] | 154 | |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 155 | ret = usb_clear_halt(dev->udev, pipe); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 156 | if (ret < 0) { |
| 157 | printk(KERN_ERR "tm6000: error %i in %s during pipe reset\n", |
Curtis McEnroe | 94b2766 | 2011-06-02 20:33:31 -0400 | [diff] [blame] | 158 | ret, __func__); |
Michel Ludwig | 4386136 | 2007-09-24 17:01:49 -0300 | [diff] [blame] | 159 | return ret; |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 160 | } else |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 161 | printk(KERN_ERR "tm6000: pipe resetted\n"); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 162 | |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 163 | /* mutex_lock(&tm6000_driver.open_close_mutex); */ |
Stefan Ringel | de2a20b | 2011-11-28 15:46:19 -0300 | [diff] [blame] | 164 | ret = usb_submit_urb(dvb->bulk_urb, GFP_ATOMIC); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 165 | |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 166 | /* mutex_unlock(&tm6000_driver.open_close_mutex); */ |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 167 | if (ret) { |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 168 | printk(KERN_ERR "tm6000: submit of urb failed (error=%i)\n", |
| 169 | ret); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 170 | |
| 171 | kfree(dvb->bulk_urb->transfer_buffer); |
| 172 | usb_free_urb(dvb->bulk_urb); |
| 173 | return ret; |
| 174 | } |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 179 | static void tm6000_stop_stream(struct tm6000_core *dev) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 180 | { |
| 181 | struct tm6000_dvb *dvb = dev->dvb; |
| 182 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 183 | if (dvb->bulk_urb) { |
| 184 | printk(KERN_INFO "urb killing\n"); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 185 | usb_kill_urb(dvb->bulk_urb); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 186 | printk(KERN_INFO "urb buffer free\n"); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 187 | kfree(dvb->bulk_urb->transfer_buffer); |
| 188 | usb_free_urb(dvb->bulk_urb); |
| 189 | dvb->bulk_urb = NULL; |
| 190 | } |
| 191 | } |
| 192 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 193 | static int tm6000_start_feed(struct dvb_demux_feed *feed) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 194 | { |
| 195 | struct dvb_demux *demux = feed->demux; |
| 196 | struct tm6000_core *dev = demux->priv; |
| 197 | struct tm6000_dvb *dvb = dev->dvb; |
Curtis McEnroe | 94b2766 | 2011-06-02 20:33:31 -0400 | [diff] [blame] | 198 | printk(KERN_INFO "tm6000: got start feed request %s\n", __func__); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 199 | |
| 200 | mutex_lock(&dvb->mutex); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 201 | if (dvb->streams == 0) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 202 | dvb->streams = 1; |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 203 | /* mutex_init(&tm6000_dev->streming_mutex); */ |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 204 | tm6000_start_stream(dev); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 205 | } else |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 206 | ++(dvb->streams); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 207 | mutex_unlock(&dvb->mutex); |
| 208 | |
| 209 | return 0; |
| 210 | } |
| 211 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 212 | static int tm6000_stop_feed(struct dvb_demux_feed *feed) |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 213 | { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 214 | struct dvb_demux *demux = feed->demux; |
| 215 | struct tm6000_core *dev = demux->priv; |
| 216 | struct tm6000_dvb *dvb = dev->dvb; |
| 217 | |
Curtis McEnroe | 94b2766 | 2011-06-02 20:33:31 -0400 | [diff] [blame] | 218 | printk(KERN_INFO "tm6000: got stop feed request %s\n", __func__); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 219 | |
| 220 | mutex_lock(&dvb->mutex); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 221 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 222 | printk(KERN_INFO "stream %#x\n", dvb->streams); |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 223 | --(dvb->streams); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 224 | if (dvb->streams == 0) { |
| 225 | printk(KERN_INFO "stop stream\n"); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 226 | tm6000_stop_stream(dev); |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 227 | /* mutex_destroy(&tm6000_dev->streaming_mutex); */ |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 228 | } |
| 229 | mutex_unlock(&dvb->mutex); |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 230 | /* mutex_destroy(&tm6000_dev->streaming_mutex); */ |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 231 | |
| 232 | return 0; |
| 233 | } |
| 234 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 235 | static int tm6000_dvb_attach_frontend(struct tm6000_core *dev) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 236 | { |
| 237 | struct tm6000_dvb *dvb = dev->dvb; |
| 238 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 239 | if (dev->caps.has_zl10353) { |
| 240 | struct zl10353_config config = { |
| 241 | .demod_address = dev->demod_addr, |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 242 | .no_tuner = 1, |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 243 | .parallel_ts = 1, |
| 244 | .if2 = 45700, |
| 245 | .disable_i2c_gate_ctrl = 1, |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 246 | }; |
| 247 | |
Stefan Ringel | 89eeda6 | 2010-02-15 14:37:23 -0300 | [diff] [blame] | 248 | dvb->frontend = dvb_attach(zl10353_attach, &config, |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 249 | &dev->i2c_adap); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 250 | } else { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 251 | printk(KERN_ERR "tm6000: no frontend defined for the device!\n"); |
| 252 | return -1; |
| 253 | } |
| 254 | |
Michel Ludwig | 70bfae5 | 2007-11-19 06:10:54 -0300 | [diff] [blame] | 255 | return (!dvb->frontend) ? -1 : 0; |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 256 | } |
| 257 | |
Maykel Moya | 1b4c5b1 | 2008-04-28 19:20:26 -0300 | [diff] [blame] | 258 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 259 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 260 | static int register_dvb(struct tm6000_core *dev) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 261 | { |
| 262 | int ret = -1; |
| 263 | struct tm6000_dvb *dvb = dev->dvb; |
| 264 | |
| 265 | mutex_init(&dvb->mutex); |
| 266 | |
| 267 | dvb->streams = 0; |
| 268 | |
| 269 | /* attach the frontend */ |
| 270 | ret = tm6000_dvb_attach_frontend(dev); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 271 | if (ret < 0) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 272 | printk(KERN_ERR "tm6000: couldn't attach the frontend!\n"); |
Michel Ludwig | 70bfae5 | 2007-11-19 06:10:54 -0300 | [diff] [blame] | 273 | goto err; |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | ret = dvb_register_adapter(&dvb->adapter, "Trident TVMaster 6000 DVB-T", |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 277 | THIS_MODULE, &dev->udev->dev, adapter_nr); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 278 | dvb->adapter.priv = dev; |
| 279 | |
Michel Ludwig | 5b74c2c | 2007-11-16 13:16:59 -0300 | [diff] [blame] | 280 | if (dvb->frontend) { |
Stefan Ringel | 7e2d982 | 2010-05-23 15:31:44 -0300 | [diff] [blame] | 281 | switch (dev->tuner_type) { |
| 282 | case TUNER_XC2028: { |
| 283 | struct xc2028_config cfg = { |
| 284 | .i2c_adap = &dev->i2c_adap, |
| 285 | .i2c_addr = dev->tuner_addr, |
| 286 | }; |
Michel Ludwig | 5b74c2c | 2007-11-16 13:16:59 -0300 | [diff] [blame] | 287 | |
Stefan Ringel | 7e2d982 | 2010-05-23 15:31:44 -0300 | [diff] [blame] | 288 | dvb->frontend->callback = tm6000_tuner_callback; |
| 289 | ret = dvb_register_frontend(&dvb->adapter, dvb->frontend); |
| 290 | if (ret < 0) { |
| 291 | printk(KERN_ERR |
| 292 | "tm6000: couldn't register frontend\n"); |
| 293 | goto adapter_err; |
| 294 | } |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 295 | |
Stefan Ringel | 7e2d982 | 2010-05-23 15:31:44 -0300 | [diff] [blame] | 296 | if (!dvb_attach(xc2028_attach, dvb->frontend, &cfg)) { |
| 297 | printk(KERN_ERR "tm6000: couldn't register " |
| 298 | "frontend (xc3028)\n"); |
| 299 | ret = -EINVAL; |
| 300 | goto frontend_err; |
| 301 | } |
| 302 | printk(KERN_INFO "tm6000: XC2028/3028 asked to be " |
| 303 | "attached to frontend!\n"); |
| 304 | break; |
| 305 | } |
| 306 | case TUNER_XC5000: { |
| 307 | struct xc5000_config cfg = { |
| 308 | .i2c_address = dev->tuner_addr, |
| 309 | }; |
| 310 | |
| 311 | dvb->frontend->callback = tm6000_xc5000_callback; |
| 312 | ret = dvb_register_frontend(&dvb->adapter, dvb->frontend); |
| 313 | if (ret < 0) { |
| 314 | printk(KERN_ERR |
| 315 | "tm6000: couldn't register frontend\n"); |
| 316 | goto adapter_err; |
| 317 | } |
| 318 | |
| 319 | if (!dvb_attach(xc5000_attach, dvb->frontend, &dev->i2c_adap, &cfg)) { |
| 320 | printk(KERN_ERR "tm6000: couldn't register " |
| 321 | "frontend (xc5000)\n"); |
| 322 | ret = -EINVAL; |
| 323 | goto frontend_err; |
| 324 | } |
| 325 | printk(KERN_INFO "tm6000: XC5000 asked to be " |
| 326 | "attached to frontend!\n"); |
| 327 | break; |
| 328 | } |
Michel Ludwig | 5b74c2c | 2007-11-16 13:16:59 -0300 | [diff] [blame] | 329 | } |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 330 | } else |
Michel Ludwig | 5b74c2c | 2007-11-16 13:16:59 -0300 | [diff] [blame] | 331 | printk(KERN_ERR "tm6000: no frontend found\n"); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 332 | |
| 333 | dvb->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING |
| 334 | | DMX_MEMORY_BASED_FILTERING; |
| 335 | dvb->demux.priv = dev; |
Stefan Ringel | 38d75a7 | 2010-02-15 14:37:19 -0300 | [diff] [blame] | 336 | dvb->demux.filternum = 8; |
| 337 | dvb->demux.feednum = 8; |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 338 | dvb->demux.start_feed = tm6000_start_feed; |
| 339 | dvb->demux.stop_feed = tm6000_stop_feed; |
| 340 | dvb->demux.write_to_decoder = NULL; |
| 341 | ret = dvb_dmx_init(&dvb->demux); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 342 | if (ret < 0) { |
Mauro Carvalho Chehab | 45dbf0d | 2011-09-23 09:26:22 -0300 | [diff] [blame] | 343 | printk(KERN_ERR "tm6000: dvb_dmx_init failed (errno = %d)\n", ret); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 344 | goto frontend_err; |
| 345 | } |
| 346 | |
| 347 | dvb->dmxdev.filternum = dev->dvb->demux.filternum; |
| 348 | dvb->dmxdev.demux = &dev->dvb->demux.dmx; |
| 349 | dvb->dmxdev.capabilities = 0; |
| 350 | |
| 351 | ret = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter); |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 352 | if (ret < 0) { |
Mauro Carvalho Chehab | 45dbf0d | 2011-09-23 09:26:22 -0300 | [diff] [blame] | 353 | printk(KERN_ERR "tm6000: dvb_dmxdev_init failed (errno = %d)\n", ret); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 354 | goto dvb_dmx_err; |
| 355 | } |
| 356 | |
| 357 | return 0; |
| 358 | |
| 359 | dvb_dmx_err: |
| 360 | dvb_dmx_release(&dvb->demux); |
| 361 | frontend_err: |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 362 | if (dvb->frontend) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 363 | dvb_unregister_frontend(dvb->frontend); |
Julian Scheel | afca99a | 2012-11-05 11:51:05 -0300 | [diff] [blame] | 364 | dvb_frontend_detach(dvb->frontend); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 365 | } |
| 366 | adapter_err: |
| 367 | dvb_unregister_adapter(&dvb->adapter); |
| 368 | err: |
| 369 | return ret; |
| 370 | } |
| 371 | |
Thierry Reding | 3d1a51d | 2011-08-04 04:14:01 -0300 | [diff] [blame] | 372 | static void unregister_dvb(struct tm6000_core *dev) |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 373 | { |
| 374 | struct tm6000_dvb *dvb = dev->dvb; |
| 375 | |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 376 | if (dvb->bulk_urb != NULL) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 377 | struct urb *bulk_urb = dvb->bulk_urb; |
| 378 | |
| 379 | kfree(bulk_urb->transfer_buffer); |
| 380 | bulk_urb->transfer_buffer = NULL; |
| 381 | usb_unlink_urb(bulk_urb); |
| 382 | usb_free_urb(bulk_urb); |
| 383 | } |
| 384 | |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 385 | /* mutex_lock(&tm6000_driver.open_close_mutex); */ |
Timofey Trofimov | 52e0a72 | 2010-05-29 13:52:46 -0300 | [diff] [blame] | 386 | if (dvb->frontend) { |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 387 | dvb_unregister_frontend(dvb->frontend); |
Julian Scheel | afca99a | 2012-11-05 11:51:05 -0300 | [diff] [blame] | 388 | dvb_frontend_detach(dvb->frontend); |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | dvb_dmxdev_release(&dvb->dmxdev); |
| 392 | dvb_dmx_release(&dvb->demux); |
| 393 | dvb_unregister_adapter(&dvb->adapter); |
| 394 | mutex_destroy(&dvb->mutex); |
Stefan Ringel | 08e60ba | 2010-02-05 20:06:52 -0300 | [diff] [blame] | 395 | /* mutex_unlock(&tm6000_driver.open_close_mutex); */ |
Michel Ludwig | 3169c9b | 2007-08-21 17:37:22 -0300 | [diff] [blame] | 396 | } |
Stefan Ringel | cee3926 | 2010-05-30 09:19:04 -0300 | [diff] [blame] | 397 | |
| 398 | static int dvb_init(struct tm6000_core *dev) |
| 399 | { |
| 400 | struct tm6000_dvb *dvb; |
| 401 | int rc; |
| 402 | |
| 403 | if (!dev) |
| 404 | return 0; |
| 405 | |
| 406 | if (!dev->caps.has_dvb) |
| 407 | return 0; |
| 408 | |
matthieu castet | c81c006 | 2011-12-16 15:34:12 -0300 | [diff] [blame] | 409 | if (dev->udev->speed == USB_SPEED_FULL) { |
| 410 | printk(KERN_INFO "This USB2.0 device cannot be run on a USB1.1 port. (it lacks a hardware PID filter)\n"); |
| 411 | return 0; |
| 412 | } |
| 413 | |
Stefan Ringel | cee3926 | 2010-05-30 09:19:04 -0300 | [diff] [blame] | 414 | dvb = kzalloc(sizeof(struct tm6000_dvb), GFP_KERNEL); |
| 415 | if (!dvb) { |
| 416 | printk(KERN_INFO "Cannot allocate memory\n"); |
| 417 | return -ENOMEM; |
| 418 | } |
| 419 | |
| 420 | dev->dvb = dvb; |
| 421 | |
| 422 | rc = register_dvb(dev); |
| 423 | if (rc < 0) { |
| 424 | kfree(dvb); |
| 425 | dev->dvb = NULL; |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
| 432 | static int dvb_fini(struct tm6000_core *dev) |
| 433 | { |
| 434 | if (!dev) |
| 435 | return 0; |
| 436 | |
| 437 | if (!dev->caps.has_dvb) |
| 438 | return 0; |
| 439 | |
| 440 | if (dev->dvb) { |
| 441 | unregister_dvb(dev); |
| 442 | kfree(dev->dvb); |
| 443 | dev->dvb = NULL; |
| 444 | } |
| 445 | |
| 446 | return 0; |
| 447 | } |
| 448 | |
| 449 | static struct tm6000_ops dvb_ops = { |
Mauro Carvalho Chehab | 39e1256 | 2010-06-03 16:31:20 -0300 | [diff] [blame] | 450 | .type = TM6000_DVB, |
Stefan Ringel | cee3926 | 2010-05-30 09:19:04 -0300 | [diff] [blame] | 451 | .name = "TM6000 dvb Extension", |
| 452 | .init = dvb_init, |
| 453 | .fini = dvb_fini, |
| 454 | }; |
| 455 | |
| 456 | static int __init tm6000_dvb_register(void) |
| 457 | { |
| 458 | return tm6000_register_extension(&dvb_ops); |
| 459 | } |
| 460 | |
| 461 | static void __exit tm6000_dvb_unregister(void) |
| 462 | { |
| 463 | tm6000_unregister_extension(&dvb_ops); |
| 464 | } |
| 465 | |
| 466 | module_init(tm6000_dvb_register); |
| 467 | module_exit(tm6000_dvb_unregister); |