1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Linux driver for devices based on the DiBcom DiB0700 USB bridge
4 * Copyright (C) 2005-9 DiBcom, SA et al
15 #include "tuner-xc2028.h"
27 static int force_lna_activation;
28 module_param(force_lna_activation, int, 0644);
29 MODULE_PARM_DESC(force_lna_activation, "force the activation of Low-Noise-Amplifier(s) (LNA), if applicable for the device (default: 0=automatic/off).");
31 struct dib0700_adapter_state {
32 int (*set_param_save) (struct dvb_frontend *);
33 const struct firmware *frontend_firmware;
34 struct dib7000p_ops dib7000p_ops;
35 struct dib8000_ops dib8000_ops;
38 /* Hauppauge Nova-T 500 (aka Bristol)
39 * has a LNA on GPIO0 which is enabled by setting 1 */
40 static struct mt2060_config bristol_mt2060_config[2] = {
50 static struct dibx000_agc_config bristol_dib3000p_mt2060_agc_config = {
51 .band_caps = BAND_VHF | BAND_UHF,
52 .setup = (1 << 8) | (5 << 5) | (0 << 4) | (0 << 3) | (0 << 2) | (2 << 0),
72 static struct dib3000mc_config bristol_dib3000mc_config[2] = {
73 { .agc = &bristol_dib3000p_mt2060_agc_config,
75 .ln_adc_level = 0x1cc7,
76 .output_mpeg2_in_188_bytes = 1,
78 { .agc = &bristol_dib3000p_mt2060_agc_config,
80 .ln_adc_level = 0x1cc7,
81 .output_mpeg2_in_188_bytes = 1,
85 static int bristol_frontend_attach(struct dvb_usb_adapter *adap)
87 struct dib0700_state *st = adap->dev->priv;
89 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); msleep(10);
90 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); msleep(10);
91 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); msleep(10);
92 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); msleep(10);
94 if (force_lna_activation)
95 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
97 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 0);
99 if (dib3000mc_i2c_enumeration(&adap->dev->i2c_adap, 2, DEFAULT_DIB3000P_I2C_ADDRESS, bristol_dib3000mc_config) != 0) {
100 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); msleep(10);
104 st->mt2060_if1[adap->id] = 1220;
105 return (adap->fe_adap[0].fe = dvb_attach(dib3000mc_attach, &adap->dev->i2c_adap,
106 (10 + adap->id) << 1, &bristol_dib3000mc_config[adap->id])) == NULL ? -ENODEV : 0;
109 static int eeprom_read(struct i2c_adapter *adap,u8 adrs,u8 *pval)
111 struct i2c_msg msg[2] = {
112 { .addr = 0x50, .flags = 0, .buf = &adrs, .len = 1 },
113 { .addr = 0x50, .flags = I2C_M_RD, .buf = pval, .len = 1 },
115 if (i2c_transfer(adap, msg, 2) != 2) return -EREMOTEIO;
119 static int bristol_tuner_attach(struct dvb_usb_adapter *adap)
121 struct i2c_adapter *prim_i2c = &adap->dev->i2c_adap;
122 struct i2c_adapter *tun_i2c = dib3000mc_get_tuner_i2c_master(adap->fe_adap[0].fe, 1);
125 if (adap->dev->udev->descriptor.idVendor == cpu_to_le16(USB_VID_HAUPPAUGE) &&
126 adap->dev->udev->descriptor.idProduct == cpu_to_le16(USB_PID_HAUPPAUGE_NOVA_T_500_2)) {
127 if (!eeprom_read(prim_i2c,0x59 + adap->id,&a)) if1=1220+a;
129 return dvb_attach(mt2060_attach, adap->fe_adap[0].fe, tun_i2c,
130 &bristol_mt2060_config[adap->id], if1) == NULL ?
134 /* STK7700D: Pinnacle/Terratec/Hauppauge Dual DVB-T Diversity */
137 static struct dibx000_agc_config stk7700d_7000p_mt2266_agc_config[2] = {
141 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1, P_agc_inv_pwm1=1, P_agc_inv_pwm2=1,
142 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */
143 (0 << 15) | (0 << 14) | (1 << 11) | (1 << 10) | (1 << 9) | (0 << 8)
144 | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
179 BAND_VHF | BAND_LBAND,
181 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1, P_agc_inv_pwm1=1, P_agc_inv_pwm2=1,
182 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */
183 (0 << 15) | (0 << 14) | (1 << 11) | (1 << 10) | (1 << 9) | (0 << 8)
184 | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0),
221 static struct dibx000_bandwidth_config stk7700d_mt2266_pll_config = {
234 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
239 static struct dib7000p_config stk7700d_dib7000p_mt2266_config[] = {
240 { .output_mpeg2_in_188_bytes = 1,
241 .hostbus_diversity = 1,
242 .tuner_is_baseband = 1,
244 .agc_config_count = 2,
245 .agc = stk7700d_7000p_mt2266_agc_config,
246 .bw = &stk7700d_mt2266_pll_config,
248 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
249 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
250 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
252 { .output_mpeg2_in_188_bytes = 1,
253 .hostbus_diversity = 1,
254 .tuner_is_baseband = 1,
256 .agc_config_count = 2,
257 .agc = stk7700d_7000p_mt2266_agc_config,
258 .bw = &stk7700d_mt2266_pll_config,
260 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
261 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
262 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
266 static struct mt2266_config stk7700d_mt2266_config[2] = {
267 { .i2c_address = 0x60
269 { .i2c_address = 0x60
273 static int stk7700P2_frontend_attach(struct dvb_usb_adapter *adap)
275 struct dib0700_adapter_state *state = adap->priv;
277 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
281 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
283 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
284 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
285 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
286 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
288 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
290 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
291 stk7700d_dib7000p_mt2266_config)
293 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n", __func__);
294 dvb_detach(state->dib7000p_ops.set_wbd_ref);
299 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap,
300 0x80 + (adap->id << 1),
301 &stk7700d_dib7000p_mt2266_config[adap->id]);
303 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
306 static int stk7700d_frontend_attach(struct dvb_usb_adapter *adap)
308 struct dib0700_adapter_state *state = adap->priv;
310 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
314 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
316 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
317 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
318 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
319 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
321 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
323 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
324 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 2, 18,
325 stk7700d_dib7000p_mt2266_config)
327 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n", __func__);
328 dvb_detach(state->dib7000p_ops.set_wbd_ref);
333 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap,
334 0x80 + (adap->id << 1),
335 &stk7700d_dib7000p_mt2266_config[adap->id]);
337 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
340 static int stk7700d_tuner_attach(struct dvb_usb_adapter *adap)
342 struct i2c_adapter *tun_i2c;
343 struct dib0700_adapter_state *state = adap->priv;
345 tun_i2c = state->dib7000p_ops.get_i2c_master(adap->fe_adap[0].fe,
346 DIBX000_I2C_INTERFACE_TUNER, 1);
347 return dvb_attach(mt2266_attach, adap->fe_adap[0].fe, tun_i2c,
348 &stk7700d_mt2266_config[adap->id]) == NULL ? -ENODEV : 0;
351 /* STK7700-PH: Digital/Analog Hybrid Tuner, e.h. Cinergy HT USB HE */
352 static struct dibx000_agc_config xc3028_agc_config = {
353 .band_caps = BAND_VHF | BAND_UHF,
354 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=0,
355 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
356 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */
357 .setup = (0 << 15) | (0 << 14) | (0 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0),
383 .perform_agc_softsplit = 1,
386 /* PLL Configuration for COFDM BW_MHz = 8.00 with external clock = 30.00 */
387 static struct dibx000_bandwidth_config xc3028_bw_config = {
400 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0), /* sad_cfg: refsel, sel, freq_15k */
401 .ifreq = (1 << 25) | 5816102, /* ifreq = 5.200000 MHz */
406 static struct dib7000p_config stk7700ph_dib7700_xc3028_config = {
407 .output_mpeg2_in_188_bytes = 1,
408 .tuner_is_baseband = 1,
410 .agc_config_count = 1,
411 .agc = &xc3028_agc_config,
412 .bw = &xc3028_bw_config,
414 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
415 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
416 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
419 static int stk7700ph_xc3028_callback(void *ptr, int component,
420 int command, int arg)
422 struct dvb_usb_adapter *adap = ptr;
423 struct dib0700_adapter_state *state = adap->priv;
426 case XC2028_TUNER_RESET:
427 /* Send the tuner in then out of reset */
428 state->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 0);
430 state->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
432 case XC2028_RESET_CLK:
433 case XC2028_I2C_FLUSH:
436 err("%s: unknown command %d, arg %d\n", __func__,
443 static struct xc2028_ctrl stk7700ph_xc3028_ctrl = {
444 .fname = XC2028_DEFAULT_FIRMWARE,
446 .demod = XC3028_FE_DIBCOM52,
449 static struct xc2028_config stk7700ph_xc3028_config = {
451 .ctrl = &stk7700ph_xc3028_ctrl,
454 static int stk7700ph_frontend_attach(struct dvb_usb_adapter *adap)
456 struct usb_device_descriptor *desc = &adap->dev->udev->descriptor;
457 struct dib0700_adapter_state *state = adap->priv;
459 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
462 if (desc->idVendor == cpu_to_le16(USB_VID_PINNACLE) &&
463 desc->idProduct == cpu_to_le16(USB_PID_PINNACLE_EXPRESSCARD_320CX))
464 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
466 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
468 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
469 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
470 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
471 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
473 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
475 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
478 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
479 &stk7700ph_dib7700_xc3028_config) != 0) {
480 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n",
482 dvb_detach(state->dib7000p_ops.set_wbd_ref);
486 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x80,
487 &stk7700ph_dib7700_xc3028_config);
489 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
492 static int stk7700ph_tuner_attach(struct dvb_usb_adapter *adap)
494 struct i2c_adapter *tun_i2c;
495 struct dib0700_adapter_state *state = adap->priv;
497 tun_i2c = state->dib7000p_ops.get_i2c_master(adap->fe_adap[0].fe,
498 DIBX000_I2C_INTERFACE_TUNER, 1);
500 stk7700ph_xc3028_config.i2c_adap = tun_i2c;
502 /* FIXME: generalize & move to common area */
503 adap->fe_adap[0].fe->callback = stk7700ph_xc3028_callback;
505 return dvb_attach(xc2028_attach, adap->fe_adap[0].fe, &stk7700ph_xc3028_config)
506 == NULL ? -ENODEV : 0;
509 #define DEFAULT_RC_INTERVAL 50
512 * This function is used only when firmware is < 1.20 version. Newer
513 * firmwares use bulk mode, with functions implemented at dib0700_core,
514 * at dib0700_rc_urb_completion()
516 static int dib0700_rc_query_old_firmware(struct dvb_usb_device *d)
518 enum rc_proto protocol;
522 struct dib0700_state *st = d->priv;
524 if (st->fw_version >= 0x10200) {
525 /* For 1.20 firmware , We need to keep the RC polling
526 callback so we can reuse the input device setup in
527 dvb-usb-remote.c. However, the actual work is being done
528 in the bulk URB completion handler. */
532 st->buf[0] = REQUEST_POLL_RC;
535 i = dib0700_ctrl_rd(d, st->buf, 2, st->buf, 4);
537 err("RC Query Failed");
541 /* losing half of KEY_0 events from Philipps rc5 remotes.. */
542 if (st->buf[0] == 0 && st->buf[1] == 0
543 && st->buf[2] == 0 && st->buf[3] == 0)
546 /* info("%d: %2X %2X %2X %2X",dvb_usb_dib0700_ir_proto,(int)st->buf[3 - 2],(int)st->buf[3 - 3],(int)st->buf[3 - 1],(int)st->buf[3]); */
548 dib0700_rc_setup(d, NULL); /* reset ir sensor data to prevent false events */
550 switch (d->props.rc.core.protocol) {
551 case RC_PROTO_BIT_NEC:
552 /* NEC protocol sends repeat code as 0 0 0 FF */
553 if ((st->buf[3 - 2] == 0x00) && (st->buf[3 - 3] == 0x00) &&
554 (st->buf[3] == 0xff)) {
555 rc_repeat(d->rc_dev);
559 protocol = RC_PROTO_NEC;
560 scancode = RC_SCANCODE_NEC(st->buf[3 - 2], st->buf[3 - 3]);
565 /* RC-5 protocol changes toggle bit on new keypress */
566 protocol = RC_PROTO_RC5;
567 scancode = RC_SCANCODE_RC5(st->buf[3 - 2], st->buf[3 - 3]);
568 toggle = st->buf[3 - 1];
572 rc_keydown(d->rc_dev, protocol, scancode, toggle);
576 /* STK7700P: Hauppauge Nova-T Stick, AVerMedia Volar */
577 static struct dibx000_agc_config stk7700p_7000m_mt2060_agc_config = {
580 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
581 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */
582 (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
583 | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0),
623 static struct dibx000_agc_config stk7700p_7000p_mt2060_agc_config = {
624 .band_caps = BAND_UHF | BAND_VHF,
625 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
626 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=2, P_agc_write=0 */
627 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (2 << 1) | (0 << 0),
653 .perform_agc_softsplit = 0,
656 static struct dibx000_bandwidth_config stk7700p_pll_config = {
669 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
675 static struct dib7000m_config stk7700p_dib7000m_config = {
677 .output_mpeg2_in_188_bytes = 1,
680 .agc_config_count = 1,
681 .agc = &stk7700p_7000m_mt2060_agc_config,
682 .bw = &stk7700p_pll_config,
684 .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS,
685 .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES,
686 .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS,
689 static struct dib7000p_config stk7700p_dib7000p_config = {
690 .output_mpeg2_in_188_bytes = 1,
692 .agc_config_count = 1,
693 .agc = &stk7700p_7000p_mt2060_agc_config,
694 .bw = &stk7700p_pll_config,
696 .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS,
697 .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES,
698 .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS,
701 static int stk7700p_frontend_attach(struct dvb_usb_adapter *adap)
703 struct dib0700_state *st = adap->dev->priv;
704 struct dib0700_adapter_state *state = adap->priv;
706 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
709 /* unless there is no real power management in DVB - we leave the device on GPIO6 */
711 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
712 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0); msleep(50);
714 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1); msleep(10);
715 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
717 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0); msleep(10);
718 dib0700_ctrl_clock(adap->dev, 72, 1);
719 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1); msleep(100);
721 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
723 st->mt2060_if1[0] = 1220;
725 if (state->dib7000p_ops.dib7000pc_detection(&adap->dev->i2c_adap)) {
726 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 18, &stk7700p_dib7000p_config);
727 st->is_dib7000pc = 1;
729 memset(&state->dib7000p_ops, 0, sizeof(state->dib7000p_ops));
730 adap->fe_adap[0].fe = dvb_attach(dib7000m_attach, &adap->dev->i2c_adap, 18, &stk7700p_dib7000m_config);
733 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
736 static struct mt2060_config stk7700p_mt2060_config = {
740 static int stk7700p_tuner_attach(struct dvb_usb_adapter *adap)
742 struct i2c_adapter *prim_i2c = &adap->dev->i2c_adap;
743 struct dib0700_state *st = adap->dev->priv;
744 struct i2c_adapter *tun_i2c;
745 struct dib0700_adapter_state *state = adap->priv;
749 if (adap->dev->udev->descriptor.idVendor == cpu_to_le16(USB_VID_HAUPPAUGE) &&
750 adap->dev->udev->descriptor.idProduct == cpu_to_le16(USB_PID_HAUPPAUGE_NOVA_T_STICK)) {
751 if (!eeprom_read(prim_i2c,0x58,&a)) if1=1220+a;
753 if (st->is_dib7000pc)
754 tun_i2c = state->dib7000p_ops.get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_TUNER, 1);
756 tun_i2c = dib7000m_get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_TUNER, 1);
758 return dvb_attach(mt2060_attach, adap->fe_adap[0].fe, tun_i2c, &stk7700p_mt2060_config,
759 if1) == NULL ? -ENODEV : 0;
762 /* DIB7070 generic */
763 static struct dibx000_agc_config dib7070_agc_config = {
764 .band_caps = BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND,
765 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
766 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
767 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
793 .perform_agc_softsplit = 0,
796 static int dib7070_tuner_reset(struct dvb_frontend *fe, int onoff)
798 struct dvb_usb_adapter *adap = fe->dvb->priv;
799 struct dib0700_adapter_state *state = adap->priv;
801 deb_info("reset: %d", onoff);
802 return state->dib7000p_ops.set_gpio(fe, 8, 0, !onoff);
805 static int dib7070_tuner_sleep(struct dvb_frontend *fe, int onoff)
807 struct dvb_usb_adapter *adap = fe->dvb->priv;
808 struct dib0700_adapter_state *state = adap->priv;
810 deb_info("sleep: %d", onoff);
811 return state->dib7000p_ops.set_gpio(fe, 9, 0, onoff);
814 static struct dib0070_config dib7070p_dib0070_config[2] = {
816 .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
817 .reset = dib7070_tuner_reset,
818 .sleep = dib7070_tuner_sleep,
820 .clock_pad_drive = 4,
823 .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
824 .reset = dib7070_tuner_reset,
825 .sleep = dib7070_tuner_sleep,
831 static struct dib0070_config dib7770p_dib0070_config = {
832 .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
833 .reset = dib7070_tuner_reset,
834 .sleep = dib7070_tuner_sleep,
836 .clock_pad_drive = 0,
841 static int dib7070_set_param_override(struct dvb_frontend *fe)
843 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
844 struct dvb_usb_adapter *adap = fe->dvb->priv;
845 struct dib0700_adapter_state *state = adap->priv;
848 u8 band = BAND_OF_FREQUENCY(p->frequency/1000);
850 case BAND_VHF: offset = 950; break;
852 default: offset = 550; break;
854 deb_info("WBD for DiB7000P: %d\n", offset + dib0070_wbd_offset(fe));
855 state->dib7000p_ops.set_wbd_ref(fe, offset + dib0070_wbd_offset(fe));
856 return state->set_param_save(fe);
859 static int dib7770_set_param_override(struct dvb_frontend *fe)
861 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
862 struct dvb_usb_adapter *adap = fe->dvb->priv;
863 struct dib0700_adapter_state *state = adap->priv;
866 u8 band = BAND_OF_FREQUENCY(p->frequency/1000);
869 state->dib7000p_ops.set_gpio(fe, 0, 0, 1);
874 state->dib7000p_ops.set_gpio(fe, 0, 0, 0);
878 deb_info("WBD for DiB7000P: %d\n", offset + dib0070_wbd_offset(fe));
879 state->dib7000p_ops.set_wbd_ref(fe, offset + dib0070_wbd_offset(fe));
880 return state->set_param_save(fe);
883 static int dib7770p_tuner_attach(struct dvb_usb_adapter *adap)
885 struct dib0700_adapter_state *st = adap->priv;
886 struct i2c_adapter *tun_i2c = st->dib7000p_ops.get_i2c_master(adap->fe_adap[0].fe,
887 DIBX000_I2C_INTERFACE_TUNER, 1);
889 if (dvb_attach(dib0070_attach, adap->fe_adap[0].fe, tun_i2c,
890 &dib7770p_dib0070_config) == NULL)
893 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
894 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7770_set_param_override;
898 static int dib7070p_tuner_attach(struct dvb_usb_adapter *adap)
900 struct dib0700_adapter_state *st = adap->priv;
901 struct i2c_adapter *tun_i2c = st->dib7000p_ops.get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_TUNER, 1);
904 if (dvb_attach(dib0070_attach, adap->fe_adap[0].fe, tun_i2c, &dib7070p_dib0070_config[0]) == NULL)
907 if (dvb_attach(dib0070_attach, adap->fe_adap[0].fe, tun_i2c, &dib7070p_dib0070_config[1]) == NULL)
911 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
912 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7070_set_param_override;
916 static int stk7700p_pid_filter(struct dvb_usb_adapter *adapter, int index,
919 struct dib0700_adapter_state *state = adapter->priv;
920 struct dib0700_state *st = adapter->dev->priv;
922 if (st->is_dib7000pc)
923 return state->dib7000p_ops.pid_filter(adapter->fe_adap[0].fe, index, pid, onoff);
924 return dib7000m_pid_filter(adapter->fe_adap[0].fe, index, pid, onoff);
927 static int stk7700p_pid_filter_ctrl(struct dvb_usb_adapter *adapter, int onoff)
929 struct dib0700_state *st = adapter->dev->priv;
930 struct dib0700_adapter_state *state = adapter->priv;
931 if (st->is_dib7000pc)
932 return state->dib7000p_ops.pid_filter_ctrl(adapter->fe_adap[0].fe, onoff);
933 return dib7000m_pid_filter_ctrl(adapter->fe_adap[0].fe, onoff);
936 static int stk70x0p_pid_filter(struct dvb_usb_adapter *adapter, int index, u16 pid, int onoff)
938 struct dib0700_adapter_state *state = adapter->priv;
939 return state->dib7000p_ops.pid_filter(adapter->fe_adap[0].fe, index, pid, onoff);
942 static int stk70x0p_pid_filter_ctrl(struct dvb_usb_adapter *adapter, int onoff)
944 struct dib0700_adapter_state *state = adapter->priv;
945 return state->dib7000p_ops.pid_filter_ctrl(adapter->fe_adap[0].fe, onoff);
948 static struct dibx000_bandwidth_config dib7070_bw_config_12_mhz = {
961 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
962 .ifreq = (0 << 25) | 0,
967 static struct dib7000p_config dib7070p_dib7000p_config = {
968 .output_mpeg2_in_188_bytes = 1,
970 .agc_config_count = 1,
971 .agc = &dib7070_agc_config,
972 .bw = &dib7070_bw_config_12_mhz,
973 .tuner_is_baseband = 1,
976 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
977 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
978 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
980 .hostbus_diversity = 1,
984 static int stk7070p_frontend_attach(struct dvb_usb_adapter *adap)
986 struct usb_device_descriptor *p = &adap->dev->udev->descriptor;
987 struct dib0700_adapter_state *state = adap->priv;
989 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
992 if (p->idVendor == cpu_to_le16(USB_VID_PINNACLE) &&
993 p->idProduct == cpu_to_le16(USB_PID_PINNACLE_PCTV72E))
994 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
996 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
998 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
999 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
1000 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
1001 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
1003 dib0700_ctrl_clock(adap->dev, 72, 1);
1006 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
1008 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
1010 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
1011 &dib7070p_dib7000p_config) != 0) {
1012 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n",
1014 dvb_detach(state->dib7000p_ops.set_wbd_ref);
1018 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x80,
1019 &dib7070p_dib7000p_config);
1020 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1024 static struct dib7000p_config dib7770p_dib7000p_config = {
1025 .output_mpeg2_in_188_bytes = 1,
1027 .agc_config_count = 1,
1028 .agc = &dib7070_agc_config,
1029 .bw = &dib7070_bw_config_12_mhz,
1030 .tuner_is_baseband = 1,
1033 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
1034 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
1035 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
1037 .hostbus_diversity = 1,
1038 .enable_current_mirror = 1,
1039 .disable_sample_and_hold = 0,
1042 static int stk7770p_frontend_attach(struct dvb_usb_adapter *adap)
1044 struct usb_device_descriptor *p = &adap->dev->udev->descriptor;
1045 struct dib0700_adapter_state *state = adap->priv;
1047 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
1050 if (p->idVendor == cpu_to_le16(USB_VID_PINNACLE) &&
1051 p->idProduct == cpu_to_le16(USB_PID_PINNACLE_PCTV72E))
1052 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
1054 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
1056 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
1057 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
1058 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
1059 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
1061 dib0700_ctrl_clock(adap->dev, 72, 1);
1064 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
1066 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
1068 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
1069 &dib7770p_dib7000p_config) != 0) {
1070 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n",
1072 dvb_detach(state->dib7000p_ops.set_wbd_ref);
1076 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x80,
1077 &dib7770p_dib7000p_config);
1078 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1081 /* DIB807x generic */
1082 static struct dibx000_agc_config dib807x_agc_config[2] = {
1085 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0,
1086 * P_agc_freq_pwm_div=1, P_agc_inv_pwm1=0,
1087 * P_agc_inv_pwm2=0,P_agc_inh_dc_rv_est=0,
1088 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5,
1090 (0 << 15) | (0 << 14) | (7 << 11) | (0 << 10) | (0 << 9) |
1091 (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) |
1092 (0 << 0), /* setup*/
1095 10, /* time_stabiliz*/
1105 65535, /* agc1_max*/
1108 65535, /* agc2_max*/
1114 206, /* agc1_slope1*/
1115 255, /* agc1_slope2*/
1118 88, /* agc2_slope1*/
1119 90, /* agc2_slope2*/
1126 0, /* perform_agc_softsplit*/
1129 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0,
1130 * P_agc_freq_pwm_div=1, P_agc_inv_pwm1=0,
1131 * P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
1132 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5,
1134 (0 << 15) | (0 << 14) | (1 << 11) | (0 << 10) | (0 << 9) |
1135 (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) |
1136 (0 << 0), /* setup */
1139 10, /* time_stabiliz*/
1149 65535, /* agc1_max*/
1152 65535, /* agc2_max*/
1158 206, /* agc1_slope1*/
1159 255, /* agc1_slope2*/
1162 88, /* agc2_slope1*/
1163 90, /* agc2_slope2*/
1170 0, /* perform_agc_softsplit*/
1174 static struct dibx000_bandwidth_config dib807x_bw_config_12_mhz = {
1184 .IO_CLK_en_core = 1,
1187 .sad_cfg = (3 << 14) | (1 << 12) | (599 << 0), /* sad_cfg: refsel, sel, freq_15k*/
1188 .ifreq = (0 << 25) | 0, /* ifreq = 0.000000 MHz*/
1190 .xtal_hz = 12000000,
1193 static struct dib8000_config dib807x_dib8000_config[2] = {
1195 .output_mpeg2_in_188_bytes = 1,
1197 .agc_config_count = 2,
1198 .agc = dib807x_agc_config,
1199 .pll = &dib807x_bw_config_12_mhz,
1200 .tuner_is_baseband = 1,
1202 .gpio_dir = DIB8000_GPIO_DEFAULT_DIRECTIONS,
1203 .gpio_val = DIB8000_GPIO_DEFAULT_VALUES,
1204 .gpio_pwm_pos = DIB8000_GPIO_DEFAULT_PWM_POS,
1206 .hostbus_diversity = 1,
1208 .agc_control = &dib0070_ctrl_agc_filter,
1209 .output_mode = OUTMODE_MPEG2_FIFO,
1212 .output_mpeg2_in_188_bytes = 1,
1214 .agc_config_count = 2,
1215 .agc = dib807x_agc_config,
1216 .pll = &dib807x_bw_config_12_mhz,
1217 .tuner_is_baseband = 1,
1219 .gpio_dir = DIB8000_GPIO_DEFAULT_DIRECTIONS,
1220 .gpio_val = DIB8000_GPIO_DEFAULT_VALUES,
1221 .gpio_pwm_pos = DIB8000_GPIO_DEFAULT_PWM_POS,
1223 .hostbus_diversity = 1,
1224 .agc_control = &dib0070_ctrl_agc_filter,
1225 .output_mode = OUTMODE_MPEG2_FIFO,
1230 static int dib80xx_tuner_reset(struct dvb_frontend *fe, int onoff)
1232 struct dvb_usb_adapter *adap = fe->dvb->priv;
1233 struct dib0700_adapter_state *state = adap->priv;
1235 return state->dib8000_ops.set_gpio(fe, 5, 0, !onoff);
1238 static int dib80xx_tuner_sleep(struct dvb_frontend *fe, int onoff)
1240 struct dvb_usb_adapter *adap = fe->dvb->priv;
1241 struct dib0700_adapter_state *state = adap->priv;
1243 return state->dib8000_ops.set_gpio(fe, 0, 0, onoff);
1246 static const struct dib0070_wbd_gain_cfg dib8070_wbd_gain_cfg[] = {
1251 static struct dib0070_config dib807x_dib0070_config[2] = {
1253 .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
1254 .reset = dib80xx_tuner_reset,
1255 .sleep = dib80xx_tuner_sleep,
1257 .clock_pad_drive = 4,
1259 .force_crystal_mode = 1,
1260 .enable_third_order_filter = 1,
1262 .wbd_gain = dib8070_wbd_gain_cfg,
1263 .osc_buffer_state = 0,
1264 .freq_offset_khz_uhf = -100,
1265 .freq_offset_khz_vhf = -100,
1267 .i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
1268 .reset = dib80xx_tuner_reset,
1269 .sleep = dib80xx_tuner_sleep,
1271 .clock_pad_drive = 2,
1273 .force_crystal_mode = 1,
1274 .enable_third_order_filter = 1,
1276 .wbd_gain = dib8070_wbd_gain_cfg,
1277 .osc_buffer_state = 0,
1278 .freq_offset_khz_uhf = -25,
1279 .freq_offset_khz_vhf = -25,
1283 static int dib807x_set_param_override(struct dvb_frontend *fe)
1285 struct dtv_frontend_properties *p = &fe->dtv_property_cache;
1286 struct dvb_usb_adapter *adap = fe->dvb->priv;
1287 struct dib0700_adapter_state *state = adap->priv;
1289 u16 offset = dib0070_wbd_offset(fe);
1290 u8 band = BAND_OF_FREQUENCY(p->frequency/1000);
1295 case BAND_UHF: /* fall-thru wanted */
1297 offset += 250; break;
1299 deb_info("WBD for DiB8000: %d\n", offset);
1300 state->dib8000_ops.set_wbd_ref(fe, offset);
1302 return state->set_param_save(fe);
1305 static int dib807x_tuner_attach(struct dvb_usb_adapter *adap)
1307 struct dib0700_adapter_state *st = adap->priv;
1308 struct i2c_adapter *tun_i2c = st->dib8000_ops.get_i2c_master(adap->fe_adap[0].fe,
1309 DIBX000_I2C_INTERFACE_TUNER, 1);
1311 if (adap->id == 0) {
1312 if (dvb_attach(dib0070_attach, adap->fe_adap[0].fe, tun_i2c,
1313 &dib807x_dib0070_config[0]) == NULL)
1316 if (dvb_attach(dib0070_attach, adap->fe_adap[0].fe, tun_i2c,
1317 &dib807x_dib0070_config[1]) == NULL)
1321 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
1322 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib807x_set_param_override;
1326 static int stk80xx_pid_filter(struct dvb_usb_adapter *adapter, int index,
1329 struct dib0700_adapter_state *state = adapter->priv;
1331 return state->dib8000_ops.pid_filter(adapter->fe_adap[0].fe, index, pid, onoff);
1334 static int stk80xx_pid_filter_ctrl(struct dvb_usb_adapter *adapter,
1337 struct dib0700_adapter_state *state = adapter->priv;
1339 return state->dib8000_ops.pid_filter_ctrl(adapter->fe_adap[0].fe, onoff);
1343 static int stk807x_frontend_attach(struct dvb_usb_adapter *adap)
1345 struct dib0700_adapter_state *state = adap->priv;
1347 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1350 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
1352 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
1353 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
1354 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
1356 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
1358 dib0700_ctrl_clock(adap->dev, 72, 1);
1361 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
1363 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
1365 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
1368 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x80,
1369 &dib807x_dib8000_config[0]);
1371 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1375 static int stk807xpvr_frontend_attach0(struct dvb_usb_adapter *adap)
1377 struct dib0700_adapter_state *state = adap->priv;
1379 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1382 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
1384 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
1386 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
1387 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
1388 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
1390 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
1392 dib0700_ctrl_clock(adap->dev, 72, 1);
1395 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
1397 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
1399 /* initialize IC 0 */
1400 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 0x22, 0x80, 0);
1402 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x80,
1403 &dib807x_dib8000_config[0]);
1405 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1408 static int stk807xpvr_frontend_attach1(struct dvb_usb_adapter *adap)
1410 struct dib0700_adapter_state *state = adap->priv;
1412 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1415 /* initialize IC 1 */
1416 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 0x12, 0x82, 0);
1418 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x82,
1419 &dib807x_dib8000_config[1]);
1421 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1425 static struct dibx000_agc_config dib8090_agc_config[2] = {
1427 .band_caps = BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND,
1428 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1,
1429 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
1430 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
1431 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
1432 | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
1435 .time_stabiliz = 10,
1466 .perform_agc_softsplit = 0,
1469 .band_caps = BAND_CBAND,
1470 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1,
1471 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
1472 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
1473 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8)
1474 | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
1477 .time_stabiliz = 10,
1508 .perform_agc_softsplit = 0,
1512 static struct dibx000_bandwidth_config dib8090_pll_config_12mhz = {
1524 .IO_CLK_en_core = 1,
1528 .sad_cfg = (3 << 14) | (1 << 12) | (599 << 0),
1530 .ifreq = (0 << 25) | 0,
1533 .xtal_hz = 12000000,
1536 static int dib8090_get_adc_power(struct dvb_frontend *fe)
1538 struct dvb_usb_adapter *adap = fe->dvb->priv;
1539 struct dib0700_adapter_state *state = adap->priv;
1541 return state->dib8000_ops.get_adc_power(fe, 1);
1544 static void dib8090_agc_control(struct dvb_frontend *fe, u8 restart)
1546 deb_info("AGC control callback: %i\n", restart);
1547 dib0090_dcc_freq(fe, restart);
1549 if (restart == 0) /* before AGC startup */
1550 dib0090_set_dc_servo(fe, 1);
1553 static struct dib8000_config dib809x_dib8000_config[2] = {
1555 .output_mpeg2_in_188_bytes = 1,
1557 .agc_config_count = 2,
1558 .agc = dib8090_agc_config,
1559 .agc_control = dib8090_agc_control,
1560 .pll = &dib8090_pll_config_12mhz,
1561 .tuner_is_baseband = 1,
1563 .gpio_dir = DIB8000_GPIO_DEFAULT_DIRECTIONS,
1564 .gpio_val = DIB8000_GPIO_DEFAULT_VALUES,
1565 .gpio_pwm_pos = DIB8000_GPIO_DEFAULT_PWM_POS,
1567 .hostbus_diversity = 1,
1569 .output_mode = OUTMODE_MPEG2_FIFO,
1571 .diversity_delay = 48,
1574 .output_mpeg2_in_188_bytes = 1,
1576 .agc_config_count = 2,
1577 .agc = dib8090_agc_config,
1578 .agc_control = dib8090_agc_control,
1579 .pll = &dib8090_pll_config_12mhz,
1580 .tuner_is_baseband = 1,
1582 .gpio_dir = DIB8000_GPIO_DEFAULT_DIRECTIONS,
1583 .gpio_val = DIB8000_GPIO_DEFAULT_VALUES,
1584 .gpio_pwm_pos = DIB8000_GPIO_DEFAULT_PWM_POS,
1586 .hostbus_diversity = 1,
1588 .output_mode = OUTMODE_DIVERSITY,
1590 .diversity_delay = 1,
1595 static struct dib0090_wbd_slope dib8090_wbd_table[] = {
1596 /* max freq ; cold slope ; cold offset ; warm slope ; warm offset ; wbd gain */
1597 { 120, 0, 500, 0, 500, 4 }, /* CBAND */
1598 { 170, 0, 450, 0, 450, 4 }, /* CBAND */
1599 { 380, 48, 373, 28, 259, 6 }, /* VHF */
1600 { 860, 34, 700, 36, 616, 6 }, /* high UHF */
1601 { 0xFFFF, 34, 700, 36, 616, 6 }, /* default */
1604 static struct dib0090_config dib809x_dib0090_config = {
1608 .io.pll_loopdiv = 20,
1609 .io.adc_clock_ratio = 8,
1610 .io.pll_int_loop_filt = 0,
1611 .io.clock_khz = 12000,
1612 .reset = dib80xx_tuner_reset,
1613 .sleep = dib80xx_tuner_sleep,
1616 .i2c_address = DEFAULT_DIB0090_I2C_ADDRESS,
1619 .get_adc_power = dib8090_get_adc_power,
1620 .freq_offset_khz_uhf = -63,
1621 .freq_offset_khz_vhf = -143,
1622 .wbd = dib8090_wbd_table,
1623 .fref_clock_ratio = 6,
1626 static u8 dib8090_compute_pll_parameters(struct dvb_frontend *fe)
1628 u8 optimal_pll_ratio = 20;
1629 u32 freq_adc, ratio, rest, max = 0;
1632 for (pll_ratio = 17; pll_ratio <= 20; pll_ratio++) {
1633 freq_adc = 12 * pll_ratio * (1 << 8) / 16;
1634 ratio = ((fe->dtv_property_cache.frequency / 1000) * (1 << 8) / 1000) / freq_adc;
1635 rest = ((fe->dtv_property_cache.frequency / 1000) * (1 << 8) / 1000) - ratio * freq_adc;
1637 if (rest > freq_adc / 2)
1638 rest = freq_adc - rest;
1639 deb_info("PLL ratio=%i rest=%i\n", pll_ratio, rest);
1640 if ((rest > max) && (rest > 717)) {
1641 optimal_pll_ratio = pll_ratio;
1645 deb_info("optimal PLL ratio=%i\n", optimal_pll_ratio);
1647 return optimal_pll_ratio;
1650 static int dib8096_set_param_override(struct dvb_frontend *fe)
1652 struct dvb_usb_adapter *adap = fe->dvb->priv;
1653 struct dib0700_adapter_state *state = adap->priv;
1654 u8 pll_ratio, band = BAND_OF_FREQUENCY(fe->dtv_property_cache.frequency / 1000);
1655 u16 target, ltgain, rf_gain_limit;
1658 enum frontend_tune_state tune_state = CT_SHUTDOWN;
1662 deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency);
1665 state->dib8000_ops.set_gpio(fe, 3, 0, 1);
1668 state->dib8000_ops.set_gpio(fe, 3, 0, 0);
1672 ret = state->set_param_save(fe);
1676 if (fe->dtv_property_cache.bandwidth_hz != 6000000) {
1677 deb_info("only 6MHz bandwidth is supported\n");
1681 /* Update PLL if needed ratio */
1682 state->dib8000_ops.update_pll(fe, &dib8090_pll_config_12mhz, fe->dtv_property_cache.bandwidth_hz / 1000, 0);
1684 /* Get optimize PLL ratio to remove spurious */
1685 pll_ratio = dib8090_compute_pll_parameters(fe);
1686 if (pll_ratio == 17)
1688 else if (pll_ratio == 18)
1690 else if (pll_ratio == 19)
1696 state->dib8000_ops.update_pll(fe, &dib8090_pll_config_12mhz, fe->dtv_property_cache.bandwidth_hz / 1000, pll_ratio);
1698 state->dib8000_ops.ctrl_timf(fe, DEMOD_TIMF_SET, timf);
1700 if (band != BAND_CBAND) {
1701 /* dib0090_get_wbd_target is returning any possible temperature compensated wbd-target */
1702 target = (dib0090_get_wbd_target(fe) * 8 * 18 / 33 + 1) / 2;
1703 state->dib8000_ops.set_wbd_ref(fe, target);
1706 if (band == BAND_CBAND) {
1707 deb_info("tuning in CBAND - soft-AGC startup\n");
1708 dib0090_set_tune_state(fe, CT_AGC_START);
1711 ret = dib0090_gain_control(fe);
1713 tune_state = dib0090_get_tune_state(fe);
1714 if (tune_state == CT_AGC_STEP_0)
1715 state->dib8000_ops.set_gpio(fe, 6, 0, 1);
1716 else if (tune_state == CT_AGC_STEP_1) {
1717 dib0090_get_current_gain(fe, NULL, NULL, &rf_gain_limit, <gain);
1718 if (rf_gain_limit < 2000) /* activate the external attenuator in case of very high input power */
1719 state->dib8000_ops.set_gpio(fe, 6, 0, 0);
1721 } while (tune_state < CT_AGC_STOP);
1723 deb_info("switching to PWM AGC\n");
1724 dib0090_pwm_gain_reset(fe);
1725 state->dib8000_ops.pwm_agc_reset(fe);
1726 state->dib8000_ops.set_tune_state(fe, CT_DEMOD_START);
1728 /* for everything else than CBAND we are using standard AGC */
1729 deb_info("not tuning in CBAND - standard AGC startup\n");
1730 dib0090_pwm_gain_reset(fe);
1736 static int dib809x_tuner_attach(struct dvb_usb_adapter *adap)
1738 struct dib0700_adapter_state *st = adap->priv;
1739 struct i2c_adapter *tun_i2c = st->dib8000_ops.get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_TUNER, 1);
1741 /* FIXME: if adap->id != 0, check if it is fe_adap[1] */
1742 if (!dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c, &dib809x_dib0090_config))
1745 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
1746 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib8096_set_param_override;
1750 static int stk809x_frontend_attach(struct dvb_usb_adapter *adap)
1752 struct dib0700_adapter_state *state = adap->priv;
1754 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1757 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
1759 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
1760 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
1761 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
1763 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
1765 dib0700_ctrl_clock(adap->dev, 72, 1);
1768 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
1770 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
1772 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 18, 0x80, 0);
1774 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x80, &dib809x_dib8000_config[0]);
1776 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1779 static int stk809x_frontend1_attach(struct dvb_usb_adapter *adap)
1781 struct dib0700_adapter_state *state = adap->priv;
1783 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1786 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 0x10, 0x82, 0);
1788 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x82, &dib809x_dib8000_config[1]);
1790 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
1793 static int nim8096md_tuner_attach(struct dvb_usb_adapter *adap)
1795 struct dib0700_adapter_state *st = adap->priv;
1796 struct i2c_adapter *tun_i2c;
1797 struct dvb_frontend *fe_slave = st->dib8000_ops.get_slave_frontend(adap->fe_adap[0].fe, 1);
1800 tun_i2c = st->dib8000_ops.get_i2c_master(fe_slave, DIBX000_I2C_INTERFACE_TUNER, 1);
1801 if (dvb_attach(dib0090_register, fe_slave, tun_i2c, &dib809x_dib0090_config) == NULL)
1803 fe_slave->dvb = adap->fe_adap[0].fe->dvb;
1804 fe_slave->ops.tuner_ops.set_params = dib8096_set_param_override;
1806 tun_i2c = st->dib8000_ops.get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_TUNER, 1);
1807 if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c, &dib809x_dib0090_config) == NULL)
1810 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
1811 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib8096_set_param_override;
1816 static int nim8096md_frontend_attach(struct dvb_usb_adapter *adap)
1818 struct dvb_frontend *fe_slave;
1819 struct dib0700_adapter_state *state = adap->priv;
1821 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1824 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
1826 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
1828 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
1829 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
1830 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
1832 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
1834 dib0700_ctrl_clock(adap->dev, 72, 1);
1837 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
1839 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
1841 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 2, 18, 0x80, 0);
1843 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x80, &dib809x_dib8000_config[0]);
1844 if (adap->fe_adap[0].fe == NULL)
1847 /* Needed to increment refcount */
1848 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
1851 fe_slave = state->dib8000_ops.init(&adap->dev->i2c_adap, 0x82, &dib809x_dib8000_config[1]);
1852 state->dib8000_ops.set_slave_frontend(adap->fe_adap[0].fe, fe_slave);
1854 return fe_slave == NULL ? -ENODEV : 0;
1858 static struct dibx000_agc_config dib8096p_agc_config[2] = {
1860 .band_caps = BAND_UHF,
1861 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0,
1862 P_agc_freq_pwm_div=1, P_agc_inv_pwm1=0,
1863 P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
1864 P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5,
1866 .setup = (0 << 15) | (0 << 14) | (5 << 11)
1867 | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5)
1868 | (0 << 4) | (5 << 1) | (0 << 0),
1871 .time_stabiliz = 10,
1902 .perform_agc_softsplit = 0,
1904 .band_caps = BAND_FM | BAND_VHF | BAND_CBAND,
1905 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0,
1906 P_agc_freq_pwm_div=1, P_agc_inv_pwm1=0,
1907 P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
1908 P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5,
1910 .setup = (0 << 15) | (0 << 14) | (5 << 11)
1911 | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5)
1912 | (0 << 4) | (5 << 1) | (0 << 0),
1915 .time_stabiliz = 10,
1946 .perform_agc_softsplit = 0,
1950 static struct dibx000_bandwidth_config dib8096p_clock_config_12_mhz = {
1960 .IO_CLK_en_core = 0,
1963 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
1964 .ifreq = (0 << 25) | 0,
1966 .xtal_hz = 12000000,
1969 static struct dib8000_config tfe8096p_dib8000_config = {
1970 .output_mpeg2_in_188_bytes = 1,
1971 .hostbus_diversity = 1,
1974 .agc_config_count = 2,
1975 .agc = dib8096p_agc_config,
1976 .pll = &dib8096p_clock_config_12_mhz,
1978 .gpio_dir = DIB8000_GPIO_DEFAULT_DIRECTIONS,
1979 .gpio_val = DIB8000_GPIO_DEFAULT_VALUES,
1980 .gpio_pwm_pos = DIB8000_GPIO_DEFAULT_PWM_POS,
1982 .agc_control = NULL,
1983 .diversity_delay = 48,
1984 .output_mode = OUTMODE_MPEG2_FIFO,
1988 static struct dib0090_wbd_slope dib8096p_wbd_table[] = {
1989 { 380, 81, 850, 64, 540, 4},
1990 { 860, 51, 866, 21, 375, 4},
1991 {1700, 0, 250, 0, 100, 6},
1992 {2600, 0, 250, 0, 100, 6},
1993 { 0xFFFF, 0, 0, 0, 0, 0},
1996 static struct dib0090_config tfe8096p_dib0090_config = {
1997 .io.clock_khz = 12000,
2001 .io.pll_loopdiv = 6,
2002 .io.adc_clock_ratio = 0,
2003 .io.pll_int_loop_filt = 0,
2005 .freq_offset_khz_uhf = -143,
2006 .freq_offset_khz_vhf = -143,
2008 .get_adc_power = dib8090_get_adc_power,
2013 .wbd_vhf_offset = 0,
2014 .wbd_cband_offset = 0,
2018 .fref_clock_ratio = 1,
2020 .ls_cfg_pad_drv = 0,
2024 .force_cband_input = 0,
2027 struct dibx090p_adc {
2028 u32 freq; /* RF freq MHz */
2029 u32 timf; /* New Timf */
2030 u32 pll_loopdiv; /* New prediv */
2031 u32 pll_prediv; /* New loopdiv */
2034 struct dibx090p_best_adc {
2040 static int dib8096p_get_best_sampling(struct dvb_frontend *fe, struct dibx090p_best_adc *adc)
2042 u8 spur = 0, prediv = 0, loopdiv = 0, min_prediv = 1, max_prediv = 1;
2044 u16 fcp_min = 1900; /* PLL, Minimum Frequency of phase comparator (KHz) */
2045 u16 fcp_max = 20000; /* PLL, Maximum Frequency of phase comparator (KHz) */
2046 u32 fmem_max = 140000; /* 140MHz max SDRAM freq */
2047 u32 fdem_min = 66000;
2048 u32 fcp = 0, fs = 0, fdem = 0, fmem = 0;
2049 u32 harmonic_id = 0;
2052 adc->pll_loopdiv = loopdiv;
2053 adc->pll_prediv = prediv;
2055 deb_info("bandwidth = %d", fe->dtv_property_cache.bandwidth_hz);
2057 /* Find Min and Max prediv */
2058 while ((xtal / max_prediv) >= fcp_min)
2062 min_prediv = max_prediv;
2063 while ((xtal / min_prediv) <= fcp_max) {
2065 if (min_prediv == 1)
2068 deb_info("MIN prediv = %d : MAX prediv = %d", min_prediv, max_prediv);
2072 for (prediv = min_prediv; prediv < max_prediv; prediv++) {
2073 fcp = xtal / prediv;
2074 if (fcp > fcp_min && fcp < fcp_max) {
2075 for (loopdiv = 1; loopdiv < 64; loopdiv++) {
2076 fmem = ((xtal/prediv) * loopdiv);
2080 /* test min/max system restrictions */
2081 if ((fdem >= fdem_min) && (fmem <= fmem_max) && (fs >= fe->dtv_property_cache.bandwidth_hz / 1000)) {
2083 /* test fs harmonics positions */
2084 for (harmonic_id = (fe->dtv_property_cache.frequency / (1000 * fs)); harmonic_id <= ((fe->dtv_property_cache.frequency / (1000 * fs)) + 1); harmonic_id++) {
2085 if (((fs * harmonic_id) >= (fe->dtv_property_cache.frequency / 1000 - (fe->dtv_property_cache.bandwidth_hz / 2000))) && ((fs * harmonic_id) <= (fe->dtv_property_cache.frequency / 1000 + (fe->dtv_property_cache.bandwidth_hz / 2000)))) {
2092 adc->pll_loopdiv = loopdiv;
2093 adc->pll_prediv = prediv;
2094 adc->timf = (4260880253U / fdem) * (1 << 8);
2095 adc->timf += ((4260880253U % fdem) << 8) / fdem;
2097 deb_info("RF %6d; BW %6d; Xtal %6d; Fmem %6d; Fdem %6d; Fs %6d; Prediv %2d; Loopdiv %2d; Timf %8d;", fe->dtv_property_cache.frequency, fe->dtv_property_cache.bandwidth_hz, xtal, fmem, fdem, fs, prediv, loopdiv, adc->timf);
2107 if (adc->pll_loopdiv == 0 && adc->pll_prediv == 0)
2112 static int dib8096p_agc_startup(struct dvb_frontend *fe)
2114 struct dvb_usb_adapter *adap = fe->dvb->priv;
2115 struct dib0700_adapter_state *state = adap->priv;
2116 struct dibx000_bandwidth_config pll;
2117 struct dibx090p_best_adc adc;
2121 ret = state->set_param_save(fe);
2124 memset(&pll, 0, sizeof(struct dibx000_bandwidth_config));
2126 dib0090_pwm_gain_reset(fe);
2127 /* dib0090_get_wbd_target is returning any possible
2128 temperature compensated wbd-target */
2129 target = (dib0090_get_wbd_target(fe) * 8 + 1) / 2;
2130 state->dib8000_ops.set_wbd_ref(fe, target);
2132 if (dib8096p_get_best_sampling(fe, &adc) == 0) {
2133 pll.pll_ratio = adc.pll_loopdiv;
2134 pll.pll_prediv = adc.pll_prediv;
2136 dib0700_set_i2c_speed(adap->dev, 200);
2137 state->dib8000_ops.update_pll(fe, &pll, fe->dtv_property_cache.bandwidth_hz / 1000, 0);
2138 state->dib8000_ops.ctrl_timf(fe, DEMOD_TIMF_SET, adc.timf);
2139 dib0700_set_i2c_speed(adap->dev, 1000);
2144 static int tfe8096p_frontend_attach(struct dvb_usb_adapter *adap)
2146 struct dib0700_state *st = adap->dev->priv;
2148 struct dib0700_adapter_state *state = adap->priv;
2150 if (!dvb_attach(dib8000_attach, &state->dib8000_ops))
2153 dib0700_get_version(adap->dev, NULL, NULL, &fw_version, NULL);
2154 if (fw_version >= 0x10200)
2155 st->fw_use_new_i2c_api = 1;
2157 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
2159 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
2160 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
2161 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
2163 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
2165 dib0700_ctrl_clock(adap->dev, 72, 1);
2168 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
2170 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
2172 state->dib8000_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 0x10, 0x80, 1);
2174 adap->fe_adap[0].fe = state->dib8000_ops.init(&adap->dev->i2c_adap,
2175 0x80, &tfe8096p_dib8000_config);
2177 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
2180 static int tfe8096p_tuner_attach(struct dvb_usb_adapter *adap)
2182 struct dib0700_adapter_state *st = adap->priv;
2183 struct i2c_adapter *tun_i2c = st->dib8000_ops.get_i2c_tuner(adap->fe_adap[0].fe);
2185 tfe8096p_dib0090_config.reset = st->dib8000_ops.tuner_sleep;
2186 tfe8096p_dib0090_config.sleep = st->dib8000_ops.tuner_sleep;
2187 tfe8096p_dib0090_config.wbd = dib8096p_wbd_table;
2189 if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c,
2190 &tfe8096p_dib0090_config) == NULL)
2193 st->dib8000_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
2195 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
2196 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib8096p_agc_startup;
2201 static int dib90x0_pid_filter(struct dvb_usb_adapter *adapter, int index, u16 pid, int onoff)
2203 return dib9000_fw_pid_filter(adapter->fe_adap[0].fe, index, pid, onoff);
2206 static int dib90x0_pid_filter_ctrl(struct dvb_usb_adapter *adapter, int onoff)
2208 return dib9000_fw_pid_filter_ctrl(adapter->fe_adap[0].fe, onoff);
2211 static int dib90x0_tuner_reset(struct dvb_frontend *fe, int onoff)
2213 return dib9000_set_gpio(fe, 5, 0, !onoff);
2216 static int dib90x0_tuner_sleep(struct dvb_frontend *fe, int onoff)
2218 return dib9000_set_gpio(fe, 0, 0, onoff);
2221 static int dib01x0_pmu_update(struct i2c_adapter *i2c, u16 *data, u8 len)
2223 u8 wb[4] = { 0xc >> 8, 0xc & 0xff, 0, 0 };
2225 struct i2c_msg msg[2] = {
2226 {.addr = 0x1e >> 1, .flags = 0, .buf = wb, .len = 2},
2227 {.addr = 0x1e >> 1, .flags = I2C_M_RD, .buf = rb, .len = 2},
2231 dibx000_i2c_set_speed(i2c, 250);
2233 if (i2c_transfer(i2c, msg, 2) != 2)
2236 switch (rb[0] << 8 | rb[1]) {
2238 deb_info("Found DiB0170 rev1: This version of DiB0170 is not supported any longer.\n");
2241 deb_info("Found DiB0170 rev2");
2244 deb_info("Found DiB0190 rev2");
2247 deb_info("DiB01x0 not found");
2251 for (index_data = 0; index_data < len; index_data += 2) {
2252 wb[2] = (data[index_data + 1] >> 8) & 0xff;
2253 wb[3] = (data[index_data + 1]) & 0xff;
2255 if (data[index_data] == 0) {
2256 wb[0] = (data[index_data] >> 8) & 0xff;
2257 wb[1] = (data[index_data]) & 0xff;
2259 if (i2c_transfer(i2c, msg, 2) != 2)
2262 wb[3] |= rb[1] & ~(3 << 4);
2265 wb[0] = (data[index_data] >> 8)&0xff;
2266 wb[1] = (data[index_data])&0xff;
2268 if (i2c_transfer(i2c, &msg[0], 1) != 1)
2274 static struct dib9000_config stk9090m_config = {
2275 .output_mpeg2_in_188_bytes = 1,
2276 .output_mode = OUTMODE_MPEG2_FIFO,
2277 .vcxo_timer = 279620,
2278 .timing_frequency = 20452225,
2279 .demod_clock_khz = 60000,
2280 .xtal_clock_khz = 30000,
2281 .if_drives = (0 << 15) | (1 << 13) | (0 << 12) | (3 << 10) | (0 << 9) | (1 << 7) | (0 << 6) | (0 << 4) | (1 << 3) | (1 << 1) | (0),
2285 { 240, { BOARD_GPIO_COMPONENT_DEMOD, BOARD_GPIO_FUNCTION_SUBBAND_GPIO, 0x0008, 0x0000, 0x0008 } }, /* GPIO 3 to 1 for VHF */
2286 { 890, { BOARD_GPIO_COMPONENT_DEMOD, BOARD_GPIO_FUNCTION_SUBBAND_GPIO, 0x0008, 0x0000, 0x0000 } }, /* GPIO 3 to 0 for UHF */
2291 { .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_ON, .mask = 0x10 | 0x21, .direction = 0 & ~0x21, .value = (0x10 & ~0x1) | 0x20 },
2292 { .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_OFF, .mask = 0x10 | 0x21, .direction = 0 & ~0x21, .value = 0 | 0x21 },
2296 static struct dib9000_config nim9090md_config[2] = {
2298 .output_mpeg2_in_188_bytes = 1,
2299 .output_mode = OUTMODE_MPEG2_FIFO,
2300 .vcxo_timer = 279620,
2301 .timing_frequency = 20452225,
2302 .demod_clock_khz = 60000,
2303 .xtal_clock_khz = 30000,
2304 .if_drives = (0 << 15) | (1 << 13) | (0 << 12) | (3 << 10) | (0 << 9) | (1 << 7) | (0 << 6) | (0 << 4) | (1 << 3) | (1 << 1) | (0),
2306 .output_mpeg2_in_188_bytes = 1,
2307 .output_mode = OUTMODE_DIVERSITY,
2308 .vcxo_timer = 279620,
2309 .timing_frequency = 20452225,
2310 .demod_clock_khz = 60000,
2311 .xtal_clock_khz = 30000,
2312 .if_drives = (0 << 15) | (1 << 13) | (0 << 12) | (3 << 10) | (0 << 9) | (1 << 7) | (0 << 6) | (0 << 4) | (1 << 3) | (1 << 1) | (0),
2316 { 240, { BOARD_GPIO_COMPONENT_DEMOD, BOARD_GPIO_FUNCTION_SUBBAND_GPIO, 0x0006, 0x0000, 0x0006 } }, /* GPIO 1 and 2 to 1 for VHF */
2317 { 890, { BOARD_GPIO_COMPONENT_DEMOD, BOARD_GPIO_FUNCTION_SUBBAND_GPIO, 0x0006, 0x0000, 0x0000 } }, /* GPIO 1 and 2 to 0 for UHF */
2322 { .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_ON, .mask = 0x10 | 0x21, .direction = 0 & ~0x21, .value = (0x10 & ~0x1) | 0x20 },
2323 { .component = BOARD_GPIO_COMPONENT_DEMOD, .function = BOARD_GPIO_FUNCTION_COMPONENT_OFF, .mask = 0x10 | 0x21, .direction = 0 & ~0x21, .value = 0 | 0x21 },
2328 static struct dib0090_config dib9090_dib0090_config = {
2332 .io.pll_loopdiv = 8,
2333 .io.adc_clock_ratio = 8,
2334 .io.pll_int_loop_filt = 0,
2335 .io.clock_khz = 30000,
2336 .reset = dib90x0_tuner_reset,
2337 .sleep = dib90x0_tuner_sleep,
2342 .freq_offset_khz_uhf = 0,
2343 .freq_offset_khz_vhf = 0,
2346 static struct dib0090_config nim9090md_dib0090_config[2] = {
2351 .io.pll_loopdiv = 8,
2352 .io.adc_clock_ratio = 8,
2353 .io.pll_int_loop_filt = 0,
2354 .io.clock_khz = 30000,
2355 .reset = dib90x0_tuner_reset,
2356 .sleep = dib90x0_tuner_sleep,
2361 .freq_offset_khz_uhf = 0,
2362 .freq_offset_khz_vhf = 0,
2367 .io.pll_loopdiv = 8,
2368 .io.adc_clock_ratio = 8,
2369 .io.pll_int_loop_filt = 0,
2370 .io.clock_khz = 30000,
2371 .reset = dib90x0_tuner_reset,
2372 .sleep = dib90x0_tuner_sleep,
2377 .freq_offset_khz_uhf = 0,
2378 .freq_offset_khz_vhf = 0,
2383 static int stk9090m_frontend_attach(struct dvb_usb_adapter *adap)
2385 struct dib0700_adapter_state *state = adap->priv;
2386 struct dib0700_state *st = adap->dev->priv;
2389 /* Make use of the new i2c functions from FW 1.20 */
2390 dib0700_get_version(adap->dev, NULL, NULL, &fw_version, NULL);
2391 if (fw_version >= 0x10200)
2392 st->fw_use_new_i2c_api = 1;
2393 dib0700_set_i2c_speed(adap->dev, 340);
2395 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
2397 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
2398 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
2399 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
2400 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
2402 dib0700_ctrl_clock(adap->dev, 72, 1);
2405 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
2407 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
2409 dib9000_i2c_enumeration(&adap->dev->i2c_adap, 1, 0x10, 0x80);
2411 if (request_firmware(&state->frontend_firmware, "dib9090.fw", &adap->dev->udev->dev)) {
2412 deb_info("%s: Upload failed. (file not found?)\n", __func__);
2415 deb_info("%s: firmware read %zu bytes.\n", __func__, state->frontend_firmware->size);
2417 stk9090m_config.microcode_B_fe_size = state->frontend_firmware->size;
2418 stk9090m_config.microcode_B_fe_buffer = state->frontend_firmware->data;
2420 adap->fe_adap[0].fe = dvb_attach(dib9000_attach, &adap->dev->i2c_adap, 0x80, &stk9090m_config);
2422 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
2425 static int dib9090_tuner_attach(struct dvb_usb_adapter *adap)
2427 struct dib0700_adapter_state *state = adap->priv;
2428 struct i2c_adapter *i2c = dib9000_get_tuner_interface(adap->fe_adap[0].fe);
2429 u16 data_dib190[10] = {
2437 if (!IS_ENABLED(CONFIG_DVB_DIB9000))
2439 if (dvb_attach(dib0090_fw_register, adap->fe_adap[0].fe, i2c, &dib9090_dib0090_config) == NULL)
2441 i2c = dib9000_get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_GPIO_1_2, 0);
2444 if (dib01x0_pmu_update(i2c, data_dib190, 10) != 0)
2446 dib0700_set_i2c_speed(adap->dev, 1500);
2447 if (dib9000_firmware_post_pll_init(adap->fe_adap[0].fe) < 0)
2449 release_firmware(state->frontend_firmware);
2453 static int nim9090md_frontend_attach(struct dvb_usb_adapter *adap)
2455 struct dib0700_adapter_state *state = adap->priv;
2456 struct dib0700_state *st = adap->dev->priv;
2457 struct i2c_adapter *i2c;
2458 struct dvb_frontend *fe_slave;
2461 /* Make use of the new i2c functions from FW 1.20 */
2462 dib0700_get_version(adap->dev, NULL, NULL, &fw_version, NULL);
2463 if (fw_version >= 0x10200)
2464 st->fw_use_new_i2c_api = 1;
2465 dib0700_set_i2c_speed(adap->dev, 340);
2467 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
2469 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
2470 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
2471 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
2472 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
2474 dib0700_ctrl_clock(adap->dev, 72, 1);
2477 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
2479 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
2481 if (request_firmware(&state->frontend_firmware, "dib9090.fw", &adap->dev->udev->dev)) {
2482 deb_info("%s: Upload failed. (file not found?)\n", __func__);
2485 deb_info("%s: firmware read %zu bytes.\n", __func__, state->frontend_firmware->size);
2487 nim9090md_config[0].microcode_B_fe_size = state->frontend_firmware->size;
2488 nim9090md_config[0].microcode_B_fe_buffer = state->frontend_firmware->data;
2489 nim9090md_config[1].microcode_B_fe_size = state->frontend_firmware->size;
2490 nim9090md_config[1].microcode_B_fe_buffer = state->frontend_firmware->data;
2492 dib9000_i2c_enumeration(&adap->dev->i2c_adap, 1, 0x20, 0x80);
2493 adap->fe_adap[0].fe = dvb_attach(dib9000_attach, &adap->dev->i2c_adap, 0x80, &nim9090md_config[0]);
2495 if (adap->fe_adap[0].fe == NULL)
2498 i2c = dib9000_get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_GPIO_3_4, 0);
2499 dib9000_i2c_enumeration(i2c, 1, 0x12, 0x82);
2501 fe_slave = dvb_attach(dib9000_attach, i2c, 0x82, &nim9090md_config[1]);
2502 dib9000_set_slave_frontend(adap->fe_adap[0].fe, fe_slave);
2504 return fe_slave == NULL ? -ENODEV : 0;
2507 static int nim9090md_tuner_attach(struct dvb_usb_adapter *adap)
2509 struct dib0700_adapter_state *state = adap->priv;
2510 struct i2c_adapter *i2c;
2511 struct dvb_frontend *fe_slave;
2512 u16 data_dib190[10] = {
2519 if (!IS_ENABLED(CONFIG_DVB_DIB9000))
2521 i2c = dib9000_get_tuner_interface(adap->fe_adap[0].fe);
2522 if (dvb_attach(dib0090_fw_register, adap->fe_adap[0].fe, i2c, &nim9090md_dib0090_config[0]) == NULL)
2524 i2c = dib9000_get_i2c_master(adap->fe_adap[0].fe, DIBX000_I2C_INTERFACE_GPIO_1_2, 0);
2527 if (dib01x0_pmu_update(i2c, data_dib190, 10) < 0)
2530 dib0700_set_i2c_speed(adap->dev, 1500);
2531 if (dib9000_firmware_post_pll_init(adap->fe_adap[0].fe) < 0)
2534 fe_slave = dib9000_get_slave_frontend(adap->fe_adap[0].fe, 1);
2535 if (fe_slave != NULL) {
2536 i2c = dib9000_get_component_bus_interface(adap->fe_adap[0].fe);
2537 dib9000_set_i2c_adapter(fe_slave, i2c);
2539 i2c = dib9000_get_tuner_interface(fe_slave);
2540 if (dvb_attach(dib0090_fw_register, fe_slave, i2c, &nim9090md_dib0090_config[1]) == NULL)
2542 fe_slave->dvb = adap->fe_adap[0].fe->dvb;
2543 dib9000_fw_set_component_bus_speed(adap->fe_adap[0].fe, 1500);
2544 if (dib9000_firmware_post_pll_init(fe_slave) < 0)
2547 release_firmware(state->frontend_firmware);
2553 static int dib7090p_get_best_sampling(struct dvb_frontend *fe , struct dibx090p_best_adc *adc)
2555 u8 spur = 0, prediv = 0, loopdiv = 0, min_prediv = 1, max_prediv = 1;
2558 u32 fcp_min = 1900; /* PLL Minimum Frequency comparator KHz */
2559 u32 fcp_max = 20000; /* PLL Maximum Frequency comparator KHz */
2560 u32 fdem_max = 76000;
2561 u32 fdem_min = 69500;
2562 u32 fcp = 0, fs = 0, fdem = 0;
2563 u32 harmonic_id = 0;
2565 adc->pll_loopdiv = loopdiv;
2566 adc->pll_prediv = prediv;
2569 deb_info("bandwidth = %d fdem_min =%d", fe->dtv_property_cache.bandwidth_hz, fdem_min);
2571 /* Find Min and Max prediv */
2572 while ((xtal/max_prediv) >= fcp_min)
2576 min_prediv = max_prediv;
2577 while ((xtal/min_prediv) <= fcp_max) {
2579 if (min_prediv == 1)
2582 deb_info("MIN prediv = %d : MAX prediv = %d", min_prediv, max_prediv);
2586 for (prediv = min_prediv ; prediv < max_prediv; prediv++) {
2587 fcp = xtal / prediv;
2588 if (fcp > fcp_min && fcp < fcp_max) {
2589 for (loopdiv = 1 ; loopdiv < 64 ; loopdiv++) {
2590 fdem = ((xtal/prediv) * loopdiv);
2592 /* test min/max system restrictions */
2594 if ((fdem >= fdem_min) && (fdem <= fdem_max) && (fs >= fe->dtv_property_cache.bandwidth_hz/1000)) {
2596 /* test fs harmonics positions */
2597 for (harmonic_id = (fe->dtv_property_cache.frequency / (1000*fs)) ; harmonic_id <= ((fe->dtv_property_cache.frequency / (1000*fs))+1) ; harmonic_id++) {
2598 if (((fs*harmonic_id) >= ((fe->dtv_property_cache.frequency/1000) - (fe->dtv_property_cache.bandwidth_hz/2000))) && ((fs*harmonic_id) <= ((fe->dtv_property_cache.frequency/1000) + (fe->dtv_property_cache.bandwidth_hz/2000)))) {
2605 adc->pll_loopdiv = loopdiv;
2606 adc->pll_prediv = prediv;
2607 adc->timf = 2396745143UL/fdem*(1 << 9);
2608 adc->timf += ((2396745143UL%fdem) << 9)/fdem;
2609 deb_info("loopdiv=%i prediv=%i timf=%i", loopdiv, prediv, adc->timf);
2620 if (adc->pll_loopdiv == 0 && adc->pll_prediv == 0)
2626 static int dib7090_agc_startup(struct dvb_frontend *fe)
2628 struct dvb_usb_adapter *adap = fe->dvb->priv;
2629 struct dib0700_adapter_state *state = adap->priv;
2630 struct dibx000_bandwidth_config pll;
2632 struct dibx090p_best_adc adc;
2635 ret = state->set_param_save(fe);
2639 memset(&pll, 0, sizeof(struct dibx000_bandwidth_config));
2640 dib0090_pwm_gain_reset(fe);
2641 target = (dib0090_get_wbd_target(fe) * 8 + 1) / 2;
2642 state->dib7000p_ops.set_wbd_ref(fe, target);
2644 if (dib7090p_get_best_sampling(fe, &adc) == 0) {
2645 pll.pll_ratio = adc.pll_loopdiv;
2646 pll.pll_prediv = adc.pll_prediv;
2648 state->dib7000p_ops.update_pll(fe, &pll);
2649 state->dib7000p_ops.ctrl_timf(fe, DEMOD_TIMF_SET, adc.timf);
2654 static int dib7090_agc_restart(struct dvb_frontend *fe, u8 restart)
2656 deb_info("AGC restart callback: %d", restart);
2657 if (restart == 0) /* before AGC startup */
2658 dib0090_set_dc_servo(fe, 1);
2662 static int tfe7790p_update_lna(struct dvb_frontend *fe, u16 agc_global)
2664 struct dvb_usb_adapter *adap = fe->dvb->priv;
2665 struct dib0700_adapter_state *state = adap->priv;
2667 deb_info("update LNA: agc global=%i", agc_global);
2669 if (agc_global < 25000) {
2670 state->dib7000p_ops.set_gpio(fe, 8, 0, 0);
2671 state->dib7000p_ops.set_agc1_min(fe, 0);
2673 state->dib7000p_ops.set_gpio(fe, 8, 0, 1);
2674 state->dib7000p_ops.set_agc1_min(fe, 32768);
2680 static struct dib0090_wbd_slope dib7090_wbd_table[] = {
2681 { 380, 81, 850, 64, 540, 4},
2682 { 860, 51, 866, 21, 375, 4},
2683 {1700, 0, 250, 0, 100, 6},
2684 {2600, 0, 250, 0, 100, 6},
2685 { 0xFFFF, 0, 0, 0, 0, 0},
2688 static struct dibx000_agc_config dib7090_agc_config[2] = {
2690 .band_caps = BAND_UHF,
2691 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
2692 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
2693 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
2696 .time_stabiliz = 10,
2727 .perform_agc_softsplit = 0,
2729 .band_caps = BAND_FM | BAND_VHF | BAND_CBAND,
2730 /* P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=1, P_agc_inv_pwm1=0, P_agc_inv_pwm2=0,
2731 * P_agc_inh_dc_rv_est=0, P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0 */
2732 .setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) | (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
2735 .time_stabiliz = 10,
2766 .perform_agc_softsplit = 0,
2770 static struct dibx000_bandwidth_config dib7090_clock_config_12_mhz = {
2780 .IO_CLK_en_core = 1,
2783 .sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
2784 .ifreq = (0 << 25) | 0,
2786 .xtal_hz = 15000000,
2789 static struct dib7000p_config nim7090_dib7000p_config = {
2790 .output_mpeg2_in_188_bytes = 1,
2791 .hostbus_diversity = 1,
2792 .tuner_is_baseband = 1,
2793 .update_lna = tfe7790p_update_lna, /* GPIO used is the same as TFE7790 */
2795 .agc_config_count = 2,
2796 .agc = dib7090_agc_config,
2798 .bw = &dib7090_clock_config_12_mhz,
2800 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
2801 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
2802 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
2806 .agc_control = dib7090_agc_restart,
2809 .disable_sample_and_hold = 0,
2810 .enable_current_mirror = 0,
2811 .diversity_delay = 0,
2813 .output_mode = OUTMODE_MPEG2_FIFO,
2817 static int tfe7090p_pvr_update_lna(struct dvb_frontend *fe, u16 agc_global)
2819 struct dvb_usb_adapter *adap = fe->dvb->priv;
2820 struct dib0700_adapter_state *state = adap->priv;
2822 deb_info("TFE7090P-PVR update LNA: agc global=%i", agc_global);
2823 if (agc_global < 25000) {
2824 state->dib7000p_ops.set_gpio(fe, 5, 0, 0);
2825 state->dib7000p_ops.set_agc1_min(fe, 0);
2827 state->dib7000p_ops.set_gpio(fe, 5, 0, 1);
2828 state->dib7000p_ops.set_agc1_min(fe, 32768);
2834 static struct dib7000p_config tfe7090pvr_dib7000p_config[2] = {
2836 .output_mpeg2_in_188_bytes = 1,
2837 .hostbus_diversity = 1,
2838 .tuner_is_baseband = 1,
2839 .update_lna = tfe7090p_pvr_update_lna,
2841 .agc_config_count = 2,
2842 .agc = dib7090_agc_config,
2844 .bw = &dib7090_clock_config_12_mhz,
2846 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
2847 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
2848 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
2852 .agc_control = dib7090_agc_restart,
2855 .disable_sample_and_hold = 0,
2856 .enable_current_mirror = 0,
2857 .diversity_delay = 0,
2859 .output_mode = OUTMODE_MPEG2_PAR_GATED_CLK,
2860 .default_i2c_addr = 0x90,
2863 .output_mpeg2_in_188_bytes = 1,
2864 .hostbus_diversity = 1,
2865 .tuner_is_baseband = 1,
2866 .update_lna = tfe7090p_pvr_update_lna,
2868 .agc_config_count = 2,
2869 .agc = dib7090_agc_config,
2871 .bw = &dib7090_clock_config_12_mhz,
2873 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
2874 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
2875 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
2879 .agc_control = dib7090_agc_restart,
2882 .disable_sample_and_hold = 0,
2883 .enable_current_mirror = 0,
2884 .diversity_delay = 0,
2886 .output_mode = OUTMODE_MPEG2_PAR_GATED_CLK,
2887 .default_i2c_addr = 0x92,
2892 static struct dib0090_config nim7090_dib0090_config = {
2893 .io.clock_khz = 12000,
2897 .io.pll_loopdiv = 6,
2898 .io.adc_clock_ratio = 0,
2899 .io.pll_int_loop_filt = 0,
2901 .freq_offset_khz_uhf = 0,
2902 .freq_offset_khz_vhf = 0,
2907 .wbd_vhf_offset = 0,
2908 .wbd_cband_offset = 0,
2912 .fref_clock_ratio = 0,
2914 .wbd = dib7090_wbd_table,
2916 .ls_cfg_pad_drv = 0,
2922 static struct dib7000p_config tfe7790p_dib7000p_config = {
2923 .output_mpeg2_in_188_bytes = 1,
2924 .hostbus_diversity = 1,
2925 .tuner_is_baseband = 1,
2926 .update_lna = tfe7790p_update_lna,
2928 .agc_config_count = 2,
2929 .agc = dib7090_agc_config,
2931 .bw = &dib7090_clock_config_12_mhz,
2933 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
2934 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
2935 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
2939 .agc_control = dib7090_agc_restart,
2942 .disable_sample_and_hold = 0,
2943 .enable_current_mirror = 0,
2944 .diversity_delay = 0,
2946 .output_mode = OUTMODE_MPEG2_PAR_GATED_CLK,
2950 static struct dib0090_config tfe7790p_dib0090_config = {
2951 .io.clock_khz = 12000,
2955 .io.pll_loopdiv = 6,
2956 .io.adc_clock_ratio = 0,
2957 .io.pll_int_loop_filt = 0,
2959 .freq_offset_khz_uhf = 0,
2960 .freq_offset_khz_vhf = 0,
2965 .wbd_vhf_offset = 0,
2966 .wbd_cband_offset = 0,
2970 .fref_clock_ratio = 0,
2972 .wbd = dib7090_wbd_table,
2974 .ls_cfg_pad_drv = 0,
2978 .force_cband_input = 0,
2980 .force_crystal_mode = 1,
2983 static struct dib0090_config tfe7090pvr_dib0090_config[2] = {
2985 .io.clock_khz = 12000,
2989 .io.pll_loopdiv = 6,
2990 .io.adc_clock_ratio = 0,
2991 .io.pll_int_loop_filt = 0,
2993 .freq_offset_khz_uhf = 50,
2994 .freq_offset_khz_vhf = 70,
2999 .wbd_vhf_offset = 0,
3000 .wbd_cband_offset = 0,
3004 .fref_clock_ratio = 0,
3006 .wbd = dib7090_wbd_table,
3008 .ls_cfg_pad_drv = 0,
3013 .io.clock_khz = 12000,
3017 .io.pll_loopdiv = 6,
3018 .io.adc_clock_ratio = 0,
3019 .io.pll_int_loop_filt = 0,
3021 .freq_offset_khz_uhf = -50,
3022 .freq_offset_khz_vhf = -70,
3027 .wbd_vhf_offset = 0,
3028 .wbd_cband_offset = 0,
3032 .fref_clock_ratio = 0,
3034 .wbd = dib7090_wbd_table,
3036 .ls_cfg_pad_drv = 0,
3043 static int nim7090_frontend_attach(struct dvb_usb_adapter *adap)
3045 struct dib0700_adapter_state *state = adap->priv;
3047 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3050 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3052 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
3053 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
3054 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
3055 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3058 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3060 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
3062 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 0x10, &nim7090_dib7000p_config) != 0) {
3063 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n", __func__);
3064 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3067 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x80, &nim7090_dib7000p_config);
3069 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3072 static int nim7090_tuner_attach(struct dvb_usb_adapter *adap)
3074 struct dib0700_adapter_state *st = adap->priv;
3075 struct i2c_adapter *tun_i2c = st->dib7000p_ops.get_i2c_tuner(adap->fe_adap[0].fe);
3077 nim7090_dib0090_config.reset = st->dib7000p_ops.tuner_sleep,
3078 nim7090_dib0090_config.sleep = st->dib7000p_ops.tuner_sleep,
3079 nim7090_dib0090_config.get_adc_power = st->dib7000p_ops.get_adc_power;
3081 if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c, &nim7090_dib0090_config) == NULL)
3084 st->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
3086 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
3087 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7090_agc_startup;
3091 static int tfe7090pvr_frontend0_attach(struct dvb_usb_adapter *adap)
3093 struct dib0700_state *st = adap->dev->priv;
3094 struct dib0700_adapter_state *state = adap->priv;
3096 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3099 /* The TFE7090 requires the dib0700 to not be in master mode */
3100 st->disable_streaming_master_mode = 1;
3102 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3104 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
3105 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
3106 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
3107 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3110 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3112 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
3114 /* initialize IC 0 */
3115 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 1, 0x20, &tfe7090pvr_dib7000p_config[0]) != 0) {
3116 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n", __func__);
3117 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3121 dib0700_set_i2c_speed(adap->dev, 340);
3122 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x90, &tfe7090pvr_dib7000p_config[0]);
3123 if (adap->fe_adap[0].fe == NULL)
3126 state->dib7000p_ops.slave_reset(adap->fe_adap[0].fe);
3131 static int tfe7090pvr_frontend1_attach(struct dvb_usb_adapter *adap)
3133 struct i2c_adapter *i2c;
3134 struct dib0700_adapter_state *state = adap->priv;
3136 if (adap->dev->adapter[0].fe_adap[0].fe == NULL) {
3137 err("the master dib7090 has to be initialized first");
3138 return -ENODEV; /* the master device has not been initialized */
3141 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3144 i2c = state->dib7000p_ops.get_i2c_master(adap->dev->adapter[0].fe_adap[0].fe, DIBX000_I2C_INTERFACE_GPIO_6_7, 1);
3145 if (state->dib7000p_ops.i2c_enumeration(i2c, 1, 0x10, &tfe7090pvr_dib7000p_config[1]) != 0) {
3146 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n", __func__);
3147 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3151 adap->fe_adap[0].fe = state->dib7000p_ops.init(i2c, 0x92, &tfe7090pvr_dib7000p_config[1]);
3152 dib0700_set_i2c_speed(adap->dev, 200);
3154 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3157 static int tfe7090pvr_tuner0_attach(struct dvb_usb_adapter *adap)
3159 struct dib0700_adapter_state *st = adap->priv;
3160 struct i2c_adapter *tun_i2c = st->dib7000p_ops.get_i2c_tuner(adap->fe_adap[0].fe);
3162 tfe7090pvr_dib0090_config[0].reset = st->dib7000p_ops.tuner_sleep;
3163 tfe7090pvr_dib0090_config[0].sleep = st->dib7000p_ops.tuner_sleep;
3164 tfe7090pvr_dib0090_config[0].get_adc_power = st->dib7000p_ops.get_adc_power;
3166 if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c, &tfe7090pvr_dib0090_config[0]) == NULL)
3169 st->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
3171 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
3172 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7090_agc_startup;
3176 static int tfe7090pvr_tuner1_attach(struct dvb_usb_adapter *adap)
3178 struct dib0700_adapter_state *st = adap->priv;
3179 struct i2c_adapter *tun_i2c = st->dib7000p_ops.get_i2c_tuner(adap->fe_adap[0].fe);
3181 tfe7090pvr_dib0090_config[1].reset = st->dib7000p_ops.tuner_sleep;
3182 tfe7090pvr_dib0090_config[1].sleep = st->dib7000p_ops.tuner_sleep;
3183 tfe7090pvr_dib0090_config[1].get_adc_power = st->dib7000p_ops.get_adc_power;
3185 if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c, &tfe7090pvr_dib0090_config[1]) == NULL)
3188 st->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
3190 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
3191 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7090_agc_startup;
3195 static int tfe7790p_frontend_attach(struct dvb_usb_adapter *adap)
3197 struct dib0700_state *st = adap->dev->priv;
3198 struct dib0700_adapter_state *state = adap->priv;
3200 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3203 /* The TFE7790P requires the dib0700 to not be in master mode */
3204 st->disable_streaming_master_mode = 1;
3206 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3208 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
3209 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
3210 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
3211 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3213 dib0700_ctrl_clock(adap->dev, 72, 1);
3214 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3216 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
3218 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap,
3219 1, 0x10, &tfe7790p_dib7000p_config) != 0) {
3220 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n",
3222 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3225 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap,
3226 0x80, &tfe7790p_dib7000p_config);
3228 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3231 static int tfe7790p_tuner_attach(struct dvb_usb_adapter *adap)
3233 struct dib0700_adapter_state *st = adap->priv;
3234 struct i2c_adapter *tun_i2c =
3235 st->dib7000p_ops.get_i2c_tuner(adap->fe_adap[0].fe);
3238 tfe7790p_dib0090_config.reset = st->dib7000p_ops.tuner_sleep;
3239 tfe7790p_dib0090_config.sleep = st->dib7000p_ops.tuner_sleep;
3240 tfe7790p_dib0090_config.get_adc_power = st->dib7000p_ops.get_adc_power;
3242 if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c,
3243 &tfe7790p_dib0090_config) == NULL)
3246 st->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
3248 st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
3249 adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7090_agc_startup;
3254 static struct dib7000p_config stk7070pd_dib7000p_config[2] = {
3256 .output_mpeg2_in_188_bytes = 1,
3258 .agc_config_count = 1,
3259 .agc = &dib7070_agc_config,
3260 .bw = &dib7070_bw_config_12_mhz,
3261 .tuner_is_baseband = 1,
3264 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
3265 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
3266 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
3268 .hostbus_diversity = 1,
3270 .output_mpeg2_in_188_bytes = 1,
3272 .agc_config_count = 1,
3273 .agc = &dib7070_agc_config,
3274 .bw = &dib7070_bw_config_12_mhz,
3275 .tuner_is_baseband = 1,
3278 .gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
3279 .gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
3280 .gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
3282 .hostbus_diversity = 1,
3286 static void stk7070pd_init(struct dvb_usb_device *dev)
3288 dib0700_set_gpio(dev, GPIO6, GPIO_OUT, 1);
3290 dib0700_set_gpio(dev, GPIO9, GPIO_OUT, 1);
3291 dib0700_set_gpio(dev, GPIO4, GPIO_OUT, 1);
3292 dib0700_set_gpio(dev, GPIO7, GPIO_OUT, 1);
3293 dib0700_set_gpio(dev, GPIO10, GPIO_OUT, 0);
3295 dib0700_ctrl_clock(dev, 72, 1);
3298 dib0700_set_gpio(dev, GPIO10, GPIO_OUT, 1);
3301 static int stk7070pd_frontend_attach0(struct dvb_usb_adapter *adap)
3303 struct dib0700_adapter_state *state = adap->priv;
3305 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3308 stk7070pd_init(adap->dev);
3311 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
3313 if (state->dib7000p_ops.i2c_enumeration(&adap->dev->i2c_adap, 2, 18,
3314 stk7070pd_dib7000p_config) != 0) {
3315 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n",
3317 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3321 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x80, &stk7070pd_dib7000p_config[0]);
3322 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3325 static int stk7070pd_frontend_attach1(struct dvb_usb_adapter *adap)
3327 struct dib0700_adapter_state *state = adap->priv;
3329 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3332 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x82, &stk7070pd_dib7000p_config[1]);
3333 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3336 static int novatd_read_status_override(struct dvb_frontend *fe,
3337 enum fe_status *stat)
3339 struct dvb_usb_adapter *adap = fe->dvb->priv;
3340 struct dvb_usb_device *dev = adap->dev;
3341 struct dib0700_state *state = dev->priv;
3344 ret = state->read_status(fe, stat);
3347 dib0700_set_gpio(dev, adap->id == 0 ? GPIO1 : GPIO0, GPIO_OUT,
3348 !!(*stat & FE_HAS_LOCK));
3353 static int novatd_sleep_override(struct dvb_frontend* fe)
3355 struct dvb_usb_adapter *adap = fe->dvb->priv;
3356 struct dvb_usb_device *dev = adap->dev;
3357 struct dib0700_state *state = dev->priv;
3360 dib0700_set_gpio(dev, adap->id == 0 ? GPIO1 : GPIO0, GPIO_OUT, 0);
3362 return state->sleep(fe);
3366 * novatd_frontend_attach - Nova-TD specific attach
3368 * Nova-TD has GPIO0, 1 and 2 for LEDs. So do not fiddle with them except for
3369 * information purposes.
3371 static int novatd_frontend_attach(struct dvb_usb_adapter *adap)
3373 struct dvb_usb_device *dev = adap->dev;
3374 struct dib0700_state *st = dev->priv;
3375 struct dib0700_adapter_state *state = adap->priv;
3377 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3380 if (adap->id == 0) {
3381 stk7070pd_init(dev);
3383 /* turn the power LED on, the other two off (just in case) */
3384 dib0700_set_gpio(dev, GPIO0, GPIO_OUT, 0);
3385 dib0700_set_gpio(dev, GPIO1, GPIO_OUT, 0);
3386 dib0700_set_gpio(dev, GPIO2, GPIO_OUT, 1);
3388 if (state->dib7000p_ops.i2c_enumeration(&dev->i2c_adap, 2, 18,
3389 stk7070pd_dib7000p_config) != 0) {
3390 err("%s: state->dib7000p_ops.i2c_enumeration failed. Cannot continue\n",
3392 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3397 adap->fe_adap[0].fe = state->dib7000p_ops.init(&dev->i2c_adap,
3398 adap->id == 0 ? 0x80 : 0x82,
3399 &stk7070pd_dib7000p_config[adap->id]);
3401 if (adap->fe_adap[0].fe == NULL)
3404 st->read_status = adap->fe_adap[0].fe->ops.read_status;
3405 adap->fe_adap[0].fe->ops.read_status = novatd_read_status_override;
3406 st->sleep = adap->fe_adap[0].fe->ops.sleep;
3407 adap->fe_adap[0].fe->ops.sleep = novatd_sleep_override;
3413 static struct s5h1411_config pinnacle_801e_config = {
3414 .output_mode = S5H1411_PARALLEL_OUTPUT,
3415 .gpio = S5H1411_GPIO_OFF,
3416 .mpeg_timing = S5H1411_MPEGTIMING_NONCONTINUOUS_NONINVERTING_CLOCK,
3417 .qam_if = S5H1411_IF_44000,
3418 .vsb_if = S5H1411_IF_44000,
3419 .inversion = S5H1411_INVERSION_OFF,
3420 .status_mode = S5H1411_DEMODLOCKING
3423 /* Pinnacle PCTV HD Pro 801e GPIOs map:
3424 GPIO0 - currently unknown
3425 GPIO1 - xc5000 tuner reset
3426 GPIO2 - CX25843 sleep
3427 GPIO3 - currently unknown
3428 GPIO4 - currently unknown
3429 GPIO6 - currently unknown
3430 GPIO7 - currently unknown
3431 GPIO9 - currently unknown
3432 GPIO10 - CX25843 reset
3434 static int s5h1411_frontend_attach(struct dvb_usb_adapter *adap)
3436 struct dib0700_state *st = adap->dev->priv;
3438 /* Make use of the new i2c functions from FW 1.20 */
3439 st->fw_use_new_i2c_api = 1;
3441 /* The s5h1411 requires the dib0700 to not be in master mode */
3442 st->disable_streaming_master_mode = 1;
3444 /* All msleep values taken from Windows USB trace */
3445 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 0);
3446 dib0700_set_gpio(adap->dev, GPIO3, GPIO_OUT, 0);
3447 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3449 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3451 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3453 dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
3454 dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
3455 dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
3456 dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
3457 dib0700_set_gpio(adap->dev, GPIO2, GPIO_OUT, 0);
3460 /* Put the CX25843 to sleep for now since we're in digital mode */
3461 dib0700_set_gpio(adap->dev, GPIO2, GPIO_OUT, 1);
3463 /* GPIOs are initialized, do the attach */
3464 adap->fe_adap[0].fe = dvb_attach(s5h1411_attach, &pinnacle_801e_config,
3465 &adap->dev->i2c_adap);
3466 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3469 static int dib0700_xc5000_tuner_callback(void *priv, int component,
3470 int command, int arg)
3472 struct dvb_usb_adapter *adap = priv;
3474 if (command == XC5000_TUNER_RESET) {
3475 /* Reset the tuner */
3476 dib0700_set_gpio(adap->dev, GPIO1, GPIO_OUT, 0);
3478 dib0700_set_gpio(adap->dev, GPIO1, GPIO_OUT, 1);
3481 err("xc5000: unknown tuner callback command: %d\n", command);
3488 static struct xc5000_config s5h1411_xc5000_tunerconfig = {
3489 .i2c_address = 0x64,
3493 static int xc5000_tuner_attach(struct dvb_usb_adapter *adap)
3495 /* FIXME: generalize & move to common area */
3496 adap->fe_adap[0].fe->callback = dib0700_xc5000_tuner_callback;
3498 return dvb_attach(xc5000_attach, adap->fe_adap[0].fe, &adap->dev->i2c_adap,
3499 &s5h1411_xc5000_tunerconfig)
3500 == NULL ? -ENODEV : 0;
3503 static int dib0700_xc4000_tuner_callback(void *priv, int component,
3504 int command, int arg)
3506 struct dvb_usb_adapter *adap = priv;
3507 struct dib0700_adapter_state *state = adap->priv;
3509 if (command == XC4000_TUNER_RESET) {
3510 /* Reset the tuner */
3511 state->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 0);
3513 state->dib7000p_ops.set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
3515 err("xc4000: unknown tuner callback command: %d\n", command);
3522 static struct dibx000_agc_config stk7700p_7000p_xc4000_agc_config = {
3523 .band_caps = BAND_UHF | BAND_VHF,
3526 .time_stabiliz = 0x15,
3527 .alpha_level = 0x00,
3540 .agc1_slope1 = 0x00,
3541 .agc1_slope2 = 0x00,
3544 .agc2_slope1 = 0x1d,
3545 .agc2_slope2 = 0x1d,
3550 .perform_agc_softsplit = 0x00,
3553 static struct dibx000_bandwidth_config stk7700p_xc4000_pll_config = {
3563 .IO_CLK_en_core = 1,
3566 .sad_cfg = (3 << 14) | (1 << 12) | 524, /* sad_cfg: refsel, sel, freq_15k */
3572 /* FIXME: none of these inputs are validated yet */
3573 static struct dib7000p_config pctv_340e_config = {
3574 .output_mpeg2_in_188_bytes = 1,
3576 .agc_config_count = 1,
3577 .agc = &stk7700p_7000p_xc4000_agc_config,
3578 .bw = &stk7700p_xc4000_pll_config,
3580 .gpio_dir = DIB7000M_GPIO_DEFAULT_DIRECTIONS,
3581 .gpio_val = DIB7000M_GPIO_DEFAULT_VALUES,
3582 .gpio_pwm_pos = DIB7000M_GPIO_DEFAULT_PWM_POS,
3585 /* PCTV 340e GPIOs map:
3587 GPIO2 - CX25843 sleep
3588 GPIO3 - CS5340 reset
3590 GPIO6 - Power Supply
3591 GPIO8 - LNA (1=off 0=on)
3592 GPIO10 - CX25843 reset
3594 GPIO8 - xc4000 reset
3596 static int pctv340e_frontend_attach(struct dvb_usb_adapter *adap)
3598 struct dib0700_state *st = adap->dev->priv;
3599 struct dib0700_adapter_state *state = adap->priv;
3601 if (!dvb_attach(dib7000p_attach, &state->dib7000p_ops))
3604 /* Power Supply on */
3605 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
3607 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3608 msleep(100); /* Allow power supply to settle before probing */
3611 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3612 msleep(1); /* cx25843 datasheet say 350us required */
3613 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3615 /* LNA off for now */
3616 dib0700_set_gpio(adap->dev, GPIO8, GPIO_OUT, 1);
3618 /* Put the CX25843 to sleep for now since we're in digital mode */
3619 dib0700_set_gpio(adap->dev, GPIO2, GPIO_OUT, 1);
3621 /* FIXME: not verified yet */
3622 dib0700_ctrl_clock(adap->dev, 72, 1);
3626 if (state->dib7000p_ops.dib7000pc_detection(&adap->dev->i2c_adap) == 0) {
3627 /* Demodulator not found for some reason? */
3628 dvb_detach(state->dib7000p_ops.set_wbd_ref);
3632 adap->fe_adap[0].fe = state->dib7000p_ops.init(&adap->dev->i2c_adap, 0x12,
3634 st->is_dib7000pc = 1;
3636 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3639 static struct xc4000_config dib7000p_xc4000_tunerconfig = {
3640 .i2c_address = 0x61,
3643 .set_smoothedcvbs = 0,
3647 static int xc4000_tuner_attach(struct dvb_usb_adapter *adap)
3649 struct i2c_adapter *tun_i2c;
3650 struct dib0700_adapter_state *state = adap->priv;
3652 /* The xc4000 is not on the main i2c bus */
3653 tun_i2c = state->dib7000p_ops.get_i2c_master(adap->fe_adap[0].fe,
3654 DIBX000_I2C_INTERFACE_TUNER, 1);
3655 if (tun_i2c == NULL) {
3656 printk(KERN_ERR "Could not reach tuner i2c bus\n");
3660 /* Setup the reset callback */
3661 adap->fe_adap[0].fe->callback = dib0700_xc4000_tuner_callback;
3663 return dvb_attach(xc4000_attach, adap->fe_adap[0].fe, tun_i2c,
3664 &dib7000p_xc4000_tunerconfig)
3665 == NULL ? -ENODEV : 0;
3668 static struct lgdt3305_config hcw_lgdt3305_config = {
3670 .mpeg_mode = LGDT3305_MPEG_PARALLEL,
3671 .tpclk_edge = LGDT3305_TPCLK_FALLING_EDGE,
3672 .tpvalid_polarity = LGDT3305_TP_VALID_LOW,
3674 .spectral_inversion = 1,
3677 .usref_8vsb = 0x0500,
3680 static struct mxl5007t_config hcw_mxl5007t_config = {
3681 .xtal_freq_hz = MxL_XTAL_25_MHZ,
3682 .if_freq_hz = MxL_IF_6_MHZ,
3687 GPIO0 - LNA_CTR (H: LNA power enabled, L: LNA power disabled)
3688 GPIO1 - ANT_SEL (H: VPA, L: MCX)
3694 MXL is behind LG's i2c repeater. LG is on SCL2/SDA2 gpios on the DIB
3696 static int lgdt3305_frontend_attach(struct dvb_usb_adapter *adap)
3698 struct dib0700_state *st = adap->dev->priv;
3700 /* Make use of the new i2c functions from FW 1.20 */
3701 st->fw_use_new_i2c_api = 1;
3703 st->disable_streaming_master_mode = 1;
3705 /* fe power enable */
3706 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
3708 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3712 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3714 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3716 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3719 adap->fe_adap[0].fe = dvb_attach(lgdt3305_attach,
3720 &hcw_lgdt3305_config,
3721 &adap->dev->i2c_adap);
3723 return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
3726 static int mxl5007t_tuner_attach(struct dvb_usb_adapter *adap)
3728 return dvb_attach(mxl5007t_attach, adap->fe_adap[0].fe,
3729 &adap->dev->i2c_adap, 0x60,
3730 &hcw_mxl5007t_config) == NULL ? -ENODEV : 0;
3733 static int xbox_one_attach(struct dvb_usb_adapter *adap)
3735 struct dib0700_state *st = adap->dev->priv;
3736 struct i2c_client *client_demod, *client_tuner;
3737 struct dvb_usb_device *d = adap->dev;
3738 struct mn88472_config mn88472_config = { };
3739 struct tda18250_config tda18250_config;
3740 struct i2c_board_info info;
3742 st->fw_use_new_i2c_api = 1;
3743 st->disable_streaming_master_mode = 1;
3745 /* fe power enable */
3746 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 0);
3748 dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
3752 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3754 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
3756 dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
3760 mn88472_config.fe = &adap->fe_adap[0].fe;
3761 mn88472_config.i2c_wr_max = 22;
3762 mn88472_config.xtal = 20500000;
3763 mn88472_config.ts_mode = PARALLEL_TS_MODE;
3764 mn88472_config.ts_clock = FIXED_TS_CLOCK;
3765 memset(&info, 0, sizeof(struct i2c_board_info));
3766 strscpy(info.type, "mn88472", I2C_NAME_SIZE);
3768 info.platform_data = &mn88472_config;
3769 request_module(info.type);
3770 client_demod = i2c_new_client_device(&d->i2c_adap, &info);
3771 if (!i2c_client_has_driver(client_demod))
3772 goto fail_demod_device;
3773 if (!try_module_get(client_demod->dev.driver->owner))
3774 goto fail_demod_module;
3776 st->i2c_client_demod = client_demod;
3778 adap->fe_adap[0].fe = mn88472_config.get_dvb_frontend(client_demod);
3781 memset(&tda18250_config, 0, sizeof(tda18250_config));
3782 tda18250_config.if_dvbt_6 = 3950;
3783 tda18250_config.if_dvbt_7 = 4450;
3784 tda18250_config.if_dvbt_8 = 4950;
3785 tda18250_config.if_dvbc_6 = 4950;
3786 tda18250_config.if_dvbc_8 = 4950;
3787 tda18250_config.if_atsc = 4079;
3788 tda18250_config.loopthrough = true;
3789 tda18250_config.xtal_freq = TDA18250_XTAL_FREQ_27MHZ;
3790 tda18250_config.fe = adap->fe_adap[0].fe;
3792 memset(&info, 0, sizeof(struct i2c_board_info));
3793 strscpy(info.type, "tda18250", I2C_NAME_SIZE);
3795 info.platform_data = &tda18250_config;
3797 request_module(info.type);
3798 client_tuner = i2c_new_client_device(&adap->dev->i2c_adap, &info);
3799 if (!i2c_client_has_driver(client_tuner))
3800 goto fail_tuner_device;
3801 if (!try_module_get(client_tuner->dev.driver->owner))
3802 goto fail_tuner_module;
3804 st->i2c_client_tuner = client_tuner;
3808 i2c_unregister_device(client_tuner);
3810 module_put(client_demod->dev.driver->owner);
3812 i2c_unregister_device(client_demod);
3818 /* DVB-USB and USB stuff follows */
3819 struct usb_device_id dib0700_usb_id_table[] = {
3820 /* 0 */ { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7700P) },
3821 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7700P_PC) },
3822 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500) },
3823 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_2) },
3824 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK) },
3825 /* 5 */ { USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR) },
3826 { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_VIDEOMATE_U500) },
3827 { USB_DEVICE(USB_VID_UNIWILL, USB_PID_UNIWILL_STK7700P) },
3828 { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P) },
3829 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK_2) },
3830 /* 10 */{ USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR_2) },
3831 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV2000E) },
3832 { USB_DEVICE(USB_VID_TERRATEC,
3833 USB_PID_TERRATEC_CINERGY_DT_XS_DIVERSITY) },
3834 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK) },
3835 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7700D) },
3836 /* 15 */{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7070P) },
3837 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV_DVB_T_FLASH) },
3838 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7070PD) },
3839 { USB_DEVICE(USB_VID_PINNACLE,
3840 USB_PID_PINNACLE_PCTV_DUAL_DIVERSITY_DVB_T) },
3841 { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_VIDEOMATE_U500_PC) },
3842 /* 20 */{ USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_EXPRESS) },
3843 { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U7000) },
3844 { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ARTEC_T14BR) },
3845 { USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3000) },
3846 { USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3100) },
3847 /* 25 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_STICK_3) },
3848 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_MYTV_T) },
3849 { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_HT_USB_XE) },
3850 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_EXPRESSCARD_320CX) },
3851 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV72E) },
3852 /* 30 */{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV73E) },
3853 { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_EC372S) },
3854 { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_HT_EXPRESS) },
3855 { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_XXS) },
3856 { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_STK7700P_2) },
3857 /* 35 */{ USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_TD_STICK_52009) },
3858 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_NOVA_T_500_3) },
3859 { USB_DEVICE(USB_VID_GIGABYTE, USB_PID_GIGABYTE_U8000) },
3860 { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_STK7700PH) },
3861 { USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3000H) },
3862 /* 40 */{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV801E) },
3863 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV801E_SE) },
3864 { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_EXPRESS) },
3865 { USB_DEVICE(USB_VID_TERRATEC,
3866 USB_PID_TERRATEC_CINERGY_DT_XS_DIVERSITY_2) },
3867 { USB_DEVICE(USB_VID_SONY, USB_PID_SONY_PLAYTV) },
3868 /* 45 */{ USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_PD378S) },
3869 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_TIGER_ATSC) },
3870 { USB_DEVICE(USB_VID_HAUPPAUGE, USB_PID_HAUPPAUGE_TIGER_ATSC_B210) },
3871 { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_MC770) },
3872 { USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT) },
3873 /* 50 */{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT_Dlx) },
3874 { USB_DEVICE(USB_VID_LEADTEK, USB_PID_WINFAST_DTV_DONGLE_H) },
3875 { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_T3) },
3876 { USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_T5) },
3877 { USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_STK7700D) },
3878 /* 55 */{ USB_DEVICE(USB_VID_YUAN, USB_PID_YUAN_STK7700D_2) },
3879 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV73A) },
3880 { USB_DEVICE(USB_VID_PCTV, USB_PID_PINNACLE_PCTV73ESE) },
3881 { USB_DEVICE(USB_VID_PCTV, USB_PID_PINNACLE_PCTV282E) },
3882 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK7770P) },
3883 /* 60 */{ USB_DEVICE(USB_VID_TERRATEC, USB_PID_TERRATEC_CINERGY_T_XXS_2) },
3884 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK807XPVR) },
3885 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK807XP) },
3886 { USB_DEVICE_VER(USB_VID_PIXELVIEW, USB_PID_PIXELVIEW_SBTVD, 0x000, 0x3f00) },
3887 { USB_DEVICE(USB_VID_EVOLUTEPC, USB_PID_TVWAY_PLUS) },
3888 /* 65 */{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV73ESE) },
3889 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV282E) },
3890 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK8096GP) },
3891 { USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DIVERSITY) },
3892 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_NIM9090M) },
3893 /* 70 */{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_NIM8096MD) },
3894 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_NIM9090MD) },
3895 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_NIM7090) },
3896 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE7090PVR) },
3897 { USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_AIRSTAR_TELESTICK_2) },
3898 /* 75 */{ USB_DEVICE(USB_VID_MEDION, USB_PID_CREATIX_CTX1921) },
3899 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV340E) },
3900 { USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV340E_SE) },
3901 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE7790P) },
3902 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE8096P) },
3903 /* 80 */{ USB_DEVICE(USB_VID_ELGATO, USB_PID_ELGATO_EYETV_DTT_2) },
3904 { USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_2002E) },
3905 { USB_DEVICE(USB_VID_PCTV, USB_PID_PCTV_2002E_SE) },
3906 { USB_DEVICE(USB_VID_PCTV, USB_PID_DIBCOM_STK8096PVR) },
3907 { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_STK8096PVR) },
3908 /* 85 */{ USB_DEVICE(USB_VID_HAMA, USB_PID_HAMA_DVBT_HYBRID) },
3909 { USB_DEVICE(USB_VID_MICROSOFT, USB_PID_XBOX_ONE_TUNER) },
3910 { 0 } /* Terminating entry */
3912 MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
3914 #define DIB0700_DEFAULT_DEVICE_PROPERTIES \
3915 .caps = DVB_USB_IS_AN_I2C_ADAPTER, \
3916 .usb_ctrl = DEVICE_SPECIFIC, \
3917 .firmware = "dvb-usb-dib0700-1.20.fw", \
3918 .download_firmware = dib0700_download_firmware, \
3919 .no_reconnect = 1, \
3920 .size_of_priv = sizeof(struct dib0700_state), \
3921 .i2c_algo = &dib0700_i2c_algo, \
3922 .identify_state = dib0700_identify_state
3924 #define DIB0700_DEFAULT_STREAMING_CONFIG(ep) \
3925 .streaming_ctrl = dib0700_streaming_ctrl, \
3932 .buffersize = 39480, \
3937 #define DIB0700_NUM_FRONTENDS(n) \
3938 .num_frontends = n, \
3939 .size_of_priv = sizeof(struct dib0700_adapter_state)
3941 struct dvb_usb_device_properties dib0700_devices[] = {
3943 DIB0700_DEFAULT_DEVICE_PROPERTIES,
3948 DIB0700_NUM_FRONTENDS(1),
3950 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
3951 .pid_filter_count = 32,
3952 .pid_filter = stk7700p_pid_filter,
3953 .pid_filter_ctrl = stk7700p_pid_filter_ctrl,
3954 .frontend_attach = stk7700p_frontend_attach,
3955 .tuner_attach = stk7700p_tuner_attach,
3957 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
3962 .num_device_descs = 8,
3964 { "DiBcom STK7700P reference design",
3965 { &dib0700_usb_id_table[0], &dib0700_usb_id_table[1] },
3968 { "Hauppauge Nova-T Stick",
3969 { &dib0700_usb_id_table[4], &dib0700_usb_id_table[9], NULL },
3972 { "AVerMedia AVerTV DVB-T Volar",
3973 { &dib0700_usb_id_table[5], &dib0700_usb_id_table[10] },
3976 { "Compro Videomate U500",
3977 { &dib0700_usb_id_table[6], &dib0700_usb_id_table[19] },
3980 { "Uniwill STK7700P based (Hama and others)",
3981 { &dib0700_usb_id_table[7], NULL },
3984 { "Leadtek Winfast DTV Dongle (STK7700P based)",
3985 { &dib0700_usb_id_table[8], &dib0700_usb_id_table[34] },
3988 { "AVerMedia AVerTV DVB-T Express",
3989 { &dib0700_usb_id_table[20] },
3993 { &dib0700_usb_id_table[21], NULL },
3999 .rc_interval = DEFAULT_RC_INTERVAL,
4000 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4001 .rc_query = dib0700_rc_query_old_firmware,
4002 .allowed_protos = RC_PROTO_BIT_RC5 |
4003 RC_PROTO_BIT_RC6_MCE |
4005 .change_protocol = dib0700_change_protocol,
4007 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4012 DIB0700_NUM_FRONTENDS(1),
4014 .frontend_attach = bristol_frontend_attach,
4015 .tuner_attach = bristol_tuner_attach,
4017 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4020 DIB0700_NUM_FRONTENDS(1),
4022 .frontend_attach = bristol_frontend_attach,
4023 .tuner_attach = bristol_tuner_attach,
4025 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4030 .num_device_descs = 1,
4032 { "Hauppauge Nova-T 500 Dual DVB-T",
4033 { &dib0700_usb_id_table[2], &dib0700_usb_id_table[3], NULL },
4039 .rc_interval = DEFAULT_RC_INTERVAL,
4040 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4041 .rc_query = dib0700_rc_query_old_firmware,
4042 .allowed_protos = RC_PROTO_BIT_RC5 |
4043 RC_PROTO_BIT_RC6_MCE |
4045 .change_protocol = dib0700_change_protocol,
4047 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4052 DIB0700_NUM_FRONTENDS(1),
4054 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4055 .pid_filter_count = 32,
4056 .pid_filter = stk70x0p_pid_filter,
4057 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4058 .frontend_attach = stk7700d_frontend_attach,
4059 .tuner_attach = stk7700d_tuner_attach,
4061 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4064 DIB0700_NUM_FRONTENDS(1),
4066 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4067 .pid_filter_count = 32,
4068 .pid_filter = stk70x0p_pid_filter,
4069 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4070 .frontend_attach = stk7700d_frontend_attach,
4071 .tuner_attach = stk7700d_tuner_attach,
4073 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4078 .num_device_descs = 5,
4080 { "Pinnacle PCTV 2000e",
4081 { &dib0700_usb_id_table[11], NULL },
4084 { "Terratec Cinergy DT XS Diversity",
4085 { &dib0700_usb_id_table[12], NULL },
4088 { "Hauppauge Nova-TD Stick/Elgato Eye-TV Diversity",
4089 { &dib0700_usb_id_table[13], NULL },
4092 { "DiBcom STK7700D reference design",
4093 { &dib0700_usb_id_table[14], NULL },
4096 { "YUAN High-Tech DiBcom STK7700D",
4097 { &dib0700_usb_id_table[55], NULL },
4104 .rc_interval = DEFAULT_RC_INTERVAL,
4105 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4106 .rc_query = dib0700_rc_query_old_firmware,
4107 .allowed_protos = RC_PROTO_BIT_RC5 |
4108 RC_PROTO_BIT_RC6_MCE |
4110 .change_protocol = dib0700_change_protocol,
4112 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4117 DIB0700_NUM_FRONTENDS(1),
4119 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4120 .pid_filter_count = 32,
4121 .pid_filter = stk70x0p_pid_filter,
4122 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4123 .frontend_attach = stk7700P2_frontend_attach,
4124 .tuner_attach = stk7700d_tuner_attach,
4126 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4131 .num_device_descs = 3,
4133 { "ASUS My Cinema U3000 Mini DVBT Tuner",
4134 { &dib0700_usb_id_table[23], NULL },
4138 { &dib0700_usb_id_table[31], NULL },
4141 { "Terratec Cinergy T Express",
4142 { &dib0700_usb_id_table[42], NULL },
4148 .rc_interval = DEFAULT_RC_INTERVAL,
4149 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4150 .module_name = "dib0700",
4151 .rc_query = dib0700_rc_query_old_firmware,
4152 .allowed_protos = RC_PROTO_BIT_RC5 |
4153 RC_PROTO_BIT_RC6_MCE |
4155 .change_protocol = dib0700_change_protocol,
4157 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4162 DIB0700_NUM_FRONTENDS(1),
4164 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4165 .pid_filter_count = 32,
4166 .pid_filter = stk70x0p_pid_filter,
4167 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4168 .frontend_attach = stk7070p_frontend_attach,
4169 .tuner_attach = dib7070p_tuner_attach,
4171 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4176 .num_device_descs = 12,
4178 { "DiBcom STK7070P reference design",
4179 { &dib0700_usb_id_table[15], NULL },
4182 { "Pinnacle PCTV DVB-T Flash Stick",
4183 { &dib0700_usb_id_table[16], NULL },
4186 { "Artec T14BR DVB-T",
4187 { &dib0700_usb_id_table[22], NULL },
4190 { "ASUS My Cinema U3100 Mini DVBT Tuner",
4191 { &dib0700_usb_id_table[24], NULL },
4194 { "Hauppauge Nova-T Stick",
4195 { &dib0700_usb_id_table[25], NULL },
4198 { "Hauppauge Nova-T MyTV.t",
4199 { &dib0700_usb_id_table[26], NULL },
4202 { "Pinnacle PCTV 72e",
4203 { &dib0700_usb_id_table[29], NULL },
4206 { "Pinnacle PCTV 73e",
4207 { &dib0700_usb_id_table[30], NULL },
4210 { "Elgato EyeTV DTT",
4211 { &dib0700_usb_id_table[49], NULL },
4215 { &dib0700_usb_id_table[45], NULL },
4218 { "Elgato EyeTV Dtt Dlx PD378S",
4219 { &dib0700_usb_id_table[50], NULL },
4222 { "Elgato EyeTV DTT rev. 2",
4223 { &dib0700_usb_id_table[80], NULL },
4229 .rc_interval = DEFAULT_RC_INTERVAL,
4230 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4231 .module_name = "dib0700",
4232 .rc_query = dib0700_rc_query_old_firmware,
4233 .allowed_protos = RC_PROTO_BIT_RC5 |
4234 RC_PROTO_BIT_RC6_MCE |
4236 .change_protocol = dib0700_change_protocol,
4238 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4243 DIB0700_NUM_FRONTENDS(1),
4245 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4246 .pid_filter_count = 32,
4247 .pid_filter = stk70x0p_pid_filter,
4248 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4249 .frontend_attach = stk7070p_frontend_attach,
4250 .tuner_attach = dib7070p_tuner_attach,
4252 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4257 .num_device_descs = 3,
4259 { "Pinnacle PCTV 73A",
4260 { &dib0700_usb_id_table[56], NULL },
4263 { "Pinnacle PCTV 73e SE",
4264 { &dib0700_usb_id_table[57], &dib0700_usb_id_table[65], NULL },
4267 { "Pinnacle PCTV 282e",
4268 { &dib0700_usb_id_table[58], &dib0700_usb_id_table[66], NULL },
4274 .rc_interval = DEFAULT_RC_INTERVAL,
4275 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4276 .module_name = "dib0700",
4277 .rc_query = dib0700_rc_query_old_firmware,
4278 .allowed_protos = RC_PROTO_BIT_RC5 |
4279 RC_PROTO_BIT_RC6_MCE |
4281 .change_protocol = dib0700_change_protocol,
4283 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4288 DIB0700_NUM_FRONTENDS(1),
4290 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4291 .pid_filter_count = 32,
4292 .pid_filter = stk70x0p_pid_filter,
4293 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4294 .frontend_attach = novatd_frontend_attach,
4295 .tuner_attach = dib7070p_tuner_attach,
4297 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4300 DIB0700_NUM_FRONTENDS(1),
4302 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4303 .pid_filter_count = 32,
4304 .pid_filter = stk70x0p_pid_filter,
4305 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4306 .frontend_attach = novatd_frontend_attach,
4307 .tuner_attach = dib7070p_tuner_attach,
4309 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4314 .num_device_descs = 3,
4316 { "Hauppauge Nova-TD Stick (52009)",
4317 { &dib0700_usb_id_table[35], NULL },
4321 { &dib0700_usb_id_table[81], NULL },
4325 { &dib0700_usb_id_table[82], NULL },
4331 .rc_interval = DEFAULT_RC_INTERVAL,
4332 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4333 .module_name = "dib0700",
4334 .rc_query = dib0700_rc_query_old_firmware,
4335 .allowed_protos = RC_PROTO_BIT_RC5 |
4336 RC_PROTO_BIT_RC6_MCE |
4338 .change_protocol = dib0700_change_protocol,
4340 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4345 DIB0700_NUM_FRONTENDS(1),
4347 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4348 .pid_filter_count = 32,
4349 .pid_filter = stk70x0p_pid_filter,
4350 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4351 .frontend_attach = stk7070pd_frontend_attach0,
4352 .tuner_attach = dib7070p_tuner_attach,
4354 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4357 DIB0700_NUM_FRONTENDS(1),
4359 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4360 .pid_filter_count = 32,
4361 .pid_filter = stk70x0p_pid_filter,
4362 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4363 .frontend_attach = stk7070pd_frontend_attach1,
4364 .tuner_attach = dib7070p_tuner_attach,
4366 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4371 .num_device_descs = 5,
4373 { "DiBcom STK7070PD reference design",
4374 { &dib0700_usb_id_table[17], NULL },
4377 { "Pinnacle PCTV Dual DVB-T Diversity Stick",
4378 { &dib0700_usb_id_table[18], NULL },
4381 { "Hauppauge Nova-TD-500 (84xxx)",
4382 { &dib0700_usb_id_table[36], NULL },
4385 { "Terratec Cinergy DT USB XS Diversity/ T5",
4386 { &dib0700_usb_id_table[43],
4387 &dib0700_usb_id_table[53], NULL},
4391 { &dib0700_usb_id_table[44], NULL },
4397 .rc_interval = DEFAULT_RC_INTERVAL,
4398 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4399 .module_name = "dib0700",
4400 .rc_query = dib0700_rc_query_old_firmware,
4401 .allowed_protos = RC_PROTO_BIT_RC5 |
4402 RC_PROTO_BIT_RC6_MCE |
4404 .change_protocol = dib0700_change_protocol,
4406 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4411 DIB0700_NUM_FRONTENDS(1),
4413 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4414 .pid_filter_count = 32,
4415 .pid_filter = stk70x0p_pid_filter,
4416 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4417 .frontend_attach = stk7070pd_frontend_attach0,
4418 .tuner_attach = dib7070p_tuner_attach,
4420 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4423 DIB0700_NUM_FRONTENDS(1),
4425 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4426 .pid_filter_count = 32,
4427 .pid_filter = stk70x0p_pid_filter,
4428 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4429 .frontend_attach = stk7070pd_frontend_attach1,
4430 .tuner_attach = dib7070p_tuner_attach,
4432 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4437 .num_device_descs = 1,
4439 { "Elgato EyeTV Diversity",
4440 { &dib0700_usb_id_table[68], NULL },
4446 .rc_interval = DEFAULT_RC_INTERVAL,
4447 .rc_codes = RC_MAP_DIB0700_NEC_TABLE,
4448 .module_name = "dib0700",
4449 .rc_query = dib0700_rc_query_old_firmware,
4450 .allowed_protos = RC_PROTO_BIT_RC5 |
4451 RC_PROTO_BIT_RC6_MCE |
4453 .change_protocol = dib0700_change_protocol,
4455 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4460 DIB0700_NUM_FRONTENDS(1),
4462 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4463 .pid_filter_count = 32,
4464 .pid_filter = stk70x0p_pid_filter,
4465 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4466 .frontend_attach = stk7700ph_frontend_attach,
4467 .tuner_attach = stk7700ph_tuner_attach,
4469 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4474 .num_device_descs = 10,
4476 { "Terratec Cinergy HT USB XE",
4477 { &dib0700_usb_id_table[27], NULL },
4480 { "Pinnacle Expresscard 320cx",
4481 { &dib0700_usb_id_table[28], NULL },
4484 { "Terratec Cinergy HT Express",
4485 { &dib0700_usb_id_table[32], NULL },
4488 { "Gigabyte U8000-RH",
4489 { &dib0700_usb_id_table[37], NULL },
4492 { "YUAN High-Tech STK7700PH",
4493 { &dib0700_usb_id_table[38], NULL },
4496 { "Asus My Cinema-U3000Hybrid",
4497 { &dib0700_usb_id_table[39], NULL },
4500 { "YUAN High-Tech MC770",
4501 { &dib0700_usb_id_table[48], NULL },
4504 { "Leadtek WinFast DTV Dongle H",
4505 { &dib0700_usb_id_table[51], NULL },
4508 { "YUAN High-Tech STK7700D",
4509 { &dib0700_usb_id_table[54], NULL },
4512 { "Hama DVB=T Hybrid USB Stick",
4513 { &dib0700_usb_id_table[85], NULL },
4519 .rc_interval = DEFAULT_RC_INTERVAL,
4520 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4521 .module_name = "dib0700",
4522 .rc_query = dib0700_rc_query_old_firmware,
4523 .allowed_protos = RC_PROTO_BIT_RC5 |
4524 RC_PROTO_BIT_RC6_MCE |
4526 .change_protocol = dib0700_change_protocol,
4528 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4532 DIB0700_NUM_FRONTENDS(1),
4534 .frontend_attach = s5h1411_frontend_attach,
4535 .tuner_attach = xc5000_tuner_attach,
4537 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4542 .num_device_descs = 2,
4544 { "Pinnacle PCTV HD Pro USB Stick",
4545 { &dib0700_usb_id_table[40], NULL },
4548 { "Pinnacle PCTV HD USB Stick",
4549 { &dib0700_usb_id_table[41], NULL },
4555 .rc_interval = DEFAULT_RC_INTERVAL,
4556 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4557 .module_name = "dib0700",
4558 .rc_query = dib0700_rc_query_old_firmware,
4559 .allowed_protos = RC_PROTO_BIT_RC5 |
4560 RC_PROTO_BIT_RC6_MCE |
4562 .change_protocol = dib0700_change_protocol,
4564 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4568 DIB0700_NUM_FRONTENDS(1),
4570 .frontend_attach = lgdt3305_frontend_attach,
4571 .tuner_attach = mxl5007t_tuner_attach,
4573 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4578 .num_device_descs = 2,
4580 { "Hauppauge ATSC MiniCard (B200)",
4581 { &dib0700_usb_id_table[46], NULL },
4584 { "Hauppauge ATSC MiniCard (B210)",
4585 { &dib0700_usb_id_table[47], NULL },
4589 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4594 DIB0700_NUM_FRONTENDS(1),
4596 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4597 .pid_filter_count = 32,
4598 .pid_filter = stk70x0p_pid_filter,
4599 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4600 .frontend_attach = stk7770p_frontend_attach,
4601 .tuner_attach = dib7770p_tuner_attach,
4603 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4608 .num_device_descs = 4,
4610 { "DiBcom STK7770P reference design",
4611 { &dib0700_usb_id_table[59], NULL },
4614 { "Terratec Cinergy T USB XXS (HD)/ T3",
4615 { &dib0700_usb_id_table[33],
4616 &dib0700_usb_id_table[52],
4617 &dib0700_usb_id_table[60], NULL},
4620 { "TechniSat AirStar TeleStick 2",
4621 { &dib0700_usb_id_table[74], NULL },
4624 { "Medion CTX1921 DVB-T USB",
4625 { &dib0700_usb_id_table[75], NULL },
4631 .rc_interval = DEFAULT_RC_INTERVAL,
4632 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4633 .module_name = "dib0700",
4634 .rc_query = dib0700_rc_query_old_firmware,
4635 .allowed_protos = RC_PROTO_BIT_RC5 |
4636 RC_PROTO_BIT_RC6_MCE |
4638 .change_protocol = dib0700_change_protocol,
4640 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4644 DIB0700_NUM_FRONTENDS(1),
4646 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4647 .pid_filter_count = 32,
4648 .pid_filter = stk80xx_pid_filter,
4649 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
4650 .frontend_attach = stk807x_frontend_attach,
4651 .tuner_attach = dib807x_tuner_attach,
4653 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4658 .num_device_descs = 3,
4660 { "DiBcom STK807xP reference design",
4661 { &dib0700_usb_id_table[62], NULL },
4664 { "Prolink Pixelview SBTVD",
4665 { &dib0700_usb_id_table[63], NULL },
4668 { "EvolutePC TVWay+",
4669 { &dib0700_usb_id_table[64], NULL },
4675 .rc_interval = DEFAULT_RC_INTERVAL,
4676 .rc_codes = RC_MAP_DIB0700_NEC_TABLE,
4677 .module_name = "dib0700",
4678 .rc_query = dib0700_rc_query_old_firmware,
4679 .allowed_protos = RC_PROTO_BIT_RC5 |
4680 RC_PROTO_BIT_RC6_MCE |
4682 .change_protocol = dib0700_change_protocol,
4684 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4688 DIB0700_NUM_FRONTENDS(1),
4690 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4691 .pid_filter_count = 32,
4692 .pid_filter = stk80xx_pid_filter,
4693 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
4694 .frontend_attach = stk807xpvr_frontend_attach0,
4695 .tuner_attach = dib807x_tuner_attach,
4697 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4701 DIB0700_NUM_FRONTENDS(1),
4703 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4704 .pid_filter_count = 32,
4705 .pid_filter = stk80xx_pid_filter,
4706 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
4707 .frontend_attach = stk807xpvr_frontend_attach1,
4708 .tuner_attach = dib807x_tuner_attach,
4710 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4715 .num_device_descs = 1,
4717 { "DiBcom STK807xPVR reference design",
4718 { &dib0700_usb_id_table[61], NULL },
4724 .rc_interval = DEFAULT_RC_INTERVAL,
4725 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4726 .module_name = "dib0700",
4727 .rc_query = dib0700_rc_query_old_firmware,
4728 .allowed_protos = RC_PROTO_BIT_RC5 |
4729 RC_PROTO_BIT_RC6_MCE |
4731 .change_protocol = dib0700_change_protocol,
4733 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4737 DIB0700_NUM_FRONTENDS(1),
4739 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4740 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4741 .pid_filter_count = 32,
4742 .pid_filter = stk80xx_pid_filter,
4743 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
4744 .frontend_attach = stk809x_frontend_attach,
4745 .tuner_attach = dib809x_tuner_attach,
4747 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4752 .num_device_descs = 1,
4754 { "DiBcom STK8096GP reference design",
4755 { &dib0700_usb_id_table[67], NULL },
4761 .rc_interval = DEFAULT_RC_INTERVAL,
4762 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4763 .module_name = "dib0700",
4764 .rc_query = dib0700_rc_query_old_firmware,
4765 .allowed_protos = RC_PROTO_BIT_RC5 |
4766 RC_PROTO_BIT_RC6_MCE |
4768 .change_protocol = dib0700_change_protocol,
4770 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4774 DIB0700_NUM_FRONTENDS(1),
4776 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4777 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4778 .pid_filter_count = 32,
4779 .pid_filter = dib90x0_pid_filter,
4780 .pid_filter_ctrl = dib90x0_pid_filter_ctrl,
4781 .frontend_attach = stk9090m_frontend_attach,
4782 .tuner_attach = dib9090_tuner_attach,
4784 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4789 .num_device_descs = 1,
4791 { "DiBcom STK9090M reference design",
4792 { &dib0700_usb_id_table[69], NULL },
4798 .rc_interval = DEFAULT_RC_INTERVAL,
4799 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4800 .module_name = "dib0700",
4801 .rc_query = dib0700_rc_query_old_firmware,
4802 .allowed_protos = RC_PROTO_BIT_RC5 |
4803 RC_PROTO_BIT_RC6_MCE |
4805 .change_protocol = dib0700_change_protocol,
4807 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4811 DIB0700_NUM_FRONTENDS(1),
4813 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4814 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4815 .pid_filter_count = 32,
4816 .pid_filter = stk80xx_pid_filter,
4817 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
4818 .frontend_attach = nim8096md_frontend_attach,
4819 .tuner_attach = nim8096md_tuner_attach,
4821 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4826 .num_device_descs = 1,
4828 { "DiBcom NIM8096MD reference design",
4829 { &dib0700_usb_id_table[70], NULL },
4835 .rc_interval = DEFAULT_RC_INTERVAL,
4836 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4837 .module_name = "dib0700",
4838 .rc_query = dib0700_rc_query_old_firmware,
4839 .allowed_protos = RC_PROTO_BIT_RC5 |
4840 RC_PROTO_BIT_RC6_MCE |
4842 .change_protocol = dib0700_change_protocol,
4844 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4848 DIB0700_NUM_FRONTENDS(1),
4850 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4851 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4852 .pid_filter_count = 32,
4853 .pid_filter = dib90x0_pid_filter,
4854 .pid_filter_ctrl = dib90x0_pid_filter_ctrl,
4855 .frontend_attach = nim9090md_frontend_attach,
4856 .tuner_attach = nim9090md_tuner_attach,
4858 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4863 .num_device_descs = 1,
4865 { "DiBcom NIM9090MD reference design",
4866 { &dib0700_usb_id_table[71], NULL },
4872 .rc_interval = DEFAULT_RC_INTERVAL,
4873 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4874 .module_name = "dib0700",
4875 .rc_query = dib0700_rc_query_old_firmware,
4876 .allowed_protos = RC_PROTO_BIT_RC5 |
4877 RC_PROTO_BIT_RC6_MCE |
4879 .change_protocol = dib0700_change_protocol,
4881 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4885 DIB0700_NUM_FRONTENDS(1),
4887 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4888 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4889 .pid_filter_count = 32,
4890 .pid_filter = stk70x0p_pid_filter,
4891 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4892 .frontend_attach = nim7090_frontend_attach,
4893 .tuner_attach = nim7090_tuner_attach,
4895 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4900 .num_device_descs = 1,
4902 { "DiBcom NIM7090 reference design",
4903 { &dib0700_usb_id_table[72], NULL },
4909 .rc_interval = DEFAULT_RC_INTERVAL,
4910 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4911 .module_name = "dib0700",
4912 .rc_query = dib0700_rc_query_old_firmware,
4913 .allowed_protos = RC_PROTO_BIT_RC5 |
4914 RC_PROTO_BIT_RC6_MCE |
4916 .change_protocol = dib0700_change_protocol,
4918 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4922 DIB0700_NUM_FRONTENDS(1),
4924 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4925 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4926 .pid_filter_count = 32,
4927 .pid_filter = stk70x0p_pid_filter,
4928 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4929 .frontend_attach = tfe7090pvr_frontend0_attach,
4930 .tuner_attach = tfe7090pvr_tuner0_attach,
4932 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
4936 DIB0700_NUM_FRONTENDS(1),
4938 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
4939 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
4940 .pid_filter_count = 32,
4941 .pid_filter = stk70x0p_pid_filter,
4942 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
4943 .frontend_attach = tfe7090pvr_frontend1_attach,
4944 .tuner_attach = tfe7090pvr_tuner1_attach,
4946 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4951 .num_device_descs = 1,
4953 { "DiBcom TFE7090PVR reference design",
4954 { &dib0700_usb_id_table[73], NULL },
4960 .rc_interval = DEFAULT_RC_INTERVAL,
4961 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4962 .module_name = "dib0700",
4963 .rc_query = dib0700_rc_query_old_firmware,
4964 .allowed_protos = RC_PROTO_BIT_RC5 |
4965 RC_PROTO_BIT_RC6_MCE |
4967 .change_protocol = dib0700_change_protocol,
4969 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
4973 DIB0700_NUM_FRONTENDS(1),
4975 .frontend_attach = pctv340e_frontend_attach,
4976 .tuner_attach = xc4000_tuner_attach,
4978 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
4983 .num_device_descs = 2,
4985 { "Pinnacle PCTV 340e HD Pro USB Stick",
4986 { &dib0700_usb_id_table[76], NULL },
4989 { "Pinnacle PCTV Hybrid Stick Solo",
4990 { &dib0700_usb_id_table[77], NULL },
4995 .rc_interval = DEFAULT_RC_INTERVAL,
4996 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
4997 .module_name = "dib0700",
4998 .rc_query = dib0700_rc_query_old_firmware,
4999 .allowed_protos = RC_PROTO_BIT_RC5 |
5000 RC_PROTO_BIT_RC6_MCE |
5002 .change_protocol = dib0700_change_protocol,
5004 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
5008 DIB0700_NUM_FRONTENDS(1),
5010 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
5011 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
5012 .pid_filter_count = 32,
5013 .pid_filter = stk70x0p_pid_filter,
5014 .pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
5015 .frontend_attach = tfe7790p_frontend_attach,
5016 .tuner_attach = tfe7790p_tuner_attach,
5018 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
5023 .num_device_descs = 1,
5025 { "DiBcom TFE7790P reference design",
5026 { &dib0700_usb_id_table[78], NULL },
5032 .rc_interval = DEFAULT_RC_INTERVAL,
5033 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
5034 .module_name = "dib0700",
5035 .rc_query = dib0700_rc_query_old_firmware,
5036 .allowed_protos = RC_PROTO_BIT_RC5 |
5037 RC_PROTO_BIT_RC6_MCE |
5039 .change_protocol = dib0700_change_protocol,
5041 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
5045 DIB0700_NUM_FRONTENDS(1),
5047 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
5048 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
5049 .pid_filter_count = 32,
5050 .pid_filter = stk80xx_pid_filter,
5051 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
5052 .frontend_attach = tfe8096p_frontend_attach,
5053 .tuner_attach = tfe8096p_tuner_attach,
5055 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
5061 .num_device_descs = 1,
5063 { "DiBcom TFE8096P reference design",
5064 { &dib0700_usb_id_table[79], NULL },
5070 .rc_interval = DEFAULT_RC_INTERVAL,
5071 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
5072 .module_name = "dib0700",
5073 .rc_query = dib0700_rc_query_old_firmware,
5074 .allowed_protos = RC_PROTO_BIT_RC5 |
5075 RC_PROTO_BIT_RC6_MCE |
5077 .change_protocol = dib0700_change_protocol,
5079 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
5085 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
5086 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
5087 .pid_filter_count = 32,
5088 .pid_filter = stk80xx_pid_filter,
5089 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
5090 .frontend_attach = stk809x_frontend_attach,
5091 .tuner_attach = dib809x_tuner_attach,
5093 DIB0700_DEFAULT_STREAMING_CONFIG(0x02),
5096 sizeof(struct dib0700_adapter_state),
5100 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
5101 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
5102 .pid_filter_count = 32,
5103 .pid_filter = stk80xx_pid_filter,
5104 .pid_filter_ctrl = stk80xx_pid_filter_ctrl,
5105 .frontend_attach = stk809x_frontend1_attach,
5106 .tuner_attach = dib809x_tuner_attach,
5108 DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
5111 sizeof(struct dib0700_adapter_state),
5114 .num_device_descs = 1,
5116 { "DiBcom STK8096-PVR reference design",
5117 { &dib0700_usb_id_table[83],
5118 &dib0700_usb_id_table[84], NULL},
5124 .rc_interval = DEFAULT_RC_INTERVAL,
5125 .rc_codes = RC_MAP_DIB0700_RC5_TABLE,
5126 .module_name = "dib0700",
5127 .rc_query = dib0700_rc_query_old_firmware,
5128 .allowed_protos = RC_PROTO_BIT_RC5 |
5129 RC_PROTO_BIT_RC6_MCE |
5131 .change_protocol = dib0700_change_protocol,
5133 }, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
5137 DIB0700_NUM_FRONTENDS(1),
5139 .frontend_attach = xbox_one_attach,
5141 DIB0700_DEFAULT_STREAMING_CONFIG(0x82),
5145 .num_device_descs = 1,
5147 { "Microsoft Xbox One Digital TV Tuner",
5148 { &dib0700_usb_id_table[86], NULL },
5155 int dib0700_device_count = ARRAY_SIZE(dib0700_devices);