blob: 01bb8006f6597d1ca3e82327e055ffac5185c96d [file] [log] [blame]
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001/*
2 DVB device driver for em28xx
3
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03004 (c) 2008-2011 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03005
Devin Heitmuellerbdfbf952008-04-17 21:38:27 -03006 (c) 2008 Devin Heitmueller <devin.heitmueller@gmail.com>
7 - Fixes for the driver to properly work with HVR-950
Devin Heitmueller4fd305b2008-06-04 13:43:46 -03008 - Fixes for the driver to properly work with Pinnacle PCTV HD Pro Stick
Devin Heitmuellere14b3652008-07-26 11:04:33 -03009 - Fixes for the driver to properly work with AMD ATI TV Wonder HD 600
Devin Heitmuellerbdfbf952008-04-17 21:38:27 -030010
Aidan Thornton3421b772008-04-17 21:40:36 -030011 (c) 2008 Aidan Thornton <makosoft@googlemail.com>
12
Frank Schaefera950e4a2012-11-08 14:11:47 -030013 (c) 2012 Frank Schäfer <fschaefer.oss@googlemail.com>
14
Aidan Thornton3421b772008-04-17 21:40:36 -030015 Based on cx88-dvb, saa7134-dvb and videobuf-dvb originally written by:
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030016 (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 Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030026#include <linux/usb.h>
27
28#include "em28xx.h"
29#include <media/v4l2-common.h>
Devin Heitmuellerd3829fa2013-01-04 16:16:24 -030030#include <dvb_demux.h>
31#include <dvb_net.h>
32#include <dmxdev.h>
Franklin Mengd7de5d82009-06-06 17:05:02 -030033#include <media/tuner.h>
34#include "tuner-simple.h"
Antti Palosaari1e8f31f2012-07-19 21:10:36 -030035#include <linux/gpio.h>
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030036
37#include "lgdt330x.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030038#include "lgdt3305.h"
Aidan Thornton7e6388a2008-04-17 21:40:03 -030039#include "zl10353.h"
Robert Krakora6e7b9ea2009-01-18 21:59:34 -030040#include "s5h1409.h"
Devin Heitmueller4fb202a2009-07-12 17:51:12 -030041#include "mt352.h"
42#include "mt352_priv.h" /* FIXME */
Antti Palosaari285eb1a2009-09-15 14:42:13 -030043#include "tda1002x.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030044#include "tda18271.h"
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -030045#include "s921.h"
Devin Heitmueller75e2b862011-03-13 02:01:02 -030046#include "drxd.h"
Antti Palosaarid6a5f922011-04-07 16:34:44 -030047#include "cxd2820r.h"
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030048#include "tda18271c2dd.h"
49#include "drxk.h"
Antti Palosaari36588712011-08-01 01:15:30 -030050#include "tda10071.h"
51#include "a8293.h"
Aivar Päkk1985f6f2011-12-11 18:15:00 -030052#include "qt1010.h"
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030053
54MODULE_DESCRIPTION("driver for em28xx based DVB cards");
55MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
56MODULE_LICENSE("GPL");
57
58static unsigned int debug;
59module_param(debug, int, 0644);
60MODULE_PARM_DESC(debug, "enable debug messages [dvb]");
61
62DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
63
64#define dprintk(level, fmt, arg...) do { \
65if (debug >= level) \
Aidan Thornton3421b772008-04-17 21:40:36 -030066 printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg); \
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030067} while (0)
68
Aidan Thornton3421b772008-04-17 21:40:36 -030069struct em28xx_dvb {
Antti Palosaarif71095b2011-04-07 15:51:52 -030070 struct dvb_frontend *fe[2];
Aidan Thornton3421b772008-04-17 21:40:36 -030071
72 /* feed count management */
73 struct mutex lock;
74 int nfeeds;
75
76 /* general boilerplate stuff */
77 struct dvb_adapter adapter;
78 struct dvb_demux demux;
79 struct dmxdev dmxdev;
80 struct dmx_frontend fe_hw;
81 struct dmx_frontend fe_mem;
82 struct dvb_net net;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030083
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030084 /* Due to DRX-K - probably need changes */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030085 int (*gate_ctrl)(struct dvb_frontend *, int);
86 struct semaphore pll_mutex;
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030087 bool dont_attach_fe1;
Antti Palosaari13a53362012-07-19 22:28:56 -030088 int lna_gpio;
Aidan Thornton3421b772008-04-17 21:40:36 -030089};
90
91
92static inline void print_err_status(struct em28xx *dev,
93 int packet, int status)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030094{
Aidan Thornton3421b772008-04-17 21:40:36 -030095 char *errmsg = "Unknown";
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030096
Aidan Thornton3421b772008-04-17 21:40:36 -030097 switch (status) {
98 case -ENOENT:
99 errmsg = "unlinked synchronuously";
100 break;
101 case -ECONNRESET:
102 errmsg = "unlinked asynchronuously";
103 break;
104 case -ENOSR:
105 errmsg = "Buffer error (overrun)";
106 break;
107 case -EPIPE:
108 errmsg = "Stalled (device not responding)";
109 break;
110 case -EOVERFLOW:
111 errmsg = "Babble (bad cable?)";
112 break;
113 case -EPROTO:
114 errmsg = "Bit-stuff error (bad cable?)";
115 break;
116 case -EILSEQ:
117 errmsg = "CRC/Timeout (could be anything)";
118 break;
119 case -ETIME:
120 errmsg = "Device does not respond";
121 break;
122 }
123 if (packet < 0) {
124 dprintk(1, "URB status %d [%s].\n", status, errmsg);
125 } else {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300126 dprintk(1, "URB packet %d, status %d [%s].\n",
127 packet, status, errmsg);
Aidan Thornton3421b772008-04-17 21:40:36 -0300128 }
129}
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300130
Frank Schaefera950e4a2012-11-08 14:11:47 -0300131static inline int em28xx_dvb_urb_data_copy(struct em28xx *dev, struct urb *urb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300132{
Frank Schaefera950e4a2012-11-08 14:11:47 -0300133 int xfer_bulk, num_packets, i;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300134
Aidan Thornton3421b772008-04-17 21:40:36 -0300135 if (!dev)
136 return 0;
137
138 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
139 return 0;
140
Frank Schaefer1653cb0c2012-11-08 14:11:44 -0300141 if (urb->status < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -0300142 print_err_status(dev, -1, urb->status);
Aidan Thornton3421b772008-04-17 21:40:36 -0300143
Frank Schaefera950e4a2012-11-08 14:11:47 -0300144 xfer_bulk = usb_pipebulk(urb->pipe);
Aidan Thornton3421b772008-04-17 21:40:36 -0300145
Frank Schaefera950e4a2012-11-08 14:11:47 -0300146 if (xfer_bulk) /* bulk */
147 num_packets = 1;
148 else /* isoc */
149 num_packets = urb->number_of_packets;
150
151 for (i = 0; i < num_packets; i++) {
152 if (xfer_bulk) {
153 if (urb->status < 0) {
154 print_err_status(dev, i, urb->status);
155 if (urb->status != -EPROTO)
156 continue;
157 }
158 dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer,
159 urb->actual_length);
160 } else {
161 if (urb->iso_frame_desc[i].status < 0) {
162 print_err_status(dev, i,
163 urb->iso_frame_desc[i].status);
164 if (urb->iso_frame_desc[i].status != -EPROTO)
165 continue;
166 }
167 dvb_dmx_swfilter(&dev->dvb->demux,
168 urb->transfer_buffer +
169 urb->iso_frame_desc[i].offset,
170 urb->iso_frame_desc[i].actual_length);
Aidan Thornton3421b772008-04-17 21:40:36 -0300171 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300172 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300173
174 return 0;
175}
176
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300177static int em28xx_start_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300178{
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300179 int rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300180 struct em28xx *dev = dvb->adapter.priv;
Frank Schaeferc647a912012-11-08 14:11:52 -0300181 int dvb_max_packet_size, packet_multiplier, dvb_alt;
Aidan Thornton3421b772008-04-17 21:40:36 -0300182
Frank Schaeferc647a912012-11-08 14:11:52 -0300183 if (dev->dvb_xfer_bulk) {
184 if (!dev->dvb_ep_bulk)
185 return -ENODEV;
186 dvb_max_packet_size = 512; /* USB 2.0 spec */
187 packet_multiplier = EM28XX_DVB_BULK_PACKET_MULTIPLIER;
188 dvb_alt = 0;
189 } else { /* isoc */
190 if (!dev->dvb_ep_isoc)
191 return -ENODEV;
192 dvb_max_packet_size = dev->dvb_max_pkt_size_isoc;
193 if (dvb_max_packet_size < 0)
194 return dvb_max_packet_size;
195 packet_multiplier = EM28XX_DVB_NUM_ISOC_PACKETS;
196 dvb_alt = dev->dvb_alt_isoc;
197 }
198
199 usb_set_interface(dev->udev, 0, dvb_alt);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300200 rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
201 if (rc < 0)
202 return rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300203
Gianluca Gennari86d38d12012-02-13 13:59:22 -0300204 dprintk(1, "Using %d buffers each with %d x %d bytes\n",
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300205 EM28XX_DVB_NUM_BUFS,
Frank Schaeferc647a912012-11-08 14:11:52 -0300206 packet_multiplier,
207 dvb_max_packet_size);
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300208
Frank Schaeferc647a912012-11-08 14:11:52 -0300209 return em28xx_init_usb_xfer(dev, EM28XX_DIGITAL_MODE,
210 dev->dvb_xfer_bulk,
Frank Schaefer057ca0d2012-11-08 14:11:42 -0300211 EM28XX_DVB_NUM_BUFS,
Frank Schaeferc647a912012-11-08 14:11:52 -0300212 dvb_max_packet_size,
213 packet_multiplier,
Frank Schaefera950e4a2012-11-08 14:11:47 -0300214 em28xx_dvb_urb_data_copy);
Aidan Thornton3421b772008-04-17 21:40:36 -0300215}
216
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300217static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300218{
Aidan Thornton3421b772008-04-17 21:40:36 -0300219 struct em28xx *dev = dvb->adapter.priv;
220
Gianluca Gennari5f5f1472012-03-22 08:48:17 -0300221 em28xx_stop_urbs(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300222
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300223 em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300224
Aidan Thornton3421b772008-04-17 21:40:36 -0300225 return 0;
226}
227
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300228static int em28xx_start_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300229{
230 struct dvb_demux *demux = feed->demux;
231 struct em28xx_dvb *dvb = demux->priv;
232 int rc, ret;
233
234 if (!demux->dmx.frontend)
235 return -EINVAL;
236
237 mutex_lock(&dvb->lock);
238 dvb->nfeeds++;
239 rc = dvb->nfeeds;
240
241 if (dvb->nfeeds == 1) {
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300242 ret = em28xx_start_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300243 if (ret < 0)
244 rc = ret;
Aidan Thornton3421b772008-04-17 21:40:36 -0300245 }
246
247 mutex_unlock(&dvb->lock);
248 return rc;
249}
250
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300251static int em28xx_stop_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300252{
253 struct dvb_demux *demux = feed->demux;
254 struct em28xx_dvb *dvb = demux->priv;
255 int err = 0;
256
257 mutex_lock(&dvb->lock);
258 dvb->nfeeds--;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300259
260 if (0 == dvb->nfeeds)
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300261 err = em28xx_stop_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300262
Aidan Thornton3421b772008-04-17 21:40:36 -0300263 mutex_unlock(&dvb->lock);
264 return err;
265}
266
267
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300268
269/* ------------------------------------------------------------------ */
270static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
271{
272 struct em28xx *dev = fe->dvb->priv;
273
274 if (acquire)
275 return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
276 else
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300277 return em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300278}
279
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300280/* ------------------------------------------------------------------ */
281
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300282static struct lgdt330x_config em2880_lgdt3303_dev = {
283 .demod_address = 0x0e,
284 .demod_chip = LGDT3303,
285};
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300286
Jarod Wilson7e48b302010-03-07 17:55:43 -0300287static struct lgdt3305_config em2870_lgdt3304_dev = {
288 .i2c_addr = 0x0e,
289 .demod_chip = LGDT3304,
290 .spectral_inversion = 1,
291 .deny_i2c_rptr = 1,
292 .mpeg_mode = LGDT3305_MPEG_PARALLEL,
293 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
294 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
295 .vsb_if_khz = 3250,
296 .qam_if_khz = 4000,
297};
298
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300299static struct s921_config sharp_isdbt = {
300 .demod_address = 0x30 >> 1
301};
302
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300303static struct zl10353_config em28xx_zl10353_with_xc3028 = {
304 .demod_address = (0x1e >> 1),
305 .no_tuner = 1,
306 .parallel_ts = 1,
307 .if2 = 45600,
308};
309
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300310static struct s5h1409_config em28xx_s5h1409_with_xc3028 = {
311 .demod_address = 0x32 >> 1,
312 .output_mode = S5H1409_PARALLEL_OUTPUT,
313 .gpio = S5H1409_GPIO_OFF,
314 .inversion = S5H1409_INVERSION_OFF,
315 .status_mode = S5H1409_DEMODLOCKING,
316 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
317};
318
Jarod Wilson7e48b302010-03-07 17:55:43 -0300319static struct tda18271_std_map kworld_a340_std_map = {
320 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 0,
321 .if_lvl = 1, .rfagc_top = 0x37, },
322 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 1,
323 .if_lvl = 1, .rfagc_top = 0x37, },
324};
325
326static struct tda18271_config kworld_a340_config = {
327 .std_map = &kworld_a340_std_map,
328};
329
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300330static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300331 .demod_address = (0x1e >> 1),
332 .no_tuner = 1,
333 .disable_i2c_gate_ctrl = 1,
334 .parallel_ts = 1,
335 .if2 = 45600,
336};
337
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300338static struct drxd_config em28xx_drxd = {
Mauro Carvalho Chehabaac865f2011-12-26 09:41:14 -0300339 .demod_address = 0x70,
340 .demod_revision = 0xa2,
341 .pll_type = DRXD_PLL_NONE,
342 .clock = 12000,
343 .insert_rs_byte = 1,
344 .IF = 42800000,
Devin Heitmueller6b142b32011-03-13 02:02:01 -0300345 .disable_i2c_gate_ctrl = 1,
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300346};
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300347
Ezequiel García61bdbef2012-06-12 09:53:41 -0300348static struct drxk_config terratec_h5_drxk = {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300349 .adr = 0x29,
Mauro Carvalho Chehabe4f4f872011-07-09 17:35:26 -0300350 .single_master = 1,
Mauro Carvalho Chehabf1fe1b72011-07-09 21:59:33 -0300351 .no_i2c_bridge = 1,
Mauro Carvalho Chehab8b9456a2011-07-11 14:33:51 -0300352 .microcode_name = "dvb-usb-terratec-h5-drxk.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300353 .qam_demod_parameter_count = 2,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300354 .load_firmware_sync = true,
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300355};
356
Ezequiel García61bdbef2012-06-12 09:53:41 -0300357static struct drxk_config hauppauge_930c_drxk = {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300358 .adr = 0x29,
359 .single_master = 1,
360 .no_i2c_bridge = 1,
361 .microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw",
362 .chunk_size = 56,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300363 .qam_demod_parameter_count = 2,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300364 .load_firmware_sync = true,
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300365};
366
Martin Blumenstingl89040132012-10-04 14:22:54 -0300367static struct drxk_config terratec_htc_stick_drxk = {
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300368 .adr = 0x29,
369 .single_master = 1,
370 .no_i2c_bridge = 1,
371 .microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw",
372 .chunk_size = 54,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300373 .qam_demod_parameter_count = 2,
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300374 /* Required for the antenna_gpio to disable LNA. */
375 .antenna_dvbt = true,
376 /* The windows driver uses the same. This will disable LNA. */
377 .antenna_gpio = 0x6,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300378 .load_firmware_sync = true,
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300379};
380
Ezequiel García61bdbef2012-06-12 09:53:41 -0300381static struct drxk_config maxmedia_ub425_tc_drxk = {
Antti Palosaari35530852012-03-18 18:09:01 -0300382 .adr = 0x29,
383 .single_master = 1,
384 .no_i2c_bridge = 1,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300385 .load_firmware_sync = true,
Antti Palosaari35530852012-03-18 18:09:01 -0300386};
387
Ezequiel García61bdbef2012-06-12 09:53:41 -0300388static struct drxk_config pctv_520e_drxk = {
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300389 .adr = 0x29,
390 .single_master = 1,
391 .microcode_name = "dvb-demod-drxk-pctv.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300392 .qam_demod_parameter_count = 2,
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300393 .chunk_size = 58,
Antti Palosaarif6f379d2012-05-17 19:09:06 -0300394 .antenna_dvbt = true, /* disable LNA */
395 .antenna_gpio = (1 << 2), /* disable LNA */
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300396 .load_firmware_sync = true,
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300397};
398
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300399static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
400{
401 struct em28xx_dvb *dvb = fe->sec_priv;
402 int status;
403
404 if (!dvb)
405 return -EINVAL;
406
407 if (enable) {
408 down(&dvb->pll_mutex);
409 status = dvb->gate_ctrl(fe, 1);
410 } else {
411 status = dvb->gate_ctrl(fe, 0);
412 up(&dvb->pll_mutex);
413 }
414 return status;
415}
416
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300417static void hauppauge_hvr930c_init(struct em28xx *dev)
418{
419 int i;
420
421 struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200422 {EM2874_R80_GPIO, 0xff, 0xff, 0x65},
423 {EM2874_R80_GPIO, 0xfb, 0xff, 0x32},
424 {EM2874_R80_GPIO, 0xff, 0xff, 0xb8},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300425 { -1, -1, -1, -1},
426 };
427 struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200428 {EM2874_R80_GPIO, 0xef, 0xff, 0x01},
429 {EM2874_R80_GPIO, 0xaf, 0xff, 0x65},
430 {EM2874_R80_GPIO, 0xef, 0xff, 0x76},
431 {EM2874_R80_GPIO, 0xef, 0xff, 0x01},
432 {EM2874_R80_GPIO, 0xcf, 0xff, 0x0b},
433 {EM2874_R80_GPIO, 0xef, 0xff, 0x40},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300434
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200435 {EM2874_R80_GPIO, 0xcf, 0xff, 0x65},
436 {EM2874_R80_GPIO, 0xef, 0xff, 0x65},
437 {EM2874_R80_GPIO, 0xcf, 0xff, 0x0b},
438 {EM2874_R80_GPIO, 0xef, 0xff, 0x65},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300439
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300440 { -1, -1, -1, -1},
441 };
442
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300443 struct {
444 unsigned char r[4];
445 int len;
446 } regs[] = {
447 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
448 {{ 0x01, 0x02 }, 2},
449 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
450 {{ 0x01, 0x00 }, 2},
451 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
452 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
453 {{ 0x01, 0x00 }, 2},
454 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
455 {{ 0x04, 0x00 }, 2},
456 {{ 0x00, 0x04 }, 2},
457 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
458 {{ 0x04, 0x14 }, 2},
459 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
460 };
461
462 em28xx_gpio_set(dev, hauppauge_hvr930c_init);
463 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
464 msleep(10);
465 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
466 msleep(10);
467
468 dev->i2c_client.addr = 0x82 >> 1;
469
470 for (i = 0; i < ARRAY_SIZE(regs); i++)
471 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
472 em28xx_gpio_set(dev, hauppauge_hvr930c_end);
473
474 msleep(100);
475
476 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
477 msleep(30);
478
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300479 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
480 msleep(10);
481
482}
483
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300484static void terratec_h5_init(struct em28xx *dev)
485{
486 int i;
487 struct em28xx_reg_seq terratec_h5_init[] = {
488 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
489 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
490 {EM2874_R80_GPIO, 0xf2, 0xff, 50},
491 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
492 { -1, -1, -1, -1},
493 };
494 struct em28xx_reg_seq terratec_h5_end[] = {
495 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
496 {EM2874_R80_GPIO, 0xa6, 0xff, 50},
497 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
498 { -1, -1, -1, -1},
499 };
500 struct {
501 unsigned char r[4];
502 int len;
503 } regs[] = {
504 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
505 {{ 0x01, 0x02 }, 2},
506 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
507 {{ 0x01, 0x00 }, 2},
508 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
509 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
510 {{ 0x01, 0x00 }, 2},
511 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
512 {{ 0x04, 0x00 }, 2},
513 {{ 0x00, 0x04 }, 2},
514 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
515 {{ 0x04, 0x14 }, 2},
516 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
517 };
518
519 em28xx_gpio_set(dev, terratec_h5_init);
520 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
521 msleep(10);
522 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
523 msleep(10);
524
525 dev->i2c_client.addr = 0x82 >> 1;
526
527 for (i = 0; i < ARRAY_SIZE(regs); i++)
528 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
529 em28xx_gpio_set(dev, terratec_h5_end);
530};
531
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300532static void terratec_htc_stick_init(struct em28xx *dev)
533{
534 int i;
535
536 /*
537 * GPIO configuration:
538 * 0xff: unknown (does not affect DVB-T).
539 * 0xf6: DRX-K (demodulator).
540 * 0xe6: unknown (does not affect DVB-T).
541 * 0xb6: unknown (does not affect DVB-T).
542 */
543 struct em28xx_reg_seq terratec_htc_stick_init[] = {
544 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
545 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
546 {EM2874_R80_GPIO, 0xe6, 0xff, 50},
547 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
548 { -1, -1, -1, -1},
549 };
550 struct em28xx_reg_seq terratec_htc_stick_end[] = {
551 {EM2874_R80_GPIO, 0xb6, 0xff, 100},
552 {EM2874_R80_GPIO, 0xf6, 0xff, 50},
553 { -1, -1, -1, -1},
554 };
555
Martin Blumenstingl89040132012-10-04 14:22:54 -0300556 /*
557 * Init the analog decoder (not yet supported), but
558 * it's probably still a good idea.
559 */
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300560 struct {
561 unsigned char r[4];
562 int len;
563 } regs[] = {
564 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
565 {{ 0x01, 0x02 }, 2},
566 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
567 {{ 0x01, 0x00 }, 2},
568 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
569 };
570
571 em28xx_gpio_set(dev, terratec_htc_stick_init);
572
573 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
574 msleep(10);
575 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
576 msleep(10);
577
578 dev->i2c_client.addr = 0x82 >> 1;
579
580 for (i = 0; i < ARRAY_SIZE(regs); i++)
581 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
582
583 em28xx_gpio_set(dev, terratec_htc_stick_end);
584};
585
Martin Blumenstingl89040132012-10-04 14:22:54 -0300586static void terratec_htc_usb_xs_init(struct em28xx *dev)
587{
588 int i;
589
590 struct em28xx_reg_seq terratec_htc_usb_xs_init[] = {
591 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
592 {EM2874_R80_GPIO, 0xb2, 0xff, 100},
593 {EM2874_R80_GPIO, 0xb2, 0xff, 50},
594 {EM2874_R80_GPIO, 0xb6, 0xff, 100},
595 { -1, -1, -1, -1},
596 };
597 struct em28xx_reg_seq terratec_htc_usb_xs_end[] = {
598 {EM2874_R80_GPIO, 0xa6, 0xff, 100},
599 {EM2874_R80_GPIO, 0xa6, 0xff, 50},
600 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
601 { -1, -1, -1, -1},
602 };
603
604 /*
605 * Init the analog decoder (not yet supported), but
606 * it's probably still a good idea.
607 */
608 struct {
609 unsigned char r[4];
610 int len;
611 } regs[] = {
612 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
613 {{ 0x01, 0x02 }, 2},
614 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
615 {{ 0x01, 0x00 }, 2},
616 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
617 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
618 {{ 0x01, 0x00 }, 2},
619 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
620 {{ 0x04, 0x00 }, 2},
621 {{ 0x00, 0x04 }, 2},
622 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
623 {{ 0x04, 0x14 }, 2},
624 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
625 };
626
627 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
628
629 em28xx_gpio_set(dev, terratec_htc_usb_xs_init);
630
631 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
632 msleep(10);
633 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
634 msleep(10);
635
636 dev->i2c_client.addr = 0x82 >> 1;
637
638 for (i = 0; i < ARRAY_SIZE(regs); i++)
639 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
640
641 em28xx_gpio_set(dev, terratec_htc_usb_xs_end);
642};
643
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300644static void pctv_520e_init(struct em28xx *dev)
645{
646 /*
Antti Palosaari26c8a722012-05-17 18:22:02 -0300647 * Init AVF4910B analog decoder. Looks like I2C traffic to
648 * digital demodulator and tuner are routed via AVF4910B.
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300649 */
650 int i;
651 struct {
652 unsigned char r[4];
653 int len;
654 } regs[] = {
655 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
656 {{ 0x01, 0x02 }, 2},
657 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
658 {{ 0x01, 0x00 }, 2},
659 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
660 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
661 {{ 0x01, 0x00 }, 2},
662 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
663 };
664
665 dev->i2c_client.addr = 0x82 >> 1; /* 0x41 */
666
667 for (i = 0; i < ARRAY_SIZE(regs); i++)
668 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
669};
670
Antti Palosaari33eebec2012-10-03 04:28:56 -0300671static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe)
Antti Palosaari13a53362012-07-19 22:28:56 -0300672{
Antti Palosaari33eebec2012-10-03 04:28:56 -0300673 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Antti Palosaari13a53362012-07-19 22:28:56 -0300674 struct em28xx *dev = fe->dvb->priv;
675#ifdef CONFIG_GPIOLIB
676 struct em28xx_dvb *dvb = dev->dvb;
677 int ret;
678 unsigned long flags;
679
Antti Palosaari33eebec2012-10-03 04:28:56 -0300680 if (c->lna == 1)
681 flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */
Antti Palosaari13a53362012-07-19 22:28:56 -0300682 else
Antti Palosaari33eebec2012-10-03 04:28:56 -0300683 flags = GPIOF_OUT_INIT_LOW; /* disable LNA */
Antti Palosaari13a53362012-07-19 22:28:56 -0300684
685 ret = gpio_request_one(dvb->lna_gpio, flags, NULL);
686 if (ret)
687 em28xx_errdev("gpio request failed %d\n", ret);
688 else
689 gpio_free(dvb->lna_gpio);
690
691 return ret;
692#else
Antti Palosaari33eebec2012-10-03 04:28:56 -0300693 dev_warn(&dev->udev->dev, "%s: LNA control is disabled (lna=%u)\n",
694 KBUILD_MODNAME, c->lna);
Antti Palosaari13a53362012-07-19 22:28:56 -0300695 return 0;
696#endif
697}
698
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300699static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300700{
701 /* Values extracted from a USB trace of the Terratec Windows driver */
702 static u8 clock_config[] = { CLOCK_CTL, 0x38, 0x2c };
703 static u8 reset[] = { RESET, 0x80 };
704 static u8 adc_ctl_1_cfg[] = { ADC_CTL_1, 0x40 };
705 static u8 agc_cfg[] = { AGC_TARGET, 0x28, 0xa0 };
706 static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 };
707 static u8 rs_err_cfg[] = { RS_ERR_PER_1, 0x00, 0x4d };
708 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
709 static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 };
710 static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 };
Devin Heitmuellerff697862009-07-12 18:44:19 -0300711 static u8 tuner_go[] = { TUNER_GO, 0x01};
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300712
713 mt352_write(fe, clock_config, sizeof(clock_config));
714 udelay(200);
715 mt352_write(fe, reset, sizeof(reset));
716 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
717 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
718 mt352_write(fe, input_freq_cfg, sizeof(input_freq_cfg));
719 mt352_write(fe, rs_err_cfg, sizeof(rs_err_cfg));
720 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
721 mt352_write(fe, trl_nom_cfg, sizeof(trl_nom_cfg));
722 mt352_write(fe, tps_given_cfg, sizeof(tps_given_cfg));
723 mt352_write(fe, tuner_go, sizeof(tuner_go));
724 return 0;
725}
726
727static struct mt352_config terratec_xs_mt352_cfg = {
728 .demod_address = (0x1e >> 1),
729 .no_tuner = 1,
730 .if2 = 45600,
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300731 .demod_init = em28xx_mt352_terratec_xs_init,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300732};
733
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300734static struct tda10023_config em28xx_tda10023_config = {
735 .demod_address = 0x0c,
736 .invert = 1,
737};
738
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300739static struct cxd2820r_config em28xx_cxd2820r_config = {
740 .i2c_address = (0xd8 >> 1),
741 .ts_mode = CXD2820R_TS_SERIAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300742};
743
744static struct tda18271_config em28xx_cxd2820r_tda18271_config = {
745 .output_opt = TDA18271_OUTPUT_LT_OFF,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300746 .gate = TDA18271_GATE_DIGITAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300747};
748
Antti Palosaari36588712011-08-01 01:15:30 -0300749static const struct tda10071_config em28xx_tda10071_config = {
Michael Krufky41f55d52012-12-16 19:37:11 -0300750 .demod_i2c_addr = 0x55, /* (0xaa >> 1) */
751 .tuner_i2c_addr = 0x14,
Antti Palosaari36588712011-08-01 01:15:30 -0300752 .i2c_wr_max = 64,
753 .ts_mode = TDA10071_TS_SERIAL,
754 .spec_inv = 0,
755 .xtal = 40444000, /* 40.444 MHz */
756 .pll_multiplier = 20,
757};
758
759static const struct a8293_config em28xx_a8293_config = {
760 .i2c_addr = 0x08, /* (0x10 >> 1) */
761};
762
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300763static struct zl10353_config em28xx_zl10353_no_i2c_gate_dev = {
764 .demod_address = (0x1e >> 1),
765 .disable_i2c_gate_ctrl = 1,
766 .no_tuner = 1,
767 .parallel_ts = 1,
768};
769static struct qt1010_config em28xx_qt1010_config = {
770 .i2c_address = 0x62
771
772};
773
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300774/* ------------------------------------------------------------------ */
775
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300776static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300777{
778 struct dvb_frontend *fe;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300779 struct xc2028_config cfg;
780
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300781 memset(&cfg, 0, sizeof(cfg));
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300782 cfg.i2c_adap = &dev->i2c_adap;
783 cfg.i2c_addr = addr;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300784
Antti Palosaarif71095b2011-04-07 15:51:52 -0300785 if (!dev->dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -0300786 em28xx_errdev("/2: dvb frontend not attached. "
787 "Can't attach xc3028\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300788 return -EINVAL;
789 }
790
Antti Palosaarif71095b2011-04-07 15:51:52 -0300791 fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300792 if (!fe) {
Filipe Rosset480be182009-11-04 15:32:37 -0300793 em28xx_errdev("/2: xc3028 attach failed\n");
Antti Palosaarif71095b2011-04-07 15:51:52 -0300794 dvb_frontend_detach(dev->dvb->fe[0]);
795 dev->dvb->fe[0] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300796 return -EINVAL;
797 }
798
Filipe Rosset480be182009-11-04 15:32:37 -0300799 em28xx_info("%s/2: xc3028 attached\n", dev->name);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300800
801 return 0;
802}
803
Aidan Thornton3421b772008-04-17 21:40:36 -0300804/* ------------------------------------------------------------------ */
805
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300806static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
807 struct em28xx *dev, struct device *device)
Aidan Thornton3421b772008-04-17 21:40:36 -0300808{
809 int result;
810
811 mutex_init(&dvb->lock);
812
813 /* register adapter */
814 result = dvb_register_adapter(&dvb->adapter, dev->name, module, device,
815 adapter_nr);
816 if (result < 0) {
817 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
818 dev->name, result);
819 goto fail_adapter;
820 }
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300821
822 /* Ensure all frontends negotiate bus access */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300823 dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
824 if (dvb->fe[1])
825 dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300826
Aidan Thornton3421b772008-04-17 21:40:36 -0300827 dvb->adapter.priv = dev;
828
829 /* register frontend */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300830 result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300831 if (result < 0) {
832 printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
833 dev->name, result);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300834 goto fail_frontend0;
835 }
836
837 /* register 2nd frontend */
838 if (dvb->fe[1]) {
839 result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
840 if (result < 0) {
841 printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n",
842 dev->name, result);
843 goto fail_frontend1;
844 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300845 }
846
847 /* register demux stuff */
848 dvb->demux.dmx.capabilities =
849 DMX_TS_FILTERING | DMX_SECTION_FILTERING |
850 DMX_MEMORY_BASED_FILTERING;
851 dvb->demux.priv = dvb;
852 dvb->demux.filternum = 256;
853 dvb->demux.feednum = 256;
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300854 dvb->demux.start_feed = em28xx_start_feed;
855 dvb->demux.stop_feed = em28xx_stop_feed;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300856
Aidan Thornton3421b772008-04-17 21:40:36 -0300857 result = dvb_dmx_init(&dvb->demux);
858 if (result < 0) {
859 printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
860 dev->name, result);
861 goto fail_dmx;
862 }
863
864 dvb->dmxdev.filternum = 256;
865 dvb->dmxdev.demux = &dvb->demux.dmx;
866 dvb->dmxdev.capabilities = 0;
867 result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter);
868 if (result < 0) {
869 printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
870 dev->name, result);
871 goto fail_dmxdev;
872 }
873
874 dvb->fe_hw.source = DMX_FRONTEND_0;
875 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
876 if (result < 0) {
877 printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
878 dev->name, result);
879 goto fail_fe_hw;
880 }
881
882 dvb->fe_mem.source = DMX_MEMORY_FE;
883 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
884 if (result < 0) {
885 printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
886 dev->name, result);
887 goto fail_fe_mem;
888 }
889
890 result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
891 if (result < 0) {
892 printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
893 dev->name, result);
894 goto fail_fe_conn;
895 }
896
897 /* register network adapter */
898 dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx);
899 return 0;
900
901fail_fe_conn:
902 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
903fail_fe_mem:
904 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
905fail_fe_hw:
906 dvb_dmxdev_release(&dvb->dmxdev);
907fail_dmxdev:
908 dvb_dmx_release(&dvb->demux);
909fail_dmx:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300910 if (dvb->fe[1])
911 dvb_unregister_frontend(dvb->fe[1]);
912 dvb_unregister_frontend(dvb->fe[0]);
913fail_frontend1:
914 if (dvb->fe[1])
915 dvb_frontend_detach(dvb->fe[1]);
916fail_frontend0:
917 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300918 dvb_unregister_adapter(&dvb->adapter);
919fail_adapter:
920 return result;
921}
922
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300923static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300924{
925 dvb_net_release(&dvb->net);
926 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
927 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
928 dvb_dmxdev_release(&dvb->dmxdev);
929 dvb_dmx_release(&dvb->demux);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300930 if (dvb->fe[1])
931 dvb_unregister_frontend(dvb->fe[1]);
932 dvb_unregister_frontend(dvb->fe[0]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300933 if (dvb->fe[1] && !dvb->dont_attach_fe1)
Antti Palosaarif71095b2011-04-07 15:51:52 -0300934 dvb_frontend_detach(dvb->fe[1]);
935 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300936 dvb_unregister_adapter(&dvb->adapter);
937}
938
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300939static int em28xx_dvb_init(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300940{
Antti Palosaari13a53362012-07-19 22:28:56 -0300941 int result = 0, mfe_shared = 0;
Aidan Thornton3421b772008-04-17 21:40:36 -0300942 struct em28xx_dvb *dvb;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300943
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300944 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300945 /* This device does not support the extension */
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300946 printk(KERN_INFO "em28xx_dvb: This device does not support the extension\n");
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300947 return 0;
948 }
949
Aidan Thornton3421b772008-04-17 21:40:36 -0300950 dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300951
952 if (dvb == NULL) {
Filipe Rosset480be182009-11-04 15:32:37 -0300953 em28xx_info("em28xx_dvb: memory allocation failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -0300954 return -ENOMEM;
955 }
956 dev->dvb = dvb;
Antti Palosaarif71095b2011-04-07 15:51:52 -0300957 dvb->fe[0] = dvb->fe[1] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300958
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -0300959 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300960 em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300961 /* init frontend */
962 switch (dev->model) {
Mauro Carvalho Chehabebaefdb2011-06-01 10:16:25 -0300963 case EM2874_BOARD_LEADERSHIP_ISDBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300964 dvb->fe[0] = dvb_attach(s921_attach,
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300965 &sharp_isdbt, &dev->i2c_adap);
966
Antti Palosaarif71095b2011-04-07 15:51:52 -0300967 if (!dvb->fe[0]) {
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300968 result = -EINVAL;
969 goto out_free;
970 }
971
972 break;
Douglas Schilling Landgraff89bc322008-12-01 21:01:04 -0300973 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
Mauro Carvalho Chehab10ac6602008-07-27 14:58:58 -0300974 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
Devin Heitmueller4fd305b2008-06-04 13:43:46 -0300975 case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
Devin Heitmuellere14b3652008-07-26 11:04:33 -0300976 case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300977 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300978 &em2880_lgdt3303_dev,
979 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300980 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300981 result = -EINVAL;
982 goto out_free;
983 }
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300984 break;
Thierry MERLE46510b52008-10-11 16:56:13 -0300985 case EM2880_BOARD_KWORLD_DVB_310U:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300986 dvb->fe[0] = dvb_attach(zl10353_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300987 &em28xx_zl10353_with_xc3028,
988 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300989 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300990 result = -EINVAL;
991 goto out_free;
992 }
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300993 break;
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300994 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
Uroš Vamplec994d02009-09-30 22:53:37 -0300995 case EM2882_BOARD_TERRATEC_HYBRID_XS:
Devin Heitmueller01a5fd62009-08-07 09:25:06 -0300996 case EM2880_BOARD_EMPIRE_DUAL_TV:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300997 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300998 &em28xx_zl10353_xc3028_no_i2c_gate,
999 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001000 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001001 result = -EINVAL;
1002 goto out_free;
1003 }
1004 break;
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001005 case EM2880_BOARD_TERRATEC_HYBRID_XS:
Catimimi65638012010-02-18 18:06:32 -03001006 case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
Devin Heitmuellerd5b3ba92009-07-08 21:51:35 -03001007 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
Andrea.Amorosi76@gmail.com7ca7ef62010-02-09 17:53:38 -03001008 case EM2882_BOARD_DIKOM_DK300:
Antonio Larrosa811fab62010-03-04 22:19:48 -03001009 case EM2882_BOARD_KWORLD_VS_DVBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001010 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001011 &em28xx_zl10353_xc3028_no_i2c_gate,
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001012 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001013 if (dvb->fe[0] == NULL) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001014 /* This board could have either a zl10353 or a mt352.
1015 If the chip id isn't for zl10353, try mt352 */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001016 dvb->fe[0] = dvb_attach(mt352_attach,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -03001017 &terratec_xs_mt352_cfg,
1018 &dev->i2c_adap);
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001019 }
Devin Heitmueller4fb202a2009-07-12 17:51:12 -03001020
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001021 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001022 result = -EINVAL;
1023 goto out_free;
1024 }
1025 break;
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001026 case EM2870_BOARD_KWORLD_355U:
1027 dvb->fe[0] = dvb_attach(zl10353_attach,
1028 &em28xx_zl10353_no_i2c_gate_dev,
1029 &dev->i2c_adap);
1030 if (dvb->fe[0] != NULL)
1031 dvb_attach(qt1010_attach, dvb->fe[0],
1032 &dev->i2c_adap, &em28xx_qt1010_config);
1033 break;
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001034 case EM2883_BOARD_KWORLD_HYBRID_330U:
Devin Heitmueller19859222009-06-19 00:33:54 -03001035 case EM2882_BOARD_EVGA_INDTUBE:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001036 dvb->fe[0] = dvb_attach(s5h1409_attach,
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001037 &em28xx_s5h1409_with_xc3028,
1038 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001039 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001040 result = -EINVAL;
1041 goto out_free;
1042 }
1043 break;
Franklin Mengd7de5d82009-06-06 17:05:02 -03001044 case EM2882_BOARD_KWORLD_ATSC_315U:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001045 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Franklin Mengd7de5d82009-06-06 17:05:02 -03001046 &em2880_lgdt3303_dev,
1047 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001048 if (dvb->fe[0] != NULL) {
1049 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Franklin Mengd7de5d82009-06-06 17:05:02 -03001050 &dev->i2c_adap, 0x61, TUNER_THOMSON_DTT761X)) {
1051 result = -EINVAL;
1052 goto out_free;
1053 }
1054 }
1055 break;
Devin Heitmueller17d9d552008-06-08 10:22:03 -03001056 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
Devin Heitmuellerad9b4bb2011-03-13 02:09:59 -03001057 case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001058 dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
Devin Heitmueller75e2b862011-03-13 02:01:02 -03001059 &dev->i2c_adap, &dev->udev->dev);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001060 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmueller17d9d552008-06-08 10:22:03 -03001061 result = -EINVAL;
1062 goto out_free;
1063 }
1064 break;
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001065 case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
1066 /* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001067 dvb->fe[0] = dvb_attach(tda10023_attach,
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001068 &em28xx_tda10023_config,
1069 &dev->i2c_adap, 0x48);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001070 if (dvb->fe[0]) {
1071 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001072 &dev->i2c_adap, 0x60, TUNER_PHILIPS_CU1216L)) {
1073 result = -EINVAL;
1074 goto out_free;
1075 }
1076 }
1077 break;
Jarod Wilson7e48b302010-03-07 17:55:43 -03001078 case EM2870_BOARD_KWORLD_A340:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001079 dvb->fe[0] = dvb_attach(lgdt3305_attach,
Jarod Wilson7e48b302010-03-07 17:55:43 -03001080 &em2870_lgdt3304_dev,
1081 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001082 if (dvb->fe[0] != NULL)
1083 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Jarod Wilson7e48b302010-03-07 17:55:43 -03001084 &dev->i2c_adap, &kworld_a340_config);
1085 break;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001086 case EM28174_BOARD_PCTV_290E:
Antti Palosaaria36a66d2012-08-16 21:07:23 -03001087 /* set default GPIO0 for LNA, used if GPIOLIB is undefined */
1088 dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O |
1089 CXD2820R_GPIO_L;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001090 dvb->fe[0] = dvb_attach(cxd2820r_attach,
Manu Abraham7e7b8282011-12-10 00:44:24 -03001091 &em28xx_cxd2820r_config,
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001092 &dev->i2c_adap,
Antti Palosaari13a53362012-07-19 22:28:56 -03001093 &dvb->lna_gpio);
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001094 if (dvb->fe[0]) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001095 /* FE 0 attach tuner */
Manu Abraham7e7b8282011-12-10 00:44:24 -03001096 if (!dvb_attach(tda18271_attach,
1097 dvb->fe[0],
1098 0x60,
1099 &dev->i2c_adap,
1100 &em28xx_cxd2820r_tda18271_config)) {
1101
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001102 dvb_frontend_detach(dvb->fe[0]);
1103 result = -EINVAL;
1104 goto out_free;
1105 }
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001106
Antti Palosaari13a53362012-07-19 22:28:56 -03001107#ifdef CONFIG_GPIOLIB
Antti Palosaari0c42a552012-09-19 20:52:21 -03001108 /* enable LNA for DVB-T, DVB-T2 and DVB-C */
1109 result = gpio_request_one(dvb->lna_gpio,
1110 GPIOF_OUT_INIT_LOW, NULL);
1111 if (result)
1112 em28xx_errdev("gpio request failed %d\n",
1113 result);
1114 else
1115 gpio_free(dvb->lna_gpio);
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001116
Antti Palosaari0c42a552012-09-19 20:52:21 -03001117 result = 0; /* continue even set LNA fails */
Antti Palosaari13a53362012-07-19 22:28:56 -03001118#endif
Antti Palosaari0c42a552012-09-19 20:52:21 -03001119 dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
1120 }
1121
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001122 break;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001123 case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001124 {
1125 struct xc5000_config cfg;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001126 hauppauge_hvr930c_init(dev);
1127
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001128 dvb->fe[0] = dvb_attach(drxk_attach,
Mauro Carvalho Chehabfa4b2a12012-01-05 08:07:32 -02001129 &hauppauge_930c_drxk, &dev->i2c_adap);
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001130 if (!dvb->fe[0]) {
1131 result = -EINVAL;
1132 goto out_free;
1133 }
1134 /* FIXME: do we need a pll semaphore? */
1135 dvb->fe[0]->sec_priv = dvb;
1136 sema_init(&dvb->pll_mutex, 1);
1137 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1138 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001139
1140 /* Attach xc5000 */
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001141 memset(&cfg, 0, sizeof(cfg));
1142 cfg.i2c_address = 0x61;
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001143 cfg.if_khz = 4000;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001144
1145 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1146 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001147 if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap,
1148 &cfg)) {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001149 result = -EINVAL;
1150 goto out_free;
1151 }
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001152 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1153 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1154
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001155 break;
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001156 }
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001157 case EM2884_BOARD_TERRATEC_H5:
1158 terratec_h5_init(dev);
1159
Mauro Carvalho Chehabfa4b2a12012-01-05 08:07:32 -02001160 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001161 if (!dvb->fe[0]) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001162 result = -EINVAL;
1163 goto out_free;
1164 }
1165 /* FIXME: do we need a pll semaphore? */
1166 dvb->fe[0]->sec_priv = dvb;
1167 sema_init(&dvb->pll_mutex, 1);
1168 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1169 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001170
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001171 /* Attach tda18271 to DVB-C frontend */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001172 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1173 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1174 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap, 0x60)) {
1175 result = -EINVAL;
1176 goto out_free;
1177 }
1178 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1179 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001180
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001181 break;
Antti Palosaari36588712011-08-01 01:15:30 -03001182 case EM28174_BOARD_PCTV_460E:
1183 /* attach demod */
1184 dvb->fe[0] = dvb_attach(tda10071_attach,
1185 &em28xx_tda10071_config, &dev->i2c_adap);
1186
1187 /* attach SEC */
1188 if (dvb->fe[0])
1189 dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap,
1190 &em28xx_a8293_config);
1191 break;
Antti Palosaari35530852012-03-18 18:09:01 -03001192 case EM2874_BOARD_MAXMEDIA_UB425_TC:
1193 /* attach demodulator */
1194 dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
1195 &dev->i2c_adap);
1196
1197 if (dvb->fe[0]) {
1198 /* disable I2C-gate */
1199 dvb->fe[0]->ops.i2c_gate_ctrl = NULL;
1200
1201 /* attach tuner */
1202 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0],
1203 &dev->i2c_adap, 0x60)) {
1204 dvb_frontend_detach(dvb->fe[0]);
1205 result = -EINVAL;
1206 goto out_free;
1207 }
1208 }
1209
1210 /* TODO: we need drx-3913k firmware in order to support DVB-T */
1211 em28xx_info("MaxMedia UB425-TC: only DVB-C supported by that " \
1212 "driver version\n");
1213
1214 break;
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001215 case EM2884_BOARD_PCTV_510E:
1216 case EM2884_BOARD_PCTV_520E:
1217 pctv_520e_init(dev);
1218
1219 /* attach demodulator */
1220 dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
1221 &dev->i2c_adap);
1222
1223 if (dvb->fe[0]) {
1224 /* attach tuner */
1225 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1226 &dev->i2c_adap,
1227 &em28xx_cxd2820r_tda18271_config)) {
1228 dvb_frontend_detach(dvb->fe[0]);
1229 result = -EINVAL;
1230 goto out_free;
1231 }
1232 }
1233 break;
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001234 case EM2884_BOARD_CINERGY_HTC_STICK:
1235 terratec_htc_stick_init(dev);
1236
1237 /* attach demodulator */
1238 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1239 &dev->i2c_adap);
1240 if (!dvb->fe[0]) {
1241 result = -EINVAL;
1242 goto out_free;
1243 }
1244
1245 /* Attach the demodulator. */
1246 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1247 &dev->i2c_adap,
1248 &em28xx_cxd2820r_tda18271_config)) {
1249 result = -EINVAL;
1250 goto out_free;
1251 }
1252 break;
Martin Blumenstingl89040132012-10-04 14:22:54 -03001253 case EM2884_BOARD_TERRATEC_HTC_USB_XS:
1254 terratec_htc_usb_xs_init(dev);
1255
1256 /* attach demodulator */
1257 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1258 &dev->i2c_adap);
1259 if (!dvb->fe[0]) {
1260 result = -EINVAL;
1261 goto out_free;
1262 }
1263
1264 /* Attach the demodulator. */
1265 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1266 &dev->i2c_adap,
1267 &em28xx_cxd2820r_tda18271_config)) {
1268 result = -EINVAL;
1269 goto out_free;
1270 }
1271 break;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001272 default:
Filipe Rosset480be182009-11-04 15:32:37 -03001273 em28xx_errdev("/2: The frontend of your DVB/ATSC card"
1274 " isn't supported yet\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001275 break;
1276 }
Antti Palosaarif71095b2011-04-07 15:51:52 -03001277 if (NULL == dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -03001278 em28xx_errdev("/2: frontend initialization failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -03001279 result = -EINVAL;
1280 goto out_free;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001281 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001282 /* define general-purpose callback pointer */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001283 dvb->fe[0]->callback = em28xx_tuner_callback;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001284 if (dvb->fe[1])
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001285 dvb->fe[1]->callback = em28xx_tuner_callback;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001286
1287 /* register everything */
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001288 result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev);
Aidan Thornton3421b772008-04-17 21:40:36 -03001289
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001290 if (result < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -03001291 goto out_free;
Aidan Thornton3421b772008-04-17 21:40:36 -03001292
Antti Palosaarie3645432011-07-28 18:59:30 -03001293 /* MFE lock */
1294 dvb->adapter.mfe_shared = mfe_shared;
1295
Filipe Rosset480be182009-11-04 15:32:37 -03001296 em28xx_info("Successfully loaded em28xx-dvb\n");
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001297ret:
1298 em28xx_set_mode(dev, EM28XX_SUSPEND);
1299 mutex_unlock(&dev->lock);
1300 return result;
Aidan Thornton3421b772008-04-17 21:40:36 -03001301
1302out_free:
1303 kfree(dvb);
1304 dev->dvb = NULL;
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001305 goto ret;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001306}
1307
Chris Rankin0b8bd832011-08-20 16:01:26 -03001308static inline void prevent_sleep(struct dvb_frontend_ops *ops)
1309{
1310 ops->set_voltage = NULL;
1311 ops->sleep = NULL;
1312 ops->tuner_ops.sleep = NULL;
1313}
1314
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001315static int em28xx_dvb_fini(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001316{
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001317 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -03001318 /* This device does not support the extension */
1319 return 0;
1320 }
1321
Aidan Thornton3421b772008-04-17 21:40:36 -03001322 if (dev->dvb) {
Chris Rankin0b8bd832011-08-20 16:01:26 -03001323 struct em28xx_dvb *dvb = dev->dvb;
1324
1325 if (dev->state & DEV_DISCONNECTED) {
1326 /* We cannot tell the device to sleep
1327 * once it has been unplugged. */
1328 if (dvb->fe[0])
1329 prevent_sleep(&dvb->fe[0]->ops);
1330 if (dvb->fe[1])
1331 prevent_sleep(&dvb->fe[1]->ops);
1332 }
1333
1334 em28xx_unregister_dvb(dvb);
1335 kfree(dvb);
Aidan Thornton3421b772008-04-17 21:40:36 -03001336 dev->dvb = NULL;
1337 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001338
1339 return 0;
1340}
1341
1342static struct em28xx_ops dvb_ops = {
1343 .id = EM28XX_DVB,
1344 .name = "Em28xx dvb Extension",
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001345 .init = em28xx_dvb_init,
1346 .fini = em28xx_dvb_fini,
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001347};
1348
1349static int __init em28xx_dvb_register(void)
1350{
1351 return em28xx_register_extension(&dvb_ops);
1352}
1353
1354static void __exit em28xx_dvb_unregister(void)
1355{
1356 em28xx_unregister_extension(&dvb_ops);
1357}
1358
1359module_init(em28xx_dvb_register);
1360module_exit(em28xx_dvb_unregister);