[media] dib7090: add the reference board TFE7790E
The intend of this patch is to add the support for the DiBcom reference board TFE7790E. Signed-off-by: Olivier Grenie <olivier.grenie@dibcom.fr> Signed-off-by: Patrick Boettcher <patrick.boettcher@dibcom.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
1f6bfcc752
commit
b293f304c5
@ -2428,6 +2428,71 @@ static const struct dib0090_config tfe7090e_dib0090_config = {
|
||||
.is_dib7090e = 1,
|
||||
};
|
||||
|
||||
static struct dib7000p_config tfe7790e_dib7000p_config = {
|
||||
.output_mpeg2_in_188_bytes = 1,
|
||||
.hostbus_diversity = 1,
|
||||
.tuner_is_baseband = 1,
|
||||
.update_lna = dib7090e_update_lna,
|
||||
|
||||
.agc_config_count = 2,
|
||||
.agc = dib7090_agc_config,
|
||||
|
||||
.bw = &dib7090_clock_config_12_mhz,
|
||||
|
||||
.gpio_dir = DIB7000P_GPIO_DEFAULT_DIRECTIONS,
|
||||
.gpio_val = DIB7000P_GPIO_DEFAULT_VALUES,
|
||||
.gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,
|
||||
|
||||
.pwm_freq_div = 0,
|
||||
|
||||
.agc_control = dib7090_agc_restart,
|
||||
|
||||
.spur_protect = 0,
|
||||
.disable_sample_and_hold = 0,
|
||||
.enable_current_mirror = 0,
|
||||
.diversity_delay = 0,
|
||||
|
||||
.output_mode = OUTMODE_MPEG2_PAR_GATED_CLK,
|
||||
.enMpegOutput = 1,
|
||||
};
|
||||
|
||||
static const struct dib0090_config tfe7790e_dib0090_config = {
|
||||
.io.clock_khz = 12000,
|
||||
.io.pll_bypass = 0,
|
||||
.io.pll_range = 0,
|
||||
.io.pll_prediv = 3,
|
||||
.io.pll_loopdiv = 6,
|
||||
.io.adc_clock_ratio = 0,
|
||||
.io.pll_int_loop_filt = 0,
|
||||
.reset = dib7090_tuner_sleep,
|
||||
.sleep = dib7090_tuner_sleep,
|
||||
|
||||
.freq_offset_khz_uhf = 0,
|
||||
.freq_offset_khz_vhf = 0,
|
||||
|
||||
.get_adc_power = dib7090_get_adc_power,
|
||||
|
||||
.clkouttobamse = 1,
|
||||
.analog_output = 0,
|
||||
|
||||
.wbd_vhf_offset = 0,
|
||||
.wbd_cband_offset = 0,
|
||||
.use_pwm_agc = 1,
|
||||
.clkoutdrive = 0,
|
||||
|
||||
.fref_clock_ratio = 0,
|
||||
|
||||
.wbd = dib7090e_wbd_table,
|
||||
|
||||
.ls_cfg_pad_drv = 0,
|
||||
.data_tx_drv = 0,
|
||||
.low_if = NULL,
|
||||
.in_soc = 1,
|
||||
.force_cband_input = 1,
|
||||
.is_dib7090e = 1,
|
||||
.force_crystal_mode = 1,
|
||||
};
|
||||
|
||||
static const struct dib0090_config tfe7090pvr_dib0090_config[2] = {
|
||||
{
|
||||
.io.clock_khz = 12000,
|
||||
@ -2646,6 +2711,54 @@ static int tfe7090e_frontend_attach(struct dvb_usb_adapter *adap)
|
||||
return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
|
||||
}
|
||||
|
||||
static int tfe7790e_frontend_attach(struct dvb_usb_adapter *adap)
|
||||
{
|
||||
struct dib0700_state *st = adap->dev->priv;
|
||||
|
||||
/* The TFE7790E requires the dib0700 to not be in master mode */
|
||||
st->disable_streaming_master_mode = 1;
|
||||
|
||||
dib0700_set_gpio(adap->dev, GPIO6, GPIO_OUT, 1);
|
||||
msleep(20);
|
||||
dib0700_set_gpio(adap->dev, GPIO9, GPIO_OUT, 1);
|
||||
dib0700_set_gpio(adap->dev, GPIO4, GPIO_OUT, 1);
|
||||
dib0700_set_gpio(adap->dev, GPIO7, GPIO_OUT, 1);
|
||||
dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 0);
|
||||
msleep(20);
|
||||
dib0700_ctrl_clock(adap->dev, 72, 1);
|
||||
dib0700_set_gpio(adap->dev, GPIO10, GPIO_OUT, 1);
|
||||
msleep(20);
|
||||
dib0700_set_gpio(adap->dev, GPIO0, GPIO_OUT, 1);
|
||||
|
||||
if (dib7000p_i2c_enumeration(&adap->dev->i2c_adap,
|
||||
1, 0x10, &tfe7790e_dib7000p_config) != 0) {
|
||||
err("%s: dib7000p_i2c_enumeration failed. Cannot continue\n",
|
||||
__func__);
|
||||
return -ENODEV;
|
||||
}
|
||||
adap->fe_adap[0].fe = dvb_attach(dib7000p_attach, &adap->dev->i2c_adap,
|
||||
0x80, &tfe7790e_dib7000p_config);
|
||||
|
||||
return adap->fe_adap[0].fe == NULL ? -ENODEV : 0;
|
||||
}
|
||||
|
||||
static int tfe7790e_tuner_attach(struct dvb_usb_adapter *adap)
|
||||
{
|
||||
struct dib0700_adapter_state *st = adap->priv;
|
||||
struct i2c_adapter *tun_i2c =
|
||||
dib7090_get_i2c_tuner(adap->fe_adap[0].fe);
|
||||
|
||||
if (dvb_attach(dib0090_register, adap->fe_adap[0].fe, tun_i2c,
|
||||
&tfe7790e_dib0090_config) == NULL)
|
||||
return -ENODEV;
|
||||
|
||||
dib7000p_set_gpio(adap->fe_adap[0].fe, 8, 0, 1);
|
||||
|
||||
st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
|
||||
adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7090_agc_startup;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tfe7090e_tuner_attach(struct dvb_usb_adapter *adap)
|
||||
{
|
||||
struct dib0700_adapter_state *st = adap->priv;
|
||||
@ -3120,6 +3233,7 @@ struct usb_device_id dib0700_usb_id_table[] = {
|
||||
{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV340E) },
|
||||
{ USB_DEVICE(USB_VID_PINNACLE, USB_PID_PINNACLE_PCTV340E_SE) },
|
||||
{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE7090E) },
|
||||
{ USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_TFE7790E) },
|
||||
{ 0 } /* Terminating entry */
|
||||
};
|
||||
MODULE_DEVICE_TABLE(usb, dib0700_usb_id_table);
|
||||
@ -4215,6 +4329,46 @@ struct dvb_usb_device_properties dib0700_devices[] = {
|
||||
},
|
||||
},
|
||||
|
||||
.rc.core = {
|
||||
.rc_interval = DEFAULT_RC_INTERVAL,
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
.module_name = "dib0700",
|
||||
.rc_query = dib0700_rc_query_old_firmware,
|
||||
.allowed_protos = RC_TYPE_RC5 |
|
||||
RC_TYPE_RC6 |
|
||||
RC_TYPE_NEC,
|
||||
.change_protocol = dib0700_change_protocol,
|
||||
},
|
||||
}, { DIB0700_DEFAULT_DEVICE_PROPERTIES,
|
||||
.num_adapters = 1,
|
||||
.adapter = {
|
||||
{
|
||||
.num_frontends = 1,
|
||||
.fe = {{
|
||||
.caps = DVB_USB_ADAP_HAS_PID_FILTER |
|
||||
DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
|
||||
.pid_filter_count = 32,
|
||||
.pid_filter = stk70x0p_pid_filter,
|
||||
.pid_filter_ctrl = stk70x0p_pid_filter_ctrl,
|
||||
.frontend_attach = tfe7790e_frontend_attach,
|
||||
.tuner_attach = tfe7790e_tuner_attach,
|
||||
|
||||
DIB0700_DEFAULT_STREAMING_CONFIG(0x03),
|
||||
} },
|
||||
|
||||
.size_of_priv =
|
||||
sizeof(struct dib0700_adapter_state),
|
||||
},
|
||||
},
|
||||
|
||||
.num_device_descs = 1,
|
||||
.devices = {
|
||||
{ "DiBcom TFE7790E reference design",
|
||||
{ &dib0700_usb_id_table[79], NULL },
|
||||
{ NULL },
|
||||
},
|
||||
},
|
||||
|
||||
.rc.core = {
|
||||
.rc_interval = DEFAULT_RC_INTERVAL,
|
||||
.rc_codes = RC_MAP_DIB0700_RC5_TABLE,
|
||||
|
@ -114,6 +114,7 @@
|
||||
#define USB_PID_DIBCOM_NIM7090 0x1bb2
|
||||
#define USB_PID_DIBCOM_TFE7090PVR 0x1bb4
|
||||
#define USB_PID_DIBCOM_TFE7090E 0x1bb7
|
||||
#define USB_PID_DIBCOM_TFE7790E 0x1e6e
|
||||
#define USB_PID_DIBCOM_NIM9090M 0x2383
|
||||
#define USB_PID_DIBCOM_NIM9090MD 0x2384
|
||||
#define USB_PID_DPOSH_M9206_COLD 0x9206
|
||||
|
Loading…
Reference in New Issue
Block a user