Re: [RFC] TDA8290 / TDA827X with LNA: testers wanted

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi, Mike

Michael Krufky schrieb:
> On Tue, Mar 18, 2008 at 8:40 PM, Hartmut Hackmann
> <hartmut.hackmann@xxxxxxxxxxx> wrote:
>> Hi, Folks
>>
>>  Currently, the LNA support code for TDA8275a is broken, it may even cause a kernel oops.
>>  The bugs were introduced during tuner refactoring.
>>  In my personal repository at
>>   http://linuxtv.org/hg/~hhackmann/v4l-dvb/
>>  these bugs hopefully are fixed. But i can test only 3 cases. So i am looking for owners
>>  of the cards
>>  Pinnacle 310i,
>>  Happauge hvr1110
>>  ASUSTeK P7131 with LNA
>>  MSI TV@NYWHERE AD11
>>  KWORLD DVBT 210
>>  to check whether things are right again. This holds for both, analog as well as DVB-T.
>>
>>  Michael, may i ask you to check whether my changes contradict with things you are doing?
>>  Mauro, what's your opinion on this? As far as i know, the broken code is in the upcoming
>>  kernel release. The patch is big, is there a chance to commit it to the kernel?
> 
> Hartmut,
> 
> I've already checked over your changes (I noticed the tree pushed a
> few days ago)  -- I do not see any reason why they would cause any
> problems on the tda8295 nor the tda18271.  These changes will not
> contradict anything that I am currently working on, and it would be
> nice to have them merged sooner than later.
> 
> There is only one detail that I would like to point out.  You made the
> following change:
> 
> --- a/linux/drivers/media/video/tda8290.h	Mon Mar 03 22:55:05 2008 +0100
> +++ b/linux/drivers/media/video/tda8290.h	Sun Mar 16 23:49:43 2008 +0100
> @@ -21,7 +21,7 @@
>  #include "dvb_frontend.h"
> 
>  struct tda829x_config {
> -	unsigned int *lna_cfg;
> +	unsigned int lna_cfg;
>  	int (*tuner_callback) (void *dev, int command, int arg);
> 
>  	unsigned int probe_tuner:1;
> --- a/linux/drivers/media/video/tuner-core.c	Mon Mar 03 22:55:05 2008 +0100
> +++ b/linux/drivers/media/video/tuner-core.c	Sun Mar 16 23:49:43 2008 +0100
> @@ -349,7 +349,7 @@ static void attach_tda829x(struct tuner
>  static void attach_tda829x(struct tuner *t)
>  {
>  	struct tda829x_config cfg = {
> -		.lna_cfg        = &t->config,
> +		.lna_cfg        = t->config,
>  		.tuner_callback = t->tuner_callback,
>  	};
>  	tda829x_attach(&t->fe, t->i2c->adapter, t->i2c->addr, &cfg);
> 
> 
> 
> ...The above change means that the lna setting is set at tuner driver
> attach time, and if somebody wants to use TUNER_SET_CONFIG (or some
> other method) to enable / disable the LNA on-the-fly, it will not be
> possible.    Meanwhile, I'm not even sure it that was possible to
> begin with.  Just some food for thought -- you should decide what is
> best, here.
> 
Ah, That's your intention.. I changed this because in the case of DVB
there is nothing that creates a copy of the tda827x config structure -
so no legal way to change the data. And imho it is not necessary to change
this dynamically.

> I have an HVR1110, and I have a QAM64 generator that I use to test it.
>  Obviously, it is a hot signal.  Is it possible for me to test the LNA
> under these circumstances?  ...or do we need somebody "out in the
> field" to do that sort of test?  (I live in ATSC-land ;-) )
>
You should be able to. You need to have the debug option for the tuner on
and you need to be aware that the decicion LNA on / off is taken only once
while tuning. When you modify the RF level you should notice that increasing
the amplitude results in a lower AGC2 value. When it reaches the value 2, the
driver should report that it turns the LNA to low gain. You will also need to
monitor the AGC value of the channel decoder to see the effect.

> You mentioned a possible kernel OOPS.  Have you actually experienced
> an OOPS with the current tree?  I apologize if this feature being
> broken is the result of my tuner refactoring.  I appreciate your
> taking the time to fix it.
> 
Yes. The first parameter to the tuner callback was wrong and cause a reference
to a NULL pointer.

Best regards
 Hartmut

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

[Index of Archives]     [Linux Media]     [Video 4 Linux]     [Asterisk]     [Samba]     [Xorg]     [Xfree86]     [Linux USB]

  Powered by Linux