blob: b606fc7f842dadc3653e61723b4450803ae45dfe [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"
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030031
32#include "lgdt330x.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030033#include "lgdt3305.h"
Aidan Thornton7e6388a2008-04-17 21:40:03 -030034#include "zl10353.h"
Robert Krakora6e7b9ea2009-01-18 21:59:34 -030035#include "s5h1409.h"
Devin Heitmueller4fb202a2009-07-12 17:51:12 -030036#include "mt352.h"
37#include "mt352_priv.h" /* FIXME */
Antti Palosaari285eb1a2009-09-15 14:42:13 -030038#include "tda1002x.h"
Jarod Wilson7e48b302010-03-07 17:55:43 -030039#include "tda18271.h"
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -030040#include "s921.h"
Devin Heitmueller75e2b862011-03-13 02:01:02 -030041#include "drxd.h"
Antti Palosaarid6a5f922011-04-07 16:34:44 -030042#include "cxd2820r.h"
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030043#include "tda18271c2dd.h"
44#include "drxk.h"
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030045
46MODULE_DESCRIPTION("driver for em28xx based DVB cards");
47MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
48MODULE_LICENSE("GPL");
49
50static unsigned int debug;
51module_param(debug, int, 0644);
52MODULE_PARM_DESC(debug, "enable debug messages [dvb]");
53
54DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
55
56#define dprintk(level, fmt, arg...) do { \
57if (debug >= level) \
Aidan Thornton3421b772008-04-17 21:40:36 -030058 printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg); \
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030059} while (0)
60
Aidan Thornton3421b772008-04-17 21:40:36 -030061#define EM28XX_DVB_NUM_BUFS 5
Aidan Thornton3421b772008-04-17 21:40:36 -030062#define EM28XX_DVB_MAX_PACKETS 64
63
64struct em28xx_dvb {
Antti Palosaarif71095b2011-04-07 15:51:52 -030065 struct dvb_frontend *fe[2];
Aidan Thornton3421b772008-04-17 21:40:36 -030066
67 /* feed count management */
68 struct mutex lock;
69 int nfeeds;
70
71 /* general boilerplate stuff */
72 struct dvb_adapter adapter;
73 struct dvb_demux demux;
74 struct dmxdev dmxdev;
75 struct dmx_frontend fe_hw;
76 struct dmx_frontend fe_mem;
77 struct dvb_net net;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030078
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030079 /* Due to DRX-K - probably need changes */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -030080 int (*gate_ctrl)(struct dvb_frontend *, int);
81 struct semaphore pll_mutex;
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -030082 bool dont_attach_fe1;
Aidan Thornton3421b772008-04-17 21:40:36 -030083};
84
85
86static inline void print_err_status(struct em28xx *dev,
87 int packet, int status)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030088{
Aidan Thornton3421b772008-04-17 21:40:36 -030089 char *errmsg = "Unknown";
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -030090
Aidan Thornton3421b772008-04-17 21:40:36 -030091 switch (status) {
92 case -ENOENT:
93 errmsg = "unlinked synchronuously";
94 break;
95 case -ECONNRESET:
96 errmsg = "unlinked asynchronuously";
97 break;
98 case -ENOSR:
99 errmsg = "Buffer error (overrun)";
100 break;
101 case -EPIPE:
102 errmsg = "Stalled (device not responding)";
103 break;
104 case -EOVERFLOW:
105 errmsg = "Babble (bad cable?)";
106 break;
107 case -EPROTO:
108 errmsg = "Bit-stuff error (bad cable?)";
109 break;
110 case -EILSEQ:
111 errmsg = "CRC/Timeout (could be anything)";
112 break;
113 case -ETIME:
114 errmsg = "Device does not respond";
115 break;
116 }
117 if (packet < 0) {
118 dprintk(1, "URB status %d [%s].\n", status, errmsg);
119 } else {
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300120 dprintk(1, "URB packet %d, status %d [%s].\n",
121 packet, status, errmsg);
Aidan Thornton3421b772008-04-17 21:40:36 -0300122 }
123}
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300124
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300125static inline int em28xx_dvb_isoc_copy(struct em28xx *dev, struct urb *urb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300126{
127 int i;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300128
Aidan Thornton3421b772008-04-17 21:40:36 -0300129 if (!dev)
130 return 0;
131
132 if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
133 return 0;
134
135 if (urb->status < 0) {
136 print_err_status(dev, -1, urb->status);
137 if (urb->status == -ENOENT)
138 return 0;
139 }
140
141 for (i = 0; i < urb->number_of_packets; i++) {
142 int status = urb->iso_frame_desc[i].status;
143
144 if (status < 0) {
145 print_err_status(dev, i, status);
146 if (urb->iso_frame_desc[i].status != -EPROTO)
147 continue;
148 }
149
150 dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer +
151 urb->iso_frame_desc[i].offset,
152 urb->iso_frame_desc[i].actual_length);
153 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300154
155 return 0;
156}
157
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300158static int em28xx_start_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300159{
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300160 int rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300161 struct em28xx *dev = dvb->adapter.priv;
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300162 int max_dvb_packet_size;
Aidan Thornton3421b772008-04-17 21:40:36 -0300163
164 usb_set_interface(dev->udev, 0, 1);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300165 rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
166 if (rc < 0)
167 return rc;
Aidan Thornton3421b772008-04-17 21:40:36 -0300168
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300169 max_dvb_packet_size = em28xx_isoc_dvb_max_packetsize(dev);
Mauro Carvalho Chehabf7acc4b2011-07-28 15:42:00 -0300170 if (max_dvb_packet_size < 0)
171 return max_dvb_packet_size;
172 dprintk(1, "Using %d buffers each with %d bytes\n",
173 EM28XX_DVB_NUM_BUFS,
174 max_dvb_packet_size);
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300175
Aidan Thornton3421b772008-04-17 21:40:36 -0300176 return em28xx_init_isoc(dev, EM28XX_DVB_MAX_PACKETS,
Devin Heitmuellerd18e2fd2009-05-16 17:09:28 -0300177 EM28XX_DVB_NUM_BUFS, max_dvb_packet_size,
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300178 em28xx_dvb_isoc_copy);
Aidan Thornton3421b772008-04-17 21:40:36 -0300179}
180
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300181static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300182{
Aidan Thornton3421b772008-04-17 21:40:36 -0300183 struct em28xx *dev = dvb->adapter.priv;
184
185 em28xx_uninit_isoc(dev);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300186
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300187 em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300188
Aidan Thornton3421b772008-04-17 21:40:36 -0300189 return 0;
190}
191
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300192static int em28xx_start_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300193{
194 struct dvb_demux *demux = feed->demux;
195 struct em28xx_dvb *dvb = demux->priv;
196 int rc, ret;
197
198 if (!demux->dmx.frontend)
199 return -EINVAL;
200
201 mutex_lock(&dvb->lock);
202 dvb->nfeeds++;
203 rc = dvb->nfeeds;
204
205 if (dvb->nfeeds == 1) {
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300206 ret = em28xx_start_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300207 if (ret < 0)
208 rc = ret;
Aidan Thornton3421b772008-04-17 21:40:36 -0300209 }
210
211 mutex_unlock(&dvb->lock);
212 return rc;
213}
214
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300215static int em28xx_stop_feed(struct dvb_demux_feed *feed)
Aidan Thornton3421b772008-04-17 21:40:36 -0300216{
217 struct dvb_demux *demux = feed->demux;
218 struct em28xx_dvb *dvb = demux->priv;
219 int err = 0;
220
221 mutex_lock(&dvb->lock);
222 dvb->nfeeds--;
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300223
224 if (0 == dvb->nfeeds)
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300225 err = em28xx_stop_streaming(dvb);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300226
Aidan Thornton3421b772008-04-17 21:40:36 -0300227 mutex_unlock(&dvb->lock);
228 return err;
229}
230
231
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300232
233/* ------------------------------------------------------------------ */
234static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
235{
236 struct em28xx *dev = fe->dvb->priv;
237
238 if (acquire)
239 return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
240 else
Mauro Carvalho Chehab2fe3e2e2008-11-27 09:10:40 -0300241 return em28xx_set_mode(dev, EM28XX_SUSPEND);
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300242}
243
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300244/* ------------------------------------------------------------------ */
245
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300246static struct lgdt330x_config em2880_lgdt3303_dev = {
247 .demod_address = 0x0e,
248 .demod_chip = LGDT3303,
249};
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300250
Jarod Wilson7e48b302010-03-07 17:55:43 -0300251static struct lgdt3305_config em2870_lgdt3304_dev = {
252 .i2c_addr = 0x0e,
253 .demod_chip = LGDT3304,
254 .spectral_inversion = 1,
255 .deny_i2c_rptr = 1,
256 .mpeg_mode = LGDT3305_MPEG_PARALLEL,
257 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
258 .tpvalid_polarity = LGDT3305_TP_VALID_HIGH,
259 .vsb_if_khz = 3250,
260 .qam_if_khz = 4000,
261};
262
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300263static struct s921_config sharp_isdbt = {
264 .demod_address = 0x30 >> 1
265};
266
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300267static struct zl10353_config em28xx_zl10353_with_xc3028 = {
268 .demod_address = (0x1e >> 1),
269 .no_tuner = 1,
270 .parallel_ts = 1,
271 .if2 = 45600,
272};
273
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300274static struct s5h1409_config em28xx_s5h1409_with_xc3028 = {
275 .demod_address = 0x32 >> 1,
276 .output_mode = S5H1409_PARALLEL_OUTPUT,
277 .gpio = S5H1409_GPIO_OFF,
278 .inversion = S5H1409_INVERSION_OFF,
279 .status_mode = S5H1409_DEMODLOCKING,
280 .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
281};
282
Jarod Wilson7e48b302010-03-07 17:55:43 -0300283static struct tda18271_std_map kworld_a340_std_map = {
284 .atsc_6 = { .if_freq = 3250, .agc_mode = 3, .std = 0,
285 .if_lvl = 1, .rfagc_top = 0x37, },
286 .qam_6 = { .if_freq = 4000, .agc_mode = 3, .std = 1,
287 .if_lvl = 1, .rfagc_top = 0x37, },
288};
289
290static struct tda18271_config kworld_a340_config = {
291 .std_map = &kworld_a340_std_map,
292};
293
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300294static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300295 .demod_address = (0x1e >> 1),
296 .no_tuner = 1,
297 .disable_i2c_gate_ctrl = 1,
298 .parallel_ts = 1,
299 .if2 = 45600,
300};
301
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300302static struct drxd_config em28xx_drxd = {
303 .index = 0, .demod_address = 0x70, .demod_revision = 0xa2,
304 .demoda_address = 0x00, .pll_address = 0x00,
305 .pll_type = DRXD_PLL_NONE, .clock = 12000, .insert_rs_byte = 1,
306 .pll_set = NULL, .osc_deviation = NULL, .IF = 42800000,
Devin Heitmueller6b142b32011-03-13 02:02:01 -0300307 .disable_i2c_gate_ctrl = 1,
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300308};
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300309
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300310struct drxk_config terratec_h5_drxk = {
311 .adr = 0x29,
Mauro Carvalho Chehabe4f4f872011-07-09 17:35:26 -0300312 .single_master = 1,
Mauro Carvalho Chehabf1fe1b72011-07-09 21:59:33 -0300313 .no_i2c_bridge = 1,
Mauro Carvalho Chehab8b9456a2011-07-11 14:33:51 -0300314 .microcode_name = "dvb-usb-terratec-h5-drxk.fw",
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300315};
316
317static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
318{
319 struct em28xx_dvb *dvb = fe->sec_priv;
320 int status;
321
322 if (!dvb)
323 return -EINVAL;
324
325 if (enable) {
326 down(&dvb->pll_mutex);
327 status = dvb->gate_ctrl(fe, 1);
328 } else {
329 status = dvb->gate_ctrl(fe, 0);
330 up(&dvb->pll_mutex);
331 }
332 return status;
333}
334
335static void terratec_h5_init(struct em28xx *dev)
336{
337 int i;
338 struct em28xx_reg_seq terratec_h5_init[] = {
339 {EM28XX_R08_GPIO, 0xff, 0xff, 10},
340 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
341 {EM2874_R80_GPIO, 0xf2, 0xff, 50},
342 {EM2874_R80_GPIO, 0xf6, 0xff, 100},
343 { -1, -1, -1, -1},
344 };
345 struct em28xx_reg_seq terratec_h5_end[] = {
346 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
347 {EM2874_R80_GPIO, 0xa6, 0xff, 50},
348 {EM2874_R80_GPIO, 0xe6, 0xff, 100},
349 { -1, -1, -1, -1},
350 };
351 struct {
352 unsigned char r[4];
353 int len;
354 } regs[] = {
355 {{ 0x06, 0x02, 0x00, 0x31 }, 4},
356 {{ 0x01, 0x02 }, 2},
357 {{ 0x01, 0x02, 0x00, 0xc6 }, 4},
358 {{ 0x01, 0x00 }, 2},
359 {{ 0x01, 0x00, 0xff, 0xaf }, 4},
360 {{ 0x01, 0x00, 0x03, 0xa0 }, 4},
361 {{ 0x01, 0x00 }, 2},
362 {{ 0x01, 0x00, 0x73, 0xaf }, 4},
363 {{ 0x04, 0x00 }, 2},
364 {{ 0x00, 0x04 }, 2},
365 {{ 0x00, 0x04, 0x00, 0x0a }, 4},
366 {{ 0x04, 0x14 }, 2},
367 {{ 0x04, 0x14, 0x00, 0x00 }, 4},
368 };
369
370 em28xx_gpio_set(dev, terratec_h5_init);
371 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
372 msleep(10);
373 em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
374 msleep(10);
375
376 dev->i2c_client.addr = 0x82 >> 1;
377
378 for (i = 0; i < ARRAY_SIZE(regs); i++)
379 i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
380 em28xx_gpio_set(dev, terratec_h5_end);
381};
382
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300383static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300384{
385 /* Values extracted from a USB trace of the Terratec Windows driver */
386 static u8 clock_config[] = { CLOCK_CTL, 0x38, 0x2c };
387 static u8 reset[] = { RESET, 0x80 };
388 static u8 adc_ctl_1_cfg[] = { ADC_CTL_1, 0x40 };
389 static u8 agc_cfg[] = { AGC_TARGET, 0x28, 0xa0 };
390 static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 };
391 static u8 rs_err_cfg[] = { RS_ERR_PER_1, 0x00, 0x4d };
392 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
393 static u8 trl_nom_cfg[] = { TRL_NOMINAL_RATE_1, 0x64, 0x00 };
394 static u8 tps_given_cfg[] = { TPS_GIVEN_1, 0x40, 0x80, 0x50 };
Devin Heitmuellerff697862009-07-12 18:44:19 -0300395 static u8 tuner_go[] = { TUNER_GO, 0x01};
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300396
397 mt352_write(fe, clock_config, sizeof(clock_config));
398 udelay(200);
399 mt352_write(fe, reset, sizeof(reset));
400 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
401 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
402 mt352_write(fe, input_freq_cfg, sizeof(input_freq_cfg));
403 mt352_write(fe, rs_err_cfg, sizeof(rs_err_cfg));
404 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
405 mt352_write(fe, trl_nom_cfg, sizeof(trl_nom_cfg));
406 mt352_write(fe, tps_given_cfg, sizeof(tps_given_cfg));
407 mt352_write(fe, tuner_go, sizeof(tuner_go));
408 return 0;
409}
410
411static struct mt352_config terratec_xs_mt352_cfg = {
412 .demod_address = (0x1e >> 1),
413 .no_tuner = 1,
414 .if2 = 45600,
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300415 .demod_init = em28xx_mt352_terratec_xs_init,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300416};
417
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300418static struct tda10023_config em28xx_tda10023_config = {
419 .demod_address = 0x0c,
420 .invert = 1,
421};
422
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300423static struct cxd2820r_config em28xx_cxd2820r_config = {
424 .i2c_address = (0xd8 >> 1),
425 .ts_mode = CXD2820R_TS_SERIAL,
426 .if_dvbt_6 = 3300,
427 .if_dvbt_7 = 3500,
428 .if_dvbt_8 = 4000,
429 .if_dvbt2_6 = 3300,
430 .if_dvbt2_7 = 3500,
431 .if_dvbt2_8 = 4000,
432 .if_dvbc = 5000,
433
434 /* enable LNA for DVB-T2 and DVB-C */
435 .gpio_dvbt2[0] = CXD2820R_GPIO_E | CXD2820R_GPIO_O | CXD2820R_GPIO_L,
436 .gpio_dvbc[0] = CXD2820R_GPIO_E | CXD2820R_GPIO_O | CXD2820R_GPIO_L,
437};
438
439static struct tda18271_config em28xx_cxd2820r_tda18271_config = {
440 .output_opt = TDA18271_OUTPUT_LT_OFF,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300441 .gate = TDA18271_GATE_DIGITAL,
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300442};
443
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300444/* ------------------------------------------------------------------ */
445
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300446static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300447{
448 struct dvb_frontend *fe;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300449 struct xc2028_config cfg;
450
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300451 memset(&cfg, 0, sizeof(cfg));
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300452 cfg.i2c_adap = &dev->i2c_adap;
453 cfg.i2c_addr = addr;
Mauro Carvalho Chehab3ca9c092008-04-17 21:37:53 -0300454
Antti Palosaarif71095b2011-04-07 15:51:52 -0300455 if (!dev->dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -0300456 em28xx_errdev("/2: dvb frontend not attached. "
457 "Can't attach xc3028\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300458 return -EINVAL;
459 }
460
Antti Palosaarif71095b2011-04-07 15:51:52 -0300461 fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300462 if (!fe) {
Filipe Rosset480be182009-11-04 15:32:37 -0300463 em28xx_errdev("/2: xc3028 attach failed\n");
Antti Palosaarif71095b2011-04-07 15:51:52 -0300464 dvb_frontend_detach(dev->dvb->fe[0]);
465 dev->dvb->fe[0] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300466 return -EINVAL;
467 }
468
Filipe Rosset480be182009-11-04 15:32:37 -0300469 em28xx_info("%s/2: xc3028 attached\n", dev->name);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300470
471 return 0;
472}
473
Aidan Thornton3421b772008-04-17 21:40:36 -0300474/* ------------------------------------------------------------------ */
475
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300476static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
477 struct em28xx *dev, struct device *device)
Aidan Thornton3421b772008-04-17 21:40:36 -0300478{
479 int result;
480
481 mutex_init(&dvb->lock);
482
483 /* register adapter */
484 result = dvb_register_adapter(&dvb->adapter, dev->name, module, device,
485 adapter_nr);
486 if (result < 0) {
487 printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
488 dev->name, result);
489 goto fail_adapter;
490 }
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300491
492 /* Ensure all frontends negotiate bus access */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300493 dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
494 if (dvb->fe[1])
495 dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300496
Aidan Thornton3421b772008-04-17 21:40:36 -0300497 dvb->adapter.priv = dev;
498
499 /* register frontend */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300500 result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300501 if (result < 0) {
502 printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
503 dev->name, result);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300504 goto fail_frontend0;
505 }
506
507 /* register 2nd frontend */
508 if (dvb->fe[1]) {
509 result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
510 if (result < 0) {
511 printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n",
512 dev->name, result);
513 goto fail_frontend1;
514 }
Aidan Thornton3421b772008-04-17 21:40:36 -0300515 }
516
517 /* register demux stuff */
518 dvb->demux.dmx.capabilities =
519 DMX_TS_FILTERING | DMX_SECTION_FILTERING |
520 DMX_MEMORY_BASED_FILTERING;
521 dvb->demux.priv = dvb;
522 dvb->demux.filternum = 256;
523 dvb->demux.feednum = 256;
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300524 dvb->demux.start_feed = em28xx_start_feed;
525 dvb->demux.stop_feed = em28xx_stop_feed;
Mauro Carvalho Chehabe3569ab2008-04-17 21:49:20 -0300526
Aidan Thornton3421b772008-04-17 21:40:36 -0300527 result = dvb_dmx_init(&dvb->demux);
528 if (result < 0) {
529 printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
530 dev->name, result);
531 goto fail_dmx;
532 }
533
534 dvb->dmxdev.filternum = 256;
535 dvb->dmxdev.demux = &dvb->demux.dmx;
536 dvb->dmxdev.capabilities = 0;
537 result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter);
538 if (result < 0) {
539 printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
540 dev->name, result);
541 goto fail_dmxdev;
542 }
543
544 dvb->fe_hw.source = DMX_FRONTEND_0;
545 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
546 if (result < 0) {
547 printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
548 dev->name, result);
549 goto fail_fe_hw;
550 }
551
552 dvb->fe_mem.source = DMX_MEMORY_FE;
553 result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
554 if (result < 0) {
555 printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
556 dev->name, result);
557 goto fail_fe_mem;
558 }
559
560 result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
561 if (result < 0) {
562 printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
563 dev->name, result);
564 goto fail_fe_conn;
565 }
566
567 /* register network adapter */
568 dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx);
569 return 0;
570
571fail_fe_conn:
572 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
573fail_fe_mem:
574 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
575fail_fe_hw:
576 dvb_dmxdev_release(&dvb->dmxdev);
577fail_dmxdev:
578 dvb_dmx_release(&dvb->demux);
579fail_dmx:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300580 if (dvb->fe[1])
581 dvb_unregister_frontend(dvb->fe[1]);
582 dvb_unregister_frontend(dvb->fe[0]);
583fail_frontend1:
584 if (dvb->fe[1])
585 dvb_frontend_detach(dvb->fe[1]);
586fail_frontend0:
587 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300588 dvb_unregister_adapter(&dvb->adapter);
589fail_adapter:
590 return result;
591}
592
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300593static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
Aidan Thornton3421b772008-04-17 21:40:36 -0300594{
595 dvb_net_release(&dvb->net);
596 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
597 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
598 dvb_dmxdev_release(&dvb->dmxdev);
599 dvb_dmx_release(&dvb->demux);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300600 if (dvb->fe[1])
601 dvb_unregister_frontend(dvb->fe[1]);
602 dvb_unregister_frontend(dvb->fe[0]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300603 if (dvb->fe[1] && !dvb->dont_attach_fe1)
Antti Palosaarif71095b2011-04-07 15:51:52 -0300604 dvb_frontend_detach(dvb->fe[1]);
605 dvb_frontend_detach(dvb->fe[0]);
Aidan Thornton3421b772008-04-17 21:40:36 -0300606 dvb_unregister_adapter(&dvb->adapter);
607}
608
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300609static int em28xx_dvb_init(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300610{
Antti Palosaarie3645432011-07-28 18:59:30 -0300611 int result = 0, mfe_shared = 0;
Aidan Thornton3421b772008-04-17 21:40:36 -0300612 struct em28xx_dvb *dvb;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300613
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300614 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300615 /* This device does not support the extension */
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300616 printk(KERN_INFO "em28xx_dvb: This device does not support the extension\n");
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300617 return 0;
618 }
619
Aidan Thornton3421b772008-04-17 21:40:36 -0300620 dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300621
622 if (dvb == NULL) {
Filipe Rosset480be182009-11-04 15:32:37 -0300623 em28xx_info("em28xx_dvb: memory allocation failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -0300624 return -ENOMEM;
625 }
626 dev->dvb = dvb;
Antti Palosaarif71095b2011-04-07 15:51:52 -0300627 dvb->fe[0] = dvb->fe[1] = NULL;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300628
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -0300629 mutex_lock(&dev->lock);
Mauro Carvalho Chehabc67ec532008-04-17 21:48:00 -0300630 em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300631 /* init frontend */
632 switch (dev->model) {
Mauro Carvalho Chehabebaefdb2011-06-01 10:16:25 -0300633 case EM2874_BOARD_LEADERSHIP_ISDBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300634 dvb->fe[0] = dvb_attach(s921_attach,
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300635 &sharp_isdbt, &dev->i2c_adap);
636
Antti Palosaarif71095b2011-04-07 15:51:52 -0300637 if (!dvb->fe[0]) {
Mauro Carvalho Chehabca3dfd62010-09-10 17:29:14 -0300638 result = -EINVAL;
639 goto out_free;
640 }
641
642 break;
Douglas Schilling Landgraff89bc322008-12-01 21:01:04 -0300643 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
Mauro Carvalho Chehab10ac6602008-07-27 14:58:58 -0300644 case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
Devin Heitmueller4fd305b2008-06-04 13:43:46 -0300645 case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
Devin Heitmuellere14b3652008-07-26 11:04:33 -0300646 case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300647 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300648 &em2880_lgdt3303_dev,
649 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300650 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300651 result = -EINVAL;
652 goto out_free;
653 }
Mauro Carvalho Chehab227ad4a2008-04-17 21:37:40 -0300654 break;
Thierry MERLE46510b52008-10-11 16:56:13 -0300655 case EM2880_BOARD_KWORLD_DVB_310U:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300656 dvb->fe[0] = dvb_attach(zl10353_attach,
Aidan Thornton3421b772008-04-17 21:40:36 -0300657 &em28xx_zl10353_with_xc3028,
658 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300659 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Aidan Thornton3421b772008-04-17 21:40:36 -0300660 result = -EINVAL;
661 goto out_free;
662 }
Aidan Thornton7e6388a2008-04-17 21:40:03 -0300663 break;
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300664 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
Uroš Vamplec994d02009-09-30 22:53:37 -0300665 case EM2882_BOARD_TERRATEC_HYBRID_XS:
Devin Heitmueller01a5fd62009-08-07 09:25:06 -0300666 case EM2880_BOARD_EMPIRE_DUAL_TV:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300667 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300668 &em28xx_zl10353_xc3028_no_i2c_gate,
669 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300670 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300671 result = -EINVAL;
672 goto out_free;
673 }
674 break;
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300675 case EM2880_BOARD_TERRATEC_HYBRID_XS:
Catimimi65638012010-02-18 18:06:32 -0300676 case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
Devin Heitmuellerd5b3ba92009-07-08 21:51:35 -0300677 case EM2881_BOARD_PINNACLE_HYBRID_PRO:
Andrea.Amorosi76@gmail.com7ca7ef62010-02-09 17:53:38 -0300678 case EM2882_BOARD_DIKOM_DK300:
Antonio Larrosa811fab62010-03-04 22:19:48 -0300679 case EM2882_BOARD_KWORLD_VS_DVBT:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300680 dvb->fe[0] = dvb_attach(zl10353_attach,
Devin Heitmuellera84f79a2009-07-12 17:05:02 -0300681 &em28xx_zl10353_xc3028_no_i2c_gate,
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300682 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300683 if (dvb->fe[0] == NULL) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300684 /* This board could have either a zl10353 or a mt352.
685 If the chip id isn't for zl10353, try mt352 */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300686 dvb->fe[0] = dvb_attach(mt352_attach,
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300687 &terratec_xs_mt352_cfg,
688 &dev->i2c_adap);
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300689 }
Devin Heitmueller4fb202a2009-07-12 17:51:12 -0300690
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300691 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmuellerf7976082009-06-22 22:32:32 -0300692 result = -EINVAL;
693 goto out_free;
694 }
695 break;
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300696 case EM2883_BOARD_KWORLD_HYBRID_330U:
Devin Heitmueller19859222009-06-19 00:33:54 -0300697 case EM2882_BOARD_EVGA_INDTUBE:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300698 dvb->fe[0] = dvb_attach(s5h1409_attach,
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300699 &em28xx_s5h1409_with_xc3028,
700 &dev->i2c_adap);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300701 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Robert Krakora6e7b9ea2009-01-18 21:59:34 -0300702 result = -EINVAL;
703 goto out_free;
704 }
705 break;
Franklin Mengd7de5d82009-06-06 17:05:02 -0300706 case EM2882_BOARD_KWORLD_ATSC_315U:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300707 dvb->fe[0] = dvb_attach(lgdt330x_attach,
Franklin Mengd7de5d82009-06-06 17:05:02 -0300708 &em2880_lgdt3303_dev,
709 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300710 if (dvb->fe[0] != NULL) {
711 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Franklin Mengd7de5d82009-06-06 17:05:02 -0300712 &dev->i2c_adap, 0x61, TUNER_THOMSON_DTT761X)) {
713 result = -EINVAL;
714 goto out_free;
715 }
716 }
717 break;
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300718 case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
Devin Heitmuellerad9b4bb2011-03-13 02:09:59 -0300719 case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300720 dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
Devin Heitmueller75e2b862011-03-13 02:01:02 -0300721 &dev->i2c_adap, &dev->udev->dev);
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300722 if (em28xx_attach_xc3028(0x61, dev) < 0) {
Devin Heitmueller17d9d552008-06-08 10:22:03 -0300723 result = -EINVAL;
724 goto out_free;
725 }
726 break;
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300727 case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
728 /* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300729 dvb->fe[0] = dvb_attach(tda10023_attach,
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300730 &em28xx_tda10023_config,
731 &dev->i2c_adap, 0x48);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300732 if (dvb->fe[0]) {
733 if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
Antti Palosaari285eb1a2009-09-15 14:42:13 -0300734 &dev->i2c_adap, 0x60, TUNER_PHILIPS_CU1216L)) {
735 result = -EINVAL;
736 goto out_free;
737 }
738 }
739 break;
Jarod Wilson7e48b302010-03-07 17:55:43 -0300740 case EM2870_BOARD_KWORLD_A340:
Antti Palosaarif71095b2011-04-07 15:51:52 -0300741 dvb->fe[0] = dvb_attach(lgdt3305_attach,
Jarod Wilson7e48b302010-03-07 17:55:43 -0300742 &em2870_lgdt3304_dev,
743 &dev->i2c_adap);
Antti Palosaarif71095b2011-04-07 15:51:52 -0300744 if (dvb->fe[0] != NULL)
745 dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Jarod Wilson7e48b302010-03-07 17:55:43 -0300746 &dev->i2c_adap, &kworld_a340_config);
747 break;
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300748 case EM28174_BOARD_PCTV_290E:
749 /* MFE
750 * FE 0 = DVB-T/T2 + FE 1 = DVB-C, both sharing same tuner. */
751 /* FE 0 */
752 dvb->fe[0] = dvb_attach(cxd2820r_attach,
753 &em28xx_cxd2820r_config, &dev->i2c_adap, NULL);
754 if (dvb->fe[0]) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300755 /* FE 0 attach tuner */
756 if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300757 &dev->i2c_adap, &em28xx_cxd2820r_tda18271_config)) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300758 dvb_frontend_detach(dvb->fe[0]);
759 result = -EINVAL;
760 goto out_free;
761 }
762 /* FE 1. This dvb_attach() cannot fail. */
763 dvb->fe[1] = dvb_attach(cxd2820r_attach, NULL, NULL,
764 dvb->fe[0]);
765 dvb->fe[1]->id = 1;
766 /* FE 1 attach tuner */
767 if (!dvb_attach(tda18271_attach, dvb->fe[1], 0x60,
Steve Kerrison0db4bf42011-08-09 07:16:21 -0300768 &dev->i2c_adap, &em28xx_cxd2820r_tda18271_config)) {
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300769 dvb_frontend_detach(dvb->fe[1]);
770 /* leave FE 0 still active */
771 }
Antti Palosaarie3645432011-07-28 18:59:30 -0300772
773 mfe_shared = 1;
Antti Palosaarid6a5f922011-04-07 16:34:44 -0300774 }
775 break;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300776 case EM2884_BOARD_TERRATEC_H5:
777 terratec_h5_init(dev);
778
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300779 dvb->dont_attach_fe1 = 1;
780
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300781 dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap, &dvb->fe[1]);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300782 if (!dvb->fe[0]) {
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300783 result = -EINVAL;
784 goto out_free;
785 }
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300786
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300787 /* FIXME: do we need a pll semaphore? */
788 dvb->fe[0]->sec_priv = dvb;
789 sema_init(&dvb->pll_mutex, 1);
790 dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
791 dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300792 dvb->fe[1]->id = 1;
793
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300794 /* Attach tda18271 to DVB-C frontend */
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300795 if (dvb->fe[0]->ops.i2c_gate_ctrl)
796 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
797 if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap, 0x60)) {
798 result = -EINVAL;
799 goto out_free;
800 }
801 if (dvb->fe[0]->ops.i2c_gate_ctrl)
802 dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
Mauro Carvalho Chehabc4c3a3d2011-07-14 22:23:18 -0300803
804 /* Hack - needed by drxk/tda18271c2dd */
805 dvb->fe[1]->tuner_priv = dvb->fe[0]->tuner_priv;
806 memcpy(&dvb->fe[1]->ops.tuner_ops,
807 &dvb->fe[0]->ops.tuner_ops,
808 sizeof(dvb->fe[0]->ops.tuner_ops));
Mauro Carvalho Chehabfec528b2011-07-03 21:05:06 -0300809
810 break;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300811 default:
Filipe Rosset480be182009-11-04 15:32:37 -0300812 em28xx_errdev("/2: The frontend of your DVB/ATSC card"
813 " isn't supported yet\n");
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300814 break;
815 }
Antti Palosaarif71095b2011-04-07 15:51:52 -0300816 if (NULL == dvb->fe[0]) {
Filipe Rosset480be182009-11-04 15:32:37 -0300817 em28xx_errdev("/2: frontend initialization failed\n");
Aidan Thornton3421b772008-04-17 21:40:36 -0300818 result = -EINVAL;
819 goto out_free;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300820 }
Michael Krufkyd7cba042008-09-12 13:31:45 -0300821 /* define general-purpose callback pointer */
Antti Palosaarif71095b2011-04-07 15:51:52 -0300822 dvb->fe[0]->callback = em28xx_tuner_callback;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300823
824 /* register everything */
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300825 result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev);
Aidan Thornton3421b772008-04-17 21:40:36 -0300826
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300827 if (result < 0)
Aidan Thornton3421b772008-04-17 21:40:36 -0300828 goto out_free;
Aidan Thornton3421b772008-04-17 21:40:36 -0300829
Antti Palosaarie3645432011-07-28 18:59:30 -0300830 /* MFE lock */
831 dvb->adapter.mfe_shared = mfe_shared;
832
Filipe Rosset480be182009-11-04 15:32:37 -0300833 em28xx_info("Successfully loaded em28xx-dvb\n");
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -0300834ret:
835 em28xx_set_mode(dev, EM28XX_SUSPEND);
836 mutex_unlock(&dev->lock);
837 return result;
Aidan Thornton3421b772008-04-17 21:40:36 -0300838
839out_free:
840 kfree(dvb);
841 dev->dvb = NULL;
Mauro Carvalho Chehab50133182010-04-07 17:07:58 -0300842 goto ret;
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300843}
844
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300845static int em28xx_dvb_fini(struct em28xx *dev)
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300846{
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300847 if (!dev->board.has_dvb) {
Devin Heitmuellerdf619182008-06-10 12:34:35 -0300848 /* This device does not support the extension */
849 return 0;
850 }
851
Aidan Thornton3421b772008-04-17 21:40:36 -0300852 if (dev->dvb) {
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300853 em28xx_unregister_dvb(dev->dvb);
Francesco Lavra19f48cb2009-12-31 08:47:11 -0300854 kfree(dev->dvb);
Aidan Thornton3421b772008-04-17 21:40:36 -0300855 dev->dvb = NULL;
856 }
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300857
858 return 0;
859}
860
861static struct em28xx_ops dvb_ops = {
862 .id = EM28XX_DVB,
863 .name = "Em28xx dvb Extension",
Jarod Wilsonf2d0c1c2011-07-14 19:06:08 -0300864 .init = em28xx_dvb_init,
865 .fini = em28xx_dvb_fini,
Mauro Carvalho Chehab3aefb792008-04-17 21:36:41 -0300866};
867
868static int __init em28xx_dvb_register(void)
869{
870 return em28xx_register_extension(&dvb_ops);
871}
872
873static void __exit em28xx_dvb_unregister(void)
874{
875 em28xx_unregister_extension(&dvb_ops);
876}
877
878module_init(em28xx_dvb_register);
879module_exit(em28xx_dvb_unregister);