blob: f599b18ef7ca16bbd85b6acccfb93269cac3f574 [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"
Devin Heitmueller38b2df92012-08-13 21:18:02 -030044#include "drx39xyj/drx39xxj.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030045#include "tda18271.h"
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -030046#include "s921.h"
Devin Heitmueller75e2b862011-03-13 02:01:02 -030047#include "drxd.h"
Antti Palosaarid6a5f922011-04-07 16:34:44 -030048#include "cxd2820r.h"
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030049#include "tda18271c2dd.h"
50#include "drxk.h"
Antti Palosaari36588712011-08-01 01:15:30 -030051#include "tda10071.h"
Mauro Carvalho Chehab02bc1f52014-03-03 16:28:39 -030052#include "tda18212.h"
Antti Palosaari36588712011-08-01 01:15:30 -030053#include "a8293.h"
Aivar Päkk1985f6f2011-12-11 18:15:00 -030054#include "qt1010.h"
Mauro Carvalho Chehab4159d012013-02-28 10:35:56 -030055#include "mb86a20s.h"
Antti Palosaariec573362013-02-25 09:01:13 -030056#include "m88ds3103.h"
57#include "m88ts2022.h"
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030058
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030059MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
60MODULE_LICENSE("GPL");
Mauro Carvalho Chehabd8992b02013-12-27 11:14:59 -030061MODULE_DESCRIPTION(DRIVER_DESC " - digital TV interface");
62MODULE_VERSION(EM28XX_VERSION);
63
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030064
65static unsigned int debug;
66module_param(debug, int, 0644);
67MODULE_PARM_DESC(debug, "enable debug messages [dvb]");
68
69DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
70
71#define dprintk(level, fmt, arg...) do { \
72if (debug >= level) \
Aidan Thornton3421b772008-04-17 21:40:36 -030073 printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg); \
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030074} while (0)
75
Aidan Thornton3421b772008-04-17 21:40:36 -030076struct em28xx_dvb {
Antti Palosaarif71095b2011-04-07 15:51:52 -030077 struct dvb_frontend *fe[2];
Aidan Thornton3421b772008-04-17 21:40:36 -030078
79 /* feed count management */
80 struct mutex lock;
81 int nfeeds;
82
83 /* general boilerplate stuff */
84 struct dvb_adapter adapter;
85 struct dvb_demux demux;
86 struct dmxdev dmxdev;
87 struct dmx_frontend fe_hw;
88 struct dmx_frontend fe_mem;
89 struct dvb_net net;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030090
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030091 /* Due to DRX-K - probably need changes */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030092 int (*gate_ctrl)(struct dvb_frontend *, int);
93 struct semaphore pll_mutex;
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030094 bool dont_attach_fe1;
Antti Palosaari13a53362012-07-19 22:28:56 -030095 int lna_gpio;
Antti Palosaarieafa2ad2013-12-02 18:38:41 -030096 struct i2c_client *i2c_client_tuner;
Aidan Thornton3421b772008-04-17 21:40:36 -030097};
98
99
100static inline void print_err_status(struct em28xx *dev,
101 int packet, int status)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300102{
Aidan Thornton3421b772008-04-17 21:40:36 -0300103 char *errmsg = "Unknown";
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300104
Aidan Thornton3421b772008-04-17 21:40:36 -0300105 switch (status) {
106 case -ENOENT:
107 errmsg = "unlinked synchronuously";
108 break;
109 case -ECONNRESET:
110 errmsg = "unlinked asynchronuously";
111 break;
112 case -ENOSR:
113 errmsg = "Buffer error (overrun)";
114 break;
115 case -EPIPE:
116 errmsg = "Stalled (device not responding)";
117 break;
118 case -EOVERFLOW:
119 errmsg = "Babble (bad cable?)";
120 break;
121 case -EPROTO:
122 errmsg = "Bit-stuff error (bad cable?)";
123 break;
124 case -EILSEQ:
125 errmsg = "CRC/Timeout (could be anything)";
126 break;
127 case -ETIME:
128 errmsg = "Device does not respond";
129 break;
130 }
131 if (packet < 0) {
132 dprintk(1, "URB status %d [%s].\n", status, errmsg);
133 } else {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300134 dprintk(1, "URB packet %d, status %d [%s].\n",
135 packet, status, errmsg);
Aidan Thornton3421b772008-04-17 21:40:36 -0300136 }
137}
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300138
Frank Schaefera950e4a2012-11-08 14:11:47 -0300139static inline int em28xx_dvb_urb_data_copy(struct em28xx *dev, struct urb *urb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300140{
Frank Schaefera950e4a2012-11-08 14:11:47 -0300141 int xfer_bulk, num_packets, i;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300142
Aidan Thornton3421b772008-04-17 21:40:36 -0300143 if (!dev)
144 return 0;
145
Frank Schaefer2665c292012-12-27 19:02:43 -0300146 if (dev->disconnected)
Aidan Thornton3421b772008-04-17 21:40:36 -0300147 return 0;
148
Frank Schaefer1653cb0c2012-11-08 14:11:44 -0300149 if (urb->status < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -0300150 print_err_status(dev, -1, urb->status);
Aidan Thornton3421b772008-04-17 21:40:36 -0300151
Frank Schaefera950e4a2012-11-08 14:11:47 -0300152 xfer_bulk = usb_pipebulk(urb->pipe);
Aidan Thornton3421b772008-04-17 21:40:36 -0300153
Frank Schaefera950e4a2012-11-08 14:11:47 -0300154 if (xfer_bulk) /* bulk */
155 num_packets = 1;
156 else /* isoc */
157 num_packets = urb->number_of_packets;
158
159 for (i = 0; i < num_packets; i++) {
160 if (xfer_bulk) {
161 if (urb->status < 0) {
162 print_err_status(dev, i, urb->status);
163 if (urb->status != -EPROTO)
164 continue;
165 }
Mauro Carvalho Chehabffdeca82014-03-02 08:20:54 -0300166 if (!urb->actual_length)
167 continue;
Frank Schaefera950e4a2012-11-08 14:11:47 -0300168 dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer,
169 urb->actual_length);
170 } else {
171 if (urb->iso_frame_desc[i].status < 0) {
172 print_err_status(dev, i,
173 urb->iso_frame_desc[i].status);
174 if (urb->iso_frame_desc[i].status != -EPROTO)
175 continue;
176 }
Mauro Carvalho Chehabffdeca82014-03-02 08:20:54 -0300177 if (!urb->iso_frame_desc[i].actual_length)
178 continue;
Frank Schaefera950e4a2012-11-08 14:11:47 -0300179 dvb_dmx_swfilter(&dev->dvb->demux,
180 urb->transfer_buffer +
181 urb->iso_frame_desc[i].offset,
182 urb->iso_frame_desc[i].actual_length);
Aidan Thornton3421b772008-04-17 21:40:36 -0300183 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300184 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300185
186 return 0;
187}
188
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300189static int em28xx_start_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300190{
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300191 int rc;
Hans Verkuil3de09fb2013-04-08 16:25:04 -0300192 struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv;
193 struct em28xx *dev = i2c_bus->dev;
Frank Schaeferc647a912012-11-08 14:11:52 -0300194 int dvb_max_packet_size, packet_multiplier, dvb_alt;
Aidan Thornton3421b772008-04-17 21:40:36 -0300195
Frank Schaeferc647a912012-11-08 14:11:52 -0300196 if (dev->dvb_xfer_bulk) {
197 if (!dev->dvb_ep_bulk)
198 return -ENODEV;
199 dvb_max_packet_size = 512; /* USB 2.0 spec */
200 packet_multiplier = EM28XX_DVB_BULK_PACKET_MULTIPLIER;
201 dvb_alt = 0;
202 } else { /* isoc */
203 if (!dev->dvb_ep_isoc)
204 return -ENODEV;
205 dvb_max_packet_size = dev->dvb_max_pkt_size_isoc;
206 if (dvb_max_packet_size < 0)
207 return dvb_max_packet_size;
208 packet_multiplier = EM28XX_DVB_NUM_ISOC_PACKETS;
209 dvb_alt = dev->dvb_alt_isoc;
210 }
211
Frank Schaefer961717b2014-01-13 19:02:06 -0300212 usb_set_interface(dev->udev, dev->ifnum, dvb_alt);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300213 rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
214 if (rc < 0)
215 return rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300216
Mauro Carvalho Chehab52f7b002014-01-24 23:17:00 -0300217 dprintk(1, "Using %d buffers each with %d x %d bytes, alternate %d\n",
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300218 EM28XX_DVB_NUM_BUFS,
Frank Schaeferc647a912012-11-08 14:11:52 -0300219 packet_multiplier,
Mauro Carvalho Chehab52f7b002014-01-24 23:17:00 -0300220 dvb_max_packet_size, dvb_alt);
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300221
Frank Schaeferc647a912012-11-08 14:11:52 -0300222 return em28xx_init_usb_xfer(dev, EM28XX_DIGITAL_MODE,
223 dev->dvb_xfer_bulk,
Frank Schaefer057ca0d2012-11-08 14:11:42 -0300224 EM28XX_DVB_NUM_BUFS,
Frank Schaeferc647a912012-11-08 14:11:52 -0300225 dvb_max_packet_size,
226 packet_multiplier,
Frank Schaefera950e4a2012-11-08 14:11:47 -0300227 em28xx_dvb_urb_data_copy);
Aidan Thornton3421b772008-04-17 21:40:36 -0300228}
229
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300230static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300231{
Hans Verkuil3de09fb2013-04-08 16:25:04 -0300232 struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv;
233 struct em28xx *dev = i2c_bus->dev;
Aidan Thornton3421b772008-04-17 21:40:36 -0300234
Gianluca Gennari5f5f1472012-03-22 08:48:17 -0300235 em28xx_stop_urbs(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300236
Aidan Thornton3421b772008-04-17 21:40:36 -0300237 return 0;
238}
239
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300240static int em28xx_start_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300241{
242 struct dvb_demux *demux = feed->demux;
243 struct em28xx_dvb *dvb = demux->priv;
244 int rc, ret;
245
246 if (!demux->dmx.frontend)
247 return -EINVAL;
248
249 mutex_lock(&dvb->lock);
250 dvb->nfeeds++;
251 rc = dvb->nfeeds;
252
253 if (dvb->nfeeds == 1) {
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300254 ret = em28xx_start_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300255 if (ret < 0)
256 rc = ret;
Aidan Thornton3421b772008-04-17 21:40:36 -0300257 }
258
259 mutex_unlock(&dvb->lock);
260 return rc;
261}
262
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300263static int em28xx_stop_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300264{
265 struct dvb_demux *demux = feed->demux;
266 struct em28xx_dvb *dvb = demux->priv;
267 int err = 0;
268
269 mutex_lock(&dvb->lock);
270 dvb->nfeeds--;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300271
272 if (0 == dvb->nfeeds)
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300273 err = em28xx_stop_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300274
Aidan Thornton3421b772008-04-17 21:40:36 -0300275 mutex_unlock(&dvb->lock);
276 return err;
277}
278
279
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300280
281/* ------------------------------------------------------------------ */
282static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
283{
Mauro Carvalho Chehaba3b60202013-04-28 10:33:57 -0300284 struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv;
Mauro Carvalho Chehab96346142013-12-26 12:41:03 -0300285 struct em28xx *dev = i2c_bus->dev;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300286
287 if (acquire)
288 return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
289 else
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300290 return em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300291}
292
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300293/* ------------------------------------------------------------------ */
294
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300295static struct lgdt330x_config em2880_lgdt3303_dev = {
296 .demod_address = 0x0e,
297 .demod_chip = LGDT3303,
298};
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300299
Jarod Wilson7e48b302010-03-07 17:55:43 -0300300static struct lgdt3305_config em2870_lgdt3304_dev = {
301 .i2c_addr = 0x0e,
302 .demod_chip = LGDT3304,
303 .spectral_inversion = 1,
304 .deny_i2c_rptr = 1,
305 .mpeg_mode = LGDT3305_MPEG_PARALLEL,
306 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
307 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
308 .vsb_if_khz = 3250,
309 .qam_if_khz = 4000,
310};
311
Jean-Francois Thibert6dbea9f2013-10-09 11:18:05 -0300312static struct lgdt3305_config em2874_lgdt3305_dev = {
313 .i2c_addr = 0x0e,
314 .demod_chip = LGDT3305,
315 .spectral_inversion = 1,
316 .deny_i2c_rptr = 0,
317 .mpeg_mode = LGDT3305_MPEG_SERIAL,
318 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
319 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
320 .vsb_if_khz = 3250,
321 .qam_if_khz = 4000,
322};
323
Mauro Carvalho Chehab02bc1f52014-03-03 16:28:39 -0300324static struct lgdt3305_config em2874_lgdt3305_nogate_dev = {
325 .i2c_addr = 0x0e,
326 .demod_chip = LGDT3305,
327 .spectral_inversion = 1,
328 .deny_i2c_rptr = 1,
329 .mpeg_mode = LGDT3305_MPEG_SERIAL,
330 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
331 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
332 .vsb_if_khz = 3600,
333 .qam_if_khz = 3600,
334};
335
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300336static struct s921_config sharp_isdbt = {
337 .demod_address = 0x30 >> 1
338};
339
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300340static struct zl10353_config em28xx_zl10353_with_xc3028 = {
341 .demod_address = (0x1e >> 1),
342 .no_tuner = 1,
343 .parallel_ts = 1,
344 .if2 = 45600,
345};
346
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300347static struct s5h1409_config em28xx_s5h1409_with_xc3028 = {
348 .demod_address = 0x32 >> 1,
349 .output_mode = S5H1409_PARALLEL_OUTPUT,
350 .gpio = S5H1409_GPIO_OFF,
351 .inversion = S5H1409_INVERSION_OFF,
352 .status_mode = S5H1409_DEMODLOCKING,
353 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
354};
355
Jarod Wilson7e48b302010-03-07 17:55:43 -0300356static struct tda18271_std_map kworld_a340_std_map = {
357 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 0,
358 .if_lvl = 1, .rfagc_top = 0x37, },
359 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 1,
360 .if_lvl = 1, .rfagc_top = 0x37, },
361};
362
363static struct tda18271_config kworld_a340_config = {
364 .std_map = &kworld_a340_std_map,
365};
366
Jean-Francois Thibert6dbea9f2013-10-09 11:18:05 -0300367static struct tda18271_config kworld_ub435q_v2_config = {
368 .std_map = &kworld_a340_std_map,
369 .gate = TDA18271_GATE_DIGITAL,
370};
371
Mauro Carvalho Chehab02bc1f52014-03-03 16:28:39 -0300372static struct tda18212_config kworld_ub435q_v3_config = {
373 .i2c_address = 0x60,
374 .if_atsc_vsb = 3600,
375 .if_atsc_qam = 3600,
376};
377
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300378static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300379 .demod_address = (0x1e >> 1),
380 .no_tuner = 1,
381 .disable_i2c_gate_ctrl = 1,
382 .parallel_ts = 1,
383 .if2 = 45600,
384};
385
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300386static struct drxd_config em28xx_drxd = {
Mauro Carvalho Chehabaac865f2011-12-26 09:41:14 -0300387 .demod_address = 0x70,
388 .demod_revision = 0xa2,
389 .pll_type = DRXD_PLL_NONE,
390 .clock = 12000,
391 .insert_rs_byte = 1,
392 .IF = 42800000,
Devin Heitmueller6b142b32011-03-13 02:02:01 -0300393 .disable_i2c_gate_ctrl = 1,
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300394};
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300395
Ezequiel García61bdbef2012-06-12 09:53:41 -0300396static struct drxk_config terratec_h5_drxk = {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300397 .adr = 0x29,
Mauro Carvalho Chehabe4f4f872011-07-09 17:35:26 -0300398 .single_master = 1,
Mauro Carvalho Chehabf1fe1b72011-07-09 21:59:33 -0300399 .no_i2c_bridge = 1,
Mauro Carvalho Chehab8b9456a2011-07-11 14:33:51 -0300400 .microcode_name = "dvb-usb-terratec-h5-drxk.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300401 .qam_demod_parameter_count = 2,
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300402};
403
Ezequiel García61bdbef2012-06-12 09:53:41 -0300404static struct drxk_config hauppauge_930c_drxk = {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300405 .adr = 0x29,
406 .single_master = 1,
407 .no_i2c_bridge = 1,
408 .microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw",
409 .chunk_size = 56,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300410 .qam_demod_parameter_count = 2,
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300411};
412
Martin Blumenstingl89040132012-10-04 14:22:54 -0300413static struct drxk_config terratec_htc_stick_drxk = {
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300414 .adr = 0x29,
415 .single_master = 1,
416 .no_i2c_bridge = 1,
417 .microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw",
418 .chunk_size = 54,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300419 .qam_demod_parameter_count = 2,
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300420 /* Required for the antenna_gpio to disable LNA. */
421 .antenna_dvbt = true,
422 /* The windows driver uses the same. This will disable LNA. */
423 .antenna_gpio = 0x6,
424};
425
Ezequiel García61bdbef2012-06-12 09:53:41 -0300426static struct drxk_config maxmedia_ub425_tc_drxk = {
Antti Palosaari35530852012-03-18 18:09:01 -0300427 .adr = 0x29,
428 .single_master = 1,
429 .no_i2c_bridge = 1,
Antti Palosaari8d100b22013-10-04 14:40:06 -0300430 .microcode_name = "dvb-demod-drxk-01.fw",
431 .chunk_size = 62,
Antti Palosaaride0fc462013-10-04 15:25:55 -0300432 .qam_demod_parameter_count = 2,
Antti Palosaari35530852012-03-18 18:09:01 -0300433};
434
Ezequiel García61bdbef2012-06-12 09:53:41 -0300435static struct drxk_config pctv_520e_drxk = {
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300436 .adr = 0x29,
437 .single_master = 1,
438 .microcode_name = "dvb-demod-drxk-pctv.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300439 .qam_demod_parameter_count = 2,
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300440 .chunk_size = 58,
Antti Palosaarif6f379d2012-05-17 19:09:06 -0300441 .antenna_dvbt = true, /* disable LNA */
442 .antenna_gpio = (1 << 2), /* disable LNA */
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300443};
444
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300445static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
446{
447 struct em28xx_dvb *dvb = fe->sec_priv;
448 int status;
449
450 if (!dvb)
451 return -EINVAL;
452
453 if (enable) {
454 down(&dvb->pll_mutex);
455 status = dvb->gate_ctrl(fe, 1);
456 } else {
457 status = dvb->gate_ctrl(fe, 0);
458 up(&dvb->pll_mutex);
459 }
460 return status;
461}
462
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300463static void hauppauge_hvr930c_init(struct em28xx *dev)
464{
465 int i;
466
467 struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
Frank Schaefer907d1092013-06-03 14:12:02 -0300468 {EM2874_R80_GPIO_P0_CTRL, 0xff, 0xff, 0x65},
469 {EM2874_R80_GPIO_P0_CTRL, 0xfb, 0xff, 0x32},
470 {EM2874_R80_GPIO_P0_CTRL, 0xff, 0xff, 0xb8},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300471 { -1, -1, -1, -1},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300472 };
473 struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
Frank Schaefer907d1092013-06-03 14:12:02 -0300474 {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x01},
475 {EM2874_R80_GPIO_P0_CTRL, 0xaf, 0xff, 0x65},
476 {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x76},
477 {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x01},
478 {EM2874_R80_GPIO_P0_CTRL, 0xcf, 0xff, 0x0b},
479 {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x40},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300480
Frank Schaefer907d1092013-06-03 14:12:02 -0300481 {EM2874_R80_GPIO_P0_CTRL, 0xcf, 0xff, 0x65},
482 {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x65},
483 {EM2874_R80_GPIO_P0_CTRL, 0xcf, 0xff, 0x0b},
484 {EM2874_R80_GPIO_P0_CTRL, 0xef, 0xff, 0x65},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300485
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300486 { -1, -1, -1, -1},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300487 };
488
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300489 struct {
490 unsigned char r[4];
491 int len;
492 } regs[] = {
493 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
494 {{ 0x01, 0x02 }, 2},
495 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
496 {{ 0x01, 0x00 }, 2},
497 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
498 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
499 {{ 0x01, 0x00 }, 2},
500 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
501 {{ 0x04, 0x00 }, 2},
502 {{ 0x00, 0x04 }, 2},
503 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
504 {{ 0x04, 0x14 }, 2},
505 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
506 };
507
508 em28xx_gpio_set(dev, hauppauge_hvr930c_init);
509 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
510 msleep(10);
511 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
512 msleep(10);
513
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300514 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300515
516 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300517 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300518 em28xx_gpio_set(dev, hauppauge_hvr930c_end);
519
520 msleep(100);
521
522 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
523 msleep(30);
524
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300525 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
526 msleep(10);
527
528}
529
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300530static void terratec_h5_init(struct em28xx *dev)
531{
532 int i;
533 struct em28xx_reg_seq terratec_h5_init[] = {
Frank Schaeferc074fc42013-06-03 14:12:03 -0300534 {EM2820_R08_GPIO_CTRL, 0xff, 0xff, 10},
Frank Schaefer907d1092013-06-03 14:12:02 -0300535 {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100},
536 {EM2874_R80_GPIO_P0_CTRL, 0xf2, 0xff, 50},
537 {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300538 { -1, -1, -1, -1},
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300539 };
540 struct em28xx_reg_seq terratec_h5_end[] = {
Frank Schaefer907d1092013-06-03 14:12:02 -0300541 {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 100},
542 {EM2874_R80_GPIO_P0_CTRL, 0xa6, 0xff, 50},
543 {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 100},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300544 { -1, -1, -1, -1},
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300545 };
546 struct {
547 unsigned char r[4];
548 int len;
549 } regs[] = {
550 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
551 {{ 0x01, 0x02 }, 2},
552 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
553 {{ 0x01, 0x00 }, 2},
554 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
555 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
556 {{ 0x01, 0x00 }, 2},
557 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
558 {{ 0x04, 0x00 }, 2},
559 {{ 0x00, 0x04 }, 2},
560 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
561 {{ 0x04, 0x14 }, 2},
562 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
563 };
564
565 em28xx_gpio_set(dev, terratec_h5_init);
566 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
567 msleep(10);
568 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
569 msleep(10);
570
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300571 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300572
573 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300574 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300575 em28xx_gpio_set(dev, terratec_h5_end);
576};
577
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300578static void terratec_htc_stick_init(struct em28xx *dev)
579{
580 int i;
581
582 /*
583 * GPIO configuration:
584 * 0xff: unknown (does not affect DVB-T).
585 * 0xf6: DRX-K (demodulator).
586 * 0xe6: unknown (does not affect DVB-T).
587 * 0xb6: unknown (does not affect DVB-T).
588 */
589 struct em28xx_reg_seq terratec_htc_stick_init[] = {
Frank Schaeferc074fc42013-06-03 14:12:03 -0300590 {EM2820_R08_GPIO_CTRL, 0xff, 0xff, 10},
Frank Schaefer907d1092013-06-03 14:12:02 -0300591 {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100},
592 {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 50},
593 {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 100},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300594 { -1, -1, -1, -1},
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300595 };
596 struct em28xx_reg_seq terratec_htc_stick_end[] = {
Frank Schaefer907d1092013-06-03 14:12:02 -0300597 {EM2874_R80_GPIO_P0_CTRL, 0xb6, 0xff, 100},
598 {EM2874_R80_GPIO_P0_CTRL, 0xf6, 0xff, 50},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300599 { -1, -1, -1, -1},
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300600 };
601
Martin Blumenstingl89040132012-10-04 14:22:54 -0300602 /*
603 * Init the analog decoder (not yet supported), but
604 * it's probably still a good idea.
605 */
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300606 struct {
607 unsigned char r[4];
608 int len;
609 } regs[] = {
610 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
611 {{ 0x01, 0x02 }, 2},
612 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
613 {{ 0x01, 0x00 }, 2},
614 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
615 };
616
617 em28xx_gpio_set(dev, terratec_htc_stick_init);
618
619 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
620 msleep(10);
621 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
622 msleep(10);
623
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300624 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300625
626 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300627 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300628
629 em28xx_gpio_set(dev, terratec_htc_stick_end);
630};
631
Martin Blumenstingl89040132012-10-04 14:22:54 -0300632static void terratec_htc_usb_xs_init(struct em28xx *dev)
633{
634 int i;
635
636 struct em28xx_reg_seq terratec_htc_usb_xs_init[] = {
Frank Schaeferc074fc42013-06-03 14:12:03 -0300637 {EM2820_R08_GPIO_CTRL, 0xff, 0xff, 10},
Frank Schaefer907d1092013-06-03 14:12:02 -0300638 {EM2874_R80_GPIO_P0_CTRL, 0xb2, 0xff, 100},
639 {EM2874_R80_GPIO_P0_CTRL, 0xb2, 0xff, 50},
640 {EM2874_R80_GPIO_P0_CTRL, 0xb6, 0xff, 100},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300641 { -1, -1, -1, -1},
Martin Blumenstingl89040132012-10-04 14:22:54 -0300642 };
643 struct em28xx_reg_seq terratec_htc_usb_xs_end[] = {
Frank Schaefer907d1092013-06-03 14:12:02 -0300644 {EM2874_R80_GPIO_P0_CTRL, 0xa6, 0xff, 100},
645 {EM2874_R80_GPIO_P0_CTRL, 0xa6, 0xff, 50},
646 {EM2874_R80_GPIO_P0_CTRL, 0xe6, 0xff, 100},
Frank Schaeferb68cafc2013-10-10 14:36:30 -0300647 { -1, -1, -1, -1},
Martin Blumenstingl89040132012-10-04 14:22:54 -0300648 };
649
650 /*
651 * Init the analog decoder (not yet supported), but
652 * it's probably still a good idea.
653 */
654 struct {
655 unsigned char r[4];
656 int len;
657 } regs[] = {
658 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
659 {{ 0x01, 0x02 }, 2},
660 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
661 {{ 0x01, 0x00 }, 2},
662 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
663 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
664 {{ 0x01, 0x00 }, 2},
665 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
666 {{ 0x04, 0x00 }, 2},
667 {{ 0x00, 0x04 }, 2},
668 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
669 {{ 0x04, 0x14 }, 2},
670 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
671 };
672
673 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
674
675 em28xx_gpio_set(dev, terratec_htc_usb_xs_init);
676
677 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
678 msleep(10);
679 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
680 msleep(10);
681
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300682 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
Martin Blumenstingl89040132012-10-04 14:22:54 -0300683
684 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300685 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Martin Blumenstingl89040132012-10-04 14:22:54 -0300686
687 em28xx_gpio_set(dev, terratec_htc_usb_xs_end);
688};
689
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300690static void pctv_520e_init(struct em28xx *dev)
691{
692 /*
Antti Palosaari26c8a722012-05-17 18:22:02 -0300693 * Init AVF4910B analog decoder. Looks like I2C traffic to
694 * digital demodulator and tuner are routed via AVF4910B.
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300695 */
696 int i;
697 struct {
698 unsigned char r[4];
699 int len;
700 } regs[] = {
701 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
702 {{ 0x01, 0x02 }, 2},
703 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
704 {{ 0x01, 0x00 }, 2},
705 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
706 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
707 {{ 0x01, 0x00 }, 2},
708 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
709 };
710
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300711 dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; /* 0x41 */
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300712
713 for (i = 0; i < ARRAY_SIZE(regs); i++)
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300714 i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300715};
716
Antti Palosaari33eebec2012-10-03 04:28:56 -0300717static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe)
Antti Palosaari13a53362012-07-19 22:28:56 -0300718{
Antti Palosaari33eebec2012-10-03 04:28:56 -0300719 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
Antti Palosaari3ec40dc2014-03-11 06:53:16 -0300720 struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv;
721 struct em28xx *dev = i2c_bus->dev;
Antti Palosaari13a53362012-07-19 22:28:56 -0300722#ifdef CONFIG_GPIOLIB
723 struct em28xx_dvb *dvb = dev->dvb;
724 int ret;
725 unsigned long flags;
726
Antti Palosaari33eebec2012-10-03 04:28:56 -0300727 if (c->lna == 1)
728 flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */
Antti Palosaari13a53362012-07-19 22:28:56 -0300729 else
Antti Palosaari33eebec2012-10-03 04:28:56 -0300730 flags = GPIOF_OUT_INIT_LOW; /* disable LNA */
Antti Palosaari13a53362012-07-19 22:28:56 -0300731
732 ret = gpio_request_one(dvb->lna_gpio, flags, NULL);
733 if (ret)
734 em28xx_errdev("gpio request failed %d\n", ret);
735 else
736 gpio_free(dvb->lna_gpio);
737
738 return ret;
739#else
Antti Palosaari33eebec2012-10-03 04:28:56 -0300740 dev_warn(&dev->udev->dev, "%s: LNA control is disabled (lna=%u)\n",
741 KBUILD_MODNAME, c->lna);
Antti Palosaari13a53362012-07-19 22:28:56 -0300742 return 0;
743#endif
744}
745
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300746static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300747{
748 /* Values extracted from a USB trace of the Terratec Windows driver */
749 static u8 clock_config[] = { CLOCK_CTL, 0x38, 0x2c };
750 static u8 reset[] = { RESET, 0x80 };
751 static u8 adc_ctl_1_cfg[] = { ADC_CTL_1, 0x40 };
752 static u8 agc_cfg[] = { AGC_TARGET, 0x28, 0xa0 };
753 static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 };
754 static u8 rs_err_cfg[] = { RS_ERR_PER_1, 0x00, 0x4d };
755 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
756 static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 };
757 static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 };
Devin Heitmuellerff697862009-07-12 18:44:19 -0300758 static u8 tuner_go[] = { TUNER_GO, 0x01};
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300759
760 mt352_write(fe, clock_config, sizeof(clock_config));
761 udelay(200);
762 mt352_write(fe, reset, sizeof(reset));
763 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
764 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
765 mt352_write(fe, input_freq_cfg, sizeof(input_freq_cfg));
766 mt352_write(fe, rs_err_cfg, sizeof(rs_err_cfg));
767 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
768 mt352_write(fe, trl_nom_cfg, sizeof(trl_nom_cfg));
769 mt352_write(fe, tps_given_cfg, sizeof(tps_given_cfg));
770 mt352_write(fe, tuner_go, sizeof(tuner_go));
771 return 0;
772}
773
774static struct mt352_config terratec_xs_mt352_cfg = {
775 .demod_address = (0x1e >> 1),
776 .no_tuner = 1,
777 .if2 = 45600,
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300778 .demod_init = em28xx_mt352_terratec_xs_init,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300779};
780
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300781static struct tda10023_config em28xx_tda10023_config = {
782 .demod_address = 0x0c,
783 .invert = 1,
784};
785
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300786static struct cxd2820r_config em28xx_cxd2820r_config = {
787 .i2c_address = (0xd8 >> 1),
788 .ts_mode = CXD2820R_TS_SERIAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300789};
790
791static struct tda18271_config em28xx_cxd2820r_tda18271_config = {
792 .output_opt = TDA18271_OUTPUT_LT_OFF,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300793 .gate = TDA18271_GATE_DIGITAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300794};
795
Antti Palosaari36588712011-08-01 01:15:30 -0300796static const struct tda10071_config em28xx_tda10071_config = {
Michael Krufky41f55d52012-12-16 19:37:11 -0300797 .demod_i2c_addr = 0x55, /* (0xaa >> 1) */
798 .tuner_i2c_addr = 0x14,
Antti Palosaari36588712011-08-01 01:15:30 -0300799 .i2c_wr_max = 64,
800 .ts_mode = TDA10071_TS_SERIAL,
801 .spec_inv = 0,
802 .xtal = 40444000, /* 40.444 MHz */
803 .pll_multiplier = 20,
804};
805
806static const struct a8293_config em28xx_a8293_config = {
807 .i2c_addr = 0x08, /* (0x10 >> 1) */
808};
809
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300810static struct zl10353_config em28xx_zl10353_no_i2c_gate_dev = {
811 .demod_address = (0x1e >> 1),
812 .disable_i2c_gate_ctrl = 1,
813 .no_tuner = 1,
814 .parallel_ts = 1,
815};
816static struct qt1010_config em28xx_qt1010_config = {
817 .i2c_address = 0x62
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300818};
819
Mauro Carvalho Chehab4159d012013-02-28 10:35:56 -0300820static const struct mb86a20s_config c3tech_duo_mb86a20s_config = {
821 .demod_address = 0x10,
822 .is_serial = true,
823};
824
825static struct tda18271_std_map mb86a20s_tda18271_config = {
826 .dvbt_6 = { .if_freq = 4000, .agc_mode = 3, .std = 4,
827 .if_lvl = 1, .rfagc_top = 0x37, },
828};
829
830static struct tda18271_config c3tech_duo_tda18271_config = {
831 .std_map = &mb86a20s_tda18271_config,
832 .gate = TDA18271_GATE_DIGITAL,
833 .small_i2c = TDA18271_03_BYTE_CHUNK_INIT,
834};
835
Antti Palosaariec573362013-02-25 09:01:13 -0300836static const struct m88ds3103_config pctv_461e_m88ds3103_config = {
837 .i2c_addr = 0x68,
838 .clock = 27000000,
839 .i2c_wr_max = 33,
840 .clock_out = 0,
841 .ts_mode = M88DS3103_TS_PARALLEL_16,
842 .agc = 0x99,
843};
844
Devin Heitmueller38b2df92012-08-13 21:18:02 -0300845
846static struct tda18271_std_map drx_j_std_map = {
847 .atsc_6 = { .if_freq = 5000, .agc_mode = 3, .std = 0, .if_lvl = 1,
848 .rfagc_top = 0x37, },
849 .qam_6 = { .if_freq = 5380, .agc_mode = 3, .std = 3, .if_lvl = 1,
850 .rfagc_top = 0x37, },
851};
852
853static struct tda18271_config pinnacle_80e_dvb_config = {
854 .std_map = &drx_j_std_map,
855 .gate = TDA18271_GATE_DIGITAL,
856 .role = TDA18271_MASTER,
857};
858
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300859/* ------------------------------------------------------------------ */
860
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300861static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300862{
863 struct dvb_frontend *fe;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300864 struct xc2028_config cfg;
Mauro Carvalho Chehabee972072014-01-12 11:08:22 -0300865 struct xc2028_ctrl ctl;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300866
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300867 memset(&cfg, 0, sizeof(cfg));
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -0300868 cfg.i2c_adap = &dev->i2c_adap[dev->def_i2c_bus];
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300869 cfg.i2c_addr = addr;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300870
Mauro Carvalho Chehabee972072014-01-12 11:08:22 -0300871 memset(&ctl, 0, sizeof(ctl));
872 em28xx_setup_xc3028(dev, &ctl);
873 cfg.ctrl = &ctl;
874
Antti Palosaarif71095b2011-04-07 15:51:52 -0300875 if (!dev->dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -0300876 em28xx_errdev("/2: dvb frontend not attached. "
877 "Can't attach xc3028\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300878 return -EINVAL;
879 }
880
Antti Palosaarif71095b2011-04-07 15:51:52 -0300881 fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300882 if (!fe) {
Filipe Rosset480be182009-11-04 15:32:37 -0300883 em28xx_errdev("/2: xc3028 attach failed\n");
Antti Palosaarif71095b2011-04-07 15:51:52 -0300884 dvb_frontend_detach(dev->dvb->fe[0]);
885 dev->dvb->fe[0] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300886 return -EINVAL;
887 }
888
Filipe Rosset480be182009-11-04 15:32:37 -0300889 em28xx_info("%s/2: xc3028 attached\n", dev->name);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300890
891 return 0;
892}
893
Aidan Thornton3421b772008-04-17 21:40:36 -0300894/* ------------------------------------------------------------------ */
895
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300896static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
897 struct em28xx *dev, struct device *device)
Aidan Thornton3421b772008-04-17 21:40:36 -0300898{
899 int result;
900
901 mutex_init(&dvb->lock);
902
903 /* register adapter */
904 result = dvb_register_adapter(&dvb->adapter, dev->name, module, device,
905 adapter_nr);
906 if (result < 0) {
907 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
908 dev->name, result);
909 goto fail_adapter;
910 }
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300911
912 /* Ensure all frontends negotiate bus access */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300913 dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
914 if (dvb->fe[1])
915 dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300916
Hans Verkuil3de09fb2013-04-08 16:25:04 -0300917 dvb->adapter.priv = &dev->i2c_bus[dev->def_i2c_bus];
Aidan Thornton3421b772008-04-17 21:40:36 -0300918
919 /* register frontend */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300920 result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300921 if (result < 0) {
922 printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
923 dev->name, result);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300924 goto fail_frontend0;
925 }
926
927 /* register 2nd frontend */
928 if (dvb->fe[1]) {
929 result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
930 if (result < 0) {
931 printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n",
932 dev->name, result);
933 goto fail_frontend1;
934 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300935 }
936
937 /* register demux stuff */
938 dvb->demux.dmx.capabilities =
939 DMX_TS_FILTERING | DMX_SECTION_FILTERING |
940 DMX_MEMORY_BASED_FILTERING;
941 dvb->demux.priv = dvb;
942 dvb->demux.filternum = 256;
943 dvb->demux.feednum = 256;
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300944 dvb->demux.start_feed = em28xx_start_feed;
945 dvb->demux.stop_feed = em28xx_stop_feed;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300946
Aidan Thornton3421b772008-04-17 21:40:36 -0300947 result = dvb_dmx_init(&dvb->demux);
948 if (result < 0) {
949 printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
950 dev->name, result);
951 goto fail_dmx;
952 }
953
954 dvb->dmxdev.filternum = 256;
955 dvb->dmxdev.demux = &dvb->demux.dmx;
956 dvb->dmxdev.capabilities = 0;
957 result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter);
958 if (result < 0) {
959 printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
960 dev->name, result);
961 goto fail_dmxdev;
962 }
963
964 dvb->fe_hw.source = DMX_FRONTEND_0;
965 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
966 if (result < 0) {
967 printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
968 dev->name, result);
969 goto fail_fe_hw;
970 }
971
972 dvb->fe_mem.source = DMX_MEMORY_FE;
973 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
974 if (result < 0) {
975 printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
976 dev->name, result);
977 goto fail_fe_mem;
978 }
979
980 result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
981 if (result < 0) {
982 printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
983 dev->name, result);
984 goto fail_fe_conn;
985 }
986
987 /* register network adapter */
988 dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx);
989 return 0;
990
991fail_fe_conn:
992 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
993fail_fe_mem:
994 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
995fail_fe_hw:
996 dvb_dmxdev_release(&dvb->dmxdev);
997fail_dmxdev:
998 dvb_dmx_release(&dvb->demux);
999fail_dmx:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001000 if (dvb->fe[1])
1001 dvb_unregister_frontend(dvb->fe[1]);
1002 dvb_unregister_frontend(dvb->fe[0]);
1003fail_frontend1:
1004 if (dvb->fe[1])
1005 dvb_frontend_detach(dvb->fe[1]);
1006fail_frontend0:
1007 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -03001008 dvb_unregister_adapter(&dvb->adapter);
1009fail_adapter:
1010 return result;
1011}
1012
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001013static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
Aidan Thornton3421b772008-04-17 21:40:36 -03001014{
1015 dvb_net_release(&dvb->net);
1016 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
1017 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
1018 dvb_dmxdev_release(&dvb->dmxdev);
1019 dvb_dmx_release(&dvb->demux);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001020 if (dvb->fe[1])
1021 dvb_unregister_frontend(dvb->fe[1]);
1022 dvb_unregister_frontend(dvb->fe[0]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001023 if (dvb->fe[1] && !dvb->dont_attach_fe1)
Antti Palosaarif71095b2011-04-07 15:51:52 -03001024 dvb_frontend_detach(dvb->fe[1]);
1025 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -03001026 dvb_unregister_adapter(&dvb->adapter);
1027}
1028
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001029static int em28xx_dvb_init(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001030{
Antti Palosaari13a53362012-07-19 22:28:56 -03001031 int result = 0, mfe_shared = 0;
Aidan Thornton3421b772008-04-17 21:40:36 -03001032 struct em28xx_dvb *dvb;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001033
Mauro Carvalho Chehab822b8de2014-01-06 05:27:47 -03001034 if (dev->is_audio_only) {
1035 /* Shouldn't initialize IR for this interface */
1036 return 0;
1037 }
1038
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001039 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -03001040 /* This device does not support the extension */
1041 return 0;
1042 }
1043
Mauro Carvalho Chehab96346142013-12-26 12:41:03 -03001044 em28xx_info("Binding DVB extension\n");
1045
Aidan Thornton3421b772008-04-17 21:40:36 -03001046 dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001047 if (dvb == NULL) {
Filipe Rosset480be182009-11-04 15:32:37 -03001048 em28xx_info("em28xx_dvb: memory allocation failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -03001049 return -ENOMEM;
1050 }
1051 dev->dvb = dvb;
Antti Palosaarif71095b2011-04-07 15:51:52 -03001052 dvb->fe[0] = dvb->fe[1] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001053
Frank Schaefer27ba0da2014-01-12 13:24:19 -03001054 /* pre-allocate DVB usb transfer buffers */
1055 if (dev->dvb_xfer_bulk) {
1056 result = em28xx_alloc_urbs(dev, EM28XX_DIGITAL_MODE,
1057 dev->dvb_xfer_bulk,
1058 EM28XX_DVB_NUM_BUFS,
1059 512,
1060 EM28XX_DVB_BULK_PACKET_MULTIPLIER);
1061 } else {
1062 result = em28xx_alloc_urbs(dev, EM28XX_DIGITAL_MODE,
1063 dev->dvb_xfer_bulk,
1064 EM28XX_DVB_NUM_BUFS,
1065 dev->dvb_max_pkt_size_isoc,
1066 EM28XX_DVB_NUM_ISOC_PACKETS);
1067 }
1068 if (result) {
1069 em28xx_errdev("em28xx_dvb: failed to pre-allocate USB transfer buffers for DVB.\n");
1070 kfree(dvb);
1071 dev->dvb = NULL;
1072 return result;
1073 }
1074
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001075 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -03001076 em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001077 /* init frontend */
1078 switch (dev->model) {
Mauro Carvalho Chehabebaefdb2011-06-01 10:16:25 -03001079 case EM2874_BOARD_LEADERSHIP_ISDBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001080 dvb->fe[0] = dvb_attach(s921_attach,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001081 &sharp_isdbt, &dev->i2c_adap[dev->def_i2c_bus]);
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -03001082
Antti Palosaarif71095b2011-04-07 15:51:52 -03001083 if (!dvb->fe[0]) {
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -03001084 result = -EINVAL;
1085 goto out_free;
1086 }
1087
1088 break;
Douglas Schilling Landgraff89bc322008-12-01 21:01:04 -03001089 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
Mauro Carvalho Chehab10ac6602008-07-27 14:58:58 -03001090 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
Devin Heitmueller4fd305b2008-06-04 13:43:46 -03001091 case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
Devin Heitmuellere14b3652008-07-26 11:04:33 -03001092 case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001093 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -03001094 &em2880_lgdt3303_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001095 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001096 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -03001097 result = -EINVAL;
1098 goto out_free;
1099 }
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -03001100 break;
Thierry MERLE46510b52008-10-11 16:56:13 -03001101 case EM2880_BOARD_KWORLD_DVB_310U:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001102 dvb->fe[0] = dvb_attach(zl10353_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -03001103 &em28xx_zl10353_with_xc3028,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001104 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001105 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -03001106 result = -EINVAL;
1107 goto out_free;
1108 }
Aidan Thornton7e6388a2008-04-17 21:40:03 -03001109 break;
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001110 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
Uroš Vamplec994d02009-09-30 22:53:37 -03001111 case EM2882_BOARD_TERRATEC_HYBRID_XS:
Devin Heitmueller01a5fd62009-08-07 09:25:06 -03001112 case EM2880_BOARD_EMPIRE_DUAL_TV:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001113 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001114 &em28xx_zl10353_xc3028_no_i2c_gate,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001115 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001116 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001117 result = -EINVAL;
1118 goto out_free;
1119 }
1120 break;
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001121 case EM2880_BOARD_TERRATEC_HYBRID_XS:
Catimimi65638012010-02-18 18:06:32 -03001122 case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
Devin Heitmuellerd5b3ba92009-07-08 21:51:35 -03001123 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
Andrea.Amorosi76@gmail.com7ca7ef62010-02-09 17:53:38 -03001124 case EM2882_BOARD_DIKOM_DK300:
Antonio Larrosa811fab62010-03-04 22:19:48 -03001125 case EM2882_BOARD_KWORLD_VS_DVBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001126 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -03001127 &em28xx_zl10353_xc3028_no_i2c_gate,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001128 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001129 if (dvb->fe[0] == NULL) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001130 /* This board could have either a zl10353 or a mt352.
1131 If the chip id isn't for zl10353, try mt352 */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001132 dvb->fe[0] = dvb_attach(mt352_attach,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -03001133 &terratec_xs_mt352_cfg,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001134 &dev->i2c_adap[dev->def_i2c_bus]);
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001135 }
Devin Heitmueller4fb202a2009-07-12 17:51:12 -03001136
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001137 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -03001138 result = -EINVAL;
1139 goto out_free;
1140 }
1141 break;
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001142 case EM2870_BOARD_KWORLD_355U:
1143 dvb->fe[0] = dvb_attach(zl10353_attach,
1144 &em28xx_zl10353_no_i2c_gate_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001145 &dev->i2c_adap[dev->def_i2c_bus]);
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001146 if (dvb->fe[0] != NULL)
1147 dvb_attach(qt1010_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001148 &dev->i2c_adap[dev->def_i2c_bus], &em28xx_qt1010_config);
Aivar Päkk1985f6f2011-12-11 18:15:00 -03001149 break;
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001150 case EM2883_BOARD_KWORLD_HYBRID_330U:
Devin Heitmueller19859222009-06-19 00:33:54 -03001151 case EM2882_BOARD_EVGA_INDTUBE:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001152 dvb->fe[0] = dvb_attach(s5h1409_attach,
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001153 &em28xx_s5h1409_with_xc3028,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001154 &dev->i2c_adap[dev->def_i2c_bus]);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001155 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Robert Krakora6e7b9ea2009-01-18 21:59:34 -03001156 result = -EINVAL;
1157 goto out_free;
1158 }
1159 break;
Franklin Mengd7de5d82009-06-06 17:05:02 -03001160 case EM2882_BOARD_KWORLD_ATSC_315U:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001161 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Franklin Mengd7de5d82009-06-06 17:05:02 -03001162 &em2880_lgdt3303_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001163 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001164 if (dvb->fe[0] != NULL) {
1165 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001166 &dev->i2c_adap[dev->def_i2c_bus], 0x61, TUNER_THOMSON_DTT761X)) {
Franklin Mengd7de5d82009-06-06 17:05:02 -03001167 result = -EINVAL;
1168 goto out_free;
1169 }
1170 }
1171 break;
Devin Heitmueller17d9d552008-06-08 10:22:03 -03001172 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
Devin Heitmuellerad9b4bb2011-03-13 02:09:59 -03001173 case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001174 dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001175 &dev->i2c_adap[dev->def_i2c_bus], &dev->udev->dev);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001176 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmueller17d9d552008-06-08 10:22:03 -03001177 result = -EINVAL;
1178 goto out_free;
1179 }
1180 break;
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001181 case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
1182 /* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001183 dvb->fe[0] = dvb_attach(tda10023_attach,
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001184 &em28xx_tda10023_config,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001185 &dev->i2c_adap[dev->def_i2c_bus], 0x48);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001186 if (dvb->fe[0]) {
1187 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001188 &dev->i2c_adap[dev->def_i2c_bus], 0x60, TUNER_PHILIPS_CU1216L)) {
Antti Palosaari285eb1a2009-09-15 14:42:13 -03001189 result = -EINVAL;
1190 goto out_free;
1191 }
1192 }
1193 break;
Jarod Wilson7e48b302010-03-07 17:55:43 -03001194 case EM2870_BOARD_KWORLD_A340:
Antti Palosaarif71095b2011-04-07 15:51:52 -03001195 dvb->fe[0] = dvb_attach(lgdt3305_attach,
Jarod Wilson7e48b302010-03-07 17:55:43 -03001196 &em2870_lgdt3304_dev,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001197 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaarif71095b2011-04-07 15:51:52 -03001198 if (dvb->fe[0] != NULL)
1199 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001200 &dev->i2c_adap[dev->def_i2c_bus], &kworld_a340_config);
Jarod Wilson7e48b302010-03-07 17:55:43 -03001201 break;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001202 case EM28174_BOARD_PCTV_290E:
Antti Palosaaria36a66d2012-08-16 21:07:23 -03001203 /* set default GPIO0 for LNA, used if GPIOLIB is undefined */
1204 dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O |
1205 CXD2820R_GPIO_L;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001206 dvb->fe[0] = dvb_attach(cxd2820r_attach,
Manu Abraham7e7b8282011-12-10 00:44:24 -03001207 &em28xx_cxd2820r_config,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001208 &dev->i2c_adap[dev->def_i2c_bus],
Antti Palosaari13a53362012-07-19 22:28:56 -03001209 &dvb->lna_gpio);
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001210 if (dvb->fe[0]) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001211 /* FE 0 attach tuner */
Manu Abraham7e7b8282011-12-10 00:44:24 -03001212 if (!dvb_attach(tda18271_attach,
1213 dvb->fe[0],
1214 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001215 &dev->i2c_adap[dev->def_i2c_bus],
Manu Abraham7e7b8282011-12-10 00:44:24 -03001216 &em28xx_cxd2820r_tda18271_config)) {
1217
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001218 dvb_frontend_detach(dvb->fe[0]);
1219 result = -EINVAL;
1220 goto out_free;
1221 }
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001222
Antti Palosaari13a53362012-07-19 22:28:56 -03001223#ifdef CONFIG_GPIOLIB
Antti Palosaari0c42a552012-09-19 20:52:21 -03001224 /* enable LNA for DVB-T, DVB-T2 and DVB-C */
1225 result = gpio_request_one(dvb->lna_gpio,
1226 GPIOF_OUT_INIT_LOW, NULL);
1227 if (result)
1228 em28xx_errdev("gpio request failed %d\n",
1229 result);
1230 else
1231 gpio_free(dvb->lna_gpio);
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001232
Antti Palosaari0c42a552012-09-19 20:52:21 -03001233 result = 0; /* continue even set LNA fails */
Antti Palosaari13a53362012-07-19 22:28:56 -03001234#endif
Antti Palosaari0c42a552012-09-19 20:52:21 -03001235 dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
1236 }
1237
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001238 break;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001239 case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001240 {
1241 struct xc5000_config cfg;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001242 hauppauge_hvr930c_init(dev);
1243
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001244 dvb->fe[0] = dvb_attach(drxk_attach,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001245 &hauppauge_930c_drxk, &dev->i2c_adap[dev->def_i2c_bus]);
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001246 if (!dvb->fe[0]) {
1247 result = -EINVAL;
1248 goto out_free;
1249 }
1250 /* FIXME: do we need a pll semaphore? */
1251 dvb->fe[0]->sec_priv = dvb;
1252 sema_init(&dvb->pll_mutex, 1);
1253 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1254 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001255
1256 /* Attach xc5000 */
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001257 memset(&cfg, 0, sizeof(cfg));
1258 cfg.i2c_address = 0x61;
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001259 cfg.if_khz = 4000;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001260
1261 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1262 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001263 if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus],
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001264 &cfg)) {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001265 result = -EINVAL;
1266 goto out_free;
1267 }
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001268 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1269 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1270
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001271 break;
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001272 }
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001273 case EM2884_BOARD_TERRATEC_H5:
1274 terratec_h5_init(dev);
1275
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001276 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 -03001277 if (!dvb->fe[0]) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001278 result = -EINVAL;
1279 goto out_free;
1280 }
1281 /* FIXME: do we need a pll semaphore? */
1282 dvb->fe[0]->sec_priv = dvb;
1283 sema_init(&dvb->pll_mutex, 1);
1284 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1285 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001286
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001287 /* Attach tda18271 to DVB-C frontend */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001288 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1289 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001290 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus], 0x60)) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001291 result = -EINVAL;
1292 goto out_free;
1293 }
1294 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1295 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001296
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001297 break;
Mauro Carvalho Chehab4159d012013-02-28 10:35:56 -03001298 case EM2884_BOARD_C3TECH_DIGITAL_DUO:
1299 dvb->fe[0] = dvb_attach(mb86a20s_attach,
1300 &c3tech_duo_mb86a20s_config,
1301 &dev->i2c_adap[dev->def_i2c_bus]);
1302 if (dvb->fe[0] != NULL)
1303 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1304 &dev->i2c_adap[dev->def_i2c_bus],
1305 &c3tech_duo_tda18271_config);
1306 break;
Antti Palosaari36588712011-08-01 01:15:30 -03001307 case EM28174_BOARD_PCTV_460E:
1308 /* attach demod */
1309 dvb->fe[0] = dvb_attach(tda10071_attach,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001310 &em28xx_tda10071_config, &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaari36588712011-08-01 01:15:30 -03001311
1312 /* attach SEC */
1313 if (dvb->fe[0])
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001314 dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus],
Antti Palosaari36588712011-08-01 01:15:30 -03001315 &em28xx_a8293_config);
1316 break;
Jakob Haufe7c1dfdb2013-04-13 11:03:37 -03001317 case EM2874_BOARD_DELOCK_61959:
Antti Palosaari35530852012-03-18 18:09:01 -03001318 case EM2874_BOARD_MAXMEDIA_UB425_TC:
1319 /* attach demodulator */
1320 dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001321 &dev->i2c_adap[dev->def_i2c_bus]);
Antti Palosaari35530852012-03-18 18:09:01 -03001322
1323 if (dvb->fe[0]) {
1324 /* disable I2C-gate */
1325 dvb->fe[0]->ops.i2c_gate_ctrl = NULL;
1326
1327 /* attach tuner */
Antti Palosaarib6c7abb2013-10-04 15:17:51 -03001328 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1329 &dev->i2c_adap[dev->def_i2c_bus],
1330 &em28xx_cxd2820r_tda18271_config)) {
Antti Palosaari35530852012-03-18 18:09:01 -03001331 dvb_frontend_detach(dvb->fe[0]);
1332 result = -EINVAL;
1333 goto out_free;
1334 }
1335 }
Antti Palosaari35530852012-03-18 18:09:01 -03001336 break;
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001337 case EM2884_BOARD_PCTV_510E:
1338 case EM2884_BOARD_PCTV_520E:
1339 pctv_520e_init(dev);
1340
1341 /* attach demodulator */
1342 dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001343 &dev->i2c_adap[dev->def_i2c_bus]);
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001344
1345 if (dvb->fe[0]) {
1346 /* attach tuner */
1347 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001348 &dev->i2c_adap[dev->def_i2c_bus],
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001349 &em28xx_cxd2820r_tda18271_config)) {
1350 dvb_frontend_detach(dvb->fe[0]);
1351 result = -EINVAL;
1352 goto out_free;
1353 }
1354 }
1355 break;
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001356 case EM2884_BOARD_CINERGY_HTC_STICK:
1357 terratec_htc_stick_init(dev);
1358
1359 /* attach demodulator */
1360 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001361 &dev->i2c_adap[dev->def_i2c_bus]);
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001362 if (!dvb->fe[0]) {
1363 result = -EINVAL;
1364 goto out_free;
1365 }
1366
1367 /* Attach the demodulator. */
1368 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001369 &dev->i2c_adap[dev->def_i2c_bus],
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001370 &em28xx_cxd2820r_tda18271_config)) {
1371 result = -EINVAL;
1372 goto out_free;
1373 }
1374 break;
Martin Blumenstingl89040132012-10-04 14:22:54 -03001375 case EM2884_BOARD_TERRATEC_HTC_USB_XS:
1376 terratec_htc_usb_xs_init(dev);
1377
1378 /* attach demodulator */
1379 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001380 &dev->i2c_adap[dev->def_i2c_bus]);
Martin Blumenstingl89040132012-10-04 14:22:54 -03001381 if (!dvb->fe[0]) {
1382 result = -EINVAL;
1383 goto out_free;
1384 }
1385
1386 /* Attach the demodulator. */
1387 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Mauro Carvalho Chehabc7a45e52013-03-05 06:55:26 -03001388 &dev->i2c_adap[dev->def_i2c_bus],
Martin Blumenstingl89040132012-10-04 14:22:54 -03001389 &em28xx_cxd2820r_tda18271_config)) {
1390 result = -EINVAL;
1391 goto out_free;
1392 }
1393 break;
Jean-Francois Thibert6dbea9f2013-10-09 11:18:05 -03001394 case EM2874_BOARD_KWORLD_UB435Q_V2:
1395 dvb->fe[0] = dvb_attach(lgdt3305_attach,
1396 &em2874_lgdt3305_dev,
1397 &dev->i2c_adap[dev->def_i2c_bus]);
1398 if (!dvb->fe[0]) {
1399 result = -EINVAL;
1400 goto out_free;
1401 }
1402
1403 /* Attach the demodulator. */
1404 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1405 &dev->i2c_adap[dev->def_i2c_bus],
1406 &kworld_ub435q_v2_config)) {
1407 result = -EINVAL;
1408 goto out_free;
1409 }
1410 break;
Mauro Carvalho Chehab02bc1f52014-03-03 16:28:39 -03001411 case EM2874_BOARD_KWORLD_UB435Q_V3:
1412 dvb->fe[0] = dvb_attach(lgdt3305_attach,
1413 &em2874_lgdt3305_nogate_dev,
1414 &dev->i2c_adap[dev->def_i2c_bus]);
1415 if (!dvb->fe[0]) {
1416 result = -EINVAL;
1417 goto out_free;
1418 }
1419
1420 /* Attach the demodulator. */
1421 if (!dvb_attach(tda18212_attach, dvb->fe[0],
1422 &dev->i2c_adap[dev->def_i2c_bus],
1423 &kworld_ub435q_v3_config)) {
1424 result = -EINVAL;
1425 goto out_free;
1426 }
1427 break;
Devin Heitmueller38b2df92012-08-13 21:18:02 -03001428 case EM2874_BOARD_PCTV_HD_MINI_80E:
1429 dvb->fe[0] = dvb_attach(drx39xxj_attach, &dev->i2c_adap[dev->def_i2c_bus]);
1430 if (dvb->fe[0] != NULL) {
1431 dvb->fe[0] = dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1432 &dev->i2c_adap[dev->def_i2c_bus],
1433 &pinnacle_80e_dvb_config);
1434 if (!dvb->fe[0]) {
1435 result = -EINVAL;
1436 goto out_free;
1437 }
1438 }
1439 break;
Antti Palosaariec573362013-02-25 09:01:13 -03001440 case EM28178_BOARD_PCTV_461E:
1441 {
1442 /* demod I2C adapter */
1443 struct i2c_adapter *i2c_adapter;
Antti Palosaari425f53a2014-02-12 14:46:44 -03001444 struct i2c_client *client;
Antti Palosaarieafa2ad2013-12-02 18:38:41 -03001445 struct i2c_board_info info;
1446 struct m88ts2022_config m88ts2022_config = {
1447 .clock = 27000000,
1448 };
1449 memset(&info, 0, sizeof(struct i2c_board_info));
Antti Palosaariec573362013-02-25 09:01:13 -03001450
1451 /* attach demod */
1452 dvb->fe[0] = dvb_attach(m88ds3103_attach,
1453 &pctv_461e_m88ds3103_config,
1454 &dev->i2c_adap[dev->def_i2c_bus],
1455 &i2c_adapter);
1456 if (dvb->fe[0] == NULL) {
1457 result = -ENODEV;
1458 goto out_free;
1459 }
1460
1461 /* attach tuner */
Antti Palosaarieafa2ad2013-12-02 18:38:41 -03001462 m88ts2022_config.fe = dvb->fe[0];
1463 strlcpy(info.type, "m88ts2022", I2C_NAME_SIZE);
1464 info.addr = 0x60;
1465 info.platform_data = &m88ts2022_config;
1466 request_module("m88ts2022");
Antti Palosaari425f53a2014-02-12 14:46:44 -03001467 client = i2c_new_device(i2c_adapter, &info);
1468 if (client == NULL || client->dev.driver == NULL) {
1469 dvb_frontend_detach(dvb->fe[0]);
1470 result = -ENODEV;
1471 goto out_free;
1472 }
1473
1474 if (!try_module_get(client->dev.driver->owner)) {
1475 i2c_unregister_device(client);
1476 dvb_frontend_detach(dvb->fe[0]);
1477 result = -ENODEV;
1478 goto out_free;
1479 }
Antti Palosaariec573362013-02-25 09:01:13 -03001480
1481 /* delegate signal strength measurement to tuner */
1482 dvb->fe[0]->ops.read_signal_strength =
1483 dvb->fe[0]->ops.tuner_ops.get_rf_strength;
1484
1485 /* attach SEC */
1486 if (!dvb_attach(a8293_attach, dvb->fe[0],
1487 &dev->i2c_adap[dev->def_i2c_bus],
1488 &em28xx_a8293_config)) {
Antti Palosaari425f53a2014-02-12 14:46:44 -03001489 module_put(client->dev.driver->owner);
1490 i2c_unregister_device(client);
Antti Palosaariec573362013-02-25 09:01:13 -03001491 dvb_frontend_detach(dvb->fe[0]);
1492 result = -ENODEV;
1493 goto out_free;
1494 }
Antti Palosaari425f53a2014-02-12 14:46:44 -03001495
1496 dvb->i2c_client_tuner = client;
Antti Palosaariec573362013-02-25 09:01:13 -03001497 }
1498 break;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001499 default:
Filipe Rosset480be182009-11-04 15:32:37 -03001500 em28xx_errdev("/2: The frontend of your DVB/ATSC card"
1501 " isn't supported yet\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001502 break;
1503 }
Antti Palosaarif71095b2011-04-07 15:51:52 -03001504 if (NULL == dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -03001505 em28xx_errdev("/2: frontend initialization failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -03001506 result = -EINVAL;
1507 goto out_free;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001508 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001509 /* define general-purpose callback pointer */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001510 dvb->fe[0]->callback = em28xx_tuner_callback;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001511 if (dvb->fe[1])
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001512 dvb->fe[1]->callback = em28xx_tuner_callback;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001513
1514 /* register everything */
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001515 result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev);
Aidan Thornton3421b772008-04-17 21:40:36 -03001516
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001517 if (result < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -03001518 goto out_free;
Aidan Thornton3421b772008-04-17 21:40:36 -03001519
Antti Palosaarie3645432011-07-28 18:59:30 -03001520 /* MFE lock */
1521 dvb->adapter.mfe_shared = mfe_shared;
1522
Mauro Carvalho Chehab96346142013-12-26 12:41:03 -03001523 em28xx_info("DVB extension successfully initialized\n");
Mauro Carvalho Chehab47677e52014-03-05 11:21:07 -03001524
1525 kref_get(&dev->ref);
1526
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001527ret:
1528 em28xx_set_mode(dev, EM28XX_SUSPEND);
1529 mutex_unlock(&dev->lock);
1530 return result;
Aidan Thornton3421b772008-04-17 21:40:36 -03001531
1532out_free:
1533 kfree(dvb);
1534 dev->dvb = NULL;
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001535 goto ret;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001536}
1537
Chris Rankin0b8bd832011-08-20 16:01:26 -03001538static inline void prevent_sleep(struct dvb_frontend_ops *ops)
1539{
1540 ops->set_voltage = NULL;
1541 ops->sleep = NULL;
1542 ops->tuner_ops.sleep = NULL;
1543}
1544
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001545static int em28xx_dvb_fini(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001546{
Mauro Carvalho Chehabb45e34f2014-03-07 14:40:46 -03001547 struct em28xx_dvb *dvb;
1548 struct i2c_client *client;
1549
Mauro Carvalho Chehab822b8de2014-01-06 05:27:47 -03001550 if (dev->is_audio_only) {
1551 /* Shouldn't initialize IR for this interface */
1552 return 0;
1553 }
1554
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001555 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -03001556 /* This device does not support the extension */
1557 return 0;
1558 }
1559
Mauro Carvalho Chehabb45e34f2014-03-07 14:40:46 -03001560 if (!dev->dvb)
1561 return 0;
1562
Mauro Carvalho Chehabaa929ad2014-01-12 19:22:07 -03001563 em28xx_info("Closing DVB extension");
1564
Mauro Carvalho Chehabb45e34f2014-03-07 14:40:46 -03001565 dvb = dev->dvb;
1566 client = dvb->i2c_client_tuner;
Chris Rankin0b8bd832011-08-20 16:01:26 -03001567
Mauro Carvalho Chehabb45e34f2014-03-07 14:40:46 -03001568 em28xx_uninit_usb_xfer(dev, EM28XX_DIGITAL_MODE);
Frank Schaefer27ba0da2014-01-12 13:24:19 -03001569
Mauro Carvalho Chehabb45e34f2014-03-07 14:40:46 -03001570 if (dev->disconnected) {
1571 /* We cannot tell the device to sleep
1572 * once it has been unplugged. */
1573 if (dvb->fe[0])
1574 prevent_sleep(&dvb->fe[0]->ops);
1575 if (dvb->fe[1])
1576 prevent_sleep(&dvb->fe[1]->ops);
Aidan Thornton3421b772008-04-17 21:40:36 -03001577 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001578
Mauro Carvalho Chehabb45e34f2014-03-07 14:40:46 -03001579 /* remove I2C tuner */
1580 if (client) {
1581 module_put(client->dev.driver->owner);
1582 i2c_unregister_device(client);
1583 }
1584
1585 em28xx_unregister_dvb(dvb);
1586 kfree(dvb);
1587 dev->dvb = NULL;
1588 kref_put(&dev->ref, em28xx_free_device);
1589
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001590 return 0;
1591}
1592
Shuah Khanca2b46d2014-02-21 21:50:15 -03001593static int em28xx_dvb_suspend(struct em28xx *dev)
1594{
1595 int ret = 0;
1596
1597 if (dev->is_audio_only)
1598 return 0;
1599
1600 if (!dev->board.has_dvb)
1601 return 0;
1602
1603 em28xx_info("Suspending DVB extension");
1604 if (dev->dvb) {
1605 struct em28xx_dvb *dvb = dev->dvb;
1606
1607 if (dvb->fe[0]) {
1608 ret = dvb_frontend_suspend(dvb->fe[0]);
1609 em28xx_info("fe0 suspend %d", ret);
1610 }
1611 if (dvb->fe[1]) {
1612 dvb_frontend_suspend(dvb->fe[1]);
1613 em28xx_info("fe1 suspend %d", ret);
1614 }
1615 }
1616
1617 return 0;
1618}
1619
1620static int em28xx_dvb_resume(struct em28xx *dev)
1621{
1622 int ret = 0;
1623
1624 if (dev->is_audio_only)
1625 return 0;
1626
1627 if (!dev->board.has_dvb)
1628 return 0;
1629
1630 em28xx_info("Resuming DVB extension");
1631 if (dev->dvb) {
1632 struct em28xx_dvb *dvb = dev->dvb;
Antti Palosaaria83b93a2014-02-12 14:59:37 -03001633 struct i2c_client *client = dvb->i2c_client_tuner;
Shuah Khanca2b46d2014-02-21 21:50:15 -03001634
1635 if (dvb->fe[0]) {
1636 ret = dvb_frontend_resume(dvb->fe[0]);
1637 em28xx_info("fe0 resume %d", ret);
1638 }
1639
1640 if (dvb->fe[1]) {
1641 ret = dvb_frontend_resume(dvb->fe[1]);
1642 em28xx_info("fe1 resume %d", ret);
1643 }
Antti Palosaaria83b93a2014-02-12 14:59:37 -03001644 /* remove I2C tuner */
1645 if (client) {
1646 module_put(client->dev.driver->owner);
1647 i2c_unregister_device(client);
1648 }
1649
1650 em28xx_unregister_dvb(dvb);
1651 kfree(dvb);
1652 dev->dvb = NULL;
Shuah Khanca2b46d2014-02-21 21:50:15 -03001653 }
1654
1655 return 0;
1656}
1657
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001658static struct em28xx_ops dvb_ops = {
1659 .id = EM28XX_DVB,
1660 .name = "Em28xx dvb Extension",
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001661 .init = em28xx_dvb_init,
1662 .fini = em28xx_dvb_fini,
Shuah Khanca2b46d2014-02-21 21:50:15 -03001663 .suspend = em28xx_dvb_suspend,
1664 .resume = em28xx_dvb_resume,
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001665};
1666
1667static int __init em28xx_dvb_register(void)
1668{
1669 return em28xx_register_extension(&dvb_ops);
1670}
1671
1672static void __exit em28xx_dvb_unregister(void)
1673{
1674 em28xx_unregister_extension(&dvb_ops);
1675}
1676
1677module_init(em28xx_dvb_register);
1678module_exit(em28xx_dvb_unregister);