[media] mxl111sf: add ATSC-MH support
Add support for the ATSC-MH frontend on the WinTV Aero-m Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
52660885e5
commit
3113621492
@ -409,6 +409,7 @@ config DVB_USB_MXL111SF
|
|||||||
tristate "MxL111SF DTV USB2.0 support"
|
tristate "MxL111SF DTV USB2.0 support"
|
||||||
depends on DVB_USB
|
depends on DVB_USB
|
||||||
select DVB_LGDT3305 if !DVB_FE_CUSTOMISE
|
select DVB_LGDT3305 if !DVB_FE_CUSTOMISE
|
||||||
|
select DVB_LG2160 if !DVB_FE_CUSTOMISE
|
||||||
select VIDEO_TVEEPROM
|
select VIDEO_TVEEPROM
|
||||||
help
|
help
|
||||||
Say Y here to support the MxL111SF USB2.0 DTV receiver.
|
Say Y here to support the MxL111SF USB2.0 DTV receiver.
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include "mxl111sf-tuner.h"
|
#include "mxl111sf-tuner.h"
|
||||||
|
|
||||||
#include "lgdt3305.h"
|
#include "lgdt3305.h"
|
||||||
|
#include "lg2160.h"
|
||||||
|
|
||||||
int dvb_usb_mxl111sf_debug;
|
int dvb_usb_mxl111sf_debug;
|
||||||
module_param_named(debug, dvb_usb_mxl111sf_debug, int, 0644);
|
module_param_named(debug, dvb_usb_mxl111sf_debug, int, 0644);
|
||||||
@ -31,6 +32,10 @@ int dvb_usb_mxl111sf_isoc;
|
|||||||
module_param_named(isoc, dvb_usb_mxl111sf_isoc, int, 0644);
|
module_param_named(isoc, dvb_usb_mxl111sf_isoc, int, 0644);
|
||||||
MODULE_PARM_DESC(isoc, "enable usb isoc xfer (0=bulk, 1=isoc).");
|
MODULE_PARM_DESC(isoc, "enable usb isoc xfer (0=bulk, 1=isoc).");
|
||||||
|
|
||||||
|
int dvb_usb_mxl111sf_spi;
|
||||||
|
module_param_named(spi, dvb_usb_mxl111sf_spi, int, 0644);
|
||||||
|
MODULE_PARM_DESC(spi, "use spi rather than tp for data xfer (0=tp, 1=spi).");
|
||||||
|
|
||||||
#define ANT_PATH_AUTO 0
|
#define ANT_PATH_AUTO 0
|
||||||
#define ANT_PATH_EXTERNAL 1
|
#define ANT_PATH_EXTERNAL 1
|
||||||
#define ANT_PATH_INTERNAL 2
|
#define ANT_PATH_INTERNAL 2
|
||||||
@ -360,6 +365,33 @@ static int mxl111sf_ep6_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int mxl111sf_ep5_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
|
||||||
|
{
|
||||||
|
struct dvb_usb_device *d = adap->dev;
|
||||||
|
struct mxl111sf_state *state = d->priv;
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
deb_info("%s(%d)\n", __func__, onoff);
|
||||||
|
|
||||||
|
if (onoff) {
|
||||||
|
ret = mxl111sf_enable_usb_output(state);
|
||||||
|
mxl_fail(ret);
|
||||||
|
|
||||||
|
ret = mxl111sf_init_i2s_port(state, 200);
|
||||||
|
mxl_fail(ret);
|
||||||
|
ret = mxl111sf_config_i2s(state, 0, 15);
|
||||||
|
mxl_fail(ret);
|
||||||
|
} else {
|
||||||
|
ret = mxl111sf_disable_i2s_port(state);
|
||||||
|
mxl_fail(ret);
|
||||||
|
}
|
||||||
|
if (state->chip_rev > MXL111SF_V6)
|
||||||
|
ret = mxl111sf_config_spi(state, onoff);
|
||||||
|
mxl_fail(ret);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static int mxl111sf_ep4_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
|
static int mxl111sf_ep4_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
|
||||||
{
|
{
|
||||||
struct dvb_usb_device *d = adap->dev;
|
struct dvb_usb_device *d = adap->dev;
|
||||||
@ -452,6 +484,255 @@ fail:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct lg2160_config hauppauge_lg2160_config = {
|
||||||
|
.lg_chip = LG2160,
|
||||||
|
.i2c_addr = 0x1c >> 1,
|
||||||
|
.deny_i2c_rptr = 1,
|
||||||
|
.spectral_inversion = 0,
|
||||||
|
.if_khz = 6000,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int mxl111sf_lg2160_frontend_attach(struct dvb_usb_adapter *adap)
|
||||||
|
{
|
||||||
|
struct dvb_usb_device *d = adap->dev;
|
||||||
|
struct mxl111sf_state *state = d->priv;
|
||||||
|
int fe_id = adap->num_frontends_initialized;
|
||||||
|
struct mxl111sf_adap_state *adap_state = adap->fe_adap[fe_id].priv;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
deb_adv("%s()\n", __func__);
|
||||||
|
|
||||||
|
/* save a pointer to the dvb_usb_device in device state */
|
||||||
|
state->d = d;
|
||||||
|
adap_state->alt_mode = (dvb_usb_mxl111sf_isoc) ? 2 : 1;
|
||||||
|
state->alt_mode = adap_state->alt_mode;
|
||||||
|
|
||||||
|
if (usb_set_interface(adap->dev->udev, 0, state->alt_mode) < 0)
|
||||||
|
err("set interface failed");
|
||||||
|
|
||||||
|
state->gpio_mode = MXL111SF_GPIO_MOD_MH;
|
||||||
|
adap_state->gpio_mode = state->gpio_mode;
|
||||||
|
adap_state->device_mode = MXL_TUNER_MODE;
|
||||||
|
adap_state->ep6_clockphase = 1;
|
||||||
|
|
||||||
|
ret = mxl1x1sf_soft_reset(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl111sf_init_tuner_demod(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl1x1sf_set_device_mode(state, adap_state->device_mode);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl111sf_enable_usb_output(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl1x1sf_top_master_ctrl(state, 1);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl111sf_init_port_expander(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl111sf_gpio_mode_switch(state, state->gpio_mode);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = get_chip_info(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
adap->fe_adap[fe_id].fe = dvb_attach(lg2160_attach,
|
||||||
|
&hauppauge_lg2160_config,
|
||||||
|
&adap->dev->i2c_adap);
|
||||||
|
if (adap->fe_adap[fe_id].fe) {
|
||||||
|
adap_state->fe_init = adap->fe_adap[fe_id].fe->ops.init;
|
||||||
|
adap->fe_adap[fe_id].fe->ops.init = mxl111sf_adap_fe_init;
|
||||||
|
adap_state->fe_sleep = adap->fe_adap[fe_id].fe->ops.sleep;
|
||||||
|
adap->fe_adap[fe_id].fe->ops.sleep = mxl111sf_adap_fe_sleep;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
ret = -EIO;
|
||||||
|
fail:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct lg2160_config hauppauge_lg2161_1019_config = {
|
||||||
|
.lg_chip = LG2161_1019,
|
||||||
|
.i2c_addr = 0x1c >> 1,
|
||||||
|
.deny_i2c_rptr = 1,
|
||||||
|
.spectral_inversion = 0,
|
||||||
|
.if_khz = 6000,
|
||||||
|
.output_if = 2, /* LG2161_OIF_SPI_MAS */
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct lg2160_config hauppauge_lg2161_1040_config = {
|
||||||
|
.lg_chip = LG2161_1040,
|
||||||
|
.i2c_addr = 0x1c >> 1,
|
||||||
|
.deny_i2c_rptr = 1,
|
||||||
|
.spectral_inversion = 0,
|
||||||
|
.if_khz = 6000,
|
||||||
|
.output_if = 4, /* LG2161_OIF_SPI_MAS */
|
||||||
|
};
|
||||||
|
|
||||||
|
static int mxl111sf_lg2161_frontend_attach(struct dvb_usb_adapter *adap)
|
||||||
|
{
|
||||||
|
struct dvb_usb_device *d = adap->dev;
|
||||||
|
struct mxl111sf_state *state = d->priv;
|
||||||
|
int fe_id = adap->num_frontends_initialized;
|
||||||
|
struct mxl111sf_adap_state *adap_state = adap->fe_adap[fe_id].priv;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
deb_adv("%s()\n", __func__);
|
||||||
|
|
||||||
|
/* save a pointer to the dvb_usb_device in device state */
|
||||||
|
state->d = d;
|
||||||
|
adap_state->alt_mode = (dvb_usb_mxl111sf_isoc) ? 2 : 1;
|
||||||
|
state->alt_mode = adap_state->alt_mode;
|
||||||
|
|
||||||
|
if (usb_set_interface(adap->dev->udev, 0, state->alt_mode) < 0)
|
||||||
|
err("set interface failed");
|
||||||
|
|
||||||
|
state->gpio_mode = MXL111SF_GPIO_MOD_MH;
|
||||||
|
adap_state->gpio_mode = state->gpio_mode;
|
||||||
|
adap_state->device_mode = MXL_TUNER_MODE;
|
||||||
|
adap_state->ep6_clockphase = 1;
|
||||||
|
|
||||||
|
ret = mxl1x1sf_soft_reset(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl111sf_init_tuner_demod(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl1x1sf_set_device_mode(state, adap_state->device_mode);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl111sf_enable_usb_output(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl1x1sf_top_master_ctrl(state, 1);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl111sf_init_port_expander(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl111sf_gpio_mode_switch(state, state->gpio_mode);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = get_chip_info(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
adap->fe_adap[fe_id].fe = dvb_attach(lg2160_attach,
|
||||||
|
(MXL111SF_V8_200 == state->chip_rev) ?
|
||||||
|
&hauppauge_lg2161_1040_config :
|
||||||
|
&hauppauge_lg2161_1019_config,
|
||||||
|
&adap->dev->i2c_adap);
|
||||||
|
if (adap->fe_adap[fe_id].fe) {
|
||||||
|
adap_state->fe_init = adap->fe_adap[fe_id].fe->ops.init;
|
||||||
|
adap->fe_adap[fe_id].fe->ops.init = mxl111sf_adap_fe_init;
|
||||||
|
adap_state->fe_sleep = adap->fe_adap[fe_id].fe->ops.sleep;
|
||||||
|
adap->fe_adap[fe_id].fe->ops.sleep = mxl111sf_adap_fe_sleep;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
ret = -EIO;
|
||||||
|
fail:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct lg2160_config hauppauge_lg2161_1019_ep6_config = {
|
||||||
|
.lg_chip = LG2161_1019,
|
||||||
|
.i2c_addr = 0x1c >> 1,
|
||||||
|
.deny_i2c_rptr = 1,
|
||||||
|
.spectral_inversion = 0,
|
||||||
|
.if_khz = 6000,
|
||||||
|
.output_if = 1, /* LG2161_OIF_SERIAL_TS */
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct lg2160_config hauppauge_lg2161_1040_ep6_config = {
|
||||||
|
.lg_chip = LG2161_1040,
|
||||||
|
.i2c_addr = 0x1c >> 1,
|
||||||
|
.deny_i2c_rptr = 1,
|
||||||
|
.spectral_inversion = 0,
|
||||||
|
.if_khz = 6000,
|
||||||
|
.output_if = 7, /* LG2161_OIF_SERIAL_TS */
|
||||||
|
};
|
||||||
|
|
||||||
|
static int mxl111sf_lg2161_ep6_frontend_attach(struct dvb_usb_adapter *adap)
|
||||||
|
{
|
||||||
|
struct dvb_usb_device *d = adap->dev;
|
||||||
|
struct mxl111sf_state *state = d->priv;
|
||||||
|
int fe_id = adap->num_frontends_initialized;
|
||||||
|
struct mxl111sf_adap_state *adap_state = adap->fe_adap[fe_id].priv;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
deb_adv("%s()\n", __func__);
|
||||||
|
|
||||||
|
/* save a pointer to the dvb_usb_device in device state */
|
||||||
|
state->d = d;
|
||||||
|
adap_state->alt_mode = (dvb_usb_mxl111sf_isoc) ? 2 : 1;
|
||||||
|
state->alt_mode = adap_state->alt_mode;
|
||||||
|
|
||||||
|
if (usb_set_interface(adap->dev->udev, 0, state->alt_mode) < 0)
|
||||||
|
err("set interface failed");
|
||||||
|
|
||||||
|
state->gpio_mode = MXL111SF_GPIO_MOD_MH;
|
||||||
|
adap_state->gpio_mode = state->gpio_mode;
|
||||||
|
adap_state->device_mode = MXL_TUNER_MODE;
|
||||||
|
adap_state->ep6_clockphase = 0;
|
||||||
|
|
||||||
|
ret = mxl1x1sf_soft_reset(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl111sf_init_tuner_demod(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl1x1sf_set_device_mode(state, adap_state->device_mode);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl111sf_enable_usb_output(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl1x1sf_top_master_ctrl(state, 1);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = mxl111sf_init_port_expander(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
ret = mxl111sf_gpio_mode_switch(state, state->gpio_mode);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
ret = get_chip_info(state);
|
||||||
|
if (mxl_fail(ret))
|
||||||
|
goto fail;
|
||||||
|
|
||||||
|
adap->fe_adap[fe_id].fe = dvb_attach(lg2160_attach,
|
||||||
|
(MXL111SF_V8_200 == state->chip_rev) ?
|
||||||
|
&hauppauge_lg2161_1040_ep6_config :
|
||||||
|
&hauppauge_lg2161_1019_ep6_config,
|
||||||
|
&adap->dev->i2c_adap);
|
||||||
|
if (adap->fe_adap[fe_id].fe) {
|
||||||
|
adap_state->fe_init = adap->fe_adap[fe_id].fe->ops.init;
|
||||||
|
adap->fe_adap[fe_id].fe->ops.init = mxl111sf_adap_fe_init;
|
||||||
|
adap_state->fe_sleep = adap->fe_adap[fe_id].fe->ops.sleep;
|
||||||
|
adap->fe_adap[fe_id].fe->ops.sleep = mxl111sf_adap_fe_sleep;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
ret = -EIO;
|
||||||
|
fail:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static struct mxl111sf_demod_config mxl_demod_config = {
|
static struct mxl111sf_demod_config mxl_demod_config = {
|
||||||
.read_reg = mxl111sf_read_reg,
|
.read_reg = mxl111sf_read_reg,
|
||||||
.write_reg = mxl111sf_write_reg,
|
.write_reg = mxl111sf_write_reg,
|
||||||
@ -649,6 +930,18 @@ static struct dvb_usb_device_properties mxl111sf_dvbt_bulk_properties;
|
|||||||
static struct dvb_usb_device_properties mxl111sf_dvbt_isoc_properties;
|
static struct dvb_usb_device_properties mxl111sf_dvbt_isoc_properties;
|
||||||
static struct dvb_usb_device_properties mxl111sf_atsc_bulk_properties;
|
static struct dvb_usb_device_properties mxl111sf_atsc_bulk_properties;
|
||||||
static struct dvb_usb_device_properties mxl111sf_atsc_isoc_properties;
|
static struct dvb_usb_device_properties mxl111sf_atsc_isoc_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_atsc_mh_bulk_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_atsc_mh_isoc_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mh_bulk_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mh_isoc_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_spi_bulk_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_spi_isoc_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_tp_bulk_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_tp_isoc_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_mh_spi_bulk_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_mh_spi_isoc_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_mh_tp_bulk_properties;
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_mh_tp_isoc_properties;
|
||||||
|
|
||||||
static int mxl111sf_probe(struct usb_interface *intf,
|
static int mxl111sf_probe(struct usb_interface *intf,
|
||||||
const struct usb_device_id *id)
|
const struct usb_device_id *id)
|
||||||
@ -663,12 +956,50 @@ static int mxl111sf_probe(struct usb_interface *intf,
|
|||||||
THIS_MODULE, &d, adapter_nr) ||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
0 == dvb_usb_device_init(intf,
|
0 == dvb_usb_device_init(intf,
|
||||||
&mxl111sf_atsc_isoc_properties,
|
&mxl111sf_atsc_isoc_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_atsc_mh_isoc_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mh_isoc_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
((dvb_usb_mxl111sf_spi) &&
|
||||||
|
(0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_spi_isoc_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_mh_spi_isoc_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr))) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_tp_isoc_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_mh_tp_isoc_properties,
|
||||||
THIS_MODULE, &d, adapter_nr))) ||
|
THIS_MODULE, &d, adapter_nr))) ||
|
||||||
0 == dvb_usb_device_init(intf,
|
0 == dvb_usb_device_init(intf,
|
||||||
&mxl111sf_dvbt_bulk_properties,
|
&mxl111sf_dvbt_bulk_properties,
|
||||||
THIS_MODULE, &d, adapter_nr) ||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
0 == dvb_usb_device_init(intf,
|
0 == dvb_usb_device_init(intf,
|
||||||
&mxl111sf_atsc_bulk_properties,
|
&mxl111sf_atsc_bulk_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_atsc_mh_bulk_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mh_bulk_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
((dvb_usb_mxl111sf_spi) &&
|
||||||
|
(0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_spi_bulk_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_mh_spi_bulk_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr))) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_tp_bulk_properties,
|
||||||
|
THIS_MODULE, &d, adapter_nr) ||
|
||||||
|
0 == dvb_usb_device_init(intf,
|
||||||
|
&mxl111sf_mercury_mh_tp_bulk_properties,
|
||||||
THIS_MODULE, &d, adapter_nr) || 0) {
|
THIS_MODULE, &d, adapter_nr) || 0) {
|
||||||
|
|
||||||
struct mxl111sf_state *state = d->priv;
|
struct mxl111sf_state *state = d->priv;
|
||||||
@ -786,6 +1117,36 @@ MODULE_DEVICE_TABLE(usb, mxl111sf_table);
|
|||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define MXL111SF_EP5_BULK_STREAMING_CONFIG \
|
||||||
|
.size_of_priv = sizeof(struct mxl111sf_adap_state), \
|
||||||
|
.streaming_ctrl = mxl111sf_ep5_streaming_ctrl, \
|
||||||
|
.stream = { \
|
||||||
|
.type = USB_BULK, \
|
||||||
|
.count = 5, \
|
||||||
|
.endpoint = 0x05, \
|
||||||
|
.u = { \
|
||||||
|
.bulk = { \
|
||||||
|
.buffersize = 8192, \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define MXL111SF_EP5_ISOC_STREAMING_CONFIG \
|
||||||
|
.size_of_priv = sizeof(struct mxl111sf_adap_state), \
|
||||||
|
.streaming_ctrl = mxl111sf_ep5_streaming_ctrl, \
|
||||||
|
.stream = { \
|
||||||
|
.type = USB_ISOC, \
|
||||||
|
.count = 5, \
|
||||||
|
.endpoint = 0x05, \
|
||||||
|
.u = { \
|
||||||
|
.isoc = { \
|
||||||
|
.framesperurb = 96, \
|
||||||
|
.framesize = 200, \
|
||||||
|
.interval = 1, \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
}
|
||||||
|
|
||||||
#define MXL111SF_EP6_BULK_STREAMING_CONFIG \
|
#define MXL111SF_EP6_BULK_STREAMING_CONFIG \
|
||||||
.size_of_priv = sizeof(struct mxl111sf_adap_state), \
|
.size_of_priv = sizeof(struct mxl111sf_adap_state), \
|
||||||
.streaming_ctrl = mxl111sf_ep6_streaming_ctrl, \
|
.streaming_ctrl = mxl111sf_ep6_streaming_ctrl, \
|
||||||
@ -847,7 +1208,7 @@ static struct dvb_usb_device_properties mxl111sf_dvbt_bulk_properties = {
|
|||||||
} },
|
} },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
.num_device_descs = 4,
|
.num_device_descs = 3,
|
||||||
.devices = {
|
.devices = {
|
||||||
{ "Hauppauge 126xxx DVBT (bulk)",
|
{ "Hauppauge 126xxx DVBT (bulk)",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
@ -865,11 +1226,6 @@ static struct dvb_usb_device_properties mxl111sf_dvbt_bulk_properties = {
|
|||||||
&mxl111sf_table[24], &mxl111sf_table[26],
|
&mxl111sf_table[24], &mxl111sf_table[26],
|
||||||
NULL },
|
NULL },
|
||||||
},
|
},
|
||||||
{ "Hauppauge 126xxx (tp-bulk)",
|
|
||||||
{ NULL },
|
|
||||||
{ &mxl111sf_table[28], &mxl111sf_table[30],
|
|
||||||
NULL },
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -889,7 +1245,7 @@ static struct dvb_usb_device_properties mxl111sf_dvbt_isoc_properties = {
|
|||||||
} },
|
} },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
.num_device_descs = 4,
|
.num_device_descs = 3,
|
||||||
.devices = {
|
.devices = {
|
||||||
{ "Hauppauge 126xxx DVBT (isoc)",
|
{ "Hauppauge 126xxx DVBT (isoc)",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
@ -907,11 +1263,6 @@ static struct dvb_usb_device_properties mxl111sf_dvbt_isoc_properties = {
|
|||||||
&mxl111sf_table[24], &mxl111sf_table[26],
|
&mxl111sf_table[24], &mxl111sf_table[26],
|
||||||
NULL },
|
NULL },
|
||||||
},
|
},
|
||||||
{ "Hauppauge 126xxx (tp-isoc)",
|
|
||||||
{ NULL },
|
|
||||||
{ &mxl111sf_table[28], &mxl111sf_table[30],
|
|
||||||
NULL },
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -922,22 +1273,16 @@ static struct dvb_usb_device_properties mxl111sf_atsc_bulk_properties = {
|
|||||||
.adapter = {
|
.adapter = {
|
||||||
{
|
{
|
||||||
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
.num_frontends = 2,
|
.num_frontends = 1,
|
||||||
.fe = {{
|
.fe = {{
|
||||||
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
.tuner_attach = mxl111sf_attach_tuner,
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
||||||
},
|
|
||||||
{
|
|
||||||
.frontend_attach = mxl111sf_attach_demod,
|
|
||||||
.tuner_attach = mxl111sf_attach_tuner,
|
|
||||||
|
|
||||||
MXL111SF_EP4_BULK_STREAMING_CONFIG,
|
|
||||||
}},
|
}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
.num_device_descs = 6,
|
.num_device_descs = 2,
|
||||||
.devices = {
|
.devices = {
|
||||||
{ "Hauppauge 126xxx ATSC (bulk)",
|
{ "Hauppauge 126xxx ATSC (bulk)",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
@ -949,6 +1294,138 @@ static struct dvb_usb_device_properties mxl111sf_atsc_bulk_properties = {
|
|||||||
{ &mxl111sf_table[12],
|
{ &mxl111sf_table[12],
|
||||||
NULL },
|
NULL },
|
||||||
},
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_atsc_isoc_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 1,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_ISOC_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge 126xxx ATSC (isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[1], &mxl111sf_table[5],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
{ "Hauppauge 117xxx ATSC (isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[12],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mh_bulk_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 1,
|
||||||
|
.fe = {{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2160_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_BULK_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
|
{ "HCW 126xxx (bulk)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[2], &mxl111sf_table[6],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
{ "HCW 117xxx (bulk)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[13],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mh_isoc_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 1,
|
||||||
|
.fe = {{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2160_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_ISOC_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
|
{ "HCW 126xxx (isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[2], &mxl111sf_table[6],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
{ "HCW 117xxx (isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[13],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_atsc_mh_bulk_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 3,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2160_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_BULK_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
{ "Hauppauge 126xxx ATSC+ (bulk)",
|
{ "Hauppauge 126xxx ATSC+ (bulk)",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
{ &mxl111sf_table[0], &mxl111sf_table[3],
|
{ &mxl111sf_table[0], &mxl111sf_table[3],
|
||||||
@ -962,6 +1439,181 @@ static struct dvb_usb_device_properties mxl111sf_atsc_bulk_properties = {
|
|||||||
&mxl111sf_table[32], &mxl111sf_table[33],
|
&mxl111sf_table[32], &mxl111sf_table[33],
|
||||||
NULL },
|
NULL },
|
||||||
},
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_atsc_mh_isoc_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 3,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2160_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_ISOC_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge 126xxx ATSC+ (isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[0], &mxl111sf_table[3],
|
||||||
|
&mxl111sf_table[7], &mxl111sf_table[9],
|
||||||
|
&mxl111sf_table[10], NULL },
|
||||||
|
},
|
||||||
|
{ "Hauppauge 117xxx ATSC+ (isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[11], &mxl111sf_table[14],
|
||||||
|
&mxl111sf_table[16], &mxl111sf_table[17],
|
||||||
|
&mxl111sf_table[32], &mxl111sf_table[33],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_spi_bulk_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 3,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_BULK_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge Mercury (spi-bulk)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[19], &mxl111sf_table[21],
|
||||||
|
&mxl111sf_table[23], &mxl111sf_table[25],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
{ "Hauppauge WinTV-Aero-M (spi-bulk)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[29], &mxl111sf_table[31],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_spi_isoc_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 3,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_ISOC_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge Mercury (spi-isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[19], &mxl111sf_table[21],
|
||||||
|
&mxl111sf_table[23], &mxl111sf_table[25],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
{ "Hauppauge WinTV-Aero-M (spi-isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[29], &mxl111sf_table[31],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct dvb_usb_device_properties mxl111sf_mercury_tp_bulk_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 3,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_ep6_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 2,
|
||||||
|
.devices = {
|
||||||
{ "Hauppauge Mercury (tp-bulk)",
|
{ "Hauppauge Mercury (tp-bulk)",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
{ &mxl111sf_table[19], &mxl111sf_table[21],
|
{ &mxl111sf_table[19], &mxl111sf_table[21],
|
||||||
@ -976,14 +1628,14 @@ static struct dvb_usb_device_properties mxl111sf_atsc_bulk_properties = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct dvb_usb_device_properties mxl111sf_atsc_isoc_properties = {
|
static struct dvb_usb_device_properties mxl111sf_mercury_tp_isoc_properties = {
|
||||||
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
.num_adapters = 1,
|
.num_adapters = 1,
|
||||||
.adapter = {
|
.adapter = {
|
||||||
{
|
{
|
||||||
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
.num_frontends = 2,
|
.num_frontends = 3,
|
||||||
.fe = {{
|
.fe = {{
|
||||||
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
.frontend_attach = mxl111sf_lgdt3305_frontend_attach,
|
||||||
.tuner_attach = mxl111sf_attach_tuner,
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
@ -995,34 +1647,19 @@ static struct dvb_usb_device_properties mxl111sf_atsc_isoc_properties = {
|
|||||||
.tuner_attach = mxl111sf_attach_tuner,
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
MXL111SF_EP4_ISOC_STREAMING_CONFIG,
|
MXL111SF_EP4_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_ep6_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_ISOC_STREAMING_CONFIG,
|
||||||
}},
|
}},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
.num_device_descs = 6,
|
.num_device_descs = 2,
|
||||||
.devices = {
|
.devices = {
|
||||||
{ "Hauppauge 126xxx ATSC (isoc)",
|
|
||||||
{ NULL },
|
|
||||||
{ &mxl111sf_table[1], &mxl111sf_table[5],
|
|
||||||
NULL },
|
|
||||||
},
|
|
||||||
{ "Hauppauge 117xxx ATSC (isoc)",
|
|
||||||
{ NULL },
|
|
||||||
{ &mxl111sf_table[12],
|
|
||||||
NULL },
|
|
||||||
},
|
|
||||||
{ "Hauppauge 126xxx ATSC+ (isoc)",
|
|
||||||
{ NULL },
|
|
||||||
{ &mxl111sf_table[0], &mxl111sf_table[3],
|
|
||||||
&mxl111sf_table[7], &mxl111sf_table[9],
|
|
||||||
&mxl111sf_table[10], NULL },
|
|
||||||
},
|
|
||||||
{ "Hauppauge 117xxx ATSC+ (isoc)",
|
|
||||||
{ NULL },
|
|
||||||
{ &mxl111sf_table[11], &mxl111sf_table[14],
|
|
||||||
&mxl111sf_table[16], &mxl111sf_table[17],
|
|
||||||
&mxl111sf_table[32], &mxl111sf_table[33],
|
|
||||||
NULL },
|
|
||||||
},
|
|
||||||
{ "Hauppauge Mercury (tp-isoc)",
|
{ "Hauppauge Mercury (tp-isoc)",
|
||||||
{ NULL },
|
{ NULL },
|
||||||
{ &mxl111sf_table[19], &mxl111sf_table[21],
|
{ &mxl111sf_table[19], &mxl111sf_table[21],
|
||||||
@ -1037,6 +1674,146 @@ static struct dvb_usb_device_properties mxl111sf_atsc_isoc_properties = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static
|
||||||
|
struct dvb_usb_device_properties mxl111sf_mercury_mh_tp_bulk_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 2,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_ep6_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_BULK_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 1,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge 126xxx (tp-bulk)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[28], &mxl111sf_table[30],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static
|
||||||
|
struct dvb_usb_device_properties mxl111sf_mercury_mh_tp_isoc_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 2,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_ep6_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP6_ISOC_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 1,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge 126xxx (tp-isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[28], &mxl111sf_table[30],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static
|
||||||
|
struct dvb_usb_device_properties mxl111sf_mercury_mh_spi_bulk_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 2,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_BULK_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_BULK_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 1,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge 126xxx (spi-bulk)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[28], &mxl111sf_table[30],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static
|
||||||
|
struct dvb_usb_device_properties mxl111sf_mercury_mh_spi_isoc_properties = {
|
||||||
|
MXL111SF_DEFAULT_DEVICE_PROPERTIES,
|
||||||
|
|
||||||
|
.num_adapters = 1,
|
||||||
|
.adapter = {
|
||||||
|
{
|
||||||
|
.fe_ioctl_override = mxl111sf_fe_ioctl_override,
|
||||||
|
.num_frontends = 2,
|
||||||
|
.fe = {{
|
||||||
|
.frontend_attach = mxl111sf_attach_demod,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP4_ISOC_STREAMING_CONFIG,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.caps = DVB_USB_ADAP_RECEIVES_RAW_PAYLOAD,
|
||||||
|
|
||||||
|
.frontend_attach = mxl111sf_lg2161_frontend_attach,
|
||||||
|
.tuner_attach = mxl111sf_attach_tuner,
|
||||||
|
|
||||||
|
MXL111SF_EP5_ISOC_STREAMING_CONFIG,
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.num_device_descs = 1,
|
||||||
|
.devices = {
|
||||||
|
{ "Hauppauge 126xxx (spi-isoc)",
|
||||||
|
{ NULL },
|
||||||
|
{ &mxl111sf_table[28], &mxl111sf_table[30],
|
||||||
|
NULL },
|
||||||
|
},
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
static struct usb_driver mxl111sf_driver = {
|
static struct usb_driver mxl111sf_driver = {
|
||||||
.name = "dvb_usb_mxl111sf",
|
.name = "dvb_usb_mxl111sf",
|
||||||
.probe = mxl111sf_probe,
|
.probe = mxl111sf_probe,
|
||||||
|
Loading…
Reference in New Issue
Block a user