Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1 | /* |
| 2 | DVB device driver for em28xx |
| 3 | |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 4 | (c) 2008-2011 Mauro Carvalho Chehab <mchehab@infradead.org> |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 5 | |
Devin Heitmueller | bdfbf95 | 2008-04-17 21:38:27 -0300 | [diff] [blame] | 6 | (c) 2008 Devin Heitmueller <devin.heitmueller@gmail.com> |
| 7 | - Fixes for the driver to properly work with HVR-950 |
Devin Heitmueller | 4fd305b | 2008-06-04 13:43:46 -0300 | [diff] [blame] | 8 | - Fixes for the driver to properly work with Pinnacle PCTV HD Pro Stick |
Devin Heitmueller | e14b365 | 2008-07-26 11:04:33 -0300 | [diff] [blame] | 9 | - Fixes for the driver to properly work with AMD ATI TV Wonder HD 600 |
Devin Heitmueller | bdfbf95 | 2008-04-17 21:38:27 -0300 | [diff] [blame] | 10 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 11 | (c) 2008 Aidan Thornton <makosoft@googlemail.com> |
| 12 | |
Frank Schaefer | a950e4a | 2012-11-08 14:11:47 -0300 | [diff] [blame] | 13 | (c) 2012 Frank Schäfer <fschaefer.oss@googlemail.com> |
| 14 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 15 | Based on cx88-dvb, saa7134-dvb and videobuf-dvb originally written by: |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 16 | (c) 2004, 2005 Chris Pascoe <c.pascoe@itee.uq.edu.au> |
| 17 | (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs] |
| 18 | |
| 19 | This program is free software; you can redistribute it and/or modify |
| 20 | it under the terms of the GNU General Public License as published by |
| 21 | the Free Software Foundation; either version 2 of the License. |
| 22 | */ |
| 23 | |
| 24 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 26 | #include <linux/usb.h> |
| 27 | |
| 28 | #include "em28xx.h" |
| 29 | #include <media/v4l2-common.h> |
Devin Heitmueller | d3829fa | 2013-01-04 16:16:24 -0300 | [diff] [blame] | 30 | #include <dvb_demux.h> |
| 31 | #include <dvb_net.h> |
| 32 | #include <dmxdev.h> |
Franklin Meng | d7de5d8 | 2009-06-06 17:05:02 -0300 | [diff] [blame] | 33 | #include <media/tuner.h> |
| 34 | #include "tuner-simple.h" |
Antti Palosaari | 1e8f31f | 2012-07-19 21:10:36 -0300 | [diff] [blame] | 35 | #include <linux/gpio.h> |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 36 | |
| 37 | #include "lgdt330x.h" |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 38 | #include "lgdt3305.h" |
Aidan Thornton | 7e6388a | 2008-04-17 21:40:03 -0300 | [diff] [blame] | 39 | #include "zl10353.h" |
Robert Krakora | 6e7b9ea | 2009-01-18 21:59:34 -0300 | [diff] [blame] | 40 | #include "s5h1409.h" |
Devin Heitmueller | 4fb202a | 2009-07-12 17:51:12 -0300 | [diff] [blame] | 41 | #include "mt352.h" |
| 42 | #include "mt352_priv.h" /* FIXME */ |
Antti Palosaari | 285eb1a | 2009-09-15 14:42:13 -0300 | [diff] [blame] | 43 | #include "tda1002x.h" |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 44 | #include "tda18271.h" |
Mauro Carvalho Chehab | ca3dfd6 | 2010-09-10 17:29:14 -0300 | [diff] [blame] | 45 | #include "s921.h" |
Devin Heitmueller | 75e2b86 | 2011-03-13 02:01:02 -0300 | [diff] [blame] | 46 | #include "drxd.h" |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 47 | #include "cxd2820r.h" |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 48 | #include "tda18271c2dd.h" |
| 49 | #include "drxk.h" |
Antti Palosaari | 3658871 | 2011-08-01 01:15:30 -0300 | [diff] [blame] | 50 | #include "tda10071.h" |
| 51 | #include "a8293.h" |
Aivar Päkk | 1985f6f | 2011-12-11 18:15:00 -0300 | [diff] [blame] | 52 | #include "qt1010.h" |
Mauro Carvalho Chehab | 4159d01 | 2013-02-28 10:35:56 -0300 | [diff] [blame] | 53 | #include "mb86a20s.h" |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 54 | |
| 55 | MODULE_DESCRIPTION("driver for em28xx based DVB cards"); |
| 56 | MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>"); |
| 57 | MODULE_LICENSE("GPL"); |
| 58 | |
| 59 | static unsigned int debug; |
| 60 | module_param(debug, int, 0644); |
| 61 | MODULE_PARM_DESC(debug, "enable debug messages [dvb]"); |
| 62 | |
| 63 | DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); |
| 64 | |
| 65 | #define dprintk(level, fmt, arg...) do { \ |
| 66 | if (debug >= level) \ |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 67 | printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg); \ |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 68 | } while (0) |
| 69 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 70 | struct em28xx_dvb { |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 71 | struct dvb_frontend *fe[2]; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 72 | |
| 73 | /* feed count management */ |
| 74 | struct mutex lock; |
| 75 | int nfeeds; |
| 76 | |
| 77 | /* general boilerplate stuff */ |
| 78 | struct dvb_adapter adapter; |
| 79 | struct dvb_demux demux; |
| 80 | struct dmxdev dmxdev; |
| 81 | struct dmx_frontend fe_hw; |
| 82 | struct dmx_frontend fe_mem; |
| 83 | struct dvb_net net; |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 84 | |
Mauro Carvalho Chehab | c4c3a3d | 2011-07-14 22:23:18 -0300 | [diff] [blame] | 85 | /* Due to DRX-K - probably need changes */ |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 86 | int (*gate_ctrl)(struct dvb_frontend *, int); |
| 87 | struct semaphore pll_mutex; |
Mauro Carvalho Chehab | c4c3a3d | 2011-07-14 22:23:18 -0300 | [diff] [blame] | 88 | bool dont_attach_fe1; |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 89 | int lna_gpio; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 90 | }; |
| 91 | |
| 92 | |
| 93 | static inline void print_err_status(struct em28xx *dev, |
| 94 | int packet, int status) |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 95 | { |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 96 | char *errmsg = "Unknown"; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 97 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 98 | switch (status) { |
| 99 | case -ENOENT: |
| 100 | errmsg = "unlinked synchronuously"; |
| 101 | break; |
| 102 | case -ECONNRESET: |
| 103 | errmsg = "unlinked asynchronuously"; |
| 104 | break; |
| 105 | case -ENOSR: |
| 106 | errmsg = "Buffer error (overrun)"; |
| 107 | break; |
| 108 | case -EPIPE: |
| 109 | errmsg = "Stalled (device not responding)"; |
| 110 | break; |
| 111 | case -EOVERFLOW: |
| 112 | errmsg = "Babble (bad cable?)"; |
| 113 | break; |
| 114 | case -EPROTO: |
| 115 | errmsg = "Bit-stuff error (bad cable?)"; |
| 116 | break; |
| 117 | case -EILSEQ: |
| 118 | errmsg = "CRC/Timeout (could be anything)"; |
| 119 | break; |
| 120 | case -ETIME: |
| 121 | errmsg = "Device does not respond"; |
| 122 | break; |
| 123 | } |
| 124 | if (packet < 0) { |
| 125 | dprintk(1, "URB status %d [%s].\n", status, errmsg); |
| 126 | } else { |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 127 | dprintk(1, "URB packet %d, status %d [%s].\n", |
| 128 | packet, status, errmsg); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 129 | } |
| 130 | } |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 131 | |
Frank Schaefer | a950e4a | 2012-11-08 14:11:47 -0300 | [diff] [blame] | 132 | static inline int em28xx_dvb_urb_data_copy(struct em28xx *dev, struct urb *urb) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 133 | { |
Frank Schaefer | a950e4a | 2012-11-08 14:11:47 -0300 | [diff] [blame] | 134 | int xfer_bulk, num_packets, i; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 135 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 136 | if (!dev) |
| 137 | return 0; |
| 138 | |
Frank Schaefer | 2665c29 | 2012-12-27 19:02:43 -0300 | [diff] [blame] | 139 | if (dev->disconnected) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 140 | return 0; |
| 141 | |
Frank Schaefer | 1653cb0c | 2012-11-08 14:11:44 -0300 | [diff] [blame] | 142 | if (urb->status < 0) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 143 | print_err_status(dev, -1, urb->status); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 144 | |
Frank Schaefer | a950e4a | 2012-11-08 14:11:47 -0300 | [diff] [blame] | 145 | xfer_bulk = usb_pipebulk(urb->pipe); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 146 | |
Frank Schaefer | a950e4a | 2012-11-08 14:11:47 -0300 | [diff] [blame] | 147 | if (xfer_bulk) /* bulk */ |
| 148 | num_packets = 1; |
| 149 | else /* isoc */ |
| 150 | num_packets = urb->number_of_packets; |
| 151 | |
| 152 | for (i = 0; i < num_packets; i++) { |
| 153 | if (xfer_bulk) { |
| 154 | if (urb->status < 0) { |
| 155 | print_err_status(dev, i, urb->status); |
| 156 | if (urb->status != -EPROTO) |
| 157 | continue; |
| 158 | } |
| 159 | dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer, |
| 160 | urb->actual_length); |
| 161 | } else { |
| 162 | if (urb->iso_frame_desc[i].status < 0) { |
| 163 | print_err_status(dev, i, |
| 164 | urb->iso_frame_desc[i].status); |
| 165 | if (urb->iso_frame_desc[i].status != -EPROTO) |
| 166 | continue; |
| 167 | } |
| 168 | dvb_dmx_swfilter(&dev->dvb->demux, |
| 169 | urb->transfer_buffer + |
| 170 | urb->iso_frame_desc[i].offset, |
| 171 | urb->iso_frame_desc[i].actual_length); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 172 | } |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 173 | } |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 178 | static int em28xx_start_streaming(struct em28xx_dvb *dvb) |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 179 | { |
Mauro Carvalho Chehab | c67ec53 | 2008-04-17 21:48:00 -0300 | [diff] [blame] | 180 | int rc; |
Hans Verkuil | 3de09fb | 2013-04-08 16:25:04 -0300 | [diff] [blame] | 181 | struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv; |
| 182 | struct em28xx *dev = i2c_bus->dev; |
Frank Schaefer | c647a91 | 2012-11-08 14:11:52 -0300 | [diff] [blame] | 183 | int dvb_max_packet_size, packet_multiplier, dvb_alt; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 184 | |
Frank Schaefer | c647a91 | 2012-11-08 14:11:52 -0300 | [diff] [blame] | 185 | if (dev->dvb_xfer_bulk) { |
| 186 | if (!dev->dvb_ep_bulk) |
| 187 | return -ENODEV; |
| 188 | dvb_max_packet_size = 512; /* USB 2.0 spec */ |
| 189 | packet_multiplier = EM28XX_DVB_BULK_PACKET_MULTIPLIER; |
| 190 | dvb_alt = 0; |
| 191 | } else { /* isoc */ |
| 192 | if (!dev->dvb_ep_isoc) |
| 193 | return -ENODEV; |
| 194 | dvb_max_packet_size = dev->dvb_max_pkt_size_isoc; |
| 195 | if (dvb_max_packet_size < 0) |
| 196 | return dvb_max_packet_size; |
| 197 | packet_multiplier = EM28XX_DVB_NUM_ISOC_PACKETS; |
| 198 | dvb_alt = dev->dvb_alt_isoc; |
| 199 | } |
| 200 | |
| 201 | usb_set_interface(dev->udev, 0, dvb_alt); |
Mauro Carvalho Chehab | c67ec53 | 2008-04-17 21:48:00 -0300 | [diff] [blame] | 202 | rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE); |
| 203 | if (rc < 0) |
| 204 | return rc; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 205 | |
Gianluca Gennari | 86d38d1 | 2012-02-13 13:59:22 -0300 | [diff] [blame] | 206 | dprintk(1, "Using %d buffers each with %d x %d bytes\n", |
Mauro Carvalho Chehab | f7acc4b | 2011-07-28 15:42:00 -0300 | [diff] [blame] | 207 | EM28XX_DVB_NUM_BUFS, |
Frank Schaefer | c647a91 | 2012-11-08 14:11:52 -0300 | [diff] [blame] | 208 | packet_multiplier, |
| 209 | dvb_max_packet_size); |
Devin Heitmueller | d18e2fd | 2009-05-16 17:09:28 -0300 | [diff] [blame] | 210 | |
Frank Schaefer | c647a91 | 2012-11-08 14:11:52 -0300 | [diff] [blame] | 211 | return em28xx_init_usb_xfer(dev, EM28XX_DIGITAL_MODE, |
| 212 | dev->dvb_xfer_bulk, |
Frank Schaefer | 057ca0d | 2012-11-08 14:11:42 -0300 | [diff] [blame] | 213 | EM28XX_DVB_NUM_BUFS, |
Frank Schaefer | c647a91 | 2012-11-08 14:11:52 -0300 | [diff] [blame] | 214 | dvb_max_packet_size, |
| 215 | packet_multiplier, |
Frank Schaefer | a950e4a | 2012-11-08 14:11:47 -0300 | [diff] [blame] | 216 | em28xx_dvb_urb_data_copy); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 217 | } |
| 218 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 219 | static int em28xx_stop_streaming(struct em28xx_dvb *dvb) |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 220 | { |
Hans Verkuil | 3de09fb | 2013-04-08 16:25:04 -0300 | [diff] [blame] | 221 | struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv; |
| 222 | struct em28xx *dev = i2c_bus->dev; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 223 | |
Gianluca Gennari | 5f5f147 | 2012-03-22 08:48:17 -0300 | [diff] [blame] | 224 | em28xx_stop_urbs(dev); |
Mauro Carvalho Chehab | c67ec53 | 2008-04-17 21:48:00 -0300 | [diff] [blame] | 225 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 229 | static int em28xx_start_feed(struct dvb_demux_feed *feed) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 230 | { |
| 231 | struct dvb_demux *demux = feed->demux; |
| 232 | struct em28xx_dvb *dvb = demux->priv; |
| 233 | int rc, ret; |
| 234 | |
| 235 | if (!demux->dmx.frontend) |
| 236 | return -EINVAL; |
| 237 | |
| 238 | mutex_lock(&dvb->lock); |
| 239 | dvb->nfeeds++; |
| 240 | rc = dvb->nfeeds; |
| 241 | |
| 242 | if (dvb->nfeeds == 1) { |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 243 | ret = em28xx_start_streaming(dvb); |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 244 | if (ret < 0) |
| 245 | rc = ret; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | mutex_unlock(&dvb->lock); |
| 249 | return rc; |
| 250 | } |
| 251 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 252 | static int em28xx_stop_feed(struct dvb_demux_feed *feed) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 253 | { |
| 254 | struct dvb_demux *demux = feed->demux; |
| 255 | struct em28xx_dvb *dvb = demux->priv; |
| 256 | int err = 0; |
| 257 | |
| 258 | mutex_lock(&dvb->lock); |
| 259 | dvb->nfeeds--; |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 260 | |
| 261 | if (0 == dvb->nfeeds) |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 262 | err = em28xx_stop_streaming(dvb); |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 263 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 264 | mutex_unlock(&dvb->lock); |
| 265 | return err; |
| 266 | } |
| 267 | |
| 268 | |
Mauro Carvalho Chehab | e3569ab | 2008-04-17 21:49:20 -0300 | [diff] [blame] | 269 | |
| 270 | /* ------------------------------------------------------------------ */ |
| 271 | static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire) |
| 272 | { |
Mauro Carvalho Chehab | a3b6020 | 2013-04-28 10:33:57 -0300 | [diff] [blame] | 273 | struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv; |
| 274 | struct em28xx *dev = i2c_bus->dev; |
Mauro Carvalho Chehab | e3569ab | 2008-04-17 21:49:20 -0300 | [diff] [blame] | 275 | |
| 276 | if (acquire) |
| 277 | return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE); |
| 278 | else |
Mauro Carvalho Chehab | 2fe3e2e | 2008-11-27 09:10:40 -0300 | [diff] [blame] | 279 | return em28xx_set_mode(dev, EM28XX_SUSPEND); |
Mauro Carvalho Chehab | e3569ab | 2008-04-17 21:49:20 -0300 | [diff] [blame] | 280 | } |
| 281 | |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 282 | /* ------------------------------------------------------------------ */ |
| 283 | |
Mauro Carvalho Chehab | 227ad4a | 2008-04-17 21:37:40 -0300 | [diff] [blame] | 284 | static struct lgdt330x_config em2880_lgdt3303_dev = { |
| 285 | .demod_address = 0x0e, |
| 286 | .demod_chip = LGDT3303, |
| 287 | }; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 288 | |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 289 | static struct lgdt3305_config em2870_lgdt3304_dev = { |
| 290 | .i2c_addr = 0x0e, |
| 291 | .demod_chip = LGDT3304, |
| 292 | .spectral_inversion = 1, |
| 293 | .deny_i2c_rptr = 1, |
| 294 | .mpeg_mode = LGDT3305_MPEG_PARALLEL, |
| 295 | .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE, |
| 296 | .tpvalid_polarity = LGDT3305_TP_VALID_HIGH, |
| 297 | .vsb_if_khz = 3250, |
| 298 | .qam_if_khz = 4000, |
| 299 | }; |
| 300 | |
Jean-Francois Thibert | 6dbea9f | 2013-10-09 11:18:05 -0300 | [diff] [blame] | 301 | static struct lgdt3305_config em2874_lgdt3305_dev = { |
| 302 | .i2c_addr = 0x0e, |
| 303 | .demod_chip = LGDT3305, |
| 304 | .spectral_inversion = 1, |
| 305 | .deny_i2c_rptr = 0, |
| 306 | .mpeg_mode = LGDT3305_MPEG_SERIAL, |
| 307 | .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE, |
| 308 | .tpvalid_polarity = LGDT3305_TP_VALID_HIGH, |
| 309 | .vsb_if_khz = 3250, |
| 310 | .qam_if_khz = 4000, |
| 311 | }; |
| 312 | |
Mauro Carvalho Chehab | ca3dfd6 | 2010-09-10 17:29:14 -0300 | [diff] [blame] | 313 | static struct s921_config sharp_isdbt = { |
| 314 | .demod_address = 0x30 >> 1 |
| 315 | }; |
| 316 | |
Aidan Thornton | 7e6388a | 2008-04-17 21:40:03 -0300 | [diff] [blame] | 317 | static struct zl10353_config em28xx_zl10353_with_xc3028 = { |
| 318 | .demod_address = (0x1e >> 1), |
| 319 | .no_tuner = 1, |
| 320 | .parallel_ts = 1, |
| 321 | .if2 = 45600, |
| 322 | }; |
| 323 | |
Robert Krakora | 6e7b9ea | 2009-01-18 21:59:34 -0300 | [diff] [blame] | 324 | static struct s5h1409_config em28xx_s5h1409_with_xc3028 = { |
| 325 | .demod_address = 0x32 >> 1, |
| 326 | .output_mode = S5H1409_PARALLEL_OUTPUT, |
| 327 | .gpio = S5H1409_GPIO_OFF, |
| 328 | .inversion = S5H1409_INVERSION_OFF, |
| 329 | .status_mode = S5H1409_DEMODLOCKING, |
| 330 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK |
| 331 | }; |
| 332 | |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 333 | static struct tda18271_std_map kworld_a340_std_map = { |
| 334 | .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 0, |
| 335 | .if_lvl = 1, .rfagc_top = 0x37, }, |
| 336 | .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 1, |
| 337 | .if_lvl = 1, .rfagc_top = 0x37, }, |
| 338 | }; |
| 339 | |
| 340 | static struct tda18271_config kworld_a340_config = { |
| 341 | .std_map = &kworld_a340_std_map, |
| 342 | }; |
| 343 | |
Jean-Francois Thibert | 6dbea9f | 2013-10-09 11:18:05 -0300 | [diff] [blame] | 344 | static struct tda18271_config kworld_ub435q_v2_config = { |
| 345 | .std_map = &kworld_a340_std_map, |
| 346 | .gate = TDA18271_GATE_DIGITAL, |
| 347 | }; |
| 348 | |
Devin Heitmueller | a84f79a | 2009-07-12 17:05:02 -0300 | [diff] [blame] | 349 | static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = { |
Devin Heitmueller | f797608 | 2009-06-22 22:32:32 -0300 | [diff] [blame] | 350 | .demod_address = (0x1e >> 1), |
| 351 | .no_tuner = 1, |
| 352 | .disable_i2c_gate_ctrl = 1, |
| 353 | .parallel_ts = 1, |
| 354 | .if2 = 45600, |
| 355 | }; |
| 356 | |
Devin Heitmueller | 75e2b86 | 2011-03-13 02:01:02 -0300 | [diff] [blame] | 357 | static struct drxd_config em28xx_drxd = { |
Mauro Carvalho Chehab | aac865f | 2011-12-26 09:41:14 -0300 | [diff] [blame] | 358 | .demod_address = 0x70, |
| 359 | .demod_revision = 0xa2, |
| 360 | .pll_type = DRXD_PLL_NONE, |
| 361 | .clock = 12000, |
| 362 | .insert_rs_byte = 1, |
| 363 | .IF = 42800000, |
Devin Heitmueller | 6b142b3 | 2011-03-13 02:02:01 -0300 | [diff] [blame] | 364 | .disable_i2c_gate_ctrl = 1, |
Devin Heitmueller | 17d9d55 | 2008-06-08 10:22:03 -0300 | [diff] [blame] | 365 | }; |
Devin Heitmueller | 17d9d55 | 2008-06-08 10:22:03 -0300 | [diff] [blame] | 366 | |
Ezequiel García | 61bdbef | 2012-06-12 09:53:41 -0300 | [diff] [blame] | 367 | static struct drxk_config terratec_h5_drxk = { |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 368 | .adr = 0x29, |
Mauro Carvalho Chehab | e4f4f87 | 2011-07-09 17:35:26 -0300 | [diff] [blame] | 369 | .single_master = 1, |
Mauro Carvalho Chehab | f1fe1b7 | 2011-07-09 21:59:33 -0300 | [diff] [blame] | 370 | .no_i2c_bridge = 1, |
Mauro Carvalho Chehab | 8b9456a | 2011-07-11 14:33:51 -0300 | [diff] [blame] | 371 | .microcode_name = "dvb-usb-terratec-h5-drxk.fw", |
Martin Blumenstingl | 9e23f50a | 2012-07-04 17:36:55 -0300 | [diff] [blame] | 372 | .qam_demod_parameter_count = 2, |
Mauro Carvalho Chehab | 2425bb3 | 2012-10-02 16:02:57 -0300 | [diff] [blame] | 373 | .load_firmware_sync = true, |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 374 | }; |
| 375 | |
Ezequiel García | 61bdbef | 2012-06-12 09:53:41 -0300 | [diff] [blame] | 376 | static struct drxk_config hauppauge_930c_drxk = { |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 377 | .adr = 0x29, |
| 378 | .single_master = 1, |
| 379 | .no_i2c_bridge = 1, |
| 380 | .microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw", |
| 381 | .chunk_size = 56, |
Martin Blumenstingl | 9e23f50a | 2012-07-04 17:36:55 -0300 | [diff] [blame] | 382 | .qam_demod_parameter_count = 2, |
Mauro Carvalho Chehab | 2425bb3 | 2012-10-02 16:02:57 -0300 | [diff] [blame] | 383 | .load_firmware_sync = true, |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 384 | }; |
| 385 | |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 386 | static struct drxk_config terratec_htc_stick_drxk = { |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 387 | .adr = 0x29, |
| 388 | .single_master = 1, |
| 389 | .no_i2c_bridge = 1, |
| 390 | .microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw", |
| 391 | .chunk_size = 54, |
Martin Blumenstingl | 9e23f50a | 2012-07-04 17:36:55 -0300 | [diff] [blame] | 392 | .qam_demod_parameter_count = 2, |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 393 | /* Required for the antenna_gpio to disable LNA. */ |
| 394 | .antenna_dvbt = true, |
| 395 | /* The windows driver uses the same. This will disable LNA. */ |
| 396 | .antenna_gpio = 0x6, |
Mauro Carvalho Chehab | 2425bb3 | 2012-10-02 16:02:57 -0300 | [diff] [blame] | 397 | .load_firmware_sync = true, |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 398 | }; |
| 399 | |
Ezequiel García | 61bdbef | 2012-06-12 09:53:41 -0300 | [diff] [blame] | 400 | static struct drxk_config maxmedia_ub425_tc_drxk = { |
Antti Palosaari | 3553085 | 2012-03-18 18:09:01 -0300 | [diff] [blame] | 401 | .adr = 0x29, |
| 402 | .single_master = 1, |
| 403 | .no_i2c_bridge = 1, |
Antti Palosaari | 8d100b2 | 2013-10-04 14:40:06 -0300 | [diff] [blame] | 404 | .microcode_name = "dvb-demod-drxk-01.fw", |
| 405 | .chunk_size = 62, |
Mauro Carvalho Chehab | 2425bb3 | 2012-10-02 16:02:57 -0300 | [diff] [blame] | 406 | .load_firmware_sync = true, |
Antti Palosaari | de0fc46 | 2013-10-04 15:25:55 -0300 | [diff] [blame] | 407 | .qam_demod_parameter_count = 2, |
Antti Palosaari | 3553085 | 2012-03-18 18:09:01 -0300 | [diff] [blame] | 408 | }; |
| 409 | |
Ezequiel García | 61bdbef | 2012-06-12 09:53:41 -0300 | [diff] [blame] | 410 | static struct drxk_config pctv_520e_drxk = { |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 411 | .adr = 0x29, |
| 412 | .single_master = 1, |
| 413 | .microcode_name = "dvb-demod-drxk-pctv.fw", |
Martin Blumenstingl | 9e23f50a | 2012-07-04 17:36:55 -0300 | [diff] [blame] | 414 | .qam_demod_parameter_count = 2, |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 415 | .chunk_size = 58, |
Antti Palosaari | f6f379d | 2012-05-17 19:09:06 -0300 | [diff] [blame] | 416 | .antenna_dvbt = true, /* disable LNA */ |
| 417 | .antenna_gpio = (1 << 2), /* disable LNA */ |
Mauro Carvalho Chehab | 2425bb3 | 2012-10-02 16:02:57 -0300 | [diff] [blame] | 418 | .load_firmware_sync = true, |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 419 | }; |
| 420 | |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 421 | static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable) |
| 422 | { |
| 423 | struct em28xx_dvb *dvb = fe->sec_priv; |
| 424 | int status; |
| 425 | |
| 426 | if (!dvb) |
| 427 | return -EINVAL; |
| 428 | |
| 429 | if (enable) { |
| 430 | down(&dvb->pll_mutex); |
| 431 | status = dvb->gate_ctrl(fe, 1); |
| 432 | } else { |
| 433 | status = dvb->gate_ctrl(fe, 0); |
| 434 | up(&dvb->pll_mutex); |
| 435 | } |
| 436 | return status; |
| 437 | } |
| 438 | |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 439 | static void hauppauge_hvr930c_init(struct em28xx *dev) |
| 440 | { |
| 441 | int i; |
| 442 | |
| 443 | struct em28xx_reg_seq hauppauge_hvr930c_init[] = { |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 444 | {EM2874_R80_GPIO_P0_CTRL, 0xff, 0xff, 0x65}, |
| 445 | {EM2874_R80_GPIO_P0_CTRL, 0xfb, 0xff, 0x32}, |
| 446 | {EM2874_R80_GPIO_P0_CTRL, 0xff, 0xff, 0xb8}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 447 | { -1, -1, -1, -1}, |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 448 | }; |
| 449 | struct em28xx_reg_seq hauppauge_hvr930c_end[] = { |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 450 | {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x01}, |
| 451 | {EM2874_R80_GPIO_P0_CTRL, 0xaf, 0xff, 0x65}, |
| 452 | {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x76}, |
| 453 | {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x01}, |
| 454 | {EM2874_R80_GPIO_P0_CTRL, 0xcf, 0xff, 0x0b}, |
| 455 | {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x40}, |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 456 | |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 457 | {EM2874_R80_GPIO_P0_CTRL, 0xcf, 0xff, 0x65}, |
| 458 | {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x65}, |
| 459 | {EM2874_R80_GPIO_P0_CTRL, 0xcf, 0xff, 0x0b}, |
| 460 | {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x65}, |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 461 | |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 462 | { -1, -1, -1, -1}, |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 463 | }; |
| 464 | |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 465 | struct { |
| 466 | unsigned char r[4]; |
| 467 | int len; |
| 468 | } regs[] = { |
| 469 | {{ 0x06, 0x02, 0x00, 0x31 }, 4}, |
| 470 | {{ 0x01, 0x02 }, 2}, |
| 471 | {{ 0x01, 0x02, 0x00, 0xc6 }, 4}, |
| 472 | {{ 0x01, 0x00 }, 2}, |
| 473 | {{ 0x01, 0x00, 0xff, 0xaf }, 4}, |
| 474 | {{ 0x01, 0x00, 0x03, 0xa0 }, 4}, |
| 475 | {{ 0x01, 0x00 }, 2}, |
| 476 | {{ 0x01, 0x00, 0x73, 0xaf }, 4}, |
| 477 | {{ 0x04, 0x00 }, 2}, |
| 478 | {{ 0x00, 0x04 }, 2}, |
| 479 | {{ 0x00, 0x04, 0x00, 0x0a }, 4}, |
| 480 | {{ 0x04, 0x14 }, 2}, |
| 481 | {{ 0x04, 0x14, 0x00, 0x00 }, 4}, |
| 482 | }; |
| 483 | |
| 484 | em28xx_gpio_set(dev, hauppauge_hvr930c_init); |
| 485 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40); |
| 486 | msleep(10); |
| 487 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44); |
| 488 | msleep(10); |
| 489 | |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 490 | dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 491 | |
| 492 | for (i = 0; i < ARRAY_SIZE(regs); i++) |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 493 | i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len); |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 494 | em28xx_gpio_set(dev, hauppauge_hvr930c_end); |
| 495 | |
| 496 | msleep(100); |
| 497 | |
| 498 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44); |
| 499 | msleep(30); |
| 500 | |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 501 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45); |
| 502 | msleep(10); |
| 503 | |
| 504 | } |
| 505 | |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 506 | static void terratec_h5_init(struct em28xx *dev) |
| 507 | { |
| 508 | int i; |
| 509 | struct em28xx_reg_seq terratec_h5_init[] = { |
Frank Schaefer | c074fc4 | 2013-06-03 14:12:03 -0300 | [diff] [blame] | 510 | {EM2820_R08_GPIO_CTRL, 0xff, 0xff, 10}, |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 511 | {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100}, |
| 512 | {EM2874_R80_GPIO_P0_CTRL, 0xf2, 0xff, 50}, |
| 513 | {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 514 | { -1, -1, -1, -1}, |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 515 | }; |
| 516 | struct em28xx_reg_seq terratec_h5_end[] = { |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 517 | {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 100}, |
| 518 | {EM2874_R80_GPIO_P0_CTRL, 0xa6, 0xff, 50}, |
| 519 | {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 100}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 520 | { -1, -1, -1, -1}, |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 521 | }; |
| 522 | struct { |
| 523 | unsigned char r[4]; |
| 524 | int len; |
| 525 | } regs[] = { |
| 526 | {{ 0x06, 0x02, 0x00, 0x31 }, 4}, |
| 527 | {{ 0x01, 0x02 }, 2}, |
| 528 | {{ 0x01, 0x02, 0x00, 0xc6 }, 4}, |
| 529 | {{ 0x01, 0x00 }, 2}, |
| 530 | {{ 0x01, 0x00, 0xff, 0xaf }, 4}, |
| 531 | {{ 0x01, 0x00, 0x03, 0xa0 }, 4}, |
| 532 | {{ 0x01, 0x00 }, 2}, |
| 533 | {{ 0x01, 0x00, 0x73, 0xaf }, 4}, |
| 534 | {{ 0x04, 0x00 }, 2}, |
| 535 | {{ 0x00, 0x04 }, 2}, |
| 536 | {{ 0x00, 0x04, 0x00, 0x0a }, 4}, |
| 537 | {{ 0x04, 0x14 }, 2}, |
| 538 | {{ 0x04, 0x14, 0x00, 0x00 }, 4}, |
| 539 | }; |
| 540 | |
| 541 | em28xx_gpio_set(dev, terratec_h5_init); |
| 542 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40); |
| 543 | msleep(10); |
| 544 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45); |
| 545 | msleep(10); |
| 546 | |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 547 | dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 548 | |
| 549 | for (i = 0; i < ARRAY_SIZE(regs); i++) |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 550 | i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len); |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 551 | em28xx_gpio_set(dev, terratec_h5_end); |
| 552 | }; |
| 553 | |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 554 | static void terratec_htc_stick_init(struct em28xx *dev) |
| 555 | { |
| 556 | int i; |
| 557 | |
| 558 | /* |
| 559 | * GPIO configuration: |
| 560 | * 0xff: unknown (does not affect DVB-T). |
| 561 | * 0xf6: DRX-K (demodulator). |
| 562 | * 0xe6: unknown (does not affect DVB-T). |
| 563 | * 0xb6: unknown (does not affect DVB-T). |
| 564 | */ |
| 565 | struct em28xx_reg_seq terratec_htc_stick_init[] = { |
Frank Schaefer | c074fc4 | 2013-06-03 14:12:03 -0300 | [diff] [blame] | 566 | {EM2820_R08_GPIO_CTRL, 0xff, 0xff, 10}, |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 567 | {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100}, |
| 568 | {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 50}, |
| 569 | {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 570 | { -1, -1, -1, -1}, |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 571 | }; |
| 572 | struct em28xx_reg_seq terratec_htc_stick_end[] = { |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 573 | {EM2874_R80_GPIO_P0_CTRL, 0xb6, 0xff, 100}, |
| 574 | {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 50}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 575 | { -1, -1, -1, -1}, |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 576 | }; |
| 577 | |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 578 | /* |
| 579 | * Init the analog decoder (not yet supported), but |
| 580 | * it's probably still a good idea. |
| 581 | */ |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 582 | struct { |
| 583 | unsigned char r[4]; |
| 584 | int len; |
| 585 | } regs[] = { |
| 586 | {{ 0x06, 0x02, 0x00, 0x31 }, 4}, |
| 587 | {{ 0x01, 0x02 }, 2}, |
| 588 | {{ 0x01, 0x02, 0x00, 0xc6 }, 4}, |
| 589 | {{ 0x01, 0x00 }, 2}, |
| 590 | {{ 0x01, 0x00, 0xff, 0xaf }, 4}, |
| 591 | }; |
| 592 | |
| 593 | em28xx_gpio_set(dev, terratec_htc_stick_init); |
| 594 | |
| 595 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40); |
| 596 | msleep(10); |
| 597 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44); |
| 598 | msleep(10); |
| 599 | |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 600 | dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 601 | |
| 602 | for (i = 0; i < ARRAY_SIZE(regs); i++) |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 603 | i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len); |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 604 | |
| 605 | em28xx_gpio_set(dev, terratec_htc_stick_end); |
| 606 | }; |
| 607 | |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 608 | static void terratec_htc_usb_xs_init(struct em28xx *dev) |
| 609 | { |
| 610 | int i; |
| 611 | |
| 612 | struct em28xx_reg_seq terratec_htc_usb_xs_init[] = { |
Frank Schaefer | c074fc4 | 2013-06-03 14:12:03 -0300 | [diff] [blame] | 613 | {EM2820_R08_GPIO_CTRL, 0xff, 0xff, 10}, |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 614 | {EM2874_R80_GPIO_P0_CTRL, 0xb2, 0xff, 100}, |
| 615 | {EM2874_R80_GPIO_P0_CTRL, 0xb2, 0xff, 50}, |
| 616 | {EM2874_R80_GPIO_P0_CTRL, 0xb6, 0xff, 100}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 617 | { -1, -1, -1, -1}, |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 618 | }; |
| 619 | struct em28xx_reg_seq terratec_htc_usb_xs_end[] = { |
Frank Schaefer | 907d109 | 2013-06-03 14:12:02 -0300 | [diff] [blame] | 620 | {EM2874_R80_GPIO_P0_CTRL, 0xa6, 0xff, 100}, |
| 621 | {EM2874_R80_GPIO_P0_CTRL, 0xa6, 0xff, 50}, |
| 622 | {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 100}, |
Frank Schaefer | b68cafc | 2013-10-10 14:36:30 -0300 | [diff] [blame] | 623 | { -1, -1, -1, -1}, |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 624 | }; |
| 625 | |
| 626 | /* |
| 627 | * Init the analog decoder (not yet supported), but |
| 628 | * it's probably still a good idea. |
| 629 | */ |
| 630 | struct { |
| 631 | unsigned char r[4]; |
| 632 | int len; |
| 633 | } regs[] = { |
| 634 | {{ 0x06, 0x02, 0x00, 0x31 }, 4}, |
| 635 | {{ 0x01, 0x02 }, 2}, |
| 636 | {{ 0x01, 0x02, 0x00, 0xc6 }, 4}, |
| 637 | {{ 0x01, 0x00 }, 2}, |
| 638 | {{ 0x01, 0x00, 0xff, 0xaf }, 4}, |
| 639 | {{ 0x01, 0x00, 0x03, 0xa0 }, 4}, |
| 640 | {{ 0x01, 0x00 }, 2}, |
| 641 | {{ 0x01, 0x00, 0x73, 0xaf }, 4}, |
| 642 | {{ 0x04, 0x00 }, 2}, |
| 643 | {{ 0x00, 0x04 }, 2}, |
| 644 | {{ 0x00, 0x04, 0x00, 0x0a }, 4}, |
| 645 | {{ 0x04, 0x14 }, 2}, |
| 646 | {{ 0x04, 0x14, 0x00, 0x00 }, 4}, |
| 647 | }; |
| 648 | |
| 649 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40); |
| 650 | |
| 651 | em28xx_gpio_set(dev, terratec_htc_usb_xs_init); |
| 652 | |
| 653 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40); |
| 654 | msleep(10); |
| 655 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44); |
| 656 | msleep(10); |
| 657 | |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 658 | dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 659 | |
| 660 | for (i = 0; i < ARRAY_SIZE(regs); i++) |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 661 | i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len); |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 662 | |
| 663 | em28xx_gpio_set(dev, terratec_htc_usb_xs_end); |
| 664 | }; |
| 665 | |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 666 | static void pctv_520e_init(struct em28xx *dev) |
| 667 | { |
| 668 | /* |
Antti Palosaari | 26c8a72 | 2012-05-17 18:22:02 -0300 | [diff] [blame] | 669 | * Init AVF4910B analog decoder. Looks like I2C traffic to |
| 670 | * digital demodulator and tuner are routed via AVF4910B. |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 671 | */ |
| 672 | int i; |
| 673 | struct { |
| 674 | unsigned char r[4]; |
| 675 | int len; |
| 676 | } regs[] = { |
| 677 | {{ 0x06, 0x02, 0x00, 0x31 }, 4}, |
| 678 | {{ 0x01, 0x02 }, 2}, |
| 679 | {{ 0x01, 0x02, 0x00, 0xc6 }, 4}, |
| 680 | {{ 0x01, 0x00 }, 2}, |
| 681 | {{ 0x01, 0x00, 0xff, 0xaf }, 4}, |
| 682 | {{ 0x01, 0x00, 0x03, 0xa0 }, 4}, |
| 683 | {{ 0x01, 0x00 }, 2}, |
| 684 | {{ 0x01, 0x00, 0x73, 0xaf }, 4}, |
| 685 | }; |
| 686 | |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 687 | dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; /* 0x41 */ |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 688 | |
| 689 | for (i = 0; i < ARRAY_SIZE(regs); i++) |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 690 | i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len); |
Antti Palosaari | c247d7b | 2012-03-19 11:48:19 -0300 | [diff] [blame] | 691 | }; |
| 692 | |
Antti Palosaari | 33eebec | 2012-10-03 04:28:56 -0300 | [diff] [blame] | 693 | static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe) |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 694 | { |
Antti Palosaari | 33eebec | 2012-10-03 04:28:56 -0300 | [diff] [blame] | 695 | struct dtv_frontend_properties *c = &fe->dtv_property_cache; |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 696 | struct em28xx *dev = fe->dvb->priv; |
| 697 | #ifdef CONFIG_GPIOLIB |
| 698 | struct em28xx_dvb *dvb = dev->dvb; |
| 699 | int ret; |
| 700 | unsigned long flags; |
| 701 | |
Antti Palosaari | 33eebec | 2012-10-03 04:28:56 -0300 | [diff] [blame] | 702 | if (c->lna == 1) |
| 703 | flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */ |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 704 | else |
Antti Palosaari | 33eebec | 2012-10-03 04:28:56 -0300 | [diff] [blame] | 705 | flags = GPIOF_OUT_INIT_LOW; /* disable LNA */ |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 706 | |
| 707 | ret = gpio_request_one(dvb->lna_gpio, flags, NULL); |
| 708 | if (ret) |
| 709 | em28xx_errdev("gpio request failed %d\n", ret); |
| 710 | else |
| 711 | gpio_free(dvb->lna_gpio); |
| 712 | |
| 713 | return ret; |
| 714 | #else |
Antti Palosaari | 33eebec | 2012-10-03 04:28:56 -0300 | [diff] [blame] | 715 | dev_warn(&dev->udev->dev, "%s: LNA control is disabled (lna=%u)\n", |
| 716 | KBUILD_MODNAME, c->lna); |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 717 | return 0; |
| 718 | #endif |
| 719 | } |
| 720 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 721 | static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe) |
Devin Heitmueller | 4fb202a | 2009-07-12 17:51:12 -0300 | [diff] [blame] | 722 | { |
| 723 | /* Values extracted from a USB trace of the Terratec Windows driver */ |
| 724 | static u8 clock_config[] = { CLOCK_CTL, 0x38, 0x2c }; |
| 725 | static u8 reset[] = { RESET, 0x80 }; |
| 726 | static u8 adc_ctl_1_cfg[] = { ADC_CTL_1, 0x40 }; |
| 727 | static u8 agc_cfg[] = { AGC_TARGET, 0x28, 0xa0 }; |
| 728 | static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 }; |
| 729 | static u8 rs_err_cfg[] = { RS_ERR_PER_1, 0x00, 0x4d }; |
| 730 | static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 }; |
| 731 | static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 }; |
| 732 | static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 }; |
Devin Heitmueller | ff69786 | 2009-07-12 18:44:19 -0300 | [diff] [blame] | 733 | static u8 tuner_go[] = { TUNER_GO, 0x01}; |
Devin Heitmueller | 4fb202a | 2009-07-12 17:51:12 -0300 | [diff] [blame] | 734 | |
| 735 | mt352_write(fe, clock_config, sizeof(clock_config)); |
| 736 | udelay(200); |
| 737 | mt352_write(fe, reset, sizeof(reset)); |
| 738 | mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg)); |
| 739 | mt352_write(fe, agc_cfg, sizeof(agc_cfg)); |
| 740 | mt352_write(fe, input_freq_cfg, sizeof(input_freq_cfg)); |
| 741 | mt352_write(fe, rs_err_cfg, sizeof(rs_err_cfg)); |
| 742 | mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg)); |
| 743 | mt352_write(fe, trl_nom_cfg, sizeof(trl_nom_cfg)); |
| 744 | mt352_write(fe, tps_given_cfg, sizeof(tps_given_cfg)); |
| 745 | mt352_write(fe, tuner_go, sizeof(tuner_go)); |
| 746 | return 0; |
| 747 | } |
| 748 | |
| 749 | static struct mt352_config terratec_xs_mt352_cfg = { |
| 750 | .demod_address = (0x1e >> 1), |
| 751 | .no_tuner = 1, |
| 752 | .if2 = 45600, |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 753 | .demod_init = em28xx_mt352_terratec_xs_init, |
Devin Heitmueller | 4fb202a | 2009-07-12 17:51:12 -0300 | [diff] [blame] | 754 | }; |
| 755 | |
Antti Palosaari | 285eb1a | 2009-09-15 14:42:13 -0300 | [diff] [blame] | 756 | static struct tda10023_config em28xx_tda10023_config = { |
| 757 | .demod_address = 0x0c, |
| 758 | .invert = 1, |
| 759 | }; |
| 760 | |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 761 | static struct cxd2820r_config em28xx_cxd2820r_config = { |
| 762 | .i2c_address = (0xd8 >> 1), |
| 763 | .ts_mode = CXD2820R_TS_SERIAL, |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 764 | }; |
| 765 | |
| 766 | static struct tda18271_config em28xx_cxd2820r_tda18271_config = { |
| 767 | .output_opt = TDA18271_OUTPUT_LT_OFF, |
Steve Kerrison | 0db4bf4 | 2011-08-09 07:16:21 -0300 | [diff] [blame] | 768 | .gate = TDA18271_GATE_DIGITAL, |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 769 | }; |
| 770 | |
Antti Palosaari | 3658871 | 2011-08-01 01:15:30 -0300 | [diff] [blame] | 771 | static const struct tda10071_config em28xx_tda10071_config = { |
Michael Krufky | 41f55d5 | 2012-12-16 19:37:11 -0300 | [diff] [blame] | 772 | .demod_i2c_addr = 0x55, /* (0xaa >> 1) */ |
| 773 | .tuner_i2c_addr = 0x14, |
Antti Palosaari | 3658871 | 2011-08-01 01:15:30 -0300 | [diff] [blame] | 774 | .i2c_wr_max = 64, |
| 775 | .ts_mode = TDA10071_TS_SERIAL, |
| 776 | .spec_inv = 0, |
| 777 | .xtal = 40444000, /* 40.444 MHz */ |
| 778 | .pll_multiplier = 20, |
| 779 | }; |
| 780 | |
| 781 | static const struct a8293_config em28xx_a8293_config = { |
| 782 | .i2c_addr = 0x08, /* (0x10 >> 1) */ |
| 783 | }; |
| 784 | |
Aivar Päkk | 1985f6f | 2011-12-11 18:15:00 -0300 | [diff] [blame] | 785 | static struct zl10353_config em28xx_zl10353_no_i2c_gate_dev = { |
| 786 | .demod_address = (0x1e >> 1), |
| 787 | .disable_i2c_gate_ctrl = 1, |
| 788 | .no_tuner = 1, |
| 789 | .parallel_ts = 1, |
| 790 | }; |
| 791 | static struct qt1010_config em28xx_qt1010_config = { |
| 792 | .i2c_address = 0x62 |
Aivar Päkk | 1985f6f | 2011-12-11 18:15:00 -0300 | [diff] [blame] | 793 | }; |
| 794 | |
Mauro Carvalho Chehab | 4159d01 | 2013-02-28 10:35:56 -0300 | [diff] [blame] | 795 | static const struct mb86a20s_config c3tech_duo_mb86a20s_config = { |
| 796 | .demod_address = 0x10, |
| 797 | .is_serial = true, |
| 798 | }; |
| 799 | |
| 800 | static struct tda18271_std_map mb86a20s_tda18271_config = { |
| 801 | .dvbt_6 = { .if_freq = 4000, .agc_mode = 3, .std = 4, |
| 802 | .if_lvl = 1, .rfagc_top = 0x37, }, |
| 803 | }; |
| 804 | |
| 805 | static struct tda18271_config c3tech_duo_tda18271_config = { |
| 806 | .std_map = &mb86a20s_tda18271_config, |
| 807 | .gate = TDA18271_GATE_DIGITAL, |
| 808 | .small_i2c = TDA18271_03_BYTE_CHUNK_INIT, |
| 809 | }; |
| 810 | |
| 811 | |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 812 | /* ------------------------------------------------------------------ */ |
| 813 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 814 | static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev) |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 815 | { |
| 816 | struct dvb_frontend *fe; |
Mauro Carvalho Chehab | 3ca9c09 | 2008-04-17 21:37:53 -0300 | [diff] [blame] | 817 | struct xc2028_config cfg; |
| 818 | |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 819 | memset(&cfg, 0, sizeof(cfg)); |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 820 | cfg.i2c_adap = &dev->i2c_adap[dev->def_i2c_bus]; |
Mauro Carvalho Chehab | 3ca9c09 | 2008-04-17 21:37:53 -0300 | [diff] [blame] | 821 | cfg.i2c_addr = addr; |
Mauro Carvalho Chehab | 3ca9c09 | 2008-04-17 21:37:53 -0300 | [diff] [blame] | 822 | |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 823 | if (!dev->dvb->fe[0]) { |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 824 | em28xx_errdev("/2: dvb frontend not attached. " |
| 825 | "Can't attach xc3028\n"); |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 826 | return -EINVAL; |
| 827 | } |
| 828 | |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 829 | fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg); |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 830 | if (!fe) { |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 831 | em28xx_errdev("/2: xc3028 attach failed\n"); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 832 | dvb_frontend_detach(dev->dvb->fe[0]); |
| 833 | dev->dvb->fe[0] = NULL; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 834 | return -EINVAL; |
| 835 | } |
| 836 | |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 837 | em28xx_info("%s/2: xc3028 attached\n", dev->name); |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 838 | |
| 839 | return 0; |
| 840 | } |
| 841 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 842 | /* ------------------------------------------------------------------ */ |
| 843 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 844 | static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module, |
| 845 | struct em28xx *dev, struct device *device) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 846 | { |
| 847 | int result; |
| 848 | |
| 849 | mutex_init(&dvb->lock); |
| 850 | |
| 851 | /* register adapter */ |
| 852 | result = dvb_register_adapter(&dvb->adapter, dev->name, module, device, |
| 853 | adapter_nr); |
| 854 | if (result < 0) { |
| 855 | printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n", |
| 856 | dev->name, result); |
| 857 | goto fail_adapter; |
| 858 | } |
Mauro Carvalho Chehab | e3569ab | 2008-04-17 21:49:20 -0300 | [diff] [blame] | 859 | |
| 860 | /* Ensure all frontends negotiate bus access */ |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 861 | dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl; |
| 862 | if (dvb->fe[1]) |
| 863 | dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl; |
Mauro Carvalho Chehab | e3569ab | 2008-04-17 21:49:20 -0300 | [diff] [blame] | 864 | |
Hans Verkuil | 3de09fb | 2013-04-08 16:25:04 -0300 | [diff] [blame] | 865 | dvb->adapter.priv = &dev->i2c_bus[dev->def_i2c_bus]; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 866 | |
| 867 | /* register frontend */ |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 868 | result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 869 | if (result < 0) { |
| 870 | printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n", |
| 871 | dev->name, result); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 872 | goto fail_frontend0; |
| 873 | } |
| 874 | |
| 875 | /* register 2nd frontend */ |
| 876 | if (dvb->fe[1]) { |
| 877 | result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]); |
| 878 | if (result < 0) { |
| 879 | printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n", |
| 880 | dev->name, result); |
| 881 | goto fail_frontend1; |
| 882 | } |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 883 | } |
| 884 | |
| 885 | /* register demux stuff */ |
| 886 | dvb->demux.dmx.capabilities = |
| 887 | DMX_TS_FILTERING | DMX_SECTION_FILTERING | |
| 888 | DMX_MEMORY_BASED_FILTERING; |
| 889 | dvb->demux.priv = dvb; |
| 890 | dvb->demux.filternum = 256; |
| 891 | dvb->demux.feednum = 256; |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 892 | dvb->demux.start_feed = em28xx_start_feed; |
| 893 | dvb->demux.stop_feed = em28xx_stop_feed; |
Mauro Carvalho Chehab | e3569ab | 2008-04-17 21:49:20 -0300 | [diff] [blame] | 894 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 895 | result = dvb_dmx_init(&dvb->demux); |
| 896 | if (result < 0) { |
| 897 | printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n", |
| 898 | dev->name, result); |
| 899 | goto fail_dmx; |
| 900 | } |
| 901 | |
| 902 | dvb->dmxdev.filternum = 256; |
| 903 | dvb->dmxdev.demux = &dvb->demux.dmx; |
| 904 | dvb->dmxdev.capabilities = 0; |
| 905 | result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter); |
| 906 | if (result < 0) { |
| 907 | printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n", |
| 908 | dev->name, result); |
| 909 | goto fail_dmxdev; |
| 910 | } |
| 911 | |
| 912 | dvb->fe_hw.source = DMX_FRONTEND_0; |
| 913 | result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw); |
| 914 | if (result < 0) { |
| 915 | printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n", |
| 916 | dev->name, result); |
| 917 | goto fail_fe_hw; |
| 918 | } |
| 919 | |
| 920 | dvb->fe_mem.source = DMX_MEMORY_FE; |
| 921 | result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem); |
| 922 | if (result < 0) { |
| 923 | printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n", |
| 924 | dev->name, result); |
| 925 | goto fail_fe_mem; |
| 926 | } |
| 927 | |
| 928 | result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw); |
| 929 | if (result < 0) { |
| 930 | printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n", |
| 931 | dev->name, result); |
| 932 | goto fail_fe_conn; |
| 933 | } |
| 934 | |
| 935 | /* register network adapter */ |
| 936 | dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx); |
| 937 | return 0; |
| 938 | |
| 939 | fail_fe_conn: |
| 940 | dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem); |
| 941 | fail_fe_mem: |
| 942 | dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw); |
| 943 | fail_fe_hw: |
| 944 | dvb_dmxdev_release(&dvb->dmxdev); |
| 945 | fail_dmxdev: |
| 946 | dvb_dmx_release(&dvb->demux); |
| 947 | fail_dmx: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 948 | if (dvb->fe[1]) |
| 949 | dvb_unregister_frontend(dvb->fe[1]); |
| 950 | dvb_unregister_frontend(dvb->fe[0]); |
| 951 | fail_frontend1: |
| 952 | if (dvb->fe[1]) |
| 953 | dvb_frontend_detach(dvb->fe[1]); |
| 954 | fail_frontend0: |
| 955 | dvb_frontend_detach(dvb->fe[0]); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 956 | dvb_unregister_adapter(&dvb->adapter); |
| 957 | fail_adapter: |
| 958 | return result; |
| 959 | } |
| 960 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 961 | static void em28xx_unregister_dvb(struct em28xx_dvb *dvb) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 962 | { |
| 963 | dvb_net_release(&dvb->net); |
| 964 | dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem); |
| 965 | dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw); |
| 966 | dvb_dmxdev_release(&dvb->dmxdev); |
| 967 | dvb_dmx_release(&dvb->demux); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 968 | if (dvb->fe[1]) |
| 969 | dvb_unregister_frontend(dvb->fe[1]); |
| 970 | dvb_unregister_frontend(dvb->fe[0]); |
Mauro Carvalho Chehab | c4c3a3d | 2011-07-14 22:23:18 -0300 | [diff] [blame] | 971 | if (dvb->fe[1] && !dvb->dont_attach_fe1) |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 972 | dvb_frontend_detach(dvb->fe[1]); |
| 973 | dvb_frontend_detach(dvb->fe[0]); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 974 | dvb_unregister_adapter(&dvb->adapter); |
| 975 | } |
| 976 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 977 | static int em28xx_dvb_init(struct em28xx *dev) |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 978 | { |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 979 | int result = 0, mfe_shared = 0; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 980 | struct em28xx_dvb *dvb; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 981 | |
Mauro Carvalho Chehab | 505b6d0 | 2008-11-25 09:39:50 -0300 | [diff] [blame] | 982 | if (!dev->board.has_dvb) { |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 983 | /* This device does not support the extension */ |
Mauro Carvalho Chehab | ca3dfd6 | 2010-09-10 17:29:14 -0300 | [diff] [blame] | 984 | printk(KERN_INFO "em28xx_dvb: This device does not support the extension\n"); |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 985 | return 0; |
| 986 | } |
| 987 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 988 | dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL); |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 989 | |
| 990 | if (dvb == NULL) { |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 991 | em28xx_info("em28xx_dvb: memory allocation failed\n"); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 992 | return -ENOMEM; |
| 993 | } |
| 994 | dev->dvb = dvb; |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 995 | dvb->fe[0] = dvb->fe[1] = NULL; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 996 | |
Mauro Carvalho Chehab | 5013318 | 2010-04-07 17:07:58 -0300 | [diff] [blame] | 997 | mutex_lock(&dev->lock); |
Mauro Carvalho Chehab | c67ec53 | 2008-04-17 21:48:00 -0300 | [diff] [blame] | 998 | em28xx_set_mode(dev, EM28XX_DIGITAL_MODE); |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 999 | /* init frontend */ |
| 1000 | switch (dev->model) { |
Mauro Carvalho Chehab | ebaefdb | 2011-06-01 10:16:25 -0300 | [diff] [blame] | 1001 | case EM2874_BOARD_LEADERSHIP_ISDBT: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1002 | dvb->fe[0] = dvb_attach(s921_attach, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1003 | &sharp_isdbt, &dev->i2c_adap[dev->def_i2c_bus]); |
Mauro Carvalho Chehab | ca3dfd6 | 2010-09-10 17:29:14 -0300 | [diff] [blame] | 1004 | |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1005 | if (!dvb->fe[0]) { |
Mauro Carvalho Chehab | ca3dfd6 | 2010-09-10 17:29:14 -0300 | [diff] [blame] | 1006 | result = -EINVAL; |
| 1007 | goto out_free; |
| 1008 | } |
| 1009 | |
| 1010 | break; |
Douglas Schilling Landgraf | f89bc32 | 2008-12-01 21:01:04 -0300 | [diff] [blame] | 1011 | case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850: |
Mauro Carvalho Chehab | 10ac660 | 2008-07-27 14:58:58 -0300 | [diff] [blame] | 1012 | case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950: |
Devin Heitmueller | 4fd305b | 2008-06-04 13:43:46 -0300 | [diff] [blame] | 1013 | case EM2880_BOARD_PINNACLE_PCTV_HD_PRO: |
Devin Heitmueller | e14b365 | 2008-07-26 11:04:33 -0300 | [diff] [blame] | 1014 | case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1015 | dvb->fe[0] = dvb_attach(lgdt330x_attach, |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1016 | &em2880_lgdt3303_dev, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1017 | &dev->i2c_adap[dev->def_i2c_bus]); |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1018 | if (em28xx_attach_xc3028(0x61, dev) < 0) { |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1019 | result = -EINVAL; |
| 1020 | goto out_free; |
| 1021 | } |
Mauro Carvalho Chehab | 227ad4a | 2008-04-17 21:37:40 -0300 | [diff] [blame] | 1022 | break; |
Thierry MERLE | 46510b5 | 2008-10-11 16:56:13 -0300 | [diff] [blame] | 1023 | case EM2880_BOARD_KWORLD_DVB_310U: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1024 | dvb->fe[0] = dvb_attach(zl10353_attach, |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1025 | &em28xx_zl10353_with_xc3028, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1026 | &dev->i2c_adap[dev->def_i2c_bus]); |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1027 | if (em28xx_attach_xc3028(0x61, dev) < 0) { |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1028 | result = -EINVAL; |
| 1029 | goto out_free; |
| 1030 | } |
Aidan Thornton | 7e6388a | 2008-04-17 21:40:03 -0300 | [diff] [blame] | 1031 | break; |
Devin Heitmueller | a84f79a | 2009-07-12 17:05:02 -0300 | [diff] [blame] | 1032 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900: |
Uroš Vampl | ec994d0 | 2009-09-30 22:53:37 -0300 | [diff] [blame] | 1033 | case EM2882_BOARD_TERRATEC_HYBRID_XS: |
Devin Heitmueller | 01a5fd6 | 2009-08-07 09:25:06 -0300 | [diff] [blame] | 1034 | case EM2880_BOARD_EMPIRE_DUAL_TV: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1035 | dvb->fe[0] = dvb_attach(zl10353_attach, |
Devin Heitmueller | a84f79a | 2009-07-12 17:05:02 -0300 | [diff] [blame] | 1036 | &em28xx_zl10353_xc3028_no_i2c_gate, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1037 | &dev->i2c_adap[dev->def_i2c_bus]); |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1038 | if (em28xx_attach_xc3028(0x61, dev) < 0) { |
Devin Heitmueller | a84f79a | 2009-07-12 17:05:02 -0300 | [diff] [blame] | 1039 | result = -EINVAL; |
| 1040 | goto out_free; |
| 1041 | } |
| 1042 | break; |
Devin Heitmueller | f797608 | 2009-06-22 22:32:32 -0300 | [diff] [blame] | 1043 | case EM2880_BOARD_TERRATEC_HYBRID_XS: |
Catimimi | 6563801 | 2010-02-18 18:06:32 -0300 | [diff] [blame] | 1044 | case EM2880_BOARD_TERRATEC_HYBRID_XS_FR: |
Devin Heitmueller | d5b3ba9 | 2009-07-08 21:51:35 -0300 | [diff] [blame] | 1045 | case EM2881_BOARD_PINNACLE_HYBRID_PRO: |
Andrea.Amorosi76@gmail.com | 7ca7ef6 | 2010-02-09 17:53:38 -0300 | [diff] [blame] | 1046 | case EM2882_BOARD_DIKOM_DK300: |
Antonio Larrosa | 811fab6 | 2010-03-04 22:19:48 -0300 | [diff] [blame] | 1047 | case EM2882_BOARD_KWORLD_VS_DVBT: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1048 | dvb->fe[0] = dvb_attach(zl10353_attach, |
Devin Heitmueller | a84f79a | 2009-07-12 17:05:02 -0300 | [diff] [blame] | 1049 | &em28xx_zl10353_xc3028_no_i2c_gate, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1050 | &dev->i2c_adap[dev->def_i2c_bus]); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1051 | if (dvb->fe[0] == NULL) { |
Devin Heitmueller | f797608 | 2009-06-22 22:32:32 -0300 | [diff] [blame] | 1052 | /* This board could have either a zl10353 or a mt352. |
| 1053 | If the chip id isn't for zl10353, try mt352 */ |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1054 | dvb->fe[0] = dvb_attach(mt352_attach, |
Devin Heitmueller | 4fb202a | 2009-07-12 17:51:12 -0300 | [diff] [blame] | 1055 | &terratec_xs_mt352_cfg, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1056 | &dev->i2c_adap[dev->def_i2c_bus]); |
Devin Heitmueller | f797608 | 2009-06-22 22:32:32 -0300 | [diff] [blame] | 1057 | } |
Devin Heitmueller | 4fb202a | 2009-07-12 17:51:12 -0300 | [diff] [blame] | 1058 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1059 | if (em28xx_attach_xc3028(0x61, dev) < 0) { |
Devin Heitmueller | f797608 | 2009-06-22 22:32:32 -0300 | [diff] [blame] | 1060 | result = -EINVAL; |
| 1061 | goto out_free; |
| 1062 | } |
| 1063 | break; |
Aivar Päkk | 1985f6f | 2011-12-11 18:15:00 -0300 | [diff] [blame] | 1064 | case EM2870_BOARD_KWORLD_355U: |
| 1065 | dvb->fe[0] = dvb_attach(zl10353_attach, |
| 1066 | &em28xx_zl10353_no_i2c_gate_dev, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1067 | &dev->i2c_adap[dev->def_i2c_bus]); |
Aivar Päkk | 1985f6f | 2011-12-11 18:15:00 -0300 | [diff] [blame] | 1068 | if (dvb->fe[0] != NULL) |
| 1069 | dvb_attach(qt1010_attach, dvb->fe[0], |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1070 | &dev->i2c_adap[dev->def_i2c_bus], &em28xx_qt1010_config); |
Aivar Päkk | 1985f6f | 2011-12-11 18:15:00 -0300 | [diff] [blame] | 1071 | break; |
Robert Krakora | 6e7b9ea | 2009-01-18 21:59:34 -0300 | [diff] [blame] | 1072 | case EM2883_BOARD_KWORLD_HYBRID_330U: |
Devin Heitmueller | 1985922 | 2009-06-19 00:33:54 -0300 | [diff] [blame] | 1073 | case EM2882_BOARD_EVGA_INDTUBE: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1074 | dvb->fe[0] = dvb_attach(s5h1409_attach, |
Robert Krakora | 6e7b9ea | 2009-01-18 21:59:34 -0300 | [diff] [blame] | 1075 | &em28xx_s5h1409_with_xc3028, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1076 | &dev->i2c_adap[dev->def_i2c_bus]); |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1077 | if (em28xx_attach_xc3028(0x61, dev) < 0) { |
Robert Krakora | 6e7b9ea | 2009-01-18 21:59:34 -0300 | [diff] [blame] | 1078 | result = -EINVAL; |
| 1079 | goto out_free; |
| 1080 | } |
| 1081 | break; |
Franklin Meng | d7de5d8 | 2009-06-06 17:05:02 -0300 | [diff] [blame] | 1082 | case EM2882_BOARD_KWORLD_ATSC_315U: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1083 | dvb->fe[0] = dvb_attach(lgdt330x_attach, |
Franklin Meng | d7de5d8 | 2009-06-06 17:05:02 -0300 | [diff] [blame] | 1084 | &em2880_lgdt3303_dev, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1085 | &dev->i2c_adap[dev->def_i2c_bus]); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1086 | if (dvb->fe[0] != NULL) { |
| 1087 | if (!dvb_attach(simple_tuner_attach, dvb->fe[0], |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1088 | &dev->i2c_adap[dev->def_i2c_bus], 0x61, TUNER_THOMSON_DTT761X)) { |
Franklin Meng | d7de5d8 | 2009-06-06 17:05:02 -0300 | [diff] [blame] | 1089 | result = -EINVAL; |
| 1090 | goto out_free; |
| 1091 | } |
| 1092 | } |
| 1093 | break; |
Devin Heitmueller | 17d9d55 | 2008-06-08 10:22:03 -0300 | [diff] [blame] | 1094 | case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2: |
Devin Heitmueller | ad9b4bb | 2011-03-13 02:09:59 -0300 | [diff] [blame] | 1095 | case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1096 | dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1097 | &dev->i2c_adap[dev->def_i2c_bus], &dev->udev->dev); |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1098 | if (em28xx_attach_xc3028(0x61, dev) < 0) { |
Devin Heitmueller | 17d9d55 | 2008-06-08 10:22:03 -0300 | [diff] [blame] | 1099 | result = -EINVAL; |
| 1100 | goto out_free; |
| 1101 | } |
| 1102 | break; |
Antti Palosaari | 285eb1a | 2009-09-15 14:42:13 -0300 | [diff] [blame] | 1103 | case EM2870_BOARD_REDDO_DVB_C_USB_BOX: |
| 1104 | /* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */ |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1105 | dvb->fe[0] = dvb_attach(tda10023_attach, |
Antti Palosaari | 285eb1a | 2009-09-15 14:42:13 -0300 | [diff] [blame] | 1106 | &em28xx_tda10023_config, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1107 | &dev->i2c_adap[dev->def_i2c_bus], 0x48); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1108 | if (dvb->fe[0]) { |
| 1109 | if (!dvb_attach(simple_tuner_attach, dvb->fe[0], |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1110 | &dev->i2c_adap[dev->def_i2c_bus], 0x60, TUNER_PHILIPS_CU1216L)) { |
Antti Palosaari | 285eb1a | 2009-09-15 14:42:13 -0300 | [diff] [blame] | 1111 | result = -EINVAL; |
| 1112 | goto out_free; |
| 1113 | } |
| 1114 | } |
| 1115 | break; |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 1116 | case EM2870_BOARD_KWORLD_A340: |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1117 | dvb->fe[0] = dvb_attach(lgdt3305_attach, |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 1118 | &em2870_lgdt3304_dev, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1119 | &dev->i2c_adap[dev->def_i2c_bus]); |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1120 | if (dvb->fe[0] != NULL) |
| 1121 | dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1122 | &dev->i2c_adap[dev->def_i2c_bus], &kworld_a340_config); |
Jarod Wilson | 7e48b30 | 2010-03-07 17:55:43 -0300 | [diff] [blame] | 1123 | break; |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 1124 | case EM28174_BOARD_PCTV_290E: |
Antti Palosaari | a36a66d | 2012-08-16 21:07:23 -0300 | [diff] [blame] | 1125 | /* set default GPIO0 for LNA, used if GPIOLIB is undefined */ |
| 1126 | dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O | |
| 1127 | CXD2820R_GPIO_L; |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 1128 | dvb->fe[0] = dvb_attach(cxd2820r_attach, |
Manu Abraham | 7e7b828 | 2011-12-10 00:44:24 -0300 | [diff] [blame] | 1129 | &em28xx_cxd2820r_config, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1130 | &dev->i2c_adap[dev->def_i2c_bus], |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 1131 | &dvb->lna_gpio); |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 1132 | if (dvb->fe[0]) { |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 1133 | /* FE 0 attach tuner */ |
Manu Abraham | 7e7b828 | 2011-12-10 00:44:24 -0300 | [diff] [blame] | 1134 | if (!dvb_attach(tda18271_attach, |
| 1135 | dvb->fe[0], |
| 1136 | 0x60, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1137 | &dev->i2c_adap[dev->def_i2c_bus], |
Manu Abraham | 7e7b828 | 2011-12-10 00:44:24 -0300 | [diff] [blame] | 1138 | &em28xx_cxd2820r_tda18271_config)) { |
| 1139 | |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 1140 | dvb_frontend_detach(dvb->fe[0]); |
| 1141 | result = -EINVAL; |
| 1142 | goto out_free; |
| 1143 | } |
Antti Palosaari | 1e8f31f | 2012-07-19 21:10:36 -0300 | [diff] [blame] | 1144 | |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 1145 | #ifdef CONFIG_GPIOLIB |
Antti Palosaari | 0c42a55 | 2012-09-19 20:52:21 -0300 | [diff] [blame] | 1146 | /* enable LNA for DVB-T, DVB-T2 and DVB-C */ |
| 1147 | result = gpio_request_one(dvb->lna_gpio, |
| 1148 | GPIOF_OUT_INIT_LOW, NULL); |
| 1149 | if (result) |
| 1150 | em28xx_errdev("gpio request failed %d\n", |
| 1151 | result); |
| 1152 | else |
| 1153 | gpio_free(dvb->lna_gpio); |
Antti Palosaari | 1e8f31f | 2012-07-19 21:10:36 -0300 | [diff] [blame] | 1154 | |
Antti Palosaari | 0c42a55 | 2012-09-19 20:52:21 -0300 | [diff] [blame] | 1155 | result = 0; /* continue even set LNA fails */ |
Antti Palosaari | 13a5336 | 2012-07-19 22:28:56 -0300 | [diff] [blame] | 1156 | #endif |
Antti Palosaari | 0c42a55 | 2012-09-19 20:52:21 -0300 | [diff] [blame] | 1157 | dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna; |
| 1158 | } |
| 1159 | |
Antti Palosaari | d6a5f92 | 2011-04-07 16:34:44 -0300 | [diff] [blame] | 1160 | break; |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1161 | case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C: |
Mauro Carvalho Chehab | 8503232 | 2011-11-24 15:01:45 -0200 | [diff] [blame] | 1162 | { |
| 1163 | struct xc5000_config cfg; |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1164 | hauppauge_hvr930c_init(dev); |
| 1165 | |
Mauro Carvalho Chehab | de72405 | 2011-11-20 11:23:24 -0200 | [diff] [blame] | 1166 | dvb->fe[0] = dvb_attach(drxk_attach, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1167 | &hauppauge_930c_drxk, &dev->i2c_adap[dev->def_i2c_bus]); |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1168 | if (!dvb->fe[0]) { |
| 1169 | result = -EINVAL; |
| 1170 | goto out_free; |
| 1171 | } |
| 1172 | /* FIXME: do we need a pll semaphore? */ |
| 1173 | dvb->fe[0]->sec_priv = dvb; |
| 1174 | sema_init(&dvb->pll_mutex, 1); |
| 1175 | dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl; |
| 1176 | dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl; |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1177 | |
| 1178 | /* Attach xc5000 */ |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1179 | memset(&cfg, 0, sizeof(cfg)); |
| 1180 | cfg.i2c_address = 0x61; |
Mauro Carvalho Chehab | de72405 | 2011-11-20 11:23:24 -0200 | [diff] [blame] | 1181 | cfg.if_khz = 4000; |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1182 | |
| 1183 | if (dvb->fe[0]->ops.i2c_gate_ctrl) |
| 1184 | dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1); |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1185 | if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus], |
Mauro Carvalho Chehab | de72405 | 2011-11-20 11:23:24 -0200 | [diff] [blame] | 1186 | &cfg)) { |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1187 | result = -EINVAL; |
| 1188 | goto out_free; |
| 1189 | } |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1190 | if (dvb->fe[0]->ops.i2c_gate_ctrl) |
| 1191 | dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0); |
| 1192 | |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1193 | break; |
Mauro Carvalho Chehab | 8503232 | 2011-11-24 15:01:45 -0200 | [diff] [blame] | 1194 | } |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 1195 | case EM2884_BOARD_TERRATEC_H5: |
| 1196 | terratec_h5_init(dev); |
| 1197 | |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1198 | dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap[dev->def_i2c_bus]); |
Mauro Carvalho Chehab | c4c3a3d | 2011-07-14 22:23:18 -0300 | [diff] [blame] | 1199 | if (!dvb->fe[0]) { |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 1200 | result = -EINVAL; |
| 1201 | goto out_free; |
| 1202 | } |
| 1203 | /* FIXME: do we need a pll semaphore? */ |
| 1204 | dvb->fe[0]->sec_priv = dvb; |
| 1205 | sema_init(&dvb->pll_mutex, 1); |
| 1206 | dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl; |
| 1207 | dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl; |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 1208 | |
Mauro Carvalho Chehab | c4c3a3d | 2011-07-14 22:23:18 -0300 | [diff] [blame] | 1209 | /* Attach tda18271 to DVB-C frontend */ |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 1210 | if (dvb->fe[0]->ops.i2c_gate_ctrl) |
| 1211 | dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1); |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1212 | if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus], 0x60)) { |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 1213 | result = -EINVAL; |
| 1214 | goto out_free; |
| 1215 | } |
| 1216 | if (dvb->fe[0]->ops.i2c_gate_ctrl) |
| 1217 | dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0); |
Mauro Carvalho Chehab | c4c3a3d | 2011-07-14 22:23:18 -0300 | [diff] [blame] | 1218 | |
Mauro Carvalho Chehab | fec528b | 2011-07-03 21:05:06 -0300 | [diff] [blame] | 1219 | break; |
Mauro Carvalho Chehab | 4159d01 | 2013-02-28 10:35:56 -0300 | [diff] [blame] | 1220 | case EM2884_BOARD_C3TECH_DIGITAL_DUO: |
| 1221 | dvb->fe[0] = dvb_attach(mb86a20s_attach, |
| 1222 | &c3tech_duo_mb86a20s_config, |
| 1223 | &dev->i2c_adap[dev->def_i2c_bus]); |
| 1224 | if (dvb->fe[0] != NULL) |
| 1225 | dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
| 1226 | &dev->i2c_adap[dev->def_i2c_bus], |
| 1227 | &c3tech_duo_tda18271_config); |
| 1228 | break; |
Antti Palosaari | 3658871 | 2011-08-01 01:15:30 -0300 | [diff] [blame] | 1229 | case EM28174_BOARD_PCTV_460E: |
| 1230 | /* attach demod */ |
| 1231 | dvb->fe[0] = dvb_attach(tda10071_attach, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1232 | &em28xx_tda10071_config, &dev->i2c_adap[dev->def_i2c_bus]); |
Antti Palosaari | 3658871 | 2011-08-01 01:15:30 -0300 | [diff] [blame] | 1233 | |
| 1234 | /* attach SEC */ |
| 1235 | if (dvb->fe[0]) |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1236 | dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus], |
Antti Palosaari | 3658871 | 2011-08-01 01:15:30 -0300 | [diff] [blame] | 1237 | &em28xx_a8293_config); |
| 1238 | break; |
Jakob Haufe | 7c1dfdb | 2013-04-13 11:03:37 -0300 | [diff] [blame] | 1239 | case EM2874_BOARD_DELOCK_61959: |
Antti Palosaari | 3553085 | 2012-03-18 18:09:01 -0300 | [diff] [blame] | 1240 | case EM2874_BOARD_MAXMEDIA_UB425_TC: |
| 1241 | /* attach demodulator */ |
| 1242 | dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1243 | &dev->i2c_adap[dev->def_i2c_bus]); |
Antti Palosaari | 3553085 | 2012-03-18 18:09:01 -0300 | [diff] [blame] | 1244 | |
| 1245 | if (dvb->fe[0]) { |
| 1246 | /* disable I2C-gate */ |
| 1247 | dvb->fe[0]->ops.i2c_gate_ctrl = NULL; |
| 1248 | |
| 1249 | /* attach tuner */ |
Antti Palosaari | b6c7abb | 2013-10-04 15:17:51 -0300 | [diff] [blame] | 1250 | if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
| 1251 | &dev->i2c_adap[dev->def_i2c_bus], |
| 1252 | &em28xx_cxd2820r_tda18271_config)) { |
Antti Palosaari | 3553085 | 2012-03-18 18:09:01 -0300 | [diff] [blame] | 1253 | dvb_frontend_detach(dvb->fe[0]); |
| 1254 | result = -EINVAL; |
| 1255 | goto out_free; |
| 1256 | } |
| 1257 | } |
Antti Palosaari | 3553085 | 2012-03-18 18:09:01 -0300 | [diff] [blame] | 1258 | break; |
Ivan Kalvachev | fa5527c | 2012-03-19 20:09:55 -0300 | [diff] [blame] | 1259 | case EM2884_BOARD_PCTV_510E: |
| 1260 | case EM2884_BOARD_PCTV_520E: |
| 1261 | pctv_520e_init(dev); |
| 1262 | |
| 1263 | /* attach demodulator */ |
| 1264 | dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1265 | &dev->i2c_adap[dev->def_i2c_bus]); |
Ivan Kalvachev | fa5527c | 2012-03-19 20:09:55 -0300 | [diff] [blame] | 1266 | |
| 1267 | if (dvb->fe[0]) { |
| 1268 | /* attach tuner */ |
| 1269 | if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1270 | &dev->i2c_adap[dev->def_i2c_bus], |
Ivan Kalvachev | fa5527c | 2012-03-19 20:09:55 -0300 | [diff] [blame] | 1271 | &em28xx_cxd2820r_tda18271_config)) { |
| 1272 | dvb_frontend_detach(dvb->fe[0]); |
| 1273 | result = -EINVAL; |
| 1274 | goto out_free; |
| 1275 | } |
| 1276 | } |
| 1277 | break; |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 1278 | case EM2884_BOARD_CINERGY_HTC_STICK: |
| 1279 | terratec_htc_stick_init(dev); |
| 1280 | |
| 1281 | /* attach demodulator */ |
| 1282 | dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1283 | &dev->i2c_adap[dev->def_i2c_bus]); |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 1284 | if (!dvb->fe[0]) { |
| 1285 | result = -EINVAL; |
| 1286 | goto out_free; |
| 1287 | } |
| 1288 | |
| 1289 | /* Attach the demodulator. */ |
| 1290 | if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1291 | &dev->i2c_adap[dev->def_i2c_bus], |
Martin Blumenstingl | c8dce00 | 2012-06-12 18:19:28 -0300 | [diff] [blame] | 1292 | &em28xx_cxd2820r_tda18271_config)) { |
| 1293 | result = -EINVAL; |
| 1294 | goto out_free; |
| 1295 | } |
| 1296 | break; |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 1297 | case EM2884_BOARD_TERRATEC_HTC_USB_XS: |
| 1298 | terratec_htc_usb_xs_init(dev); |
| 1299 | |
| 1300 | /* attach demodulator */ |
| 1301 | dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1302 | &dev->i2c_adap[dev->def_i2c_bus]); |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 1303 | if (!dvb->fe[0]) { |
| 1304 | result = -EINVAL; |
| 1305 | goto out_free; |
| 1306 | } |
| 1307 | |
| 1308 | /* Attach the demodulator. */ |
| 1309 | if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
Mauro Carvalho Chehab | c7a45e5 | 2013-03-05 06:55:26 -0300 | [diff] [blame] | 1310 | &dev->i2c_adap[dev->def_i2c_bus], |
Martin Blumenstingl | 8904013 | 2012-10-04 14:22:54 -0300 | [diff] [blame] | 1311 | &em28xx_cxd2820r_tda18271_config)) { |
| 1312 | result = -EINVAL; |
| 1313 | goto out_free; |
| 1314 | } |
| 1315 | break; |
Jean-Francois Thibert | 6dbea9f | 2013-10-09 11:18:05 -0300 | [diff] [blame] | 1316 | case EM2874_BOARD_KWORLD_UB435Q_V2: |
| 1317 | dvb->fe[0] = dvb_attach(lgdt3305_attach, |
| 1318 | &em2874_lgdt3305_dev, |
| 1319 | &dev->i2c_adap[dev->def_i2c_bus]); |
| 1320 | if (!dvb->fe[0]) { |
| 1321 | result = -EINVAL; |
| 1322 | goto out_free; |
| 1323 | } |
| 1324 | |
| 1325 | /* Attach the demodulator. */ |
| 1326 | if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60, |
| 1327 | &dev->i2c_adap[dev->def_i2c_bus], |
| 1328 | &kworld_ub435q_v2_config)) { |
| 1329 | result = -EINVAL; |
| 1330 | goto out_free; |
| 1331 | } |
| 1332 | break; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1333 | default: |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 1334 | em28xx_errdev("/2: The frontend of your DVB/ATSC card" |
| 1335 | " isn't supported yet\n"); |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1336 | break; |
| 1337 | } |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1338 | if (NULL == dvb->fe[0]) { |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 1339 | em28xx_errdev("/2: frontend initialization failed\n"); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1340 | result = -EINVAL; |
| 1341 | goto out_free; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1342 | } |
Michael Krufky | d7cba04 | 2008-09-12 13:31:45 -0300 | [diff] [blame] | 1343 | /* define general-purpose callback pointer */ |
Antti Palosaari | f71095b | 2011-04-07 15:51:52 -0300 | [diff] [blame] | 1344 | dvb->fe[0]->callback = em28xx_tuner_callback; |
Eddi De Pieri | 82e7dbb | 2011-11-19 11:37:14 -0300 | [diff] [blame] | 1345 | if (dvb->fe[1]) |
Mauro Carvalho Chehab | de72405 | 2011-11-20 11:23:24 -0200 | [diff] [blame] | 1346 | dvb->fe[1]->callback = em28xx_tuner_callback; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1347 | |
| 1348 | /* register everything */ |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1349 | result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1350 | |
Douglas Schilling Landgraf | 6ea54d9 | 2008-04-17 21:41:10 -0300 | [diff] [blame] | 1351 | if (result < 0) |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1352 | goto out_free; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1353 | |
Antti Palosaari | e364543 | 2011-07-28 18:59:30 -0300 | [diff] [blame] | 1354 | /* MFE lock */ |
| 1355 | dvb->adapter.mfe_shared = mfe_shared; |
| 1356 | |
Filipe Rosset | 480be18 | 2009-11-04 15:32:37 -0300 | [diff] [blame] | 1357 | em28xx_info("Successfully loaded em28xx-dvb\n"); |
Mauro Carvalho Chehab | 5013318 | 2010-04-07 17:07:58 -0300 | [diff] [blame] | 1358 | ret: |
| 1359 | em28xx_set_mode(dev, EM28XX_SUSPEND); |
| 1360 | mutex_unlock(&dev->lock); |
| 1361 | return result; |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1362 | |
| 1363 | out_free: |
| 1364 | kfree(dvb); |
| 1365 | dev->dvb = NULL; |
Mauro Carvalho Chehab | 5013318 | 2010-04-07 17:07:58 -0300 | [diff] [blame] | 1366 | goto ret; |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1367 | } |
| 1368 | |
Chris Rankin | 0b8bd83 | 2011-08-20 16:01:26 -0300 | [diff] [blame] | 1369 | static inline void prevent_sleep(struct dvb_frontend_ops *ops) |
| 1370 | { |
| 1371 | ops->set_voltage = NULL; |
| 1372 | ops->sleep = NULL; |
| 1373 | ops->tuner_ops.sleep = NULL; |
| 1374 | } |
| 1375 | |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1376 | static int em28xx_dvb_fini(struct em28xx *dev) |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1377 | { |
Mauro Carvalho Chehab | 505b6d0 | 2008-11-25 09:39:50 -0300 | [diff] [blame] | 1378 | if (!dev->board.has_dvb) { |
Devin Heitmueller | df61918 | 2008-06-10 12:34:35 -0300 | [diff] [blame] | 1379 | /* This device does not support the extension */ |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1383 | if (dev->dvb) { |
Chris Rankin | 0b8bd83 | 2011-08-20 16:01:26 -0300 | [diff] [blame] | 1384 | struct em28xx_dvb *dvb = dev->dvb; |
| 1385 | |
Frank Schaefer | 2665c29 | 2012-12-27 19:02:43 -0300 | [diff] [blame] | 1386 | if (dev->disconnected) { |
Chris Rankin | 0b8bd83 | 2011-08-20 16:01:26 -0300 | [diff] [blame] | 1387 | /* We cannot tell the device to sleep |
| 1388 | * once it has been unplugged. */ |
| 1389 | if (dvb->fe[0]) |
| 1390 | prevent_sleep(&dvb->fe[0]->ops); |
| 1391 | if (dvb->fe[1]) |
| 1392 | prevent_sleep(&dvb->fe[1]->ops); |
| 1393 | } |
| 1394 | |
| 1395 | em28xx_unregister_dvb(dvb); |
| 1396 | kfree(dvb); |
Aidan Thornton | 3421b77 | 2008-04-17 21:40:36 -0300 | [diff] [blame] | 1397 | dev->dvb = NULL; |
| 1398 | } |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1399 | |
| 1400 | return 0; |
| 1401 | } |
| 1402 | |
| 1403 | static struct em28xx_ops dvb_ops = { |
| 1404 | .id = EM28XX_DVB, |
| 1405 | .name = "Em28xx dvb Extension", |
Jarod Wilson | f2d0c1c | 2011-07-14 19:06:08 -0300 | [diff] [blame] | 1406 | .init = em28xx_dvb_init, |
| 1407 | .fini = em28xx_dvb_fini, |
Mauro Carvalho Chehab | 3aefb79 | 2008-04-17 21:36:41 -0300 | [diff] [blame] | 1408 | }; |
| 1409 | |
| 1410 | static int __init em28xx_dvb_register(void) |
| 1411 | { |
| 1412 | return em28xx_register_extension(&dvb_ops); |
| 1413 | } |
| 1414 | |
| 1415 | static void __exit em28xx_dvb_unregister(void) |
| 1416 | { |
| 1417 | em28xx_unregister_extension(&dvb_ops); |
| 1418 | } |
| 1419 | |
| 1420 | module_init(em28xx_dvb_register); |
| 1421 | module_exit(em28xx_dvb_unregister); |