summaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/dvb-usb-v2/af9035.c
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2013-01-07 09:51:13 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-21 18:47:19 -0300
commitac77fb0f0ce9f77f465692d590b9615b95a99fb2 (patch)
tree89c92e5bcc7a6bd82b5c013a625b01001dad09e0 /drivers/media/usb/dvb-usb-v2/af9035.c
parent4902bb39b643437a4c0a339dbf8f3ceb14540be5 (diff)
downloadlinux-ac77fb0f0ce9f77f465692d590b9615b95a99fb2.tar.bz2
[media] af9035: add support for 1st gen it9135
Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb-v2/af9035.c')
-rw-r--r--drivers/media/usb/dvb-usb-v2/af9035.c24
1 files changed, 23 insertions, 1 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/af9035.c b/drivers/media/usb/dvb-usb-v2/af9035.c
index 66f65197c40d..f43e83c4122a 100644
--- a/drivers/media/usb/dvb-usb-v2/af9035.c
+++ b/drivers/media/usb/dvb-usb-v2/af9035.c
@@ -652,6 +652,10 @@ static int af9035_read_config_it9135(struct dvb_usb_device *d)
int ret, i;
u8 tmp;
+ /* demod I2C "address" */
+ state->af9033_config[0].i2c_addr = 0x38;
+ state->af9033_config[0].tuner = AF9033_TUNER_IT9135_38;
+ state->af9033_config[0].adc_multiplier = AF9033_ADC_MULTIPLIER_2X;
state->dual_mode = false;
/* get demod clock */
@@ -920,6 +924,20 @@ static const struct fc0012_config af9035_fc0012_config[] = {
}
};
+static struct ite_config af9035_it913x_config = {
+ .chip_ver = 0x01,
+ .chip_type = 0x9135,
+ .firmware = 0x00000000,
+ .firmware_ver = 1,
+ .adc_x2 = 1,
+ .tuner_id_0 = AF9033_TUNER_IT9135_38,
+ .tuner_id_1 = 0x00,
+ .dual_mode = 0x00,
+ .adf = 0x00,
+ /* option to read SIGNAL_LEVEL */
+ .read_slevel = 0,
+};
+
static int af9035_tuner_attach(struct dvb_usb_adapter *adap)
{
struct state *state = adap_to_priv(adap);
@@ -1082,6 +1100,11 @@ static int af9035_tuner_attach(struct dvb_usb_adapter *adap)
fe = dvb_attach(fc0012_attach, adap->fe[0], &d->i2c_adap,
&af9035_fc0012_config[adap->id]);
break;
+ case AF9033_TUNER_IT9135_38:
+ /* attach tuner */
+ fe = dvb_attach(it913x_attach, adap->fe[0],
+ &d->i2c_adap, 0x38, &af9035_it913x_config);
+ break;
default:
fe = NULL;
}
@@ -1275,7 +1298,6 @@ static const struct dvb_usb_device_properties it9135_props = {
.frontend_attach = af9035_frontend_attach,
.tuner_attach = af9035_tuner_attach,
.init = af9035_init,
- .get_rc_config = af9035_get_rc_config,
.num_adapters = 1,
.adapter = {