public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [linux-dvb] [PATCH] Cablestar 2 i2c retries
@ 2008-11-26 18:34 Antti Seppälä
  2008-12-01 11:26 ` Patrick Boettcher
  0 siblings, 1 reply; 2+ messages in thread
From: Antti Seppälä @ 2008-11-26 18:34 UTC (permalink / raw)
  To: Linux DVB

Hello.

At some point the Flexcop driver was changed to support newer Flexcop cards.
These modifications however broke the detection of Cablestar 2 DVB-C cards.

The reason is that the earlier version of the driver used to retry
unsuccessful i2c operations. The demodulator of Cablestar 2 cards (stv0297)
seems to be very dependent on these retries and adding them back fixes
Cablestar detection.

Signed-off-by: Antti Seppälä <a.seppala@gmail.com>

diff -r 8aabdabb517c linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c
--- a/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c	Tue Nov 25 14:10:14 2008 -0200
+++ b/linux/drivers/media/dvb/b2c2/flexcop-fe-tuner.c	Wed Nov 26 20:05:36 2008 +0200
@@ -628,12 +628,14 @@
 	}
 
 	/* try the cable dvb (stv0297) */
+	fc->fc_i2c_adap[0].no_base_addr = 1;
 	fc->fe = dvb_attach(stv0297_attach, &alps_tdee4_stv0297_config, i2c);
 	if (fc->fe != NULL) {
 		fc->dev_type = FC_CABLE;
 		fc->fe->ops.tuner_ops.set_params = alps_tdee4_stv0297_tuner_set_params;
 		goto fe_found;
 	}
+	fc->fc_i2c_adap[0].no_base_addr = 0;
 
 	/* try the sky v2.3 (vp310/Samsung tbdu18132(tsa5059)) */
 	fc->fe = dvb_attach(mt312_attach,
diff -r 8aabdabb517c linux/drivers/media/dvb/b2c2/flexcop-i2c.c
--- a/linux/drivers/media/dvb/b2c2/flexcop-i2c.c	Tue Nov 25 14:10:14 2008 -0200
+++ b/linux/drivers/media/dvb/b2c2/flexcop-i2c.c	Wed Nov 26 20:05:36 2008 +0200
@@ -47,8 +47,12 @@
 	int len = r100.tw_sm_c_100.total_bytes, /* remember total_bytes is buflen-1 */
 		ret;
 
-	r100.tw_sm_c_100.no_base_addr_ack_error = i2c->no_base_addr;
 	ret = flexcop_i2c_operation(i2c->fc, &r100);
+	if (ret != 0) {
+		deb_i2c("Retrying operation\n");
+		r100.tw_sm_c_100.no_base_addr_ack_error = i2c->no_base_addr;
+		ret = flexcop_i2c_operation(i2c->fc, &r100);
+	}
 	if (ret != 0) {
 		deb_i2c("read failed. %d\n", ret);
 		return ret;

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [linux-dvb] [PATCH] Cablestar 2 i2c retries
  2008-11-26 18:34 [linux-dvb] [PATCH] Cablestar 2 i2c retries Antti Seppälä
@ 2008-12-01 11:26 ` Patrick Boettcher
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick Boettcher @ 2008-12-01 11:26 UTC (permalink / raw)
  To: Antti Seppälä; +Cc: Linux DVB

[-- Attachment #1: Type: TEXT/PLAIN, Size: 483 bytes --]

Hi Antti,

On Wed, 26 Nov 2008, Antti Seppälä wrote:
> The reason is that the earlier version of the driver used to retry 
> unsuccessful i2c operations. The demodulator of Cablestar 2 cards 
> (stv0297) seems to be very dependent on these retries and adding them 
> back fixes Cablestar detection.

Thanks a lot for your fix.

It is committed and asked to be pulled.

Patrick.

--
   Mail: patrick.boettcher@desy.de
   WWW:  http://www.wi-bw.tfh-wildau.de/~pboettch/

[-- Attachment #2: Type: text/plain, Size: 150 bytes --]

_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-12-01 11:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-26 18:34 [linux-dvb] [PATCH] Cablestar 2 i2c retries Antti Seppälä
2008-12-01 11:26 ` Patrick Boettcher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox