3 * device driver for Conexant 2388x based TV cards
4 * MPEG Transport Stream (DVB) routines
6 * (c) 2004, 2005 Chris Pascoe <c.pascoe@itee.uq.edu.au>
7 * (c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/device.h>
28 #include <linux/kthread.h>
29 #include <linux/file.h>
30 #include <linux/suspend.h>
34 #include <media/v4l2-common.h>
37 #include "mt352_priv.h"
38 #include "cx88-vp3054-i2c.h"
49 #include "tuner-simple.h"
59 #include "stb6100_proc.h"
64 MODULE_DESCRIPTION("driver for cx2388x based DVB cards");
65 MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
66 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
67 MODULE_LICENSE("GPL");
68 MODULE_VERSION(CX88_VERSION
);
70 static unsigned int debug
;
71 module_param(debug
, int, 0644);
72 MODULE_PARM_DESC(debug
,"enable debug messages [dvb]");
74 static unsigned int dvb_buf_tscnt
= 32;
75 module_param(dvb_buf_tscnt
, int, 0644);
76 MODULE_PARM_DESC(dvb_buf_tscnt
, "DVB Buffer TS count [dvb]");
78 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
80 #define dprintk(level,fmt, arg...) if (debug >= level) \
81 printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg)
83 /* ------------------------------------------------------------------ */
85 static int dvb_buf_setup(struct videobuf_queue
*q
,
86 unsigned int *count
, unsigned int *size
)
88 struct cx8802_dev
*dev
= q
->priv_data
;
90 dev
->ts_packet_size
= 188 * 4;
91 dev
->ts_packet_count
= dvb_buf_tscnt
;
93 *size
= dev
->ts_packet_size
* dev
->ts_packet_count
;
94 *count
= dvb_buf_tscnt
;
98 static int dvb_buf_prepare(struct videobuf_queue
*q
,
99 struct videobuf_buffer
*vb
, enum v4l2_field field
)
101 struct cx8802_dev
*dev
= q
->priv_data
;
102 return cx8802_buf_prepare(q
, dev
, (struct cx88_buffer
*)vb
,field
);
105 static void dvb_buf_queue(struct videobuf_queue
*q
, struct videobuf_buffer
*vb
)
107 struct cx8802_dev
*dev
= q
->priv_data
;
108 cx8802_buf_queue(dev
, (struct cx88_buffer
*)vb
);
111 static void dvb_buf_release(struct videobuf_queue
*q
,
112 struct videobuf_buffer
*vb
)
114 cx88_free_buffer(q
, (struct cx88_buffer
*)vb
);
117 static const struct videobuf_queue_ops dvb_qops
= {
118 .buf_setup
= dvb_buf_setup
,
119 .buf_prepare
= dvb_buf_prepare
,
120 .buf_queue
= dvb_buf_queue
,
121 .buf_release
= dvb_buf_release
,
124 /* ------------------------------------------------------------------ */
126 static int cx88_dvb_bus_ctrl(struct dvb_frontend
* fe
, int acquire
)
128 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
129 struct cx8802_driver
*drv
= NULL
;
133 fe_id
= videobuf_dvb_find_frontend(&dev
->frontends
, fe
);
135 printk(KERN_ERR
"%s() No frontend found\n", __func__
);
139 mutex_lock(&dev
->core
->lock
);
140 drv
= cx8802_get_driver(dev
, CX88_MPEG_DVB
);
143 dev
->frontends
.active_fe_id
= fe_id
;
144 ret
= drv
->request_acquire(drv
);
146 ret
= drv
->request_release(drv
);
147 dev
->frontends
.active_fe_id
= 0;
150 mutex_unlock(&dev
->core
->lock
);
155 static void cx88_dvb_gate_ctrl(struct cx88_core
*core
, int open
)
157 struct videobuf_dvb_frontends
*f
;
158 struct videobuf_dvb_frontend
*fe
;
163 f
= &core
->dvbdev
->frontends
;
168 if (f
->gate
<= 1) /* undefined or fe0 */
169 fe
= videobuf_dvb_get_frontend(f
, 1);
171 fe
= videobuf_dvb_get_frontend(f
, f
->gate
);
173 if (fe
&& fe
->dvb
.frontend
&& fe
->dvb
.frontend
->ops
.i2c_gate_ctrl
)
174 fe
->dvb
.frontend
->ops
.i2c_gate_ctrl(fe
->dvb
.frontend
, open
);
177 /* ------------------------------------------------------------------ */
179 static int dvico_fusionhdtv_demod_init(struct dvb_frontend
* fe
)
181 static const u8 clock_config
[] = { CLOCK_CTL
, 0x38, 0x39 };
182 static const u8 reset
[] = { RESET
, 0x80 };
183 static const u8 adc_ctl_1_cfg
[] = { ADC_CTL_1
, 0x40 };
184 static const u8 agc_cfg
[] = { AGC_TARGET
, 0x24, 0x20 };
185 static const u8 gpp_ctl_cfg
[] = { GPP_CTL
, 0x33 };
186 static const u8 capt_range_cfg
[] = { CAPT_RANGE
, 0x32 };
188 mt352_write(fe
, clock_config
, sizeof(clock_config
));
190 mt352_write(fe
, reset
, sizeof(reset
));
191 mt352_write(fe
, adc_ctl_1_cfg
, sizeof(adc_ctl_1_cfg
));
193 mt352_write(fe
, agc_cfg
, sizeof(agc_cfg
));
194 mt352_write(fe
, gpp_ctl_cfg
, sizeof(gpp_ctl_cfg
));
195 mt352_write(fe
, capt_range_cfg
, sizeof(capt_range_cfg
));
199 static int dvico_dual_demod_init(struct dvb_frontend
*fe
)
201 static const u8 clock_config
[] = { CLOCK_CTL
, 0x38, 0x38 };
202 static const u8 reset
[] = { RESET
, 0x80 };
203 static const u8 adc_ctl_1_cfg
[] = { ADC_CTL_1
, 0x40 };
204 static const u8 agc_cfg
[] = { AGC_TARGET
, 0x28, 0x20 };
205 static const u8 gpp_ctl_cfg
[] = { GPP_CTL
, 0x33 };
206 static const u8 capt_range_cfg
[] = { CAPT_RANGE
, 0x32 };
208 mt352_write(fe
, clock_config
, sizeof(clock_config
));
210 mt352_write(fe
, reset
, sizeof(reset
));
211 mt352_write(fe
, adc_ctl_1_cfg
, sizeof(adc_ctl_1_cfg
));
213 mt352_write(fe
, agc_cfg
, sizeof(agc_cfg
));
214 mt352_write(fe
, gpp_ctl_cfg
, sizeof(gpp_ctl_cfg
));
215 mt352_write(fe
, capt_range_cfg
, sizeof(capt_range_cfg
));
220 static int dntv_live_dvbt_demod_init(struct dvb_frontend
* fe
)
222 static const u8 clock_config
[] = { 0x89, 0x38, 0x39 };
223 static const u8 reset
[] = { 0x50, 0x80 };
224 static const u8 adc_ctl_1_cfg
[] = { 0x8E, 0x40 };
225 static const u8 agc_cfg
[] = { 0x67, 0x10, 0x23, 0x00, 0xFF, 0xFF,
226 0x00, 0xFF, 0x00, 0x40, 0x40 };
227 static const u8 dntv_extra
[] = { 0xB5, 0x7A };
228 static const u8 capt_range_cfg
[] = { 0x75, 0x32 };
230 mt352_write(fe
, clock_config
, sizeof(clock_config
));
232 mt352_write(fe
, reset
, sizeof(reset
));
233 mt352_write(fe
, adc_ctl_1_cfg
, sizeof(adc_ctl_1_cfg
));
235 mt352_write(fe
, agc_cfg
, sizeof(agc_cfg
));
237 mt352_write(fe
, dntv_extra
, sizeof(dntv_extra
));
238 mt352_write(fe
, capt_range_cfg
, sizeof(capt_range_cfg
));
243 static const struct mt352_config dvico_fusionhdtv
= {
244 .demod_address
= 0x0f,
245 .demod_init
= dvico_fusionhdtv_demod_init
,
248 static const struct mt352_config dntv_live_dvbt_config
= {
249 .demod_address
= 0x0f,
250 .demod_init
= dntv_live_dvbt_demod_init
,
253 static const struct mt352_config dvico_fusionhdtv_dual
= {
254 .demod_address
= 0x0f,
255 .demod_init
= dvico_dual_demod_init
,
258 static const struct zl10353_config cx88_terratec_cinergy_ht_pci_mkii_config
= {
259 .demod_address
= (0x1e >> 1),
264 static struct mb86a16_config twinhan_vp1027
= {
265 .demod_address
= 0x08,
268 #if IS_ENABLED(CONFIG_VIDEO_CX88_VP3054)
269 static int dntv_live_dvbt_pro_demod_init(struct dvb_frontend
* fe
)
271 static const u8 clock_config
[] = { 0x89, 0x38, 0x38 };
272 static const u8 reset
[] = { 0x50, 0x80 };
273 static const u8 adc_ctl_1_cfg
[] = { 0x8E, 0x40 };
274 static const u8 agc_cfg
[] = { 0x67, 0x10, 0x20, 0x00, 0xFF, 0xFF,
275 0x00, 0xFF, 0x00, 0x40, 0x40 };
276 static const u8 dntv_extra
[] = { 0xB5, 0x7A };
277 static const u8 capt_range_cfg
[] = { 0x75, 0x32 };
279 mt352_write(fe
, clock_config
, sizeof(clock_config
));
281 mt352_write(fe
, reset
, sizeof(reset
));
282 mt352_write(fe
, adc_ctl_1_cfg
, sizeof(adc_ctl_1_cfg
));
284 mt352_write(fe
, agc_cfg
, sizeof(agc_cfg
));
286 mt352_write(fe
, dntv_extra
, sizeof(dntv_extra
));
287 mt352_write(fe
, capt_range_cfg
, sizeof(capt_range_cfg
));
292 static const struct mt352_config dntv_live_dvbt_pro_config
= {
293 .demod_address
= 0x0f,
295 .demod_init
= dntv_live_dvbt_pro_demod_init
,
299 static const struct zl10353_config dvico_fusionhdtv_hybrid
= {
300 .demod_address
= 0x0f,
304 static const struct zl10353_config dvico_fusionhdtv_xc3028
= {
305 .demod_address
= 0x0f,
310 static const struct mt352_config dvico_fusionhdtv_mt352_xc3028
= {
311 .demod_address
= 0x0f,
314 .demod_init
= dvico_fusionhdtv_demod_init
,
317 static const struct zl10353_config dvico_fusionhdtv_plus_v1_1
= {
318 .demod_address
= 0x0f,
321 static const struct cx22702_config connexant_refboard_config
= {
322 .demod_address
= 0x43,
323 .output_mode
= CX22702_SERIAL_OUTPUT
,
326 static const struct cx22702_config hauppauge_hvr_config
= {
327 .demod_address
= 0x63,
328 .output_mode
= CX22702_SERIAL_OUTPUT
,
331 static int or51132_set_ts_param(struct dvb_frontend
* fe
, int is_punctured
)
333 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
334 dev
->ts_gen_cntrl
= is_punctured
? 0x04 : 0x00;
338 static const struct or51132_config pchdtv_hd3000
= {
339 .demod_address
= 0x15,
340 .set_ts_params
= or51132_set_ts_param
,
343 static int lgdt330x_pll_rf_set(struct dvb_frontend
* fe
, int index
)
345 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
346 struct cx88_core
*core
= dev
->core
;
348 dprintk(1, "%s: index = %d\n", __func__
, index
);
350 cx_clear(MO_GP0_IO
, 8);
352 cx_set(MO_GP0_IO
, 8);
356 static int lgdt330x_set_ts_param(struct dvb_frontend
* fe
, int is_punctured
)
358 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
360 dev
->ts_gen_cntrl
|= 0x04;
362 dev
->ts_gen_cntrl
&= ~0x04;
366 static struct lgdt330x_config fusionhdtv_3_gold
= {
367 .demod_address
= 0x0e,
368 .demod_chip
= LGDT3302
,
369 .serial_mpeg
= 0x04, /* TPSERIAL for 3302 in TOP_CONTROL */
370 .set_ts_params
= lgdt330x_set_ts_param
,
373 static const struct lgdt330x_config fusionhdtv_5_gold
= {
374 .demod_address
= 0x0e,
375 .demod_chip
= LGDT3303
,
376 .serial_mpeg
= 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
377 .set_ts_params
= lgdt330x_set_ts_param
,
380 static const struct lgdt330x_config pchdtv_hd5500
= {
381 .demod_address
= 0x59,
382 .demod_chip
= LGDT3303
,
383 .serial_mpeg
= 0x40, /* TPSERIAL for 3303 in TOP_CONTROL */
384 .set_ts_params
= lgdt330x_set_ts_param
,
387 static int nxt200x_set_ts_param(struct dvb_frontend
* fe
, int is_punctured
)
389 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
390 dev
->ts_gen_cntrl
= is_punctured
? 0x04 : 0x00;
394 static const struct nxt200x_config ati_hdtvwonder
= {
395 .demod_address
= 0x0a,
396 .set_ts_params
= nxt200x_set_ts_param
,
399 static int cx24123_set_ts_param(struct dvb_frontend
* fe
,
402 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
403 dev
->ts_gen_cntrl
= 0x02;
407 static int kworld_dvbs_100_set_voltage(struct dvb_frontend
* fe
,
408 fe_sec_voltage_t voltage
)
410 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
411 struct cx88_core
*core
= dev
->core
;
413 if (voltage
== SEC_VOLTAGE_OFF
)
414 cx_write(MO_GP0_IO
, 0x000006fb);
416 cx_write(MO_GP0_IO
, 0x000006f9);
418 if (core
->prev_set_voltage
)
419 return core
->prev_set_voltage(fe
, voltage
);
423 static int geniatech_dvbs_set_voltage(struct dvb_frontend
*fe
,
424 fe_sec_voltage_t voltage
)
426 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
427 struct cx88_core
*core
= dev
->core
;
429 if (voltage
== SEC_VOLTAGE_OFF
) {
430 dprintk(1,"LNB Voltage OFF\n");
431 cx_write(MO_GP0_IO
, 0x0000efff);
434 if (core
->prev_set_voltage
)
435 return core
->prev_set_voltage(fe
, voltage
);
439 static int tevii_dvbs_set_voltage(struct dvb_frontend
*fe
,
440 fe_sec_voltage_t voltage
)
442 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
443 struct cx88_core
*core
= dev
->core
;
445 cx_set(MO_GP0_IO
, 0x6040);
448 cx_clear(MO_GP0_IO
, 0x20);
451 cx_set(MO_GP0_IO
, 0x20);
453 case SEC_VOLTAGE_OFF
:
454 cx_clear(MO_GP0_IO
, 0x20);
458 if (core
->prev_set_voltage
)
459 return core
->prev_set_voltage(fe
, voltage
);
463 static int vp1027_set_voltage(struct dvb_frontend
*fe
,
464 fe_sec_voltage_t voltage
)
466 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
467 struct cx88_core
*core
= dev
->core
;
471 dprintk(1, "LNB SEC Voltage=13\n");
472 cx_write(MO_GP0_IO
, 0x00001220);
475 dprintk(1, "LNB SEC Voltage=18\n");
476 cx_write(MO_GP0_IO
, 0x00001222);
478 case SEC_VOLTAGE_OFF
:
479 dprintk(1, "LNB Voltage OFF\n");
480 cx_write(MO_GP0_IO
, 0x00001230);
484 if (core
->prev_set_voltage
)
485 return core
->prev_set_voltage(fe
, voltage
);
489 static const struct cx24123_config geniatech_dvbs_config
= {
490 .demod_address
= 0x55,
491 .set_ts_params
= cx24123_set_ts_param
,
494 static const struct cx24123_config hauppauge_novas_config
= {
495 .demod_address
= 0x55,
496 .set_ts_params
= cx24123_set_ts_param
,
499 static const struct cx24123_config kworld_dvbs_100_config
= {
500 .demod_address
= 0x15,
501 .set_ts_params
= cx24123_set_ts_param
,
505 static const struct s5h1409_config pinnacle_pctv_hd_800i_config
= {
506 .demod_address
= 0x32 >> 1,
507 .output_mode
= S5H1409_PARALLEL_OUTPUT
,
508 .gpio
= S5H1409_GPIO_ON
,
510 .inversion
= S5H1409_INVERSION_OFF
,
511 .status_mode
= S5H1409_DEMODLOCKING
,
512 .mpeg_timing
= S5H1409_MPEGTIMING_NONCONTINOUS_NONINVERTING_CLOCK
,
515 static const struct s5h1409_config dvico_hdtv5_pci_nano_config
= {
516 .demod_address
= 0x32 >> 1,
517 .output_mode
= S5H1409_SERIAL_OUTPUT
,
518 .gpio
= S5H1409_GPIO_OFF
,
519 .inversion
= S5H1409_INVERSION_OFF
,
520 .status_mode
= S5H1409_DEMODLOCKING
,
521 .mpeg_timing
= S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
,
524 static const struct s5h1409_config kworld_atsc_120_config
= {
525 .demod_address
= 0x32 >> 1,
526 .output_mode
= S5H1409_SERIAL_OUTPUT
,
527 .gpio
= S5H1409_GPIO_OFF
,
528 .inversion
= S5H1409_INVERSION_OFF
,
529 .status_mode
= S5H1409_DEMODLOCKING
,
530 .mpeg_timing
= S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
,
533 static const struct xc5000_config pinnacle_pctv_hd_800i_tuner_config
= {
538 static const struct zl10353_config cx88_pinnacle_hybrid_pctv
= {
539 .demod_address
= (0x1e >> 1),
544 static const struct zl10353_config cx88_geniatech_x8000_mt
= {
545 .demod_address
= (0x1e >> 1),
547 .disable_i2c_gate_ctrl
= 1,
550 static const struct s5h1411_config dvico_fusionhdtv7_config
= {
551 .output_mode
= S5H1411_SERIAL_OUTPUT
,
552 .gpio
= S5H1411_GPIO_ON
,
553 .mpeg_timing
= S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
,
554 .qam_if
= S5H1411_IF_44000
,
555 .vsb_if
= S5H1411_IF_44000
,
556 .inversion
= S5H1411_INVERSION_OFF
,
557 .status_mode
= S5H1411_DEMODLOCKING
560 static const struct xc5000_config dvico_fusionhdtv7_tuner_config
= {
561 .i2c_address
= 0xc2 >> 1,
565 static int attach_xc3028(u8 addr
, struct cx8802_dev
*dev
)
567 struct dvb_frontend
*fe
;
568 struct videobuf_dvb_frontend
*fe0
= NULL
;
569 struct xc2028_ctrl ctl
;
570 struct xc2028_config cfg
= {
571 .i2c_adap
= &dev
->core
->i2c_adap
,
576 /* Get the first frontend */
577 fe0
= videobuf_dvb_get_frontend(&dev
->frontends
, 1);
581 if (!fe0
->dvb
.frontend
) {
582 printk(KERN_ERR
"%s/2: dvb frontend not attached. "
583 "Can't attach xc3028\n",
589 * Some xc3028 devices may be hidden by an I2C gate. This is known
590 * to happen with some s5h1409-based devices.
591 * Now that I2C gate is open, sets up xc3028 configuration
593 cx88_setup_xc3028(dev
->core
, &ctl
);
595 fe
= dvb_attach(xc2028_attach
, fe0
->dvb
.frontend
, &cfg
);
597 printk(KERN_ERR
"%s/2: xc3028 attach failed\n",
599 dvb_frontend_detach(fe0
->dvb
.frontend
);
600 dvb_unregister_frontend(fe0
->dvb
.frontend
);
601 fe0
->dvb
.frontend
= NULL
;
605 printk(KERN_INFO
"%s/2: xc3028 attached\n",
611 static int attach_xc4000(struct cx8802_dev
*dev
, struct xc4000_config
*cfg
)
613 struct dvb_frontend
*fe
;
614 struct videobuf_dvb_frontend
*fe0
= NULL
;
616 /* Get the first frontend */
617 fe0
= videobuf_dvb_get_frontend(&dev
->frontends
, 1);
621 if (!fe0
->dvb
.frontend
) {
622 printk(KERN_ERR
"%s/2: dvb frontend not attached. "
623 "Can't attach xc4000\n",
628 fe
= dvb_attach(xc4000_attach
, fe0
->dvb
.frontend
, &dev
->core
->i2c_adap
,
631 printk(KERN_ERR
"%s/2: xc4000 attach failed\n",
633 dvb_frontend_detach(fe0
->dvb
.frontend
);
634 dvb_unregister_frontend(fe0
->dvb
.frontend
);
635 fe0
->dvb
.frontend
= NULL
;
639 printk(KERN_INFO
"%s/2: xc4000 attached\n", dev
->core
->name
);
644 static int cx24116_set_ts_param(struct dvb_frontend
*fe
,
647 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
648 dev
->ts_gen_cntrl
= 0x2;
653 static int stv0900_set_ts_param(struct dvb_frontend
*fe
,
656 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
657 dev
->ts_gen_cntrl
= 0;
662 static int cx24116_reset_device(struct dvb_frontend
*fe
)
664 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
665 struct cx88_core
*core
= dev
->core
;
668 /* Put the cx24116 into reset */
669 cx_write(MO_SRST_IO
, 0);
671 /* Take the cx24116 out of reset */
672 cx_write(MO_SRST_IO
, 1);
678 static const struct cx24116_config hauppauge_hvr4000_config
= {
679 .demod_address
= 0x05,
680 .set_ts_params
= cx24116_set_ts_param
,
681 .reset_device
= cx24116_reset_device
,
684 static const struct cx24116_config tevii_s460_config
= {
685 .demod_address
= 0x55,
686 .set_ts_params
= cx24116_set_ts_param
,
687 .reset_device
= cx24116_reset_device
,
690 static int ds3000_set_ts_param(struct dvb_frontend
*fe
,
693 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
694 dev
->ts_gen_cntrl
= 4;
699 static struct ds3000_config tevii_ds3000_config
= {
700 .demod_address
= 0x68,
701 .set_ts_params
= ds3000_set_ts_param
,
704 static struct ts2020_config tevii_ts2020_config
= {
705 .tuner_address
= 0x60,
709 static const struct stv0900_config prof_7301_stv0900_config
= {
710 .demod_address
= 0x6a,
713 .clkmode
= 3,/* 0-CLKI, 2-XTALI, else AUTO */
714 .diseqc_mode
= 2,/* 2/3 PWM */
715 .tun1_maddress
= 0,/* 0x60 */
716 .tun1_adc
= 0,/* 2 Vpp */
718 .set_ts_params
= stv0900_set_ts_param
,
721 static const struct stb6100_config prof_7301_stb6100_config
= {
722 .tuner_address
= 0x60,
723 .refclock
= 27000000,
726 static const struct stv0299_config tevii_tuner_sharp_config
= {
727 .demod_address
= 0x68,
728 .inittab
= sharp_z0194a_inittab
,
733 .volt13_op0_op1
= STV0299_VOLT13_OP1
,
735 .set_symbol_rate
= sharp_z0194a_set_symbol_rate
,
736 .set_ts_params
= cx24116_set_ts_param
,
739 static const struct stv0288_config tevii_tuner_earda_config
= {
740 .demod_address
= 0x68,
742 .set_ts_params
= cx24116_set_ts_param
,
745 static int cx8802_alloc_frontends(struct cx8802_dev
*dev
)
747 struct cx88_core
*core
= dev
->core
;
748 struct videobuf_dvb_frontend
*fe
= NULL
;
751 mutex_init(&dev
->frontends
.lock
);
752 INIT_LIST_HEAD(&dev
->frontends
.felist
);
754 if (!core
->board
.num_frontends
)
757 printk(KERN_INFO
"%s() allocating %d frontend(s)\n", __func__
,
758 core
->board
.num_frontends
);
759 for (i
= 1; i
<= core
->board
.num_frontends
; i
++) {
760 fe
= videobuf_dvb_alloc_frontend(&dev
->frontends
, i
);
762 printk(KERN_ERR
"%s() failed to alloc\n", __func__
);
763 videobuf_dvb_dealloc_frontends(&dev
->frontends
);
772 static const u8 samsung_smt_7020_inittab
[] = {
824 static int samsung_smt_7020_tuner_set_params(struct dvb_frontend
*fe
)
826 struct dtv_frontend_properties
*c
= &fe
->dtv_property_cache
;
827 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
830 struct i2c_msg msg
= {
834 .len
= sizeof(buf
) };
836 div
= c
->frequency
/ 125;
838 buf
[0] = (div
>> 8) & 0x7f;
840 buf
[2] = 0x84; /* 0xC4 */
843 if (c
->frequency
< 1500000)
846 if (fe
->ops
.i2c_gate_ctrl
)
847 fe
->ops
.i2c_gate_ctrl(fe
, 1);
849 if (i2c_transfer(&dev
->core
->i2c_adap
, &msg
, 1) != 1)
855 static int samsung_smt_7020_set_tone(struct dvb_frontend
*fe
,
856 fe_sec_tone_mode_t tone
)
858 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
859 struct cx88_core
*core
= dev
->core
;
861 cx_set(MO_GP0_IO
, 0x0800);
865 cx_set(MO_GP0_IO
, 0x08);
868 cx_clear(MO_GP0_IO
, 0x08);
877 static int samsung_smt_7020_set_voltage(struct dvb_frontend
*fe
,
878 fe_sec_voltage_t voltage
)
880 struct cx8802_dev
*dev
= fe
->dvb
->priv
;
881 struct cx88_core
*core
= dev
->core
;
884 struct i2c_msg msg
= {
888 .len
= sizeof(data
) };
890 cx_set(MO_GP0_IO
, 0x8000);
893 case SEC_VOLTAGE_OFF
:
896 data
= ISL6421_EN1
| ISL6421_LLC1
;
897 cx_clear(MO_GP0_IO
, 0x80);
900 data
= ISL6421_EN1
| ISL6421_LLC1
| ISL6421_VSEL1
;
901 cx_clear(MO_GP0_IO
, 0x80);
907 return (i2c_transfer(&dev
->core
->i2c_adap
, &msg
, 1) == 1) ? 0 : -EIO
;
910 static int samsung_smt_7020_stv0299_set_symbol_rate(struct dvb_frontend
*fe
,
911 u32 srate
, u32 ratio
)
916 if (srate
< 1500000) {
919 } else if (srate
< 3000000) {
922 } else if (srate
< 7000000) {
925 } else if (srate
< 14000000) {
928 } else if (srate
< 30000000) {
931 } else if (srate
< 45000000) {
936 stv0299_writereg(fe
, 0x13, aclk
);
937 stv0299_writereg(fe
, 0x14, bclk
);
938 stv0299_writereg(fe
, 0x1f, (ratio
>> 16) & 0xff);
939 stv0299_writereg(fe
, 0x20, (ratio
>> 8) & 0xff);
940 stv0299_writereg(fe
, 0x21, ratio
& 0xf0);
946 static const struct stv0299_config samsung_stv0299_config
= {
947 .demod_address
= 0x68,
948 .inittab
= samsung_smt_7020_inittab
,
952 .lock_output
= STV0299_LOCKOUTPUT_LK
,
953 .volt13_op0_op1
= STV0299_VOLT13_OP1
,
955 .set_symbol_rate
= samsung_smt_7020_stv0299_set_symbol_rate
,
958 static int dvb_register(struct cx8802_dev
*dev
)
960 struct cx88_core
*core
= dev
->core
;
961 struct videobuf_dvb_frontend
*fe0
, *fe1
= NULL
;
962 int mfe_shared
= 0; /* bus not shared by default */
965 if (0 != core
->i2c_rc
) {
966 printk(KERN_ERR
"%s/2: no i2c-bus available, cannot attach dvb drivers\n", core
->name
);
967 goto frontend_detach
;
970 /* Get the first frontend */
971 fe0
= videobuf_dvb_get_frontend(&dev
->frontends
, 1);
973 goto frontend_detach
;
975 /* multi-frontend gate control is undefined or defaults to fe0 */
976 dev
->frontends
.gate
= 0;
978 /* Sets the gate control callback to be used by i2c command calls */
979 core
->gate_ctrl
= cx88_dvb_gate_ctrl
;
981 /* init frontend(s) */
982 switch (core
->boardnr
) {
983 case CX88_BOARD_HAUPPAUGE_DVB_T1
:
984 fe0
->dvb
.frontend
= dvb_attach(cx22702_attach
,
985 &connexant_refboard_config
,
987 if (fe0
->dvb
.frontend
!= NULL
) {
988 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
989 0x61, &core
->i2c_adap
,
990 DVB_PLL_THOMSON_DTT759X
))
991 goto frontend_detach
;
994 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1
:
995 case CX88_BOARD_CONEXANT_DVB_T1
:
996 case CX88_BOARD_KWORLD_DVB_T_CX22702
:
997 case CX88_BOARD_WINFAST_DTV1000
:
998 fe0
->dvb
.frontend
= dvb_attach(cx22702_attach
,
999 &connexant_refboard_config
,
1001 if (fe0
->dvb
.frontend
!= NULL
) {
1002 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1003 0x60, &core
->i2c_adap
,
1004 DVB_PLL_THOMSON_DTT7579
))
1005 goto frontend_detach
;
1008 case CX88_BOARD_WINFAST_DTV2000H
:
1009 case CX88_BOARD_HAUPPAUGE_HVR1100
:
1010 case CX88_BOARD_HAUPPAUGE_HVR1100LP
:
1011 case CX88_BOARD_HAUPPAUGE_HVR1300
:
1012 fe0
->dvb
.frontend
= dvb_attach(cx22702_attach
,
1013 &hauppauge_hvr_config
,
1015 if (fe0
->dvb
.frontend
!= NULL
) {
1016 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1017 &core
->i2c_adap
, 0x61,
1018 TUNER_PHILIPS_FMD1216ME_MK3
))
1019 goto frontend_detach
;
1022 case CX88_BOARD_WINFAST_DTV2000H_J
:
1023 fe0
->dvb
.frontend
= dvb_attach(cx22702_attach
,
1024 &hauppauge_hvr_config
,
1026 if (fe0
->dvb
.frontend
!= NULL
) {
1027 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1028 &core
->i2c_adap
, 0x61,
1029 TUNER_PHILIPS_FMD1216MEX_MK3
))
1030 goto frontend_detach
;
1033 case CX88_BOARD_HAUPPAUGE_HVR3000
:
1034 /* MFE frontend 1 */
1036 dev
->frontends
.gate
= 2;
1038 fe0
->dvb
.frontend
= dvb_attach(cx24123_attach
,
1039 &hauppauge_novas_config
,
1040 &dev
->core
->i2c_adap
);
1041 if (fe0
->dvb
.frontend
) {
1042 if (!dvb_attach(isl6421_attach
,
1044 &dev
->core
->i2c_adap
,
1045 0x08, ISL6421_DCL
, 0x00, false))
1046 goto frontend_detach
;
1048 /* MFE frontend 2 */
1049 fe1
= videobuf_dvb_get_frontend(&dev
->frontends
, 2);
1051 goto frontend_detach
;
1053 fe1
->dvb
.frontend
= dvb_attach(cx22702_attach
,
1054 &hauppauge_hvr_config
,
1055 &dev
->core
->i2c_adap
);
1056 if (fe1
->dvb
.frontend
) {
1057 fe1
->dvb
.frontend
->id
= 1;
1058 if (!dvb_attach(simple_tuner_attach
,
1060 &dev
->core
->i2c_adap
,
1061 0x61, TUNER_PHILIPS_FMD1216ME_MK3
))
1062 goto frontend_detach
;
1065 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS
:
1066 fe0
->dvb
.frontend
= dvb_attach(mt352_attach
,
1069 if (fe0
->dvb
.frontend
!= NULL
) {
1070 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1071 0x60, NULL
, DVB_PLL_THOMSON_DTT7579
))
1072 goto frontend_detach
;
1075 /* ZL10353 replaces MT352 on later cards */
1076 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1077 &dvico_fusionhdtv_plus_v1_1
,
1079 if (fe0
->dvb
.frontend
!= NULL
) {
1080 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1081 0x60, NULL
, DVB_PLL_THOMSON_DTT7579
))
1082 goto frontend_detach
;
1085 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_DUAL
:
1086 /* The tin box says DEE1601, but it seems to be DTT7579
1087 * compatible, with a slightly different MT352 AGC gain. */
1088 fe0
->dvb
.frontend
= dvb_attach(mt352_attach
,
1089 &dvico_fusionhdtv_dual
,
1091 if (fe0
->dvb
.frontend
!= NULL
) {
1092 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1093 0x61, NULL
, DVB_PLL_THOMSON_DTT7579
))
1094 goto frontend_detach
;
1097 /* ZL10353 replaces MT352 on later cards */
1098 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1099 &dvico_fusionhdtv_plus_v1_1
,
1101 if (fe0
->dvb
.frontend
!= NULL
) {
1102 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1103 0x61, NULL
, DVB_PLL_THOMSON_DTT7579
))
1104 goto frontend_detach
;
1107 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1
:
1108 fe0
->dvb
.frontend
= dvb_attach(mt352_attach
,
1111 if (fe0
->dvb
.frontend
!= NULL
) {
1112 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1113 0x61, NULL
, DVB_PLL_LG_Z201
))
1114 goto frontend_detach
;
1117 case CX88_BOARD_KWORLD_DVB_T
:
1118 case CX88_BOARD_DNTV_LIVE_DVB_T
:
1119 case CX88_BOARD_ADSTECH_DVB_T_PCI
:
1120 fe0
->dvb
.frontend
= dvb_attach(mt352_attach
,
1121 &dntv_live_dvbt_config
,
1123 if (fe0
->dvb
.frontend
!= NULL
) {
1124 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
,
1125 0x61, NULL
, DVB_PLL_UNKNOWN_1
))
1126 goto frontend_detach
;
1129 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO
:
1130 #if IS_ENABLED(CONFIG_VIDEO_CX88_VP3054)
1131 /* MT352 is on a secondary I2C bus made from some GPIO lines */
1132 fe0
->dvb
.frontend
= dvb_attach(mt352_attach
, &dntv_live_dvbt_pro_config
,
1133 &dev
->vp3054
->adap
);
1134 if (fe0
->dvb
.frontend
!= NULL
) {
1135 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1136 &core
->i2c_adap
, 0x61,
1137 TUNER_PHILIPS_FMD1216ME_MK3
))
1138 goto frontend_detach
;
1141 printk(KERN_ERR
"%s/2: built without vp3054 support\n",
1145 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID
:
1146 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1147 &dvico_fusionhdtv_hybrid
,
1149 if (fe0
->dvb
.frontend
!= NULL
) {
1150 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1151 &core
->i2c_adap
, 0x61,
1152 TUNER_THOMSON_FE6600
))
1153 goto frontend_detach
;
1156 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PRO
:
1157 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1158 &dvico_fusionhdtv_xc3028
,
1160 if (fe0
->dvb
.frontend
== NULL
)
1161 fe0
->dvb
.frontend
= dvb_attach(mt352_attach
,
1162 &dvico_fusionhdtv_mt352_xc3028
,
1165 * On this board, the demod provides the I2C bus pullup.
1166 * We must not permit gate_ctrl to be performed, or
1167 * the xc3028 cannot communicate on the bus.
1169 if (fe0
->dvb
.frontend
)
1170 fe0
->dvb
.frontend
->ops
.i2c_gate_ctrl
= NULL
;
1171 if (attach_xc3028(0x61, dev
) < 0)
1172 goto frontend_detach
;
1174 case CX88_BOARD_PCHDTV_HD3000
:
1175 fe0
->dvb
.frontend
= dvb_attach(or51132_attach
, &pchdtv_hd3000
,
1177 if (fe0
->dvb
.frontend
!= NULL
) {
1178 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1179 &core
->i2c_adap
, 0x61,
1180 TUNER_THOMSON_DTT761X
))
1181 goto frontend_detach
;
1184 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q
:
1185 dev
->ts_gen_cntrl
= 0x08;
1187 /* Do a hardware reset of chip before using it. */
1188 cx_clear(MO_GP0_IO
, 1);
1190 cx_set(MO_GP0_IO
, 1);
1193 /* Select RF connector callback */
1194 fusionhdtv_3_gold
.pll_rf_set
= lgdt330x_pll_rf_set
;
1195 fe0
->dvb
.frontend
= dvb_attach(lgdt330x_attach
,
1198 if (fe0
->dvb
.frontend
!= NULL
) {
1199 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1200 &core
->i2c_adap
, 0x61,
1201 TUNER_MICROTUNE_4042FI5
))
1202 goto frontend_detach
;
1205 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T
:
1206 dev
->ts_gen_cntrl
= 0x08;
1208 /* Do a hardware reset of chip before using it. */
1209 cx_clear(MO_GP0_IO
, 1);
1211 cx_set(MO_GP0_IO
, 9);
1213 fe0
->dvb
.frontend
= dvb_attach(lgdt330x_attach
,
1216 if (fe0
->dvb
.frontend
!= NULL
) {
1217 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1218 &core
->i2c_adap
, 0x61,
1219 TUNER_THOMSON_DTT761X
))
1220 goto frontend_detach
;
1223 case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD
:
1224 dev
->ts_gen_cntrl
= 0x08;
1226 /* Do a hardware reset of chip before using it. */
1227 cx_clear(MO_GP0_IO
, 1);
1229 cx_set(MO_GP0_IO
, 1);
1231 fe0
->dvb
.frontend
= dvb_attach(lgdt330x_attach
,
1234 if (fe0
->dvb
.frontend
!= NULL
) {
1235 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1236 &core
->i2c_adap
, 0x61,
1237 TUNER_LG_TDVS_H06XF
))
1238 goto frontend_detach
;
1239 if (!dvb_attach(tda9887_attach
, fe0
->dvb
.frontend
,
1240 &core
->i2c_adap
, 0x43))
1241 goto frontend_detach
;
1244 case CX88_BOARD_PCHDTV_HD5500
:
1245 dev
->ts_gen_cntrl
= 0x08;
1247 /* Do a hardware reset of chip before using it. */
1248 cx_clear(MO_GP0_IO
, 1);
1250 cx_set(MO_GP0_IO
, 1);
1252 fe0
->dvb
.frontend
= dvb_attach(lgdt330x_attach
,
1255 if (fe0
->dvb
.frontend
!= NULL
) {
1256 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1257 &core
->i2c_adap
, 0x61,
1258 TUNER_LG_TDVS_H06XF
))
1259 goto frontend_detach
;
1260 if (!dvb_attach(tda9887_attach
, fe0
->dvb
.frontend
,
1261 &core
->i2c_adap
, 0x43))
1262 goto frontend_detach
;
1265 case CX88_BOARD_ATI_HDTVWONDER
:
1266 fe0
->dvb
.frontend
= dvb_attach(nxt200x_attach
,
1269 if (fe0
->dvb
.frontend
!= NULL
) {
1270 if (!dvb_attach(simple_tuner_attach
, fe0
->dvb
.frontend
,
1271 &core
->i2c_adap
, 0x61,
1272 TUNER_PHILIPS_TUV1236D
))
1273 goto frontend_detach
;
1276 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1
:
1277 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1
:
1278 fe0
->dvb
.frontend
= dvb_attach(cx24123_attach
,
1279 &hauppauge_novas_config
,
1281 if (fe0
->dvb
.frontend
) {
1284 if (core
->model
== 92001)
1285 override_tone
= true;
1287 override_tone
= false;
1289 if (!dvb_attach(isl6421_attach
, fe0
->dvb
.frontend
,
1290 &core
->i2c_adap
, 0x08, ISL6421_DCL
, 0x00,
1292 goto frontend_detach
;
1295 case CX88_BOARD_KWORLD_DVBS_100
:
1296 fe0
->dvb
.frontend
= dvb_attach(cx24123_attach
,
1297 &kworld_dvbs_100_config
,
1299 if (fe0
->dvb
.frontend
) {
1300 core
->prev_set_voltage
= fe0
->dvb
.frontend
->ops
.set_voltage
;
1301 fe0
->dvb
.frontend
->ops
.set_voltage
= kworld_dvbs_100_set_voltage
;
1304 case CX88_BOARD_GENIATECH_DVBS
:
1305 fe0
->dvb
.frontend
= dvb_attach(cx24123_attach
,
1306 &geniatech_dvbs_config
,
1308 if (fe0
->dvb
.frontend
) {
1309 core
->prev_set_voltage
= fe0
->dvb
.frontend
->ops
.set_voltage
;
1310 fe0
->dvb
.frontend
->ops
.set_voltage
= geniatech_dvbs_set_voltage
;
1313 case CX88_BOARD_PINNACLE_PCTV_HD_800i
:
1314 fe0
->dvb
.frontend
= dvb_attach(s5h1409_attach
,
1315 &pinnacle_pctv_hd_800i_config
,
1317 if (fe0
->dvb
.frontend
!= NULL
) {
1318 if (!dvb_attach(xc5000_attach
, fe0
->dvb
.frontend
,
1320 &pinnacle_pctv_hd_800i_tuner_config
))
1321 goto frontend_detach
;
1324 case CX88_BOARD_DVICO_FUSIONHDTV_5_PCI_NANO
:
1325 fe0
->dvb
.frontend
= dvb_attach(s5h1409_attach
,
1326 &dvico_hdtv5_pci_nano_config
,
1328 if (fe0
->dvb
.frontend
!= NULL
) {
1329 struct dvb_frontend
*fe
;
1330 struct xc2028_config cfg
= {
1331 .i2c_adap
= &core
->i2c_adap
,
1334 static struct xc2028_ctrl ctl
= {
1335 .fname
= XC2028_DEFAULT_FIRMWARE
,
1337 .scode_table
= XC3028_FE_OREN538
,
1340 fe
= dvb_attach(xc2028_attach
,
1341 fe0
->dvb
.frontend
, &cfg
);
1342 if (fe
!= NULL
&& fe
->ops
.tuner_ops
.set_config
!= NULL
)
1343 fe
->ops
.tuner_ops
.set_config(fe
, &ctl
);
1346 case CX88_BOARD_PINNACLE_HYBRID_PCTV
:
1347 case CX88_BOARD_WINFAST_DTV1800H
:
1348 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1349 &cx88_pinnacle_hybrid_pctv
,
1351 if (fe0
->dvb
.frontend
) {
1352 fe0
->dvb
.frontend
->ops
.i2c_gate_ctrl
= NULL
;
1353 if (attach_xc3028(0x61, dev
) < 0)
1354 goto frontend_detach
;
1357 case CX88_BOARD_WINFAST_DTV1800H_XC4000
:
1358 case CX88_BOARD_WINFAST_DTV2000H_PLUS
:
1359 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1360 &cx88_pinnacle_hybrid_pctv
,
1362 if (fe0
->dvb
.frontend
) {
1363 struct xc4000_config cfg
= {
1364 .i2c_address
= 0x61,
1366 .dvb_amplitude
= 134,
1367 .set_smoothedcvbs
= 1,
1370 fe0
->dvb
.frontend
->ops
.i2c_gate_ctrl
= NULL
;
1371 if (attach_xc4000(dev
, &cfg
) < 0)
1372 goto frontend_detach
;
1375 case CX88_BOARD_GENIATECH_X8000_MT
:
1376 dev
->ts_gen_cntrl
= 0x00;
1378 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1379 &cx88_geniatech_x8000_mt
,
1381 if (attach_xc3028(0x61, dev
) < 0)
1382 goto frontend_detach
;
1384 case CX88_BOARD_KWORLD_ATSC_120
:
1385 fe0
->dvb
.frontend
= dvb_attach(s5h1409_attach
,
1386 &kworld_atsc_120_config
,
1388 if (attach_xc3028(0x61, dev
) < 0)
1389 goto frontend_detach
;
1391 case CX88_BOARD_DVICO_FUSIONHDTV_7_GOLD
:
1392 fe0
->dvb
.frontend
= dvb_attach(s5h1411_attach
,
1393 &dvico_fusionhdtv7_config
,
1395 if (fe0
->dvb
.frontend
!= NULL
) {
1396 if (!dvb_attach(xc5000_attach
, fe0
->dvb
.frontend
,
1398 &dvico_fusionhdtv7_tuner_config
))
1399 goto frontend_detach
;
1402 case CX88_BOARD_HAUPPAUGE_HVR4000
:
1403 /* MFE frontend 1 */
1405 dev
->frontends
.gate
= 2;
1407 fe0
->dvb
.frontend
= dvb_attach(cx24116_attach
,
1408 &hauppauge_hvr4000_config
,
1409 &dev
->core
->i2c_adap
);
1410 if (fe0
->dvb
.frontend
) {
1411 if (!dvb_attach(isl6421_attach
,
1413 &dev
->core
->i2c_adap
,
1414 0x08, ISL6421_DCL
, 0x00, false))
1415 goto frontend_detach
;
1417 /* MFE frontend 2 */
1418 fe1
= videobuf_dvb_get_frontend(&dev
->frontends
, 2);
1420 goto frontend_detach
;
1422 fe1
->dvb
.frontend
= dvb_attach(cx22702_attach
,
1423 &hauppauge_hvr_config
,
1424 &dev
->core
->i2c_adap
);
1425 if (fe1
->dvb
.frontend
) {
1426 fe1
->dvb
.frontend
->id
= 1;
1427 if (!dvb_attach(simple_tuner_attach
,
1429 &dev
->core
->i2c_adap
,
1430 0x61, TUNER_PHILIPS_FMD1216ME_MK3
))
1431 goto frontend_detach
;
1434 case CX88_BOARD_HAUPPAUGE_HVR4000LITE
:
1435 fe0
->dvb
.frontend
= dvb_attach(cx24116_attach
,
1436 &hauppauge_hvr4000_config
,
1437 &dev
->core
->i2c_adap
);
1438 if (fe0
->dvb
.frontend
) {
1439 if (!dvb_attach(isl6421_attach
,
1441 &dev
->core
->i2c_adap
,
1442 0x08, ISL6421_DCL
, 0x00, false))
1443 goto frontend_detach
;
1446 case CX88_BOARD_PROF_6200
:
1447 case CX88_BOARD_TBS_8910
:
1448 case CX88_BOARD_TEVII_S420
:
1449 fe0
->dvb
.frontend
= dvb_attach(stv0299_attach
,
1450 &tevii_tuner_sharp_config
,
1452 if (fe0
->dvb
.frontend
!= NULL
) {
1453 if (!dvb_attach(dvb_pll_attach
, fe0
->dvb
.frontend
, 0x60,
1454 &core
->i2c_adap
, DVB_PLL_OPERA1
))
1455 goto frontend_detach
;
1456 core
->prev_set_voltage
= fe0
->dvb
.frontend
->ops
.set_voltage
;
1457 fe0
->dvb
.frontend
->ops
.set_voltage
= tevii_dvbs_set_voltage
;
1460 fe0
->dvb
.frontend
= dvb_attach(stv0288_attach
,
1461 &tevii_tuner_earda_config
,
1463 if (fe0
->dvb
.frontend
!= NULL
) {
1464 if (!dvb_attach(stb6000_attach
, fe0
->dvb
.frontend
, 0x61,
1466 goto frontend_detach
;
1467 core
->prev_set_voltage
= fe0
->dvb
.frontend
->ops
.set_voltage
;
1468 fe0
->dvb
.frontend
->ops
.set_voltage
= tevii_dvbs_set_voltage
;
1472 case CX88_BOARD_TEVII_S460
:
1473 fe0
->dvb
.frontend
= dvb_attach(cx24116_attach
,
1476 if (fe0
->dvb
.frontend
!= NULL
)
1477 fe0
->dvb
.frontend
->ops
.set_voltage
= tevii_dvbs_set_voltage
;
1479 case CX88_BOARD_TEVII_S464
:
1480 fe0
->dvb
.frontend
= dvb_attach(ds3000_attach
,
1481 &tevii_ds3000_config
,
1483 if (fe0
->dvb
.frontend
!= NULL
) {
1484 dvb_attach(ts2020_attach
, fe0
->dvb
.frontend
,
1485 &tevii_ts2020_config
, &core
->i2c_adap
);
1486 fe0
->dvb
.frontend
->ops
.set_voltage
=
1487 tevii_dvbs_set_voltage
;
1490 case CX88_BOARD_OMICOM_SS4_PCI
:
1491 case CX88_BOARD_TBS_8920
:
1492 case CX88_BOARD_PROF_7300
:
1493 case CX88_BOARD_SATTRADE_ST4200
:
1494 fe0
->dvb
.frontend
= dvb_attach(cx24116_attach
,
1495 &hauppauge_hvr4000_config
,
1497 if (fe0
->dvb
.frontend
!= NULL
)
1498 fe0
->dvb
.frontend
->ops
.set_voltage
= tevii_dvbs_set_voltage
;
1500 case CX88_BOARD_TERRATEC_CINERGY_HT_PCI_MKII
:
1501 fe0
->dvb
.frontend
= dvb_attach(zl10353_attach
,
1502 &cx88_terratec_cinergy_ht_pci_mkii_config
,
1504 if (fe0
->dvb
.frontend
) {
1505 fe0
->dvb
.frontend
->ops
.i2c_gate_ctrl
= NULL
;
1506 if (attach_xc3028(0x61, dev
) < 0)
1507 goto frontend_detach
;
1510 case CX88_BOARD_PROF_7301
:{
1511 struct dvb_tuner_ops
*tuner_ops
= NULL
;
1513 fe0
->dvb
.frontend
= dvb_attach(stv0900_attach
,
1514 &prof_7301_stv0900_config
,
1515 &core
->i2c_adap
, 0);
1516 if (fe0
->dvb
.frontend
!= NULL
) {
1517 if (!dvb_attach(stb6100_attach
, fe0
->dvb
.frontend
,
1518 &prof_7301_stb6100_config
,
1520 goto frontend_detach
;
1522 tuner_ops
= &fe0
->dvb
.frontend
->ops
.tuner_ops
;
1523 tuner_ops
->set_frequency
= stb6100_set_freq
;
1524 tuner_ops
->get_frequency
= stb6100_get_freq
;
1525 tuner_ops
->set_bandwidth
= stb6100_set_bandw
;
1526 tuner_ops
->get_bandwidth
= stb6100_get_bandw
;
1528 core
->prev_set_voltage
=
1529 fe0
->dvb
.frontend
->ops
.set_voltage
;
1530 fe0
->dvb
.frontend
->ops
.set_voltage
=
1531 tevii_dvbs_set_voltage
;
1535 case CX88_BOARD_SAMSUNG_SMT_7020
:
1536 dev
->ts_gen_cntrl
= 0x08;
1538 cx_set(MO_GP0_IO
, 0x0101);
1540 cx_clear(MO_GP0_IO
, 0x01);
1542 cx_set(MO_GP0_IO
, 0x01);
1545 fe0
->dvb
.frontend
= dvb_attach(stv0299_attach
,
1546 &samsung_stv0299_config
,
1547 &dev
->core
->i2c_adap
);
1548 if (fe0
->dvb
.frontend
) {
1549 fe0
->dvb
.frontend
->ops
.tuner_ops
.set_params
=
1550 samsung_smt_7020_tuner_set_params
;
1551 fe0
->dvb
.frontend
->tuner_priv
=
1552 &dev
->core
->i2c_adap
;
1553 fe0
->dvb
.frontend
->ops
.set_voltage
=
1554 samsung_smt_7020_set_voltage
;
1555 fe0
->dvb
.frontend
->ops
.set_tone
=
1556 samsung_smt_7020_set_tone
;
1560 case CX88_BOARD_TWINHAN_VP1027_DVBS
:
1561 dev
->ts_gen_cntrl
= 0x00;
1562 fe0
->dvb
.frontend
= dvb_attach(mb86a16_attach
,
1565 if (fe0
->dvb
.frontend
) {
1566 core
->prev_set_voltage
=
1567 fe0
->dvb
.frontend
->ops
.set_voltage
;
1568 fe0
->dvb
.frontend
->ops
.set_voltage
=
1574 printk(KERN_ERR
"%s/2: The frontend of your DVB/ATSC card isn't supported yet\n",
1579 if ( (NULL
== fe0
->dvb
.frontend
) || (fe1
&& NULL
== fe1
->dvb
.frontend
) ) {
1581 "%s/2: frontend initialization failed\n",
1583 goto frontend_detach
;
1585 /* define general-purpose callback pointer */
1586 fe0
->dvb
.frontend
->callback
= cx88_tuner_callback
;
1588 /* Ensure all frontends negotiate bus access */
1589 fe0
->dvb
.frontend
->ops
.ts_bus_ctrl
= cx88_dvb_bus_ctrl
;
1591 fe1
->dvb
.frontend
->ops
.ts_bus_ctrl
= cx88_dvb_bus_ctrl
;
1593 /* Put the analog decoder in standby to keep it quiet */
1594 call_all(core
, core
, s_power
, 0);
1596 /* register everything */
1597 res
= videobuf_dvb_register_bus(&dev
->frontends
, THIS_MODULE
, dev
,
1598 &dev
->pci
->dev
, adapter_nr
, mfe_shared
);
1600 goto frontend_detach
;
1604 core
->gate_ctrl
= NULL
;
1605 videobuf_dvb_dealloc_frontends(&dev
->frontends
);
1609 /* ----------------------------------------------------------- */
1611 /* CX8802 MPEG -> mini driver - We have been given the hardware */
1612 static int cx8802_dvb_advise_acquire(struct cx8802_driver
*drv
)
1614 struct cx88_core
*core
= drv
->core
;
1616 dprintk( 1, "%s\n", __func__
);
1618 switch (core
->boardnr
) {
1619 case CX88_BOARD_HAUPPAUGE_HVR1300
:
1620 /* We arrive here with either the cx23416 or the cx22702
1621 * on the bus. Take the bus from the cx23416 and enable the
1624 /* Toggle reset on cx22702 leaving i2c active */
1625 cx_set(MO_GP0_IO
, 0x00000080);
1627 cx_clear(MO_GP0_IO
, 0x00000080);
1629 cx_set(MO_GP0_IO
, 0x00000080);
1631 /* enable the cx22702 pins */
1632 cx_clear(MO_GP0_IO
, 0x00000004);
1636 case CX88_BOARD_HAUPPAUGE_HVR3000
:
1637 case CX88_BOARD_HAUPPAUGE_HVR4000
:
1638 /* Toggle reset on cx22702 leaving i2c active */
1639 cx_set(MO_GP0_IO
, 0x00000080);
1641 cx_clear(MO_GP0_IO
, 0x00000080);
1643 cx_set(MO_GP0_IO
, 0x00000080);
1645 switch (core
->dvbdev
->frontends
.active_fe_id
) {
1646 case 1: /* DVB-S/S2 Enabled */
1647 /* tri-state the cx22702 pins */
1648 cx_set(MO_GP0_IO
, 0x00000004);
1649 /* Take the cx24116/cx24123 out of reset */
1650 cx_write(MO_SRST_IO
, 1);
1651 core
->dvbdev
->ts_gen_cntrl
= 0x02; /* Parallel IO */
1653 case 2: /* DVB-T Enabled */
1654 /* Put the cx24116/cx24123 into reset */
1655 cx_write(MO_SRST_IO
, 0);
1656 /* enable the cx22702 pins */
1657 cx_clear(MO_GP0_IO
, 0x00000004);
1658 core
->dvbdev
->ts_gen_cntrl
= 0x0c; /* Serial IO */
1664 case CX88_BOARD_WINFAST_DTV2000H_PLUS
:
1665 /* set RF input to AIR for DVB-T (GPIO 16) */
1666 cx_write(MO_GP2_IO
, 0x0101);
1675 /* CX8802 MPEG -> mini driver - We no longer have the hardware */
1676 static int cx8802_dvb_advise_release(struct cx8802_driver
*drv
)
1678 struct cx88_core
*core
= drv
->core
;
1680 dprintk( 1, "%s\n", __func__
);
1682 switch (core
->boardnr
) {
1683 case CX88_BOARD_HAUPPAUGE_HVR1300
:
1684 /* Do Nothing, leave the cx22702 on the bus. */
1686 case CX88_BOARD_HAUPPAUGE_HVR3000
:
1687 case CX88_BOARD_HAUPPAUGE_HVR4000
:
1695 static int cx8802_dvb_probe(struct cx8802_driver
*drv
)
1697 struct cx88_core
*core
= drv
->core
;
1698 struct cx8802_dev
*dev
= drv
->core
->dvbdev
;
1700 struct videobuf_dvb_frontend
*fe
;
1703 dprintk( 1, "%s\n", __func__
);
1704 dprintk( 1, " ->being probed by Card=%d Name=%s, PCI %02x:%02x\n",
1711 if (!(core
->board
.mpeg
& CX88_MPEG_DVB
))
1714 /* If vp3054 isn't enabled, a stub will just return 0 */
1715 err
= vp3054_i2c_probe(dev
);
1720 printk(KERN_INFO
"%s/2: cx2388x based DVB/ATSC card\n", core
->name
);
1721 dev
->ts_gen_cntrl
= 0x0c;
1723 err
= cx8802_alloc_frontends(dev
);
1728 for (i
= 1; i
<= core
->board
.num_frontends
; i
++) {
1729 fe
= videobuf_dvb_get_frontend(&core
->dvbdev
->frontends
, i
);
1731 printk(KERN_ERR
"%s() failed to get frontend(%d)\n",
1735 videobuf_queue_sg_init(&fe
->dvb
.dvbq
, &dvb_qops
,
1736 &dev
->pci
->dev
, &dev
->slock
,
1737 V4L2_BUF_TYPE_VIDEO_CAPTURE
,
1739 sizeof(struct cx88_buffer
),
1741 /* init struct videobuf_dvb */
1742 fe
->dvb
.name
= dev
->core
->name
;
1745 err
= dvb_register(dev
);
1747 /* frontends/adapter de-allocated in dvb_register */
1748 printk(KERN_ERR
"%s/2: dvb_register failed (err = %d)\n",
1752 videobuf_dvb_dealloc_frontends(&core
->dvbdev
->frontends
);
1757 static int cx8802_dvb_remove(struct cx8802_driver
*drv
)
1759 struct cx88_core
*core
= drv
->core
;
1760 struct cx8802_dev
*dev
= drv
->core
->dvbdev
;
1762 dprintk( 1, "%s\n", __func__
);
1764 videobuf_dvb_unregister_bus(&dev
->frontends
);
1766 vp3054_i2c_remove(dev
);
1768 core
->gate_ctrl
= NULL
;
1773 static struct cx8802_driver cx8802_dvb_driver
= {
1774 .type_id
= CX88_MPEG_DVB
,
1775 .hw_access
= CX8802_DRVCTL_SHARED
,
1776 .probe
= cx8802_dvb_probe
,
1777 .remove
= cx8802_dvb_remove
,
1778 .advise_acquire
= cx8802_dvb_advise_acquire
,
1779 .advise_release
= cx8802_dvb_advise_release
,
1782 static int __init
dvb_init(void)
1784 printk(KERN_INFO
"cx88/2: cx2388x dvb driver version %s loaded\n",
1786 return cx8802_register_driver(&cx8802_dvb_driver
);
1789 static void __exit
dvb_fini(void)
1791 cx8802_unregister_driver(&cx8802_dvb_driver
);
1794 module_init(dvb_init
);
1795 module_exit(dvb_fini
);