[media] rtl28xxu: use muxed RTL2832 I2C adapters for E4000 and RTL2832_SDR
authorAntti Palosaari <crope@iki.fi>
Sat, 8 Feb 2014 07:03:57 +0000 (04:03 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Fri, 14 Mar 2014 08:35:24 +0000 (05:35 -0300)
RTL2832 driver provides muxed I2C adapters for tuner bus I2C gate
control. Pass those adapters to rtl2832_sdr and e4000 modules in order
to get rid of proprietary DVB .i2c_gate_ctrl() callback use.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/usb/dvb-usb-v2/rtl28xxu.c
drivers/media/usb/dvb-usb-v2/rtl28xxu.h

index f51949ed493076f70acde261e7887c3d3697303a..c83c16cece01632a128ebcfac7a8d3eed94eb05e 100644 (file)
@@ -774,6 +774,9 @@ static int rtl2832u_frontend_attach(struct dvb_usb_adapter *adap)
                goto err;
        }
 
+       /* RTL2832 I2C repeater */
+       priv->demod_i2c_adapter = rtl2832_get_i2c_adapter(adap->fe[0]);
+
        /* set fe callback */
        adap->fe[0]->callback = rtl2832u_frontend_callback;
 
@@ -922,6 +925,8 @@ static int rtl2832u_tuner_attach(struct dvb_usb_adapter *adap)
                break;
        case TUNER_RTL2832_E4000: {
                        struct v4l2_subdev *sd;
+                       struct i2c_adapter *i2c_adap_internal =
+                                       rtl2832_get_private_i2c_adapter(adap->fe[0]);
                        struct e4000_config e4000_config = {
                                .fe = adap->fe[0],
                                .clock = 28800000,
@@ -932,7 +937,7 @@ static int rtl2832u_tuner_attach(struct dvb_usb_adapter *adap)
                        info.platform_data = &e4000_config;
 
                        request_module(info.type);
-                       client = i2c_new_device(&d->i2c_adap, &info);
+                       client = i2c_new_device(priv->demod_i2c_adapter, &info);
                        if (client == NULL || client->dev.driver == NULL)
                                break;
 
@@ -943,10 +948,11 @@ static int rtl2832u_tuner_attach(struct dvb_usb_adapter *adap)
 
                        priv->client = client;
                        sd = i2c_get_clientdata(client);
+                       i2c_set_adapdata(i2c_adap_internal, d);
 
                        /* attach SDR */
                        dvb_attach(rtl2832_sdr_attach, adap->fe[0],
-                                       &d->i2c_adap,
+                                       i2c_adap_internal,
                                        &rtl28xxu_rtl2832_e4000_config, sd);
                }
                break;
index 367aca117d2744be8798d64d822592ba05be95ff..a26cab10f382289db1f9e7801b10c482d187a7f1 100644 (file)
@@ -55,6 +55,7 @@ struct rtl28xxu_priv {
        u8 tuner;
        char *tuner_name;
        u8 page; /* integrated demod active register page */
+       struct i2c_adapter *demod_i2c_adapter;
        bool rc_active;
        struct i2c_client *client;
 };
This page took 0.02703 seconds and 5 git commands to generate.