Commit f21cfaf6 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab

[media] tuner: add support for Xceive XC5000C

Signed-off-by: default avatarMichael Krufky <mkrufky@kernellabs.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d8398805
...@@ -1868,6 +1868,10 @@ struct tunertype tuners[] = { ...@@ -1868,6 +1868,10 @@ struct tunertype tuners[] = {
.params = tuner_tena_tnf_5337_params, .params = tuner_tena_tnf_5337_params,
.count = ARRAY_SIZE(tuner_tena_tnf_5337_params), .count = ARRAY_SIZE(tuner_tena_tnf_5337_params),
}, },
[TUNER_XC5000C] = { /* Xceive 5000C */
.name = "Xceive 5000C tuner",
/* see xc5000.c for details */
},
}; };
EXPORT_SYMBOL(tuners); EXPORT_SYMBOL(tuners);
......
...@@ -380,6 +380,21 @@ static void set_type(struct i2c_client *c, unsigned int type, ...@@ -380,6 +380,21 @@ static void set_type(struct i2c_client *c, unsigned int type,
tune_now = 0; tune_now = 0;
break; break;
} }
case TUNER_XC5000C:
{
struct xc5000_config xc5000c_cfg = {
.i2c_address = t->i2c->addr,
/* if_khz will be set at dvb_attach() */
.if_khz = 0,
.fw = XC5000C_DEFAULT_FIRMWARE,
};
if (!dvb_attach(xc5000_attach,
&t->fe, t->i2c->adapter, &xc5000c_cfg))
goto attach_failed;
tune_now = 0;
break;
}
case TUNER_NXP_TDA18271: case TUNER_NXP_TDA18271:
{ {
struct tda18271_config cfg = { struct tda18271_config cfg = {
......
...@@ -136,6 +136,7 @@ ...@@ -136,6 +136,7 @@
#define TUNER_TENA_TNF_5337 86 #define TUNER_TENA_TNF_5337 86
#define TUNER_XC4000 87 /* Xceive Silicon Tuner */ #define TUNER_XC4000 87 /* Xceive Silicon Tuner */
#define TUNER_XC5000C 88 /* Xceive Silicon Tuner */
/* tv card specific */ /* tv card specific */
#define TDA9887_PRESENT (1<<0) #define TDA9887_PRESENT (1<<0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment