Mailing List archive

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

[linux-dvb] Re: [linux-dvb]ASTON CAM



Even if I don't get "ASTON" from init, with the official driver/firmware
and vdr, I get this when switching to an encripted channel:
Jul 28 14:12:50 desktop kernel: dvb0: AV7111 - firm f0240009, rtsl
b0250018, vid 71010068, app 00012503
Jul 28 14:12:52 desktop kernel: dvb: 1 dvb(s) found!
.......
Jul 28 14:14:17 desktop vdr[29946]: switching to channel 9
Jul 28 14:14:29 desktop kernel: dvb0: 0e 05 00 00 00 00
Jul 28 14:14:29 desktop kernel: dvb0: 0c 00 0c 08 2e 00 5e c5 00 00 ff
ff 2e 08 8f 84 00 00 00 90 00 00 00 00 2e 08 90 14 2e 00 de 33   . ^    
.           .   .  3

Since it is quite similar to what you get, I guess that the last part
would contain ASTON instead of ". ^     .           .   .  3", but it
doesn't, so I think that the problem is in the firmware (CAM and ARM
seem to talk in a different way)

In this case, could anybody update this firmware? The 'original' one,
that works under win, crashes.

Thank you


On Sun, 2002-07-28 at 12:53, Patrick GUENEAU wrote:
> I don't know how to help you.
> 
> It may be related to your card rev and/or CAM Card adaptor.
> 
> 
> You can try to keep driver loaded after first hex dump from dvb driver 
> (desktop kernel: dvb0: 0c 00 00 00 2e 00 5f ...).
> 
> When there is such string in my conf, ASTON message is generally coming 
> right after that.
> 
> BTW, did you see your cam using alternate driver ? did you try to change 
>   CAM slot ?
> 
> Sorry I don't have more ideas :-(
> 
> Regards,
> Patrick.
> 
> 
> 
> Antonino Sergi wrote:
> 
> > Sorry to bother you again.
> > I tried for more than an hour...nothing:
> > Jul 28 09:49:59 desktop kernel: dvb0: AV7111 - firm f0240009, rtsl
> > b0250018, vid 71010068, app 00012301
> > Jul 28 09:50:02 desktop kernel: dvb: 1 dvb(s) found!
> > Jul 28 09:50:32 desktop kernel: dvb: 1 dvb(s) released.
> > Jul 28 09:50:35 desktop kernel: dvb0: AV7111 - firm f0240009, rtsl
> > b0250018, vid 71010068, app 00012301
> > Jul 28 09:50:37 desktop kernel: dvb: 1 dvb(s) found!
> >  and so on.
> > 
> > I tried also with older firmware...nothing:
> > Jul 28 10:11:00 desktop kernel: dvb: 1 dvb(s) released.
> > Jul 28 10:11:03 desktop kernel: dvb0: AV7111 - firm f0240009, rtsl
> > b0250018, vid 71010068, app 00010002
> > Jul 28 10:11:05 desktop kernel: dvb: 1 dvb(s) found!
> > Jul 28 10:11:35 desktop kernel: dvb: 1 dvb(s) released.
> > Jul 28 10:11:38 desktop kernel: dvb0: AV7111 - firm f0240009, rtsl
> > b0250018, vid 71010068, app 00010002
> >  and so on.
> > 
> > I verified that dvb.c modification was really compiled by putting an
> > error there (and obviously removing it when done).
> > 
> > I also tried the alternate driver from linux-dvb.tv...something
> > happened, but it doesn't work(the application camenu doesn't receive any
> > answer from CAM):
> > Jul 28 07:50:27 desktop kernel: dvb0: AV7111 - firm f0240009, rtsl
> > b0250018, vid 71010068, app 00012301
> > Jul 28 07:50:29 desktop kernel: dvb0: 01 00 01 00 00 00
> > Jul 28 07:50:29 desktop kernel: dvb0: 01 00 02 00 00 00
> > Jul 28 07:50:29 desktop kernel: dvb0: 01 00 01 00 00 00
> > Jul 28 07:50:29 desktop kernel: dvb0: 01 00 02 00 00 00
> > Jul 28 07:50:31 desktop kernel: dvb: 1 dvb(s) found!
> > Jul 28 07:50:35 desktop kernel: dvb0: 0c 00 00 00 2e 00 5f 95 00 00 ff
> > ff 2e 08 8e 60 00 00 00 90 00 00 00 00 2e 08 8e f0 2e 00 df 2f   . _    
> > .  `        .   .  /
> > Jul 28 07:53:55 desktop kernel: dvb: 1 dvb(s) released.
> > and most likely the same when I tried to put part of that source
> > (relevant to CI) in the official driver.
> > 
> > I have no more idea. I tried all the firmware version I found, and all
> > the combinations (not sure but almost).
> > 
> > Do you have any suggestion? Which firmware do you use?
> > 
> > Thank you
> > 
> > On Sat, 2002-07-27 at 21:31, Patrick GUENEAU wrote:
> > 
> >>Hi Antonio,
> >>
> >>Yes my ASTON CAM v1.05 is working.
> >>
> >>I am using an old Rev 1.3 Hauppauge DVB-S card.
> >>
> >>
> >>DVB driver is version CVS from April 1. I had to change code in dvb.c
> >>around line 1056 to enable debug messages in /var/log/messages.
> >>
> >>something like :
> >>
> >>******************************
> >>
> >>         case DATA_COMMON_INTERFACE:
> >>                 CI_handle(dvb, (u8 *)dvb->debi_virt, dvb->debilen);
> >>#if 1
> >>         {
> >>                 int i;
> >>
> >>                 printk("dvb%d: ", dvb->num);
> >>                 printk("%02x ", *(u8 *)dvb->debi_virt);
> >>                 printk("%02x ", *(1+(u8 *)dvb->debi_virt));
> >>                 for (i=2; i<dvb->debilen; i++)
> >>                   printk("%02x ", (*(i+(unsigned char *)dvb->debi_virt)));
> >>                 for (i=2; i<dvb->debilen; i++)
> >>                   printk("%c", chtrans(*(i+(unsigned char 
> >>*)dvb->debi_virt)));
> >>                 printk("\n");
> >>         }
> >>#endif
> >>
> >>********************************
> >>
> >>my code is looping loading/unloading driver until ASTON is chown in 
> >>/var/log/messages.
> >>
> >>If your CAM is detected you should see in /var/log/messages :
> >>
> >>*****************************************************************
> >>
> >>Jul 22 20:34:57 patman kernel: dvb: 1 dvb(s) released.
> >>Jul 22 20:35:00 patman kernel: dvb0: AV7111 - firm f0240009, rtsl 
> >>b0250018, vid 71010068, app 00012301
> >>Jul 22 20:35:01 patman kernel: dvb: 1 dvb(s) found!
> >>Jul 22 20:35:31 patman kernel: dvb: 1 dvb(s) released.
> >>Jul 22 20:35:33 patman kernel: dvb0: AV7111 - firm f0240009, rtsl 
> >>b0250018, vid 71010068, app 00012301
> >>Jul 22 20:35:34 patman kernel: dvb: 1 dvb(s) found!
> >>Jul 22 20:35:35 patman kernel: dvb0: 01 01 01 00 00 00 00 00 00 00 00 00 
> >>00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
> >>
> >>Jul 22 20:35:43 patman kernel: dvb0: 01 02 01 00 41 53 54 4f 4e 00 00 
> >>ASTON
> >>Jul 22 20:35:46 patman kernel: dvb0: 0e 04 30 00 41 53 0 AS
> >>Jul 22 20:36:25 patman kernel: dvb0: 0e 00 41 00 00 00 A
> >>Jul 22 20:36:25 patman kernel: dvb0: 0c 00 3c 00 2e 00 5f 09 00 00 ff ff 
> >>2e 08 8e 58 00 00 00 90 00 00 00 00 2e 08 8e e8 2e 00 de a3 < . _
> >>
> >>
> >>**************************************************************
> >>
> >>My shell script is here :
> >>
> >>**************************************************************
> >>
> >>#/bin/bash
> >>#
> >>#
> >>cd /home/dvb/DVB/driver
> >>rmmod dvb
> >>make insmod
> >>sleep 5
> >>#
> >>#
> >>tail -8 /var/log/messages | grep ASTON > /dev/null
> >>ret=$?
> >>while [ $ret -ne 0 ] ; do
> >>  rmmod dvb
> >>  insmod dvb.o init_chan=2 pids_off=0
> >># sleep 15
> >>  sleep 30
> >>#/home/dvb/bin/szap 'C+'
> >>  tail -8 /var/log/messages | grep ASTON > /dev/null
> >>  ret=$?
> >>done
> >>
> >>
> >>**************************************************************
> >>
> >>
> >>
> >>I don't if someone succeeded with your Board rev.
> >>Be patient when doing these tests. Murphy's law will make your first 
> >>trials the longest one you will ever find (sometimes it has been looping 
> >>for more than 10 minutes).
> >>
> >>
> >>Hope this helps.
> >>
> >>Regards,
> >>Patrick.
> >>
> 
> 
-- 
                                    Antonino Sergi


-------------------------------------------------------------
La strenua predilezione umana per l'irrilevante e' il peggior 
      nemico della nostra specie!

The tireless human fondness for unremarkable things is the
      worst enemy of our species! 

                                    Antonino Sergi
-------------------------------------------------------------



-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index