Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread Georg Acher
On Fri, Feb 02, 2007 at 07:58:27AM +0200, Tomi Orava wrote: Uh, I did not mean to imply anything about your drivers license. I more or less meant that the driver in ReelBox-repo is for an unknown card using the TDA10023 frontend which might not be 1:1 compatible with Terratec and/or Satelco

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread Tomi Orava
Hi, It seems that Reelbox (http://www.reel-multimedia.co.uk/reelbox-software.html) does indeed contain some sort of GPL-driver for TDA10023. I checked out the ReelBox ... Some sort? It's GPL. The reason why it is stil based on the DVB-API of 2.6.12 is that there were too many API changes

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread e9hack
Tomi Orava wrote: Maybe the parallel data output configuration is wrong and the data is latched at the wrong edge. The value is in the inittab, adress 0x12. The clock polarity is bit 0, so a change to 0xa1 would be worth a try. I changed the inittab line: 0x12,0xff,0xa0, // INTP1

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread Tomi Orava
Hi Hartmut, I changed the inittab line: 0x12,0xff,0xa0, // INTP1 POCLKP=1 FEL=1 MFS=0 to 0x12,0xff,0xa1, // INTP1 POCLKP=1 FEL=1 MFS=0 but without success. This configuration is overwritten in budget-av.c. Changing this value in the init-tab makes no sense. Ok, this is good to

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread Tomi Orava
Hi Hartmut, I changed the inittab line: 0x12,0xff,0xa0, // INTP1 POCLKP=1 FEL=1 MFS=0 to 0x12,0xff,0xa1, // INTP1 POCLKP=1 FEL=1 MFS=0 but without success. This configuration is overwritten in budget-av.c. Changing this value in the init-tab makes no sense. By reading the

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread e9hack
Tomi Orava wrote: + state-reg0 = tda10023_inittab[0]; // 0x73; // FIXME!!! I've change this value to the old one from the tda10021 driver. Using of tda10023_inttab[0] in this way is wrong, because the format of the inittab has changed. Ok, I'll try to check it out as

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread e9hack
Tomi Orava wrote: I changed the inittab line: 0x12,0xff,0xa0, // INTP1 POCLKP=1 FEL=1 MFS=0 to 0x12,0xff,0xa1, // INTP1 POCLKP=1 FEL=1 MFS=0 but without success. This configuration is overwritten in budget-av.c. Changing this value in the init-tab makes no sense. By

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread Juergen Hornung
Hi Hartmut, Ok, I'll try to check it out as well. The thing was that with your modifications the driver did not work with Satelco at all, while using the original (ReelBox) values allowed me to get a lock. Do you have more information about the format change ? I'm trying to parse the

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread Tomi Orava
Hi, I'm trying to parse the initab to get the correct value for reg0. It seems, that the same problem exist in lock_tuner/unlock_tuner. I add also some parts of your patch. I will publish the modified patch on http://www.vdr-portal.de/board/thread.php?threadid=60227. I cannot do any

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-02 Thread e9hack
Tomi Orava wrote: I tested your latest patch without success. However, I'm able to say that if you modify philips_cu1216_mk3_tuner_set_params() with Satelco Easywatch mk3: buf[2] = 0xce; -- buf[2] = 0xc6; and buf[4] = 0xde; -- buf[4] = 0xce; I loose the ability to get a tuner lock at all

[linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-01 Thread Juergen Hornung
I bought a new Terratec Cinergy 1200 DVB-C card for integration into my Debian system. lspci -vnn told me following about the card: 00:0c.0 Multimedia controller [0480]: Philips Semiconductors SAA7146 [1131:7146] (rev 01) Subsystem: TERRATEC Electronic GmbH Unknown device [153b:1176]

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-01 Thread Thomas Kaiser
Juergen Hornung wrote: I bought a new Terratec Cinergy 1200 DVB-C card for integration into my Debian system. lspci -vnn told me following about the card: 00:0c.0 Multimedia controller [0480]: Philips Semiconductors SAA7146 [1131:7146] (rev 01) Subsystem: TERRATEC Electronic GmbH

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-01 Thread Juergen Hornung
00:0c.0 Multimedia controller [0480]: Philips Semiconductors SAA7146 [1131:7146] (rev 01) Subsystem: TERRATEC Electronic GmbH Unknown device [153b:1176] I bought the same card about 1 year ago and the card is

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-01 Thread Tomi Orava
On Thu, Feb 01, 2007 at 06:09:27PM +0100, Thomas Kaiser wrote: Juergen Hornung wrote: I bought a new Terratec Cinergy 1200 DVB-C card for integration into my Debian system. lspci -vnn told me following about the card: 00:0c.0 Multimedia controller [0480]: Philips Semiconductors SAA7146

Re: [linux-dvb] Terratec Cinergy 1200 DVB-C - Unknown Device

2007-02-01 Thread Georg Acher
On Fri, Feb 02, 2007 at 01:06:31AM +0200, Tomi Orava wrote: It seems that Reelbox (http://www.reel-multimedia.co.uk/reelbox-software.html) does indeed contain some sort of GPL-driver for TDA10023. I checked out the ReelBox ... Some sort? It's GPL. The reason why it is stil based on the