blob: 3e5c42de6359024b5514d4437ee1d23ec2b3b6b1 [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
13 Based on cx88-dvb, saa7134-dvb and videobuf-dvb originally written by:
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030014 (c) 2004, 2005 Chris Pascoe <c.pascoe@itee.uq.edu.au>
15 (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
16
17 This program is free software; you can redistribute it and/or modify
18 it under the terms of the GNU General Public License as published by
19 the Free Software Foundation; either version 2 of the License.
20 */
21
22#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030024#include <linux/usb.h>
25
26#include "em28xx.h"
27#include <media/v4l2-common.h>
28#include <media/videobuf-vmalloc.h>
Franklin Mengd7de5d82009-06-06 17:05:02 -030029#include <media/tuner.h>
30#include "tuner-simple.h"
Antti Palosaari1e8f31f2012-07-19 21:10:36 -030031#include <linux/gpio.h>
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030032
33#include "lgdt330x.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030034#include "lgdt3305.h"
Aidan Thornton7e6388a2008-04-17 21:40:03 -030035#include "zl10353.h"
Robert Krakora6e7b9ea2009-01-18 21:59:34 -030036#include "s5h1409.h"
Devin Heitmueller4fb202a2009-07-12 17:51:12 -030037#include "mt352.h"
38#include "mt352_priv.h" /* FIXME */
Antti Palosaari285eb1a2009-09-15 14:42:13 -030039#include "tda1002x.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030040#include "tda18271.h"
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -030041#include "s921.h"
Devin Heitmueller75e2b862011-03-13 02:01:02 -030042#include "drxd.h"
Antti Palosaarid6a5f922011-04-07 16:34:44 -030043#include "cxd2820r.h"
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030044#include "tda18271c2dd.h"
45#include "drxk.h"
Antti Palosaari36588712011-08-01 01:15:30 -030046#include "tda10071.h"
47#include "a8293.h"
Aivar Päkk1985f6f2011-12-11 18:15:00 -030048#include "qt1010.h"
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030049
50MODULE_DESCRIPTION("driver for em28xx based DVB cards");
51MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
52MODULE_LICENSE("GPL");
53
54static unsigned int debug;
55module_param(debug, int, 0644);
56MODULE_PARM_DESC(debug, "enable debug messages [dvb]");
57
58DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
59
60#define dprintk(level, fmt, arg...) do { \
61if (debug >= level) \
Aidan Thornton3421b772008-04-17 21:40:36 -030062 printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg); \
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030063} while (0)
64
Aidan Thornton3421b772008-04-17 21:40:36 -030065struct em28xx_dvb {
Antti Palosaarif71095b2011-04-07 15:51:52 -030066 struct dvb_frontend *fe[2];
Aidan Thornton3421b772008-04-17 21:40:36 -030067
68 /* feed count management */
69 struct mutex lock;
70 int nfeeds;
71
72 /* general boilerplate stuff */
73 struct dvb_adapter adapter;
74 struct dvb_demux demux;
75 struct dmxdev dmxdev;
76 struct dmx_frontend fe_hw;
77 struct dmx_frontend fe_mem;
78 struct dvb_net net;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030079
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030080 /* Due to DRX-K - probably need changes */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030081 int (*gate_ctrl)(struct dvb_frontend *, int);
82 struct semaphore pll_mutex;
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030083 bool dont_attach_fe1;
Antti Palosaari13a53362012-07-19 22:28:56 -030084 int lna_gpio;
Aidan Thornton3421b772008-04-17 21:40:36 -030085};
86
87
88static inline void print_err_status(struct em28xx *dev,
89 int packet, int status)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030090{
Aidan Thornton3421b772008-04-17 21:40:36 -030091 char *errmsg = "Unknown";
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030092
Aidan Thornton3421b772008-04-17 21:40:36 -030093 switch (status) {
94 case -ENOENT:
95 errmsg = "unlinked synchronuously";
96 break;
97 case -ECONNRESET:
98 errmsg = "unlinked asynchronuously";
99 break;
100 case -ENOSR:
101 errmsg = "Buffer error (overrun)";
102 break;
103 case -EPIPE:
104 errmsg = "Stalled (device not responding)";
105 break;
106 case -EOVERFLOW:
107 errmsg = "Babble (bad cable?)";
108 break;
109 case -EPROTO:
110 errmsg = "Bit-stuff error (bad cable?)";
111 break;
112 case -EILSEQ:
113 errmsg = "CRC/Timeout (could be anything)";
114 break;
115 case -ETIME:
116 errmsg = "Device does not respond";
117 break;
118 }
119 if (packet < 0) {
120 dprintk(1, "URB status %d [%s].\n", status, errmsg);
121 } else {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300122 dprintk(1, "URB packet %d, status %d [%s].\n",
123 packet, status, errmsg);
Aidan Thornton3421b772008-04-17 21:40:36 -0300124 }
125}
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300126
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300127static inline int em28xx_dvb_isoc_copy(struct em28xx *dev, struct urb *urb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300128{
129 int i;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300130
Aidan Thornton3421b772008-04-17 21:40:36 -0300131 if (!dev)
132 return 0;
133
134 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
135 return 0;
136
137 if (urb->status < 0) {
138 print_err_status(dev, -1, urb->status);
139 if (urb->status == -ENOENT)
140 return 0;
141 }
142
143 for (i = 0; i < urb->number_of_packets; i++) {
144 int status = urb->iso_frame_desc[i].status;
145
146 if (status < 0) {
147 print_err_status(dev, i, status);
148 if (urb->iso_frame_desc[i].status != -EPROTO)
149 continue;
150 }
151
152 dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer +
153 urb->iso_frame_desc[i].offset,
154 urb->iso_frame_desc[i].actual_length);
155 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300156
157 return 0;
158}
159
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300160static int em28xx_start_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300161{
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300162 int rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300163 struct em28xx *dev = dvb->adapter.priv;
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300164 int max_dvb_packet_size;
Aidan Thornton3421b772008-04-17 21:40:36 -0300165
Holger Nelson8ab33622011-12-28 18:55:41 -0300166 usb_set_interface(dev->udev, 0, dev->dvb_alt);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300167 rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
168 if (rc < 0)
169 return rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300170
Holger Nelson8ab33622011-12-28 18:55:41 -0300171 max_dvb_packet_size = dev->dvb_max_pkt_size;
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300172 if (max_dvb_packet_size < 0)
173 return max_dvb_packet_size;
Gianluca Gennari86d38d12012-02-13 13:59:22 -0300174 dprintk(1, "Using %d buffers each with %d x %d bytes\n",
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300175 EM28XX_DVB_NUM_BUFS,
Gianluca Gennari86d38d12012-02-13 13:59:22 -0300176 EM28XX_DVB_MAX_PACKETS,
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300177 max_dvb_packet_size);
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300178
Gianluca Gennari86d38d12012-02-13 13:59:22 -0300179 return em28xx_init_isoc(dev, EM28XX_DIGITAL_MODE,
180 EM28XX_DVB_MAX_PACKETS, EM28XX_DVB_NUM_BUFS,
181 max_dvb_packet_size, em28xx_dvb_isoc_copy);
Aidan Thornton3421b772008-04-17 21:40:36 -0300182}
183
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300184static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300185{
Aidan Thornton3421b772008-04-17 21:40:36 -0300186 struct em28xx *dev = dvb->adapter.priv;
187
Gianluca Gennari5f5f1472012-03-22 08:48:17 -0300188 em28xx_stop_urbs(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300189
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300190 em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300191
Aidan Thornton3421b772008-04-17 21:40:36 -0300192 return 0;
193}
194
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300195static int em28xx_start_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300196{
197 struct dvb_demux *demux = feed->demux;
198 struct em28xx_dvb *dvb = demux->priv;
199 int rc, ret;
200
201 if (!demux->dmx.frontend)
202 return -EINVAL;
203
204 mutex_lock(&dvb->lock);
205 dvb->nfeeds++;
206 rc = dvb->nfeeds;
207
208 if (dvb->nfeeds == 1) {
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300209 ret = em28xx_start_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300210 if (ret < 0)
211 rc = ret;
Aidan Thornton3421b772008-04-17 21:40:36 -0300212 }
213
214 mutex_unlock(&dvb->lock);
215 return rc;
216}
217
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300218static int em28xx_stop_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300219{
220 struct dvb_demux *demux = feed->demux;
221 struct em28xx_dvb *dvb = demux->priv;
222 int err = 0;
223
224 mutex_lock(&dvb->lock);
225 dvb->nfeeds--;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300226
227 if (0 == dvb->nfeeds)
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300228 err = em28xx_stop_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300229
Aidan Thornton3421b772008-04-17 21:40:36 -0300230 mutex_unlock(&dvb->lock);
231 return err;
232}
233
234
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300235
236/* ------------------------------------------------------------------ */
237static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
238{
239 struct em28xx *dev = fe->dvb->priv;
240
241 if (acquire)
242 return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
243 else
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300244 return em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300245}
246
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300247/* ------------------------------------------------------------------ */
248
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300249static struct lgdt330x_config em2880_lgdt3303_dev = {
250 .demod_address = 0x0e,
251 .demod_chip = LGDT3303,
252};
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300253
Jarod Wilson7e48b302010-03-07 17:55:43 -0300254static struct lgdt3305_config em2870_lgdt3304_dev = {
255 .i2c_addr = 0x0e,
256 .demod_chip = LGDT3304,
257 .spectral_inversion = 1,
258 .deny_i2c_rptr = 1,
259 .mpeg_mode = LGDT3305_MPEG_PARALLEL,
260 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
261 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
262 .vsb_if_khz = 3250,
263 .qam_if_khz = 4000,
264};
265
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300266static struct s921_config sharp_isdbt = {
267 .demod_address = 0x30 >> 1
268};
269
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300270static struct zl10353_config em28xx_zl10353_with_xc3028 = {
271 .demod_address = (0x1e >> 1),
272 .no_tuner = 1,
273 .parallel_ts = 1,
274 .if2 = 45600,
275};
276
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300277static struct s5h1409_config em28xx_s5h1409_with_xc3028 = {
278 .demod_address = 0x32 >> 1,
279 .output_mode = S5H1409_PARALLEL_OUTPUT,
280 .gpio = S5H1409_GPIO_OFF,
281 .inversion = S5H1409_INVERSION_OFF,
282 .status_mode = S5H1409_DEMODLOCKING,
283 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
284};
285
Jarod Wilson7e48b302010-03-07 17:55:43 -0300286static struct tda18271_std_map kworld_a340_std_map = {
287 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 0,
288 .if_lvl = 1, .rfagc_top = 0x37, },
289 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 1,
290 .if_lvl = 1, .rfagc_top = 0x37, },
291};
292
293static struct tda18271_config kworld_a340_config = {
294 .std_map = &kworld_a340_std_map,
295};
296
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300297static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300298 .demod_address = (0x1e >> 1),
299 .no_tuner = 1,
300 .disable_i2c_gate_ctrl = 1,
301 .parallel_ts = 1,
302 .if2 = 45600,
303};
304
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300305static struct drxd_config em28xx_drxd = {
Mauro Carvalho Chehabaac865f2011-12-26 09:41:14 -0300306 .demod_address = 0x70,
307 .demod_revision = 0xa2,
308 .pll_type = DRXD_PLL_NONE,
309 .clock = 12000,
310 .insert_rs_byte = 1,
311 .IF = 42800000,
Devin Heitmueller6b142b32011-03-13 02:02:01 -0300312 .disable_i2c_gate_ctrl = 1,
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300313};
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300314
Ezequiel García61bdbef2012-06-12 09:53:41 -0300315static struct drxk_config terratec_h5_drxk = {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300316 .adr = 0x29,
Mauro Carvalho Chehabe4f4f872011-07-09 17:35:26 -0300317 .single_master = 1,
Mauro Carvalho Chehabf1fe1b72011-07-09 21:59:33 -0300318 .no_i2c_bridge = 1,
Mauro Carvalho Chehab8b9456a2011-07-11 14:33:51 -0300319 .microcode_name = "dvb-usb-terratec-h5-drxk.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300320 .qam_demod_parameter_count = 2,
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300321};
322
Ezequiel García61bdbef2012-06-12 09:53:41 -0300323static struct drxk_config hauppauge_930c_drxk = {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300324 .adr = 0x29,
325 .single_master = 1,
326 .no_i2c_bridge = 1,
327 .microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw",
328 .chunk_size = 56,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300329 .qam_demod_parameter_count = 2,
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300330};
331
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300332struct drxk_config terratec_htc_stick_drxk = {
333 .adr = 0x29,
334 .single_master = 1,
335 .no_i2c_bridge = 1,
336 .microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw",
337 .chunk_size = 54,
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300338 .qam_demod_parameter_count = 2,
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300339 /* Required for the antenna_gpio to disable LNA. */
340 .antenna_dvbt = true,
341 /* The windows driver uses the same. This will disable LNA. */
342 .antenna_gpio = 0x6,
343};
344
Ezequiel García61bdbef2012-06-12 09:53:41 -0300345static struct drxk_config maxmedia_ub425_tc_drxk = {
Antti Palosaari35530852012-03-18 18:09:01 -0300346 .adr = 0x29,
347 .single_master = 1,
348 .no_i2c_bridge = 1,
349};
350
Ezequiel García61bdbef2012-06-12 09:53:41 -0300351static struct drxk_config pctv_520e_drxk = {
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300352 .adr = 0x29,
353 .single_master = 1,
354 .microcode_name = "dvb-demod-drxk-pctv.fw",
Martin Blumenstingl9e23f50a2012-07-04 17:36:55 -0300355 .qam_demod_parameter_count = 2,
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300356 .chunk_size = 58,
Antti Palosaarif6f379d2012-05-17 19:09:06 -0300357 .antenna_dvbt = true, /* disable LNA */
358 .antenna_gpio = (1 << 2), /* disable LNA */
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300359};
360
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300361static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
362{
363 struct em28xx_dvb *dvb = fe->sec_priv;
364 int status;
365
366 if (!dvb)
367 return -EINVAL;
368
369 if (enable) {
370 down(&dvb->pll_mutex);
371 status = dvb->gate_ctrl(fe, 1);
372 } else {
373 status = dvb->gate_ctrl(fe, 0);
374 up(&dvb->pll_mutex);
375 }
376 return status;
377}
378
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300379static void hauppauge_hvr930c_init(struct em28xx *dev)
380{
381 int i;
382
383 struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200384 {EM2874_R80_GPIO, 0xff, 0xff, 0x65},
385 {EM2874_R80_GPIO, 0xfb, 0xff, 0x32},
386 {EM2874_R80_GPIO, 0xff, 0xff, 0xb8},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300387 { -1, -1, -1, -1},
388 };
389 struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200390 {EM2874_R80_GPIO, 0xef, 0xff, 0x01},
391 {EM2874_R80_GPIO, 0xaf, 0xff, 0x65},
392 {EM2874_R80_GPIO, 0xef, 0xff, 0x76},
393 {EM2874_R80_GPIO, 0xef, 0xff, 0x01},
394 {EM2874_R80_GPIO, 0xcf, 0xff, 0x0b},
395 {EM2874_R80_GPIO, 0xef, 0xff, 0x40},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300396
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -0200397 {EM2874_R80_GPIO, 0xcf, 0xff, 0x65},
398 {EM2874_R80_GPIO, 0xef, 0xff, 0x65},
399 {EM2874_R80_GPIO, 0xcf, 0xff, 0x0b},
400 {EM2874_R80_GPIO, 0xef, 0xff, 0x65},
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300401
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300402 { -1, -1, -1, -1},
403 };
404
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300405 struct {
406 unsigned char r[4];
407 int len;
408 } regs[] = {
409 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
410 {{ 0x01, 0x02 }, 2},
411 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
412 {{ 0x01, 0x00 }, 2},
413 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
414 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
415 {{ 0x01, 0x00 }, 2},
416 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
417 {{ 0x04, 0x00 }, 2},
418 {{ 0x00, 0x04 }, 2},
419 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
420 {{ 0x04, 0x14 }, 2},
421 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
422 };
423
424 em28xx_gpio_set(dev, hauppauge_hvr930c_init);
425 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
426 msleep(10);
427 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
428 msleep(10);
429
430 dev->i2c_client.addr = 0x82 >> 1;
431
432 for (i = 0; i < ARRAY_SIZE(regs); i++)
433 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
434 em28xx_gpio_set(dev, hauppauge_hvr930c_end);
435
436 msleep(100);
437
438 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
439 msleep(30);
440
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -0300441 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
442 msleep(10);
443
444}
445
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300446static void terratec_h5_init(struct em28xx *dev)
447{
448 int i;
449 struct em28xx_reg_seq terratec_h5_init[] = {
450 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
451 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
452 {EM2874_R80_GPIO, 0xf2, 0xff, 50},
453 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
454 { -1, -1, -1, -1},
455 };
456 struct em28xx_reg_seq terratec_h5_end[] = {
457 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
458 {EM2874_R80_GPIO, 0xa6, 0xff, 50},
459 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
460 { -1, -1, -1, -1},
461 };
462 struct {
463 unsigned char r[4];
464 int len;
465 } regs[] = {
466 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
467 {{ 0x01, 0x02 }, 2},
468 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
469 {{ 0x01, 0x00 }, 2},
470 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
471 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
472 {{ 0x01, 0x00 }, 2},
473 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
474 {{ 0x04, 0x00 }, 2},
475 {{ 0x00, 0x04 }, 2},
476 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
477 {{ 0x04, 0x14 }, 2},
478 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
479 };
480
481 em28xx_gpio_set(dev, terratec_h5_init);
482 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
483 msleep(10);
484 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
485 msleep(10);
486
487 dev->i2c_client.addr = 0x82 >> 1;
488
489 for (i = 0; i < ARRAY_SIZE(regs); i++)
490 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
491 em28xx_gpio_set(dev, terratec_h5_end);
492};
493
Martin Blumenstinglc8dce002012-06-12 18:19:28 -0300494static void terratec_htc_stick_init(struct em28xx *dev)
495{
496 int i;
497
498 /*
499 * GPIO configuration:
500 * 0xff: unknown (does not affect DVB-T).
501 * 0xf6: DRX-K (demodulator).
502 * 0xe6: unknown (does not affect DVB-T).
503 * 0xb6: unknown (does not affect DVB-T).
504 */
505 struct em28xx_reg_seq terratec_htc_stick_init[] = {
506 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
507 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
508 {EM2874_R80_GPIO, 0xe6, 0xff, 50},
509 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
510 { -1, -1, -1, -1},
511 };
512 struct em28xx_reg_seq terratec_htc_stick_end[] = {
513 {EM2874_R80_GPIO, 0xb6, 0xff, 100},
514 {EM2874_R80_GPIO, 0xf6, 0xff, 50},
515 { -1, -1, -1, -1},
516 };
517
518 /* Init the analog decoder? */
519 struct {
520 unsigned char r[4];
521 int len;
522 } regs[] = {
523 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
524 {{ 0x01, 0x02 }, 2},
525 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
526 {{ 0x01, 0x00 }, 2},
527 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
528 };
529
530 em28xx_gpio_set(dev, terratec_htc_stick_init);
531
532 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
533 msleep(10);
534 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
535 msleep(10);
536
537 dev->i2c_client.addr = 0x82 >> 1;
538
539 for (i = 0; i < ARRAY_SIZE(regs); i++)
540 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
541
542 em28xx_gpio_set(dev, terratec_htc_stick_end);
543};
544
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300545static void pctv_520e_init(struct em28xx *dev)
546{
547 /*
Antti Palosaari26c8a722012-05-17 18:22:02 -0300548 * Init AVF4910B analog decoder. Looks like I2C traffic to
549 * digital demodulator and tuner are routed via AVF4910B.
Antti Palosaaric247d7b2012-03-19 11:48:19 -0300550 */
551 int i;
552 struct {
553 unsigned char r[4];
554 int len;
555 } regs[] = {
556 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
557 {{ 0x01, 0x02 }, 2},
558 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
559 {{ 0x01, 0x00 }, 2},
560 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
561 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
562 {{ 0x01, 0x00 }, 2},
563 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
564 };
565
566 dev->i2c_client.addr = 0x82 >> 1; /* 0x41 */
567
568 for (i = 0; i < ARRAY_SIZE(regs); i++)
569 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
570};
571
Antti Palosaari13a53362012-07-19 22:28:56 -0300572static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe, int val)
573{
574 struct em28xx *dev = fe->dvb->priv;
575#ifdef CONFIG_GPIOLIB
576 struct em28xx_dvb *dvb = dev->dvb;
577 int ret;
578 unsigned long flags;
579
580 if (val)
581 flags = GPIOF_OUT_INIT_LOW;
582 else
583 flags = GPIOF_OUT_INIT_HIGH;
584
585 ret = gpio_request_one(dvb->lna_gpio, flags, NULL);
586 if (ret)
587 em28xx_errdev("gpio request failed %d\n", ret);
588 else
589 gpio_free(dvb->lna_gpio);
590
591 return ret;
592#else
593 dev_warn(&dev->udev->dev, "%s: LNA control is disabled\n",
594 KBUILD_MODNAME);
595 return 0;
596#endif
597}
598
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300599static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300600{
601 /* Values extracted from a USB trace of the Terratec Windows driver */
602 static u8 clock_config[] = { CLOCK_CTL, 0x38, 0x2c };
603 static u8 reset[] = { RESET, 0x80 };
604 static u8 adc_ctl_1_cfg[] = { ADC_CTL_1, 0x40 };
605 static u8 agc_cfg[] = { AGC_TARGET, 0x28, 0xa0 };
606 static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 };
607 static u8 rs_err_cfg[] = { RS_ERR_PER_1, 0x00, 0x4d };
608 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
609 static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 };
610 static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 };
Devin Heitmuellerff697862009-07-12 18:44:19 -0300611 static u8 tuner_go[] = { TUNER_GO, 0x01};
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300612
613 mt352_write(fe, clock_config, sizeof(clock_config));
614 udelay(200);
615 mt352_write(fe, reset, sizeof(reset));
616 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
617 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
618 mt352_write(fe, input_freq_cfg, sizeof(input_freq_cfg));
619 mt352_write(fe, rs_err_cfg, sizeof(rs_err_cfg));
620 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
621 mt352_write(fe, trl_nom_cfg, sizeof(trl_nom_cfg));
622 mt352_write(fe, tps_given_cfg, sizeof(tps_given_cfg));
623 mt352_write(fe, tuner_go, sizeof(tuner_go));
624 return 0;
625}
626
627static struct mt352_config terratec_xs_mt352_cfg = {
628 .demod_address = (0x1e >> 1),
629 .no_tuner = 1,
630 .if2 = 45600,
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300631 .demod_init = em28xx_mt352_terratec_xs_init,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300632};
633
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300634static struct tda10023_config em28xx_tda10023_config = {
635 .demod_address = 0x0c,
636 .invert = 1,
637};
638
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300639static struct cxd2820r_config em28xx_cxd2820r_config = {
640 .i2c_address = (0xd8 >> 1),
641 .ts_mode = CXD2820R_TS_SERIAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300642};
643
644static struct tda18271_config em28xx_cxd2820r_tda18271_config = {
645 .output_opt = TDA18271_OUTPUT_LT_OFF,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300646 .gate = TDA18271_GATE_DIGITAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300647};
648
Antti Palosaari36588712011-08-01 01:15:30 -0300649static const struct tda10071_config em28xx_tda10071_config = {
650 .i2c_address = 0x55, /* (0xaa >> 1) */
651 .i2c_wr_max = 64,
652 .ts_mode = TDA10071_TS_SERIAL,
653 .spec_inv = 0,
654 .xtal = 40444000, /* 40.444 MHz */
655 .pll_multiplier = 20,
656};
657
658static const struct a8293_config em28xx_a8293_config = {
659 .i2c_addr = 0x08, /* (0x10 >> 1) */
660};
661
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300662static struct zl10353_config em28xx_zl10353_no_i2c_gate_dev = {
663 .demod_address = (0x1e >> 1),
664 .disable_i2c_gate_ctrl = 1,
665 .no_tuner = 1,
666 .parallel_ts = 1,
667};
668static struct qt1010_config em28xx_qt1010_config = {
669 .i2c_address = 0x62
670
671};
672
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300673/* ------------------------------------------------------------------ */
674
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300675static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300676{
677 struct dvb_frontend *fe;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300678 struct xc2028_config cfg;
679
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300680 memset(&cfg, 0, sizeof(cfg));
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300681 cfg.i2c_adap = &dev->i2c_adap;
682 cfg.i2c_addr = addr;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300683
Antti Palosaarif71095b2011-04-07 15:51:52 -0300684 if (!dev->dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -0300685 em28xx_errdev("/2: dvb frontend not attached. "
686 "Can't attach xc3028\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300687 return -EINVAL;
688 }
689
Antti Palosaarif71095b2011-04-07 15:51:52 -0300690 fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300691 if (!fe) {
Filipe Rosset480be182009-11-04 15:32:37 -0300692 em28xx_errdev("/2: xc3028 attach failed\n");
Antti Palosaarif71095b2011-04-07 15:51:52 -0300693 dvb_frontend_detach(dev->dvb->fe[0]);
694 dev->dvb->fe[0] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300695 return -EINVAL;
696 }
697
Filipe Rosset480be182009-11-04 15:32:37 -0300698 em28xx_info("%s/2: xc3028 attached\n", dev->name);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300699
700 return 0;
701}
702
Aidan Thornton3421b772008-04-17 21:40:36 -0300703/* ------------------------------------------------------------------ */
704
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300705static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
706 struct em28xx *dev, struct device *device)
Aidan Thornton3421b772008-04-17 21:40:36 -0300707{
708 int result;
709
710 mutex_init(&dvb->lock);
711
712 /* register adapter */
713 result = dvb_register_adapter(&dvb->adapter, dev->name, module, device,
714 adapter_nr);
715 if (result < 0) {
716 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
717 dev->name, result);
718 goto fail_adapter;
719 }
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300720
721 /* Ensure all frontends negotiate bus access */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300722 dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
723 if (dvb->fe[1])
724 dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300725
Aidan Thornton3421b772008-04-17 21:40:36 -0300726 dvb->adapter.priv = dev;
727
728 /* register frontend */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300729 result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300730 if (result < 0) {
731 printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
732 dev->name, result);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300733 goto fail_frontend0;
734 }
735
736 /* register 2nd frontend */
737 if (dvb->fe[1]) {
738 result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
739 if (result < 0) {
740 printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n",
741 dev->name, result);
742 goto fail_frontend1;
743 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300744 }
745
746 /* register demux stuff */
747 dvb->demux.dmx.capabilities =
748 DMX_TS_FILTERING | DMX_SECTION_FILTERING |
749 DMX_MEMORY_BASED_FILTERING;
750 dvb->demux.priv = dvb;
751 dvb->demux.filternum = 256;
752 dvb->demux.feednum = 256;
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300753 dvb->demux.start_feed = em28xx_start_feed;
754 dvb->demux.stop_feed = em28xx_stop_feed;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300755
Aidan Thornton3421b772008-04-17 21:40:36 -0300756 result = dvb_dmx_init(&dvb->demux);
757 if (result < 0) {
758 printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
759 dev->name, result);
760 goto fail_dmx;
761 }
762
763 dvb->dmxdev.filternum = 256;
764 dvb->dmxdev.demux = &dvb->demux.dmx;
765 dvb->dmxdev.capabilities = 0;
766 result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter);
767 if (result < 0) {
768 printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
769 dev->name, result);
770 goto fail_dmxdev;
771 }
772
773 dvb->fe_hw.source = DMX_FRONTEND_0;
774 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
775 if (result < 0) {
776 printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
777 dev->name, result);
778 goto fail_fe_hw;
779 }
780
781 dvb->fe_mem.source = DMX_MEMORY_FE;
782 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
783 if (result < 0) {
784 printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
785 dev->name, result);
786 goto fail_fe_mem;
787 }
788
789 result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
790 if (result < 0) {
791 printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
792 dev->name, result);
793 goto fail_fe_conn;
794 }
795
796 /* register network adapter */
797 dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx);
798 return 0;
799
800fail_fe_conn:
801 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
802fail_fe_mem:
803 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
804fail_fe_hw:
805 dvb_dmxdev_release(&dvb->dmxdev);
806fail_dmxdev:
807 dvb_dmx_release(&dvb->demux);
808fail_dmx:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300809 if (dvb->fe[1])
810 dvb_unregister_frontend(dvb->fe[1]);
811 dvb_unregister_frontend(dvb->fe[0]);
812fail_frontend1:
813 if (dvb->fe[1])
814 dvb_frontend_detach(dvb->fe[1]);
815fail_frontend0:
816 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300817 dvb_unregister_adapter(&dvb->adapter);
818fail_adapter:
819 return result;
820}
821
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300822static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300823{
824 dvb_net_release(&dvb->net);
825 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
826 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
827 dvb_dmxdev_release(&dvb->dmxdev);
828 dvb_dmx_release(&dvb->demux);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300829 if (dvb->fe[1])
830 dvb_unregister_frontend(dvb->fe[1]);
831 dvb_unregister_frontend(dvb->fe[0]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300832 if (dvb->fe[1] && !dvb->dont_attach_fe1)
Antti Palosaarif71095b2011-04-07 15:51:52 -0300833 dvb_frontend_detach(dvb->fe[1]);
834 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300835 dvb_unregister_adapter(&dvb->adapter);
836}
837
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300838static int em28xx_dvb_init(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300839{
Antti Palosaari13a53362012-07-19 22:28:56 -0300840 int result = 0, mfe_shared = 0;
Aidan Thornton3421b772008-04-17 21:40:36 -0300841 struct em28xx_dvb *dvb;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300842
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300843 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300844 /* This device does not support the extension */
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300845 printk(KERN_INFO "em28xx_dvb: This device does not support the extension\n");
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300846 return 0;
847 }
848
Aidan Thornton3421b772008-04-17 21:40:36 -0300849 dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300850
851 if (dvb == NULL) {
Filipe Rosset480be182009-11-04 15:32:37 -0300852 em28xx_info("em28xx_dvb: memory allocation failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -0300853 return -ENOMEM;
854 }
855 dev->dvb = dvb;
Antti Palosaarif71095b2011-04-07 15:51:52 -0300856 dvb->fe[0] = dvb->fe[1] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300857
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -0300858 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300859 em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300860 /* init frontend */
861 switch (dev->model) {
Mauro Carvalho Chehabebaefdb2011-06-01 10:16:25 -0300862 case EM2874_BOARD_LEADERSHIP_ISDBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300863 dvb->fe[0] = dvb_attach(s921_attach,
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300864 &sharp_isdbt, &dev->i2c_adap);
865
Antti Palosaarif71095b2011-04-07 15:51:52 -0300866 if (!dvb->fe[0]) {
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300867 result = -EINVAL;
868 goto out_free;
869 }
870
871 break;
Douglas Schilling Landgraff89bc322008-12-01 21:01:04 -0300872 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
Mauro Carvalho Chehab10ac6602008-07-27 14:58:58 -0300873 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
Devin Heitmueller4fd305b2008-06-04 13:43:46 -0300874 case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
Devin Heitmuellere14b3652008-07-26 11:04:33 -0300875 case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300876 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300877 &em2880_lgdt3303_dev,
878 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300879 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300880 result = -EINVAL;
881 goto out_free;
882 }
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300883 break;
Thierry MERLE46510b52008-10-11 16:56:13 -0300884 case EM2880_BOARD_KWORLD_DVB_310U:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300885 dvb->fe[0] = dvb_attach(zl10353_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300886 &em28xx_zl10353_with_xc3028,
887 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300888 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300889 result = -EINVAL;
890 goto out_free;
891 }
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300892 break;
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300893 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
Uroš Vamplec994d02009-09-30 22:53:37 -0300894 case EM2882_BOARD_TERRATEC_HYBRID_XS:
Devin Heitmueller01a5fd62009-08-07 09:25:06 -0300895 case EM2880_BOARD_EMPIRE_DUAL_TV:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300896 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300897 &em28xx_zl10353_xc3028_no_i2c_gate,
898 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300899 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300900 result = -EINVAL;
901 goto out_free;
902 }
903 break;
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300904 case EM2880_BOARD_TERRATEC_HYBRID_XS:
Catimimi65638012010-02-18 18:06:32 -0300905 case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
Devin Heitmuellerd5b3ba92009-07-08 21:51:35 -0300906 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
Andrea.Amorosi76@gmail.com7ca7ef62010-02-09 17:53:38 -0300907 case EM2882_BOARD_DIKOM_DK300:
Antonio Larrosa811fab62010-03-04 22:19:48 -0300908 case EM2882_BOARD_KWORLD_VS_DVBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300909 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300910 &em28xx_zl10353_xc3028_no_i2c_gate,
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300911 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300912 if (dvb->fe[0] == NULL) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300913 /* This board could have either a zl10353 or a mt352.
914 If the chip id isn't for zl10353, try mt352 */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300915 dvb->fe[0] = dvb_attach(mt352_attach,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300916 &terratec_xs_mt352_cfg,
917 &dev->i2c_adap);
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300918 }
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300919
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300920 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300921 result = -EINVAL;
922 goto out_free;
923 }
924 break;
Aivar Päkk1985f6f2011-12-11 18:15:00 -0300925 case EM2870_BOARD_KWORLD_355U:
926 dvb->fe[0] = dvb_attach(zl10353_attach,
927 &em28xx_zl10353_no_i2c_gate_dev,
928 &dev->i2c_adap);
929 if (dvb->fe[0] != NULL)
930 dvb_attach(qt1010_attach, dvb->fe[0],
931 &dev->i2c_adap, &em28xx_qt1010_config);
932 break;
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300933 case EM2883_BOARD_KWORLD_HYBRID_330U:
Devin Heitmueller19859222009-06-19 00:33:54 -0300934 case EM2882_BOARD_EVGA_INDTUBE:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300935 dvb->fe[0] = dvb_attach(s5h1409_attach,
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300936 &em28xx_s5h1409_with_xc3028,
937 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300938 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300939 result = -EINVAL;
940 goto out_free;
941 }
942 break;
Franklin Mengd7de5d82009-06-06 17:05:02 -0300943 case EM2882_BOARD_KWORLD_ATSC_315U:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300944 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Franklin Mengd7de5d82009-06-06 17:05:02 -0300945 &em2880_lgdt3303_dev,
946 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300947 if (dvb->fe[0] != NULL) {
948 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Franklin Mengd7de5d82009-06-06 17:05:02 -0300949 &dev->i2c_adap, 0x61, TUNER_THOMSON_DTT761X)) {
950 result = -EINVAL;
951 goto out_free;
952 }
953 }
954 break;
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300955 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
Devin Heitmuellerad9b4bb2011-03-13 02:09:59 -0300956 case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300957 dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300958 &dev->i2c_adap, &dev->udev->dev);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300959 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300960 result = -EINVAL;
961 goto out_free;
962 }
963 break;
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300964 case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
965 /* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300966 dvb->fe[0] = dvb_attach(tda10023_attach,
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300967 &em28xx_tda10023_config,
968 &dev->i2c_adap, 0x48);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300969 if (dvb->fe[0]) {
970 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300971 &dev->i2c_adap, 0x60, TUNER_PHILIPS_CU1216L)) {
972 result = -EINVAL;
973 goto out_free;
974 }
975 }
976 break;
Jarod Wilson7e48b302010-03-07 17:55:43 -0300977 case EM2870_BOARD_KWORLD_A340:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300978 dvb->fe[0] = dvb_attach(lgdt3305_attach,
Jarod Wilson7e48b302010-03-07 17:55:43 -0300979 &em2870_lgdt3304_dev,
980 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300981 if (dvb->fe[0] != NULL)
982 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Jarod Wilson7e48b302010-03-07 17:55:43 -0300983 &dev->i2c_adap, &kworld_a340_config);
984 break;
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300985 case EM28174_BOARD_PCTV_290E:
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300986 dvb->fe[0] = dvb_attach(cxd2820r_attach,
Manu Abraham7e7b8282011-12-10 00:44:24 -0300987 &em28xx_cxd2820r_config,
Antti Palosaari1e8f31f2012-07-19 21:10:36 -0300988 &dev->i2c_adap,
Antti Palosaari13a53362012-07-19 22:28:56 -0300989 &dvb->lna_gpio);
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300990 if (dvb->fe[0]) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300991 /* FE 0 attach tuner */
Manu Abraham7e7b8282011-12-10 00:44:24 -0300992 if (!dvb_attach(tda18271_attach,
993 dvb->fe[0],
994 0x60,
995 &dev->i2c_adap,
996 &em28xx_cxd2820r_tda18271_config)) {
997
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300998 dvb_frontend_detach(dvb->fe[0]);
999 result = -EINVAL;
1000 goto out_free;
1001 }
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001002 }
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001003
Antti Palosaari13a53362012-07-19 22:28:56 -03001004#ifdef CONFIG_GPIOLIB
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001005 /* enable LNA for DVB-T, DVB-T2 and DVB-C */
Antti Palosaari13a53362012-07-19 22:28:56 -03001006 result = gpio_request_one(dvb->lna_gpio, GPIOF_OUT_INIT_LOW,
1007 NULL);
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001008 if (result)
1009 em28xx_errdev("gpio request failed %d\n", result);
1010 else
Antti Palosaari13a53362012-07-19 22:28:56 -03001011 gpio_free(dvb->lna_gpio);
Antti Palosaari1e8f31f2012-07-19 21:10:36 -03001012
1013 result = 0; /* continue even set LNA fails */
Antti Palosaari13a53362012-07-19 22:28:56 -03001014#endif
1015 dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
Antti Palosaarid6a5f922011-04-07 16:34:44 -03001016 break;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001017 case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001018 {
1019 struct xc5000_config cfg;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001020 hauppauge_hvr930c_init(dev);
1021
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001022 dvb->fe[0] = dvb_attach(drxk_attach,
Mauro Carvalho Chehabfa4b2a12012-01-05 08:07:32 -02001023 &hauppauge_930c_drxk, &dev->i2c_adap);
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001024 if (!dvb->fe[0]) {
1025 result = -EINVAL;
1026 goto out_free;
1027 }
1028 /* FIXME: do we need a pll semaphore? */
1029 dvb->fe[0]->sec_priv = dvb;
1030 sema_init(&dvb->pll_mutex, 1);
1031 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1032 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001033
1034 /* Attach xc5000 */
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001035 memset(&cfg, 0, sizeof(cfg));
1036 cfg.i2c_address = 0x61;
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001037 cfg.if_khz = 4000;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001038
1039 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1040 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001041 if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap,
1042 &cfg)) {
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001043 result = -EINVAL;
1044 goto out_free;
1045 }
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001046 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1047 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1048
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001049 break;
Mauro Carvalho Chehab85032322011-11-24 15:01:45 -02001050 }
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001051 case EM2884_BOARD_TERRATEC_H5:
1052 terratec_h5_init(dev);
1053
Mauro Carvalho Chehabfa4b2a12012-01-05 08:07:32 -02001054 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001055 if (!dvb->fe[0]) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001056 result = -EINVAL;
1057 goto out_free;
1058 }
1059 /* FIXME: do we need a pll semaphore? */
1060 dvb->fe[0]->sec_priv = dvb;
1061 sema_init(&dvb->pll_mutex, 1);
1062 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
1063 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001064
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001065 /* Attach tda18271 to DVB-C frontend */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001066 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1067 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1068 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap, 0x60)) {
1069 result = -EINVAL;
1070 goto out_free;
1071 }
1072 if (dvb->fe[0]->ops.i2c_gate_ctrl)
1073 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -03001074
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -03001075 break;
Antti Palosaari36588712011-08-01 01:15:30 -03001076 case EM28174_BOARD_PCTV_460E:
1077 /* attach demod */
1078 dvb->fe[0] = dvb_attach(tda10071_attach,
1079 &em28xx_tda10071_config, &dev->i2c_adap);
1080
1081 /* attach SEC */
1082 if (dvb->fe[0])
1083 dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap,
1084 &em28xx_a8293_config);
1085 break;
Antti Palosaari35530852012-03-18 18:09:01 -03001086 case EM2874_BOARD_MAXMEDIA_UB425_TC:
1087 /* attach demodulator */
1088 dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
1089 &dev->i2c_adap);
1090
1091 if (dvb->fe[0]) {
1092 /* disable I2C-gate */
1093 dvb->fe[0]->ops.i2c_gate_ctrl = NULL;
1094
1095 /* attach tuner */
1096 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0],
1097 &dev->i2c_adap, 0x60)) {
1098 dvb_frontend_detach(dvb->fe[0]);
1099 result = -EINVAL;
1100 goto out_free;
1101 }
1102 }
1103
1104 /* TODO: we need drx-3913k firmware in order to support DVB-T */
1105 em28xx_info("MaxMedia UB425-TC: only DVB-C supported by that " \
1106 "driver version\n");
1107
1108 break;
Ivan Kalvachevfa5527c2012-03-19 20:09:55 -03001109 case EM2884_BOARD_PCTV_510E:
1110 case EM2884_BOARD_PCTV_520E:
1111 pctv_520e_init(dev);
1112
1113 /* attach demodulator */
1114 dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
1115 &dev->i2c_adap);
1116
1117 if (dvb->fe[0]) {
1118 /* attach tuner */
1119 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1120 &dev->i2c_adap,
1121 &em28xx_cxd2820r_tda18271_config)) {
1122 dvb_frontend_detach(dvb->fe[0]);
1123 result = -EINVAL;
1124 goto out_free;
1125 }
1126 }
1127 break;
Martin Blumenstinglc8dce002012-06-12 18:19:28 -03001128 case EM2884_BOARD_CINERGY_HTC_STICK:
1129 terratec_htc_stick_init(dev);
1130
1131 /* attach demodulator */
1132 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1133 &dev->i2c_adap);
1134 if (!dvb->fe[0]) {
1135 result = -EINVAL;
1136 goto out_free;
1137 }
1138
1139 /* Attach the demodulator. */
1140 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1141 &dev->i2c_adap,
1142 &em28xx_cxd2820r_tda18271_config)) {
1143 result = -EINVAL;
1144 goto out_free;
1145 }
1146 break;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001147 default:
Filipe Rosset480be182009-11-04 15:32:37 -03001148 em28xx_errdev("/2: The frontend of your DVB/ATSC card"
1149 " isn't supported yet\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001150 break;
1151 }
Antti Palosaarif71095b2011-04-07 15:51:52 -03001152 if (NULL == dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -03001153 em28xx_errdev("/2: frontend initialization failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -03001154 result = -EINVAL;
1155 goto out_free;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001156 }
Michael Krufkyd7cba042008-09-12 13:31:45 -03001157 /* define general-purpose callback pointer */
Antti Palosaarif71095b2011-04-07 15:51:52 -03001158 dvb->fe[0]->callback = em28xx_tuner_callback;
Eddi De Pieri82e7dbb2011-11-19 11:37:14 -03001159 if (dvb->fe[1])
Mauro Carvalho Chehabde724052011-11-20 11:23:24 -02001160 dvb->fe[1]->callback = em28xx_tuner_callback;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001161
1162 /* register everything */
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001163 result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev);
Aidan Thornton3421b772008-04-17 21:40:36 -03001164
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -03001165 if (result < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -03001166 goto out_free;
Aidan Thornton3421b772008-04-17 21:40:36 -03001167
Antti Palosaarie3645432011-07-28 18:59:30 -03001168 /* MFE lock */
1169 dvb->adapter.mfe_shared = mfe_shared;
1170
Filipe Rosset480be182009-11-04 15:32:37 -03001171 em28xx_info("Successfully loaded em28xx-dvb\n");
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001172ret:
1173 em28xx_set_mode(dev, EM28XX_SUSPEND);
1174 mutex_unlock(&dev->lock);
1175 return result;
Aidan Thornton3421b772008-04-17 21:40:36 -03001176
1177out_free:
1178 kfree(dvb);
1179 dev->dvb = NULL;
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -03001180 goto ret;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001181}
1182
Chris Rankin0b8bd832011-08-20 16:01:26 -03001183static inline void prevent_sleep(struct dvb_frontend_ops *ops)
1184{
1185 ops->set_voltage = NULL;
1186 ops->sleep = NULL;
1187 ops->tuner_ops.sleep = NULL;
1188}
1189
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001190static int em28xx_dvb_fini(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001191{
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -03001192 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -03001193 /* This device does not support the extension */
1194 return 0;
1195 }
1196
Aidan Thornton3421b772008-04-17 21:40:36 -03001197 if (dev->dvb) {
Chris Rankin0b8bd832011-08-20 16:01:26 -03001198 struct em28xx_dvb *dvb = dev->dvb;
1199
1200 if (dev->state & DEV_DISCONNECTED) {
1201 /* We cannot tell the device to sleep
1202 * once it has been unplugged. */
1203 if (dvb->fe[0])
1204 prevent_sleep(&dvb->fe[0]->ops);
1205 if (dvb->fe[1])
1206 prevent_sleep(&dvb->fe[1]->ops);
1207 }
1208
1209 em28xx_unregister_dvb(dvb);
1210 kfree(dvb);
Aidan Thornton3421b772008-04-17 21:40:36 -03001211 dev->dvb = NULL;
1212 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001213
1214 return 0;
1215}
1216
1217static struct em28xx_ops dvb_ops = {
1218 .id = EM28XX_DVB,
1219 .name = "Em28xx dvb Extension",
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -03001220 .init = em28xx_dvb_init,
1221 .fini = em28xx_dvb_fini,
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -03001222};
1223
1224static int __init em28xx_dvb_register(void)
1225{
1226 return em28xx_register_extension(&dvb_ops);
1227}
1228
1229static void __exit em28xx_dvb_unregister(void)
1230{
1231 em28xx_unregister_extension(&dvb_ops);
1232}
1233
1234module_init(em28xx_dvb_register);
1235module_exit(em28xx_dvb_unregister);