blob: 42a6a26962249af1bf6c6c271b83c2f044dc179f [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 Chehab4159d012013-02-28 10:35:56 -030053#include "mb86a20s.h"
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030054
55MODULE_DESCRIPTION("driver for em28xx based DVB cards");
56MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
57MODULE_LICENSE("GPL");
58
59static unsigned int debug;
60module_param(debug, int, 0644);
61MODULE_PARM_DESC(debug, "enable debug messages [dvb]");
62
63DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
64
65#define dprintk(level, fmt, arg...) do { \
66if (debug >= level) \
Aidan Thornton3421b772008-04-17 21:40:36 -030067 printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg); \
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030068} while (0)
69
Aidan Thornton3421b772008-04-17 21:40:36 -030070struct em28xx_dvb {
Antti Palosaarif71095b2011-04-07 15:51:52 -030071 struct dvb_frontend *fe[2];
Aidan Thornton3421b772008-04-17 21:40:36 -030072
73 /* feed count management */
74 struct mutex lock;
75 int nfeeds;
76
77 /* general boilerplate stuff */
78 struct dvb_adapter adapter;
79 struct dvb_demux demux;
80 struct dmxdev dmxdev;
81 struct dmx_frontend fe_hw;
82 struct dmx_frontend fe_mem;
83 struct dvb_net net;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030084
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030085 /* Due to DRX-K - probably need changes */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030086 int (*gate_ctrl)(struct dvb_frontend *, int);
87 struct semaphore pll_mutex;
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030088 bool dont_attach_fe1;
Antti Palosaari13a53362012-07-19 22:28:56 -030089 int lna_gpio;
Aidan Thornton3421b772008-04-17 21:40:36 -030090};
91
92
93static inline void print_err_status(struct em28xx *dev,
94 int packet, int status)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030095{
Aidan Thornton3421b772008-04-17 21:40:36 -030096 char *errmsg = "Unknown";
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030097
Aidan Thornton3421b772008-04-17 21:40:36 -030098 switch (status) {
99 case -ENOENT:
100 errmsg = "unlinked synchronuously";
101 break;
102 case -ECONNRESET:
103 errmsg = "unlinked asynchronuously";
104 break;
105 case -ENOSR:
106 errmsg = "Buffer error (overrun)";
107 break;
108 case -EPIPE:
109 errmsg = "Stalled (device not responding)";
110 break;
111 case -EOVERFLOW:
112 errmsg = "Babble (bad cable?)";
113 break;
114 case -EPROTO:
115 errmsg = "Bit-stuff error (bad cable?)";
116 break;
117 case -EILSEQ:
118 errmsg = "CRC/Timeout (could be anything)";
119 break;
120 case -ETIME:
121 errmsg = "Device does not respond";
122 break;
123 }
124 if (packet < 0) {
125 dprintk(1, "URB status %d [%s].\n", status, errmsg);
126 } else {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300127 dprintk(1, "URB packet %d, status %d [%s].\n",
128 packet, status, errmsg);
Aidan Thornton3421b772008-04-17 21:40:36 -0300129 }
130}
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300131
Frank Schaefera950e4a2012-11-08 14:11:47 -0300132static inline int em28xx_dvb_urb_data_copy(struct em28xx *dev, struct urb *urb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300133{
Frank Schaefera950e4a2012-11-08 14:11:47 -0300134 int xfer_bulk, num_packets, i;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300135
Aidan Thornton3421b772008-04-17 21:40:36 -0300136 if (!dev)
137 return 0;
138
Frank Schaefer2665c292012-12-27 19:02:43 -0300139 if (dev->disconnected)
Aidan Thornton3421b772008-04-17 21:40:36 -0300140 return 0;
141
Frank Schaefer1653cb0c2012-11-08 14:11:44 -0300142 if (urb->status < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -0300143 print_err_status(dev, -1, urb->status);
Aidan Thornton3421b772008-04-17 21:40:36 -0300144
Frank Schaefera950e4a2012-11-08 14:11:47 -0300145 xfer_bulk = usb_pipebulk(urb->pipe);
Aidan Thornton3421b772008-04-17 21:40:36 -0300146
Frank Schaefera950e4a2012-11-08 14:11:47 -0300147 if (xfer_bulk) /* bulk */
148 num_packets = 1;
149 else /* isoc */
150 num_packets = urb->number_of_packets;
151
152 for (i = 0; i < num_packets; i++) {
153 if (xfer_bulk) {
154 if (urb->status < 0) {
155 print_err_status(dev, i, urb->status);
156 if (urb->status != -EPROTO)
157 continue;
158 }
159 dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer,
160 urb->actual_length);
161 } else {
162 if (urb->iso_frame_desc[i].status < 0) {
163 print_err_status(dev, i,
164 urb->iso_frame_desc[i].status);
165 if (urb->iso_frame_desc[i].status != -EPROTO)
166 continue;
167 }
168 dvb_dmx_swfilter(&dev->dvb->demux,
169 urb->transfer_buffer +
170 urb->iso_frame_desc[i].offset,
171 urb->iso_frame_desc[i].actual_length);
Aidan Thornton3421b772008-04-17 21:40:36 -0300172 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300173 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300174
175 return 0;
176}
177
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300178static int em28xx_start_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300179{
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300180 int rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300181 struct em28xx *dev = dvb->adapter.priv;
Frank Schaeferc647a912012-11-08 14:11:52 -0300182 int dvb_max_packet_size, packet_multiplier, dvb_alt;
Aidan Thornton3421b772008-04-17 21:40:36 -0300183
Frank Schaeferc647a912012-11-08 14:11:52 -0300184 if (dev->dvb_xfer_bulk) {
185 if (!dev->dvb_ep_bulk)
186 return -ENODEV;
187 dvb_max_packet_size = 512; /* USB 2.0 spec */
188 packet_multiplier = EM28XX_DVB_BULK_PACKET_MULTIPLIER;
189 dvb_alt = 0;
190 } else { /* isoc */
191 if (!dev->dvb_ep_isoc)
192 return -ENODEV;
193 dvb_max_packet_size = dev->dvb_max_pkt_size_isoc;
194 if (dvb_max_packet_size < 0)
195 return dvb_max_packet_size;
196 packet_multiplier = EM28XX_DVB_NUM_ISOC_PACKETS;
197 dvb_alt = dev->dvb_alt_isoc;
198 }
199
200 usb_set_interface(dev->udev, 0, dvb_alt);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300201 rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
202 if (rc < 0)
203 return rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300204
Gianluca Gennari86d38d12012-02-13 13:59:22 -0300205 dprintk(1, "Using %d buffers each with %d x %d bytes\n",
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300206 EM28XX_DVB_NUM_BUFS,
Frank Schaeferc647a912012-11-08 14:11:52 -0300207 packet_multiplier,
208 dvb_max_packet_size);
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300209
Frank Schaeferc647a912012-11-08 14:11:52 -0300210 return em28xx_init_usb_xfer(dev, EM28XX_DIGITAL_MODE,
211 dev->dvb_xfer_bulk,
Frank Schaefer057ca0d2012-11-08 14:11:42 -0300212 EM28XX_DVB_NUM_BUFS,
Frank Schaeferc647a912012-11-08 14:11:52 -0300213 dvb_max_packet_size,
214 packet_multiplier,
Frank Schaefera950e4a2012-11-08 14:11:47 -0300215 em28xx_dvb_urb_data_copy);
Aidan Thornton3421b772008-04-17 21:40:36 -0300216}
217
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300218static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300219{
Aidan Thornton3421b772008-04-17 21:40:36 -0300220 struct em28xx *dev = dvb->adapter.priv;
221
Gianluca Gennari5f5f1472012-03-22 08:48:17 -0300222 em28xx_stop_urbs(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300223
Aidan Thornton3421b772008-04-17 21:40:36 -0300224 return 0;
225}
226
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300227static int em28xx_start_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300228{
229 struct dvb_demux *demux = feed->demux;
230 struct em28xx_dvb *dvb = demux->priv;
231 int rc, ret;
232
233 if (!demux->dmx.frontend)
234 return -EINVAL;
235
236 mutex_lock(&dvb->lock);
237 dvb->nfeeds++;
238 rc = dvb->nfeeds;
239
240 if (dvb->nfeeds == 1) {
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300241 ret = em28xx_start_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300242 if (ret < 0)
243 rc = ret;
Aidan Thornton3421b772008-04-17 21:40:36 -0300244 }
245
246 mutex_unlock(&dvb->lock);
247 return rc;
248}
249
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300250static int em28xx_stop_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300251{
252 struct dvb_demux *demux = feed->demux;
253 struct em28xx_dvb *dvb = demux->priv;
254 int err = 0;
255
256 mutex_lock(&dvb->lock);
257 dvb->nfeeds--;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300258
259 if (0 == dvb->nfeeds)
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300260 err = em28xx_stop_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300261
Aidan Thornton3421b772008-04-17 21:40:36 -0300262 mutex_unlock(&dvb->lock);
263 return err;
264}
265
266
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300267
268/* ------------------------------------------------------------------ */
269static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
270{
271 struct em28xx *dev = fe->dvb->priv;
272
273 if (acquire)
274 return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
275 else
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300276 return em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300277}
278
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300279/* ------------------------------------------------------------------ */
280
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300281static struct lgdt330x_config em2880_lgdt3303_dev = {
282 .demod_address = 0x0e,
283 .demod_chip = LGDT3303,
284};
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300285
Jarod Wilson7e48b302010-03-07 17:55:43 -0300286static struct lgdt3305_config em2870_lgdt3304_dev = {
287 .i2c_addr = 0x0e,
288 .demod_chip = LGDT3304,
289 .spectral_inversion = 1,
290 .deny_i2c_rptr = 1,
291 .mpeg_mode = LGDT3305_MPEG_PARALLEL,
292 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
293 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
294 .vsb_if_khz = 3250,
295 .qam_if_khz = 4000,
296};
297
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300298static struct s921_config sharp_isdbt = {
299 .demod_address = 0x30 >> 1
300};
301
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300302static struct zl10353_config em28xx_zl10353_with_xc3028 = {
303 .demod_address = (0x1e >> 1),
304 .no_tuner = 1,
305 .parallel_ts = 1,
306 .if2 = 45600,
307};
308
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300309static struct s5h1409_config em28xx_s5h1409_with_xc3028 = {
310 .demod_address = 0x32 >> 1,
311 .output_mode = S5H1409_PARALLEL_OUTPUT,
312 .gpio = S5H1409_GPIO_OFF,
313 .inversion = S5H1409_INVERSION_OFF,
314 .status_mode = S5H1409_DEMODLOCKING,
315 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
316};
317
Jarod Wilson7e48b302010-03-07 17:55:43 -0300318static struct tda18271_std_map kworld_a340_std_map = {
319 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 0,
320 .if_lvl = 1, .rfagc_top = 0x37, },
321 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 1,
322 .if_lvl = 1, .rfagc_top = 0x37, },
323};
324
325static struct tda18271_config kworld_a340_config = {
326 .std_map = &kworld_a340_std_map,
327};
328
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300329static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300330 .demod_address = (0x1e >> 1),
331 .no_tuner = 1,
332 .disable_i2c_gate_ctrl = 1,
333 .parallel_ts = 1,
334 .if2 = 45600,
335};
336
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300337static struct drxd_config em28xx_drxd = {
Mauro Carvalho Chehabaac865f2011-12-26 09:41:14 -0300338 .demod_address = 0x70,
339 .demod_revision = 0xa2,
340 .pll_type = DRXD_PLL_NONE,
341 .clock = 12000,
342 .insert_rs_byte = 1,
343 .IF = 42800000,
Devin Heitmueller6b142b32011-03-13 02:02:01 -0300344 .disable_i2c_gate_ctrl = 1,
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300345};
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300346
Ezequiel García61bdbef2012-06-12 09:53:41 -0300347static struct drxk_config terratec_h5_drxk = {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300348 .adr = 0x29,
Mauro Carvalho Chehabe4f4f872011-07-09 17:35:26 -0300349 .single_master = 1,
Mauro Carvalho Chehabf1fe1b72011-07-09 21:59:33 -0300350 .no_i2c_bridge = 1,
Mauro Carvalho Chehab8b9456a2011-07-11 14:33:51 -0300351 .microcode_name = "dvb-usb-terratec-h5-drxk.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300352 .qam_demod_parameter_count = 2,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300353 .load_firmware_sync = true,
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300354};
355
Ezequiel García61bdbef2012-06-12 09:53:41 -0300356static struct drxk_config hauppauge_930c_drxk = {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300357 .adr = 0x29,
358 .single_master = 1,
359 .no_i2c_bridge = 1,
360 .microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw",
361 .chunk_size = 56,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300362 .qam_demod_parameter_count = 2,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300363 .load_firmware_sync = true,
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300364};
365
Martin Blumenstingl89040132012-10-04 14:22:54 -0300366static struct drxk_config terratec_htc_stick_drxk = {
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300367 .adr = 0x29,
368 .single_master = 1,
369 .no_i2c_bridge = 1,
370 .microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw",
371 .chunk_size = 54,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300372 .qam_demod_parameter_count = 2,
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300373 /* Required for the antenna_gpio to disable LNA. */
374 .antenna_dvbt = true,
375 /* The windows driver uses the same. This will disable LNA. */
376 .antenna_gpio = 0x6,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300377 .load_firmware_sync = true,
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300378};
379
Ezequiel García61bdbef2012-06-12 09:53:41 -0300380static struct drxk_config maxmedia_ub425_tc_drxk = {
Antti Palosaari35530852012-03-18 18:09:01 -0300381 .adr = 0x29,
382 .single_master = 1,
383 .no_i2c_bridge = 1,
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300384 .load_firmware_sync = true,
Antti Palosaari35530852012-03-18 18:09:01 -0300385};
386
Ezequiel García61bdbef2012-06-12 09:53:41 -0300387static struct drxk_config pctv_520e_drxk = {
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300388 .adr = 0x29,
389 .single_master = 1,
390 .microcode_name = "dvb-demod-drxk-pctv.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300391 .qam_demod_parameter_count = 2,
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300392 .chunk_size = 58,
Antti Palosaarif6f379d2012-05-17 19:09:06 -0300393 .antenna_dvbt = true, /* disable LNA */
394 .antenna_gpio = (1 << 2), /* disable LNA */
Mauro Carvalho Chehab2425bb32012-10-02 16:02:57 -0300395 .load_firmware_sync = true,
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300396};
397
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300398static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
399{
400 struct em28xx_dvb *dvb = fe->sec_priv;
401 int status;
402
403 if (!dvb)
404 return -EINVAL;
405
406 if (enable) {
407 down(&dvb->pll_mutex);
408 status = dvb->gate_ctrl(fe, 1);
409 } else {
410 status = dvb->gate_ctrl(fe, 0);
411 up(&dvb->pll_mutex);
412 }
413 return status;
414}
415
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300416static void hauppauge_hvr930c_init(struct em28xx *dev)
417{
418 int i;
419
420 struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200421 {EM2874_R80_GPIO, 0xff, 0xff, 0x65},
422 {EM2874_R80_GPIO, 0xfb, 0xff, 0x32},
423 {EM2874_R80_GPIO, 0xff, 0xff, 0xb8},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300424 { -1, -1, -1, -1},
425 };
426 struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200427 {EM2874_R80_GPIO, 0xef, 0xff, 0x01},
428 {EM2874_R80_GPIO, 0xaf, 0xff, 0x65},
429 {EM2874_R80_GPIO, 0xef, 0xff, 0x76},
430 {EM2874_R80_GPIO, 0xef, 0xff, 0x01},
431 {EM2874_R80_GPIO, 0xcf, 0xff, 0x0b},
432 {EM2874_R80_GPIO, 0xef, 0xff, 0x40},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300433
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200434 {EM2874_R80_GPIO, 0xcf, 0xff, 0x65},
435 {EM2874_R80_GPIO, 0xef, 0xff, 0x65},
436 {EM2874_R80_GPIO, 0xcf, 0xff, 0x0b},
437 {EM2874_R80_GPIO, 0xef, 0xff, 0x65},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300438
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300439 { -1, -1, -1, -1},
440 };
441
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300442 struct {
443 unsigned char r[4];
444 int len;
445 } regs[] = {
446 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
447 {{ 0x01, 0x02 }, 2},
448 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
449 {{ 0x01, 0x00 }, 2},
450 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
451 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
452 {{ 0x01, 0x00 }, 2},
453 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
454 {{ 0x04, 0x00 }, 2},
455 {{ 0x00, 0x04 }, 2},
456 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
457 {{ 0x04, 0x14 }, 2},
458 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
459 };
460
461 em28xx_gpio_set(dev, hauppauge_hvr930c_init);
462 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
463 msleep(10);
464 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
465 msleep(10);
466
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300467 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300468
469 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300470 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300471 em28xx_gpio_set(dev, hauppauge_hvr930c_end);
472
473 msleep(100);
474
475 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
476 msleep(30);
477
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300478 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
479 msleep(10);
480
481}
482
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300483static void terratec_h5_init(struct em28xx *dev)
484{
485 int i;
486 struct em28xx_reg_seq terratec_h5_init[] = {
487 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
488 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
489 {EM2874_R80_GPIO, 0xf2, 0xff, 50},
490 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
491 { -1, -1, -1, -1},
492 };
493 struct em28xx_reg_seq terratec_h5_end[] = {
494 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
495 {EM2874_R80_GPIO, 0xa6, 0xff, 50},
496 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
497 { -1, -1, -1, -1},
498 };
499 struct {
500 unsigned char r[4];
501 int len;
502 } regs[] = {
503 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
504 {{ 0x01, 0x02 }, 2},
505 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
506 {{ 0x01, 0x00 }, 2},
507 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
508 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
509 {{ 0x01, 0x00 }, 2},
510 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
511 {{ 0x04, 0x00 }, 2},
512 {{ 0x00, 0x04 }, 2},
513 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
514 {{ 0x04, 0x14 }, 2},
515 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
516 };
517
518 em28xx_gpio_set(dev, terratec_h5_init);
519 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
520 msleep(10);
521 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
522 msleep(10);
523
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300524 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300525
526 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300527 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300528 em28xx_gpio_set(dev, terratec_h5_end);
529};
530
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300531static void terratec_htc_stick_init(struct em28xx *dev)
532{
533 int i;
534
535 /*
536 * GPIO configuration:
537 * 0xff: unknown (does not affect DVB-T).
538 * 0xf6: DRX-K (demodulator).
539 * 0xe6: unknown (does not affect DVB-T).
540 * 0xb6: unknown (does not affect DVB-T).
541 */
542 struct em28xx_reg_seq terratec_htc_stick_init[] = {
543 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
544 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
545 {EM2874_R80_GPIO, 0xe6, 0xff, 50},
546 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
547 { -1, -1, -1, -1},
548 };
549 struct em28xx_reg_seq terratec_htc_stick_end[] = {
550 {EM2874_R80_GPIO, 0xb6, 0xff, 100},
551 {EM2874_R80_GPIO, 0xf6, 0xff, 50},
552 { -1, -1, -1, -1},
553 };
554
Martin Blumenstingl89040132012-10-04 14:22:54 -0300555 /*
556 * Init the analog decoder (not yet supported), but
557 * it's probably still a good idea.
558 */
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300559 struct {
560 unsigned char r[4];
561 int len;
562 } regs[] = {
563 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
564 {{ 0x01, 0x02 }, 2},
565 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
566 {{ 0x01, 0x00 }, 2},
567 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
568 };
569
570 em28xx_gpio_set(dev, terratec_htc_stick_init);
571
572 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
573 msleep(10);
574 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
575 msleep(10);
576
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300577 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300578
579 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300580 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300581
582 em28xx_gpio_set(dev, terratec_htc_stick_end);
583};
584
Martin Blumenstingl89040132012-10-04 14:22:54 -0300585static void terratec_htc_usb_xs_init(struct em28xx *dev)
586{
587 int i;
588
589 struct em28xx_reg_seq terratec_htc_usb_xs_init[] = {
590 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
591 {EM2874_R80_GPIO, 0xb2, 0xff, 100},
592 {EM2874_R80_GPIO, 0xb2, 0xff, 50},
593 {EM2874_R80_GPIO, 0xb6, 0xff, 100},
594 { -1, -1, -1, -1},
595 };
596 struct em28xx_reg_seq terratec_htc_usb_xs_end[] = {
597 {EM2874_R80_GPIO, 0xa6, 0xff, 100},
598 {EM2874_R80_GPIO, 0xa6, 0xff, 50},
599 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
600 { -1, -1, -1, -1},
601 };
602
603 /*
604 * Init the analog decoder (not yet supported), but
605 * it's probably still a good idea.
606 */
607 struct {
608 unsigned char r[4];
609 int len;
610 } regs[] = {
611 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
612 {{ 0x01, 0x02 }, 2},
613 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
614 {{ 0x01, 0x00 }, 2},
615 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
616 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
617 {{ 0x01, 0x00 }, 2},
618 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
619 {{ 0x04, 0x00 }, 2},
620 {{ 0x00, 0x04 }, 2},
621 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
622 {{ 0x04, 0x14 }, 2},
623 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
624 };
625
626 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
627
628 em28xx_gpio_set(dev, terratec_htc_usb_xs_init);
629
630 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
631 msleep(10);
632 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
633 msleep(10);
634
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300635 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Martin Blumenstingl89040132012-10-04 14:22:54 -0300636
637 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300638 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Martin Blumenstingl89040132012-10-04 14:22:54 -0300639
640 em28xx_gpio_set(dev, terratec_htc_usb_xs_end);
641};
642
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300643static void pctv_520e_init(struct em28xx *dev)
644{
645 /*
Antti Palosaari26c8a722012-05-17 18:22:02 -0300646 * Init AVF4910B analog decoder. Looks like I2C traffic to
647 * digital demodulator and tuner are routed via AVF4910B.
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300648 */
649 int i;
650 struct {
651 unsigned char r[4];
652 int len;
653 } regs[] = {
654 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
655 {{ 0x01, 0x02 }, 2},
656 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
657 {{ 0x01, 0x00 }, 2},
658 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
659 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
660 {{ 0x01, 0x00 }, 2},
661 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
662 };
663
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300664 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; /* 0x41 */
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300665
666 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300667 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300668};
669
Antti Palosaari33eebec2012-10-03 04:28:56 -0300670static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe)
Antti Palosaari13a53362012-07-19 22:28:56 -0300671{
Antti Palosaari33eebec2012-10-03 04:28:56 -0300672 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Antti Palosaari13a53362012-07-19 22:28:56 -0300673 struct em28xx *dev = fe->dvb->priv;
674#ifdef CONFIG_GPIOLIB
675 struct em28xx_dvb *dvb = dev->dvb;
676 int ret;
677 unsigned long flags;
678
Antti Palosaari33eebec2012-10-03 04:28:56 -0300679 if (c->lna == 1)
680 flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */
Antti Palosaari13a53362012-07-19 22:28:56 -0300681 else
Antti Palosaari33eebec2012-10-03 04:28:56 -0300682 flags = GPIOF_OUT_INIT_LOW; /* disable LNA */
Antti Palosaari13a53362012-07-19 22:28:56 -0300683
684 ret = gpio_request_one(dvb->lna_gpio, flags, NULL);
685 if (ret)
686 em28xx_errdev("gpio request failed %d\n", ret);
687 else
688 gpio_free(dvb->lna_gpio);
689
690 return ret;
691#else
Antti Palosaari33eebec2012-10-03 04:28:56 -0300692 dev_warn(&dev->udev->dev, "%s: LNA control is disabled (lna=%u)\n",
693 KBUILD_MODNAME, c->lna);
Antti Palosaari13a53362012-07-19 22:28:56 -0300694 return 0;
695#endif
696}
697
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300698static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300699{
700 /* Values extracted from a USB trace of the Terratec Windows driver */
701 static u8 clock_config[] = { CLOCK_CTL, 0x38, 0x2c };
702 static u8 reset[] = { RESET, 0x80 };
703 static u8 adc_ctl_1_cfg[] = { ADC_CTL_1, 0x40 };
704 static u8 agc_cfg[] = { AGC_TARGET, 0x28, 0xa0 };
705 static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 };
706 static u8 rs_err_cfg[] = { RS_ERR_PER_1, 0x00, 0x4d };
707 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
708 static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 };
709 static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 };
Devin Heitmuellerff697862009-07-12 18:44:19 -0300710 static u8 tuner_go[] = { TUNER_GO, 0x01};
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300711
712 mt352_write(fe, clock_config, sizeof(clock_config));
713 udelay(200);
714 mt352_write(fe, reset, sizeof(reset));
715 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
716 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
717 mt352_write(fe, input_freq_cfg, sizeof(input_freq_cfg));
718 mt352_write(fe, rs_err_cfg, sizeof(rs_err_cfg));
719 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
720 mt352_write(fe, trl_nom_cfg, sizeof(trl_nom_cfg));
721 mt352_write(fe, tps_given_cfg, sizeof(tps_given_cfg));
722 mt352_write(fe, tuner_go, sizeof(tuner_go));
723 return 0;
724}
725
726static struct mt352_config terratec_xs_mt352_cfg = {
727 .demod_address = (0x1e >> 1),
728 .no_tuner = 1,
729 .if2 = 45600,
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300730 .demod_init = em28xx_mt352_terratec_xs_init,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300731};
732
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300733static struct tda10023_config em28xx_tda10023_config = {
734 .demod_address = 0x0c,
735 .invert = 1,
736};
737
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300738static struct cxd2820r_config em28xx_cxd2820r_config = {
739 .i2c_address = (0xd8 >> 1),
740 .ts_mode = CXD2820R_TS_SERIAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300741};
742
743static struct tda18271_config em28xx_cxd2820r_tda18271_config = {
744 .output_opt = TDA18271_OUTPUT_LT_OFF,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300745 .gate = TDA18271_GATE_DIGITAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300746};
747
Antti Palosaari36588712011-08-01 01:15:30 -0300748static const struct tda10071_config em28xx_tda10071_config = {
Michael Krufky41f55d52012-12-16 19:37:11 -0300749 .demod_i2c_addr = 0x55, /* (0xaa >> 1) */
750 .tuner_i2c_addr = 0x14,
Antti Palosaari36588712011-08-01 01:15:30 -0300751 .i2c_wr_max = 64,
752 .ts_mode = TDA10071_TS_SERIAL,
753 .spec_inv = 0,
754 .xtal = 40444000, /* 40.444 MHz */
755 .pll_multiplier = 20,
756};
757
758static const struct a8293_config em28xx_a8293_config = {
759 .i2c_addr = 0x08, /* (0x10 >> 1) */
760};
761
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300762static struct zl10353_config em28xx_zl10353_no_i2c_gate_dev = {
763 .demod_address = (0x1e >> 1),
764 .disable_i2c_gate_ctrl = 1,
765 .no_tuner = 1,
766 .parallel_ts = 1,
767};
768static struct qt1010_config em28xx_qt1010_config = {
769 .i2c_address = 0x62
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300770};
771
Mauro Carvalho Chehab4159d012013-02-28 10:35:56 -0300772static const struct mb86a20s_config c3tech_duo_mb86a20s_config = {
773 .demod_address = 0x10,
774 .is_serial = true,
775};
776
777static struct tda18271_std_map mb86a20s_tda18271_config = {
778 .dvbt_6 = { .if_freq = 4000, .agc_mode = 3, .std = 4,
779 .if_lvl = 1, .rfagc_top = 0x37, },
780};
781
782static struct tda18271_config c3tech_duo_tda18271_config = {
783 .std_map = &mb86a20s_tda18271_config,
784 .gate = TDA18271_GATE_DIGITAL,
785 .small_i2c = TDA18271_03_BYTE_CHUNK_INIT,
786};
787
788
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300789/* ------------------------------------------------------------------ */
790
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300791static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300792{
793 struct dvb_frontend *fe;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300794 struct xc2028_config cfg;
795
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300796 memset(&cfg, 0, sizeof(cfg));
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300797 cfg.i2c_adap = &dev->i2c_adap[dev->def_i2c_bus];
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300798 cfg.i2c_addr = addr;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300799
Antti Palosaarif71095b2011-04-07 15:51:52 -0300800 if (!dev->dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -0300801 em28xx_errdev("/2: dvb frontend not attached. "
802 "Can't attach xc3028\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300803 return -EINVAL;
804 }
805
Antti Palosaarif71095b2011-04-07 15:51:52 -0300806 fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300807 if (!fe) {
Filipe Rosset480be182009-11-04 15:32:37 -0300808 em28xx_errdev("/2: xc3028 attach failed\n");
Antti Palosaarif71095b2011-04-07 15:51:52 -0300809 dvb_frontend_detach(dev->dvb->fe[0]);
810 dev->dvb->fe[0] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300811 return -EINVAL;
812 }
813
Filipe Rosset480be182009-11-04 15:32:37 -0300814 em28xx_info("%s/2: xc3028 attached\n", dev->name);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300815
816 return 0;
817}
818
Aidan Thornton3421b772008-04-17 21:40:36 -0300819/* ------------------------------------------------------------------ */
820
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300821static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
822 struct em28xx *dev, struct device *device)
Aidan Thornton3421b772008-04-17 21:40:36 -0300823{
824 int result;
825
826 mutex_init(&dvb->lock);
827
828 /* register adapter */
829 result = dvb_register_adapter(&dvb->adapter, dev->name, module, device,
830 adapter_nr);
831 if (result < 0) {
832 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
833 dev->name, result);
834 goto fail_adapter;
835 }
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300836
837 /* Ensure all frontends negotiate bus access */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300838 dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
839 if (dvb->fe[1])
840 dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300841
Aidan Thornton3421b772008-04-17 21:40:36 -0300842 dvb->adapter.priv = dev;
843
844 /* register frontend */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300845 result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300846 if (result < 0) {
847 printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
848 dev->name, result);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300849 goto fail_frontend0;
850 }
851
852 /* register 2nd frontend */
853 if (dvb->fe[1]) {
854 result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
855 if (result < 0) {
856 printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n",
857 dev->name, result);
858 goto fail_frontend1;
859 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300860 }
861
862 /* register demux stuff */
863 dvb->demux.dmx.capabilities =
864 DMX_TS_FILTERING | DMX_SECTION_FILTERING |
865 DMX_MEMORY_BASED_FILTERING;
866 dvb->demux.priv = dvb;
867 dvb->demux.filternum = 256;
868 dvb->demux.feednum = 256;
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300869 dvb->demux.start_feed = em28xx_start_feed;
870 dvb->demux.stop_feed = em28xx_stop_feed;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300871
Aidan Thornton3421b772008-04-17 21:40:36 -0300872 result = dvb_dmx_init(&dvb->demux);
873 if (result < 0) {
874 printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
875 dev->name, result);
876 goto fail_dmx;
877 }
878
879 dvb->dmxdev.filternum = 256;
880 dvb->dmxdev.demux = &dvb->demux.dmx;
881 dvb->dmxdev.capabilities = 0;
882 result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter);
883 if (result < 0) {
884 printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
885 dev->name, result);
886 goto fail_dmxdev;
887 }
888
889 dvb->fe_hw.source = DMX_FRONTEND_0;
890 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
891 if (result < 0) {
892 printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
893 dev->name, result);
894 goto fail_fe_hw;
895 }
896
897 dvb->fe_mem.source = DMX_MEMORY_FE;
898 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
899 if (result < 0) {
900 printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
901 dev->name, result);
902 goto fail_fe_mem;
903 }
904
905 result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
906 if (result < 0) {
907 printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
908 dev->name, result);
909 goto fail_fe_conn;
910 }
911
912 /* register network adapter */
913 dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx);
914 return 0;
915
916fail_fe_conn:
917 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
918fail_fe_mem:
919 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
920fail_fe_hw:
921 dvb_dmxdev_release(&dvb->dmxdev);
922fail_dmxdev:
923 dvb_dmx_release(&dvb->demux);
924fail_dmx:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300925 if (dvb->fe[1])
926 dvb_unregister_frontend(dvb->fe[1]);
927 dvb_unregister_frontend(dvb->fe[0]);
928fail_frontend1:
929 if (dvb->fe[1])
930 dvb_frontend_detach(dvb->fe[1]);
931fail_frontend0:
932 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300933 dvb_unregister_adapter(&dvb->adapter);
934fail_adapter:
935 return result;
936}
937
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300938static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300939{
940 dvb_net_release(&dvb->net);
941 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
942 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
943 dvb_dmxdev_release(&dvb->dmxdev);
944 dvb_dmx_release(&dvb->demux);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300945 if (dvb->fe[1])
946 dvb_unregister_frontend(dvb->fe[1]);
947 dvb_unregister_frontend(dvb->fe[0]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300948 if (dvb->fe[1] && !dvb->dont_attach_fe1)
Antti Palosaarif71095b2011-04-07 15:51:52 -0300949 dvb_frontend_detach(dvb->fe[1]);
950 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300951 dvb_unregister_adapter(&dvb->adapter);
952}
953
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300954static int em28xx_dvb_init(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300955{
Antti Palosaari13a53362012-07-19 22:28:56 -0300956 int result = 0, mfe_shared = 0;
Aidan Thornton3421b772008-04-17 21:40:36 -0300957 struct em28xx_dvb *dvb;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300958
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300959 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300960 /* This device does not support the extension */
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300961 printk(KERN_INFO "em28xx_dvb: This device does not support the extension\n");
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300962 return 0;
963 }
964
Aidan Thornton3421b772008-04-17 21:40:36 -0300965 dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300966
967 if (dvb == NULL) {
Filipe Rosset480be182009-11-04 15:32:37 -0300968 em28xx_info("em28xx_dvb: memory allocation failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -0300969 return -ENOMEM;
970 }
971 dev->dvb = dvb;
Antti Palosaarif71095b2011-04-07 15:51:52 -0300972 dvb->fe[0] = dvb->fe[1] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300973
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -0300974 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300975 em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300976 /* init frontend */
977 switch (dev->model) {
Mauro Carvalho Chehabebaefdb2011-06-01 10:16:25 -0300978 case EM2874_BOARD_LEADERSHIP_ISDBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300979 dvb->fe[0] = dvb_attach(s921_attach,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300980 &sharp_isdbt, &dev->i2c_adap[dev->def_i2c_bus]);
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300981
Antti Palosaarif71095b2011-04-07 15:51:52 -0300982 if (!dvb->fe[0]) {
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300983 result = -EINVAL;
984 goto out_free;
985 }
986
987 break;
Douglas Schilling Landgraff89bc322008-12-01 21:01:04 -0300988 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
Mauro Carvalho Chehab10ac6602008-07-27 14:58:58 -0300989 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
Devin Heitmueller4fd305b2008-06-04 13:43:46 -0300990 case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
Devin Heitmuellere14b3652008-07-26 11:04:33 -0300991 case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300992 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300993 &em2880_lgdt3303_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300994 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300995 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300996 result = -EINVAL;
997 goto out_free;
998 }
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300999 break;
Thierry MERLE46510b52008-10-11 16:56:13 -03001000 case EM2880_BOARD_KWORLD_DVB_310U:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001001 dvb->fe[0] = dvb_attach(zl10353_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -03001002 &em28xx_zl10353_with_xc3028,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001003 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001004 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -03001005 result = -EINVAL;
1006 goto out_free;
1007 }
Aidan Thornton7e6388a2008-04-17 21:40:03 -03001008 break;
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001009 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
Uroš Vamplec994d02009-09-30 22:53:37 -03001010 case EM2882_BOARD_TERRATEC_HYBRID_XS:
Devin Heitmueller01a5fd62009-08-07 09:25:06 -03001011 case EM2880_BOARD_EMPIRE_DUAL_TV:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001012 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001013 &em28xx_zl10353_xc3028_no_i2c_gate,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001014 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001015 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001016 result = -EINVAL;
1017 goto out_free;
1018 }
1019 break;
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001020 case EM2880_BOARD_TERRATEC_HYBRID_XS:
Catimimi65638012010-02-18 18:06:32 -03001021 case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
Devin Heitmuellerd5b3ba92009-07-08 21:51:35 -03001022 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
Andrea.Amorosi76@gmail.com7ca7ef62010-02-09 17:53:38 -03001023 case EM2882_BOARD_DIKOM_DK300:
Antonio Larrosa811fab62010-03-04 22:19:48 -03001024 case EM2882_BOARD_KWORLD_VS_DVBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001025 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001026 &em28xx_zl10353_xc3028_no_i2c_gate,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001027 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001028 if (dvb->fe[0] == NULL) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001029 /* This board could have either a zl10353 or a mt352.
1030 If the chip id isn't for zl10353, try mt352 */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001031 dvb->fe[0] = dvb_attach(mt352_attach,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -03001032 &terratec_xs_mt352_cfg,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001033 &dev->i2c_adap[dev->def_i2c_bus]);
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001034 }
Devin Heitmueller4fb202a2009-07-12 17:51:12 -03001035
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001036 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001037 result = -EINVAL;
1038 goto out_free;
1039 }
1040 break;
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001041 case EM2870_BOARD_KWORLD_355U:
1042 dvb->fe[0] = dvb_attach(zl10353_attach,
1043 &em28xx_zl10353_no_i2c_gate_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001044 &dev->i2c_adap[dev->def_i2c_bus]);
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001045 if (dvb->fe[0] != NULL)
1046 dvb_attach(qt1010_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001047 &dev->i2c_adap[dev->def_i2c_bus], &em28xx_qt1010_config);
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001048 break;
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001049 case EM2883_BOARD_KWORLD_HYBRID_330U:
Devin Heitmueller19859222009-06-19 00:33:54 -03001050 case EM2882_BOARD_EVGA_INDTUBE:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001051 dvb->fe[0] = dvb_attach(s5h1409_attach,
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001052 &em28xx_s5h1409_with_xc3028,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001053 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001054 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001055 result = -EINVAL;
1056 goto out_free;
1057 }
1058 break;
Franklin Mengd7de5d82009-06-06 17:05:02 -03001059 case EM2882_BOARD_KWORLD_ATSC_315U:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001060 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Franklin Mengd7de5d82009-06-06 17:05:02 -03001061 &em2880_lgdt3303_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001062 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001063 if (dvb->fe[0] != NULL) {
1064 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001065 &dev->i2c_adap[dev->def_i2c_bus], 0x61, TUNER_THOMSON_DTT761X)) {
Franklin Mengd7de5d82009-06-06 17:05:02 -03001066 result = -EINVAL;
1067 goto out_free;
1068 }
1069 }
1070 break;
Devin Heitmueller17d9d552008-06-08 10:22:03 -03001071 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
Devin Heitmuellerad9b4bb2011-03-13 02:09:59 -03001072 case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001073 dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001074 &dev->i2c_adap[dev->def_i2c_bus], &dev->udev->dev);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001075 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmueller17d9d552008-06-08 10:22:03 -03001076 result = -EINVAL;
1077 goto out_free;
1078 }
1079 break;
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001080 case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
1081 /* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001082 dvb->fe[0] = dvb_attach(tda10023_attach,
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001083 &em28xx_tda10023_config,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001084 &dev->i2c_adap[dev->def_i2c_bus], 0x48);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001085 if (dvb->fe[0]) {
1086 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001087 &dev->i2c_adap[dev->def_i2c_bus], 0x60, TUNER_PHILIPS_CU1216L)) {
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001088 result = -EINVAL;
1089 goto out_free;
1090 }
1091 }
1092 break;
Jarod Wilson7e48b302010-03-07 17:55:43 -03001093 case EM2870_BOARD_KWORLD_A340:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001094 dvb->fe[0] = dvb_attach(lgdt3305_attach,
Jarod Wilson7e48b302010-03-07 17:55:43 -03001095 &em2870_lgdt3304_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001096 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001097 if (dvb->fe[0] != NULL)
1098 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001099 &dev->i2c_adap[dev->def_i2c_bus], &kworld_a340_config);
Jarod Wilson7e48b302010-03-07 17:55:43 -03001100 break;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001101 case EM28174_BOARD_PCTV_290E:
Antti Palosaaria36a66d2012-08-16 21:07:23 -03001102 /* set default GPIO0 for LNA, used if GPIOLIB is undefined */
1103 dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O |
1104 CXD2820R_GPIO_L;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001105 dvb->fe[0] = dvb_attach(cxd2820r_attach,
Manu Abraham7e7b8282011-12-10 00:44:24 -03001106 &em28xx_cxd2820r_config,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001107 &dev->i2c_adap[dev->def_i2c_bus],
Antti Palosaari13a53362012-07-19 22:28:56 -03001108 &dvb->lna_gpio);
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001109 if (dvb->fe[0]) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001110 /* FE 0 attach tuner */
Manu Abraham7e7b8282011-12-10 00:44:24 -03001111 if (!dvb_attach(tda18271_attach,
1112 dvb->fe[0],
1113 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001114 &dev->i2c_adap[dev->def_i2c_bus],
Manu Abraham7e7b8282011-12-10 00:44:24 -03001115 &em28xx_cxd2820r_tda18271_config)) {
1116
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001117 dvb_frontend_detach(dvb->fe[0]);
1118 result = -EINVAL;
1119 goto out_free;
1120 }
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001121
Antti Palosaari13a53362012-07-19 22:28:56 -03001122#ifdef CONFIG_GPIOLIB
Antti Palosaari0c42a552012-09-19 20:52:21 -03001123 /* enable LNA for DVB-T, DVB-T2 and DVB-C */
1124 result = gpio_request_one(dvb->lna_gpio,
1125 GPIOF_OUT_INIT_LOW, NULL);
1126 if (result)
1127 em28xx_errdev("gpio request failed %d\n",
1128 result);
1129 else
1130 gpio_free(dvb->lna_gpio);
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001131
Antti Palosaari0c42a552012-09-19 20:52:21 -03001132 result = 0; /* continue even set LNA fails */
Antti Palosaari13a53362012-07-19 22:28:56 -03001133#endif
Antti Palosaari0c42a552012-09-19 20:52:21 -03001134 dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
1135 }
1136
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001137 break;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001138 case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001139 {
1140 struct xc5000_config cfg;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001141 hauppauge_hvr930c_init(dev);
1142
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001143 dvb->fe[0] = dvb_attach(drxk_attach,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001144 &hauppauge_930c_drxk, &dev->i2c_adap[dev->def_i2c_bus]);
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001145 if (!dvb->fe[0]) {
1146 result = -EINVAL;
1147 goto out_free;
1148 }
1149 /* FIXME: do we need a pll semaphore? */
1150 dvb->fe[0]->sec_priv = dvb;
1151 sema_init(&dvb->pll_mutex, 1);
1152 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1153 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001154
1155 /* Attach xc5000 */
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001156 memset(&cfg, 0, sizeof(cfg));
1157 cfg.i2c_address = 0x61;
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001158 cfg.if_khz = 4000;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001159
1160 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1161 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001162 if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus],
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001163 &cfg)) {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001164 result = -EINVAL;
1165 goto out_free;
1166 }
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001167 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1168 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1169
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001170 break;
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001171 }
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001172 case EM2884_BOARD_TERRATEC_H5:
1173 terratec_h5_init(dev);
1174
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001175 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap[dev->def_i2c_bus]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001176 if (!dvb->fe[0]) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001177 result = -EINVAL;
1178 goto out_free;
1179 }
1180 /* FIXME: do we need a pll semaphore? */
1181 dvb->fe[0]->sec_priv = dvb;
1182 sema_init(&dvb->pll_mutex, 1);
1183 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1184 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001185
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001186 /* Attach tda18271 to DVB-C frontend */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001187 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1188 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001189 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus], 0x60)) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001190 result = -EINVAL;
1191 goto out_free;
1192 }
1193 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1194 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001195
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001196 break;
Mauro Carvalho Chehab4159d012013-02-28 10:35:56 -03001197 case EM2884_BOARD_C3TECH_DIGITAL_DUO:
1198 dvb->fe[0] = dvb_attach(mb86a20s_attach,
1199 &c3tech_duo_mb86a20s_config,
1200 &dev->i2c_adap[dev->def_i2c_bus]);
1201 if (dvb->fe[0] != NULL)
1202 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1203 &dev->i2c_adap[dev->def_i2c_bus],
1204 &c3tech_duo_tda18271_config);
1205 break;
Antti Palosaari36588712011-08-01 01:15:30 -03001206 case EM28174_BOARD_PCTV_460E:
1207 /* attach demod */
1208 dvb->fe[0] = dvb_attach(tda10071_attach,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001209 &em28xx_tda10071_config, &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaari36588712011-08-01 01:15:30 -03001210
1211 /* attach SEC */
1212 if (dvb->fe[0])
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001213 dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus],
Antti Palosaari36588712011-08-01 01:15:30 -03001214 &em28xx_a8293_config);
1215 break;
Antti Palosaari35530852012-03-18 18:09:01 -03001216 case EM2874_BOARD_MAXMEDIA_UB425_TC:
1217 /* attach demodulator */
1218 dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001219 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaari35530852012-03-18 18:09:01 -03001220
1221 if (dvb->fe[0]) {
1222 /* disable I2C-gate */
1223 dvb->fe[0]->ops.i2c_gate_ctrl = NULL;
1224
1225 /* attach tuner */
1226 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001227 &dev->i2c_adap[dev->def_i2c_bus], 0x60)) {
Antti Palosaari35530852012-03-18 18:09:01 -03001228 dvb_frontend_detach(dvb->fe[0]);
1229 result = -EINVAL;
1230 goto out_free;
1231 }
1232 }
1233
1234 /* TODO: we need drx-3913k firmware in order to support DVB-T */
1235 em28xx_info("MaxMedia UB425-TC: only DVB-C supported by that " \
1236 "driver version\n");
1237
1238 break;
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001239 case EM2884_BOARD_PCTV_510E:
1240 case EM2884_BOARD_PCTV_520E:
1241 pctv_520e_init(dev);
1242
1243 /* attach demodulator */
1244 dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001245 &dev->i2c_adap[dev->def_i2c_bus]);
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001246
1247 if (dvb->fe[0]) {
1248 /* attach tuner */
1249 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001250 &dev->i2c_adap[dev->def_i2c_bus],
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001251 &em28xx_cxd2820r_tda18271_config)) {
1252 dvb_frontend_detach(dvb->fe[0]);
1253 result = -EINVAL;
1254 goto out_free;
1255 }
1256 }
1257 break;
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001258 case EM2884_BOARD_CINERGY_HTC_STICK:
1259 terratec_htc_stick_init(dev);
1260
1261 /* attach demodulator */
1262 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001263 &dev->i2c_adap[dev->def_i2c_bus]);
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001264 if (!dvb->fe[0]) {
1265 result = -EINVAL;
1266 goto out_free;
1267 }
1268
1269 /* Attach the demodulator. */
1270 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001271 &dev->i2c_adap[dev->def_i2c_bus],
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001272 &em28xx_cxd2820r_tda18271_config)) {
1273 result = -EINVAL;
1274 goto out_free;
1275 }
1276 break;
Martin Blumenstingl89040132012-10-04 14:22:54 -03001277 case EM2884_BOARD_TERRATEC_HTC_USB_XS:
1278 terratec_htc_usb_xs_init(dev);
1279
1280 /* attach demodulator */
1281 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001282 &dev->i2c_adap[dev->def_i2c_bus]);
Martin Blumenstingl89040132012-10-04 14:22:54 -03001283 if (!dvb->fe[0]) {
1284 result = -EINVAL;
1285 goto out_free;
1286 }
1287
1288 /* Attach the demodulator. */
1289 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001290 &dev->i2c_adap[dev->def_i2c_bus],
Martin Blumenstingl89040132012-10-04 14:22:54 -03001291 &em28xx_cxd2820r_tda18271_config)) {
1292 result = -EINVAL;
1293 goto out_free;
1294 }
1295 break;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001296 default:
Filipe Rosset480be182009-11-04 15:32:37 -03001297 em28xx_errdev("/2: The frontend of your DVB/ATSC card"
1298 " isn't supported yet\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001299 break;
1300 }
Antti Palosaarif71095b2011-04-07 15:51:52 -03001301 if (NULL == dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -03001302 em28xx_errdev("/2: frontend initialization failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -03001303 result = -EINVAL;
1304 goto out_free;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001305 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001306 /* define general-purpose callback pointer */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001307 dvb->fe[0]->callback = em28xx_tuner_callback;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001308 if (dvb->fe[1])
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001309 dvb->fe[1]->callback = em28xx_tuner_callback;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001310
1311 /* register everything */
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001312 result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev);
Aidan Thornton3421b772008-04-17 21:40:36 -03001313
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001314 if (result < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -03001315 goto out_free;
Aidan Thornton3421b772008-04-17 21:40:36 -03001316
Antti Palosaarie3645432011-07-28 18:59:30 -03001317 /* MFE lock */
1318 dvb->adapter.mfe_shared = mfe_shared;
1319
Filipe Rosset480be182009-11-04 15:32:37 -03001320 em28xx_info("Successfully loaded em28xx-dvb\n");
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001321ret:
1322 em28xx_set_mode(dev, EM28XX_SUSPEND);
1323 mutex_unlock(&dev->lock);
1324 return result;
Aidan Thornton3421b772008-04-17 21:40:36 -03001325
1326out_free:
1327 kfree(dvb);
1328 dev->dvb = NULL;
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001329 goto ret;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001330}
1331
Chris Rankin0b8bd832011-08-20 16:01:26 -03001332static inline void prevent_sleep(struct dvb_frontend_ops *ops)
1333{
1334 ops->set_voltage = NULL;
1335 ops->sleep = NULL;
1336 ops->tuner_ops.sleep = NULL;
1337}
1338
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001339static int em28xx_dvb_fini(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001340{
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001341 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -03001342 /* This device does not support the extension */
1343 return 0;
1344 }
1345
Aidan Thornton3421b772008-04-17 21:40:36 -03001346 if (dev->dvb) {
Chris Rankin0b8bd832011-08-20 16:01:26 -03001347 struct em28xx_dvb *dvb = dev->dvb;
1348
Frank Schaefer2665c292012-12-27 19:02:43 -03001349 if (dev->disconnected) {
Chris Rankin0b8bd832011-08-20 16:01:26 -03001350 /* We cannot tell the device to sleep
1351 * once it has been unplugged. */
1352 if (dvb->fe[0])
1353 prevent_sleep(&dvb->fe[0]->ops);
1354 if (dvb->fe[1])
1355 prevent_sleep(&dvb->fe[1]->ops);
1356 }
1357
1358 em28xx_unregister_dvb(dvb);
1359 kfree(dvb);
Aidan Thornton3421b772008-04-17 21:40:36 -03001360 dev->dvb = NULL;
1361 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001362
1363 return 0;
1364}
1365
1366static struct em28xx_ops dvb_ops = {
1367 .id = EM28XX_DVB,
1368 .name = "Em28xx dvb Extension",
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001369 .init = em28xx_dvb_init,
1370 .fini = em28xx_dvb_fini,
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001371};
1372
1373static int __init em28xx_dvb_register(void)
1374{
1375 return em28xx_register_extension(&dvb_ops);
1376}
1377
1378static void __exit em28xx_dvb_unregister(void)
1379{
1380 em28xx_unregister_extension(&dvb_ops);
1381}
1382
1383module_init(em28xx_dvb_register);
1384module_exit(em28xx_dvb_unregister);