Skip to content

Commit

Permalink
V4L/DVB (5779): Dibusb-mb: fix broken 'tuner_pass_ctrl' functionality
Browse files Browse the repository at this point in the history
'tuner_pass_ctrl' functionality of the dib3000-mb devices was broken in 
the previous changeset:

"dibusb-mb: convert pll handling to properly use dvb-pll"

This patch fixes this problem by assigning this functionality to the 
i2c_gate_ctrl callback

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jul 18, 2007
1 parent 865dd11 commit 6c08d92
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
29 changes: 23 additions & 6 deletions drivers/media/dvb/dvb-usb/dibusb-mb.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
*/
#include "dibusb.h"

static int dib3000mb_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
{
struct dvb_usb_adapter *adap = fe->dvb->priv;
struct dibusb_state *st = adap->priv;

return st->ops.tuner_pass_ctrl(fe, enable, st->tuner_addr);
}

static int dibusb_dib3000mb_frontend_attach(struct dvb_usb_adapter *adap)
{
struct dib3000_config demod_cfg;
Expand All @@ -25,20 +33,28 @@ static int dibusb_dib3000mb_frontend_attach(struct dvb_usb_adapter *adap)
&adap->dev->i2c_adap, &st->ops)) == NULL)
return -ENODEV;

adap->tuner_pass_ctrl = st->ops.tuner_pass_ctrl;
adap->fe->ops.i2c_gate_ctrl = dib3000mb_i2c_gate_ctrl;

return 0;
}

static int dibusb_thomson_tuner_attach(struct dvb_usb_adapter *adap)
{
struct dibusb_state *st = adap->priv;

st->tuner_addr = 0x61;

dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
&dvb_pll_tua6010xs);
return 0;
}

static int dibusb_panasonic_tuner_attach(struct dvb_usb_adapter *adap)
{
struct dibusb_state *st = adap->priv;

st->tuner_addr = 0x60;

dvb_attach(dvb_pll_attach, adap->fe, 0x60, &adap->dev->i2c_adap,
&dvb_pll_tda665x);
return 0;
Expand All @@ -55,20 +71,21 @@ static int dibusb_tuner_probe_and_attach(struct dvb_usb_adapter *adap)
{ .flags = 0, .buf = b, .len = 2 },
{ .flags = I2C_M_RD, .buf = b2, .len = 1 },
};
struct dibusb_state *st = adap->priv;

/* the Panasonic sits on I2C addrass 0x60, the Thomson on 0x61 */
msg[0].addr = msg[1].addr = 0x60;
st->tuner_addr = 0x60;

if (adap->tuner_pass_ctrl)
adap->tuner_pass_ctrl(adap->fe,1,msg[0].addr);
if (adap->fe->ops.i2c_gate_ctrl)
adap->fe->ops.i2c_gate_ctrl(adap->fe,1);

if (i2c_transfer(&adap->dev->i2c_adap, msg, 2) != 2) {
err("tuner i2c write failed.");
ret = -EREMOTEIO;
}

if (adap->tuner_pass_ctrl)
adap->tuner_pass_ctrl(adap->fe,0,msg[0].addr);
if (adap->fe->ops.i2c_gate_ctrl)
adap->fe->ops.i2c_gate_ctrl(adap->fe,0);

if (b2[0] == 0xfe) {
info("This device has the Thomson Cable onboard. Which is default.");
Expand Down
1 change: 1 addition & 0 deletions drivers/media/dvb/dvb-usb/dibusb.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
struct dibusb_state {
struct dib_fe_xfer_ops ops;
int mt2060_present;
u8 tuner_addr;
};

struct dibusb_device_state {
Expand Down
2 changes: 0 additions & 2 deletions drivers/media/dvb/dvb-usb/dvb-usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,6 @@ struct dvb_usb_adapter {
int feedcount;
int pid_filtering;

int (*tuner_pass_ctrl) (struct dvb_frontend *, int, u8);

/* dvb */
struct dvb_adapter dvb_adap;
struct dmxdev dmxdev;
Expand Down

0 comments on commit 6c08d92

Please sign in to comment.