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