Re: [PATCH 0/5] Digital Devices PCIe bridge update to 0.9.15a

2014-09-23 Thread Guy Martin
On 2014-08-02 05:48, Antti Palosaari wrote: Tree for testing is here: http://git.linuxtv.org/cgit.cgi/anttip/media_tree.git/log/?h=digitaldevices Hi Antti, I tried your digitaldevices branch but it does not work for me. Using w_scan, I'm not able to find any DVB-C transponder. The very

Status of the ddbridge driver update

2014-07-07 Thread Guy Martin
Hi Maik, What is the current status of the ddbridge driver update ? Are you still working on it ? I'm not seeing any update since November 2013. Do you have an updated version of what you sent last ? I'd like to continue your work if you cannot work on this anymore. Regards, Guy -- To

Re: Doing a v4l-utils-1.0.0 release

2013-07-25 Thread Guy Martin
Hi Gregor, On 2013-07-25 14:36, Gregor Jasny wrote: I saw your patches were merged to v4l-utils. Is there anything else you'd like to have included in a v4l-utils 1.0.0 release? Nope, that's all I wanted to have for this release. Next thing will be to work on better diseqc support but it can

[PATCH v2 1/6] libdvbv5: Remove buggy parsing of extra DTV_foo parameters

2013-06-18 Thread Guy Martin
The parsing of those extra parameters is buggy and completely useless since they are parsed individually later on in the code. Signed-off-by: Guy Martin gms...@tuxicoman.be --- lib/libdvbv5/dvb-file.c | 25 - 1 file changed, 25 deletions(-) diff --git a/lib/libdvbv5/dvb

[PATCH 3/6] libdvbv5: Export dvb_fe_is_satellite()

2013-06-18 Thread Guy Martin
This patch makes the function dvb_fe_is_satellite() availble from libdvbv5. This function is simple but yet very handful to have around. Signed-off-by: Guy Martin gms...@tuxicoman.be --- lib/include/dvb-fe.h | 1 + lib/libdvbv5/dvb-fe.c | 14 +++--- 2 files changed, 8 insertions(+), 7

[PATCH 4/6] libdvbv5: Fix satellite handling and apply polarization parameter to the frontend

2013-06-18 Thread Guy Martin
Apply polarization parameters even if a satellite number is not provided. This allow proper setup of the tone and voltage. Signed-off-by: Guy Martin gms...@tuxicoman.be --- lib/include/dvb-fe.h | 1 - lib/libdvbv5/dvb-sat.c| 57 --- lib

[PATCH 6/6] dvbv5-zap: Parse the LNB from the channel file

2013-06-18 Thread Guy Martin
Parsing the LNB needs to be done for proper tuning. Signed-off-by: Guy Martin gms...@tuxicoman.be --- utils/dvb/dvbv5-zap.c | 9 + 1 file changed, 9 insertions(+) diff --git a/utils/dvb/dvbv5-zap.c b/utils/dvb/dvbv5-zap.c index c84cf70..d6c1152 100644 --- a/utils/dvb/dvbv5-zap.c +++ b

[PATCH 2/6] libdvbv5: Add parsing of POLARIZATION

2013-06-18 Thread Guy Martin
This patch add parsing support for the POLARIZATION parameter for the DVBv5 file format. Signed-off-by: Guy Martin gms...@tuxicoman.be --- lib/include/dvb-file.h | 1 - lib/libdvbv5/dvb-file.c | 65 ++--- 2 files changed, 29 insertions(+), 37

[PATCH 5/6] libdvbv5: Use a temporary copy of the dvb parameters when tuning

2013-06-18 Thread Guy Martin
the frequency from the parms and write it to the channel file. Signed-off-by: Guy Martin gms...@tuxicoman.be --- lib/include/dvb-sat.h | 1 - lib/libdvbv5/dvb-fe.c | 71 ++ lib/libdvbv5/dvb-sat.c | 11 3 files changed, 31 insertions(+), 52 deletions

[PATCH v2 0/6] v4l-utils: v4l-utils: Fix satellite support in dvbv5-{scan,zap} tools

2013-06-18 Thread Guy Martin
Hi all, This set of patch fix sat support for dvbv5 libs and utils. In this set, a different approach is used. The polarization parameter is stored in the DTV_POLARIZATION property. Guy Guy Martin (6): libdvbv5: Remove buggy parsing of extra DTV_foo parameters libdvbv5: Add parsing

Re: Doing a v4l-utils-1.0.0 release

2013-06-15 Thread Guy Martin
On Fri, 14 Jun 2013 10:34:04 -0300 Mauro Carvalho Chehab mche...@redhat.com wrote: Em Fri, 14 Jun 2013 09:15:02 +0200 Hans de Goede hdego...@redhat.com escreveu: Hi All, IIRC the 0.9.x series were meant as development releases leading up to a new stable 1.0.0 release. Lately there

[PATCH 2/5] libdvbv5: Add parsing of POLARIZATION

2013-05-14 Thread Guy Martin
This patch add parsing support for the POLARIZATION parameter for the DVBv5 file format. Signed-off-by: Guy Martin gms...@tuxicoman.be diff --git a/lib/include/dvb-file.h b/lib/include/dvb-file.h index ea76080..2259844 100644 --- a/lib/include/dvb-file.h +++ b/lib/include/dvb-file.h @@ -35,7

[PATCH 4/5] libdvbv5: Apply polarization parameters to the frontend

2013-05-14 Thread Guy Martin
structures in dvb-v5-std.c. Signed-off-by: Guy Martin gms...@tuxicoman.be diff --git a/lib/include/dvb-fe.h b/lib/include/dvb-fe.h index 7352218..571d4ac 100644 --- a/lib/include/dvb-fe.h +++ b/lib/include/dvb-fe.h @@ -104,7 +104,7 @@ struct dvb_v5_fe_parms { unsigned

[PATCH 0/5] v4l-utils: Fix satellite support in dvbv5-{scan,zap} tools

2013-05-14 Thread Guy Martin
support for dvbv5-scan. Please disregard this previous patch. Guy Guy Martin (5): libdvbv5: Remove buggy parsing of extra DTV_foo properties libdvbv5: Add parsing of POLARIZATION libdvbv5: Export dvb_fe_is_satellite() libdvbv5: Apply polarization parameters to the frontend dvbv5-zap

[PATCH 1/5] libdvbv5: Remove buggy parsing of extra DTV_foo properties

2013-05-14 Thread Guy Martin
The parsing of those extra parameters is buggy and completely useless since they are parsed individually later on in the code. Signed-off-by: Guy Martin gms...@tuxicoman.be diff --git a/lib/libdvbv5/dvb-file.c b/lib/libdvbv5/dvb-file.c index d8d583c..aa42a37 100644 --- a/lib/libdvbv5/dvb-file.c

[PATCH 3/5] libdvbv5: Export dvb_fe_is_satellite()

2013-05-14 Thread Guy Martin
This patch makes the function dvb_fe_is_satellite() availble from libdvbv5. This function is simple but yet very handful to have around. Signed-off-by: Guy Martin gms...@tuxicoman.be diff --git a/lib/include/dvb-fe.h b/lib/include/dvb-fe.h index d725a42..7352218 100644 --- a/lib/include/dvb

[PATCH 5/5] dvbv5-zap: Copy satellite parameters before tuning dvbv5-scan: Likewise

2013-05-14 Thread Guy Martin
Copy satellite parameters to the frontend params. Since an LNB can be specified in the channel/tuning file, set it correctly as well. Signed-off-by: Guy Martin gms...@tuxicoman.be diff --git a/utils/dvb/dvbv5-scan.c b/utils/dvb/dvbv5-scan.c index 9a29b34..fa236fc 100644 --- a/utils/dvb/dvbv5

[PATCH] v4l-utils: Fix POLARIZATION support for dvbv5-scan

2013-05-03 Thread Guy Martin
as well as struct dvb_entry changes which might require a bump in library version. Tested with DVB-S and DVB-S2. Support for POLARIZATION is not working yet with dvbv5-zap and will come in a later patch. Regards, Guy dvbv5-scan: Add support for POLARIZATION setting Signed-off-by: Guy Martin gms

[PATCH] stv090x: set status bits when there is no lock

2011-06-01 Thread Guy Martin
Currently, the stv090x driver only set the status bits to SCVYL when there is a lock. This patch set the right bits even if there is no lock. Signed-off-by: Guy Martin gms...@tuxicoman.be -- drivers/media/dvb/frontends/stv090x.c | 35 ++-- 1 files changed, 15

STV6110 FE_READ_STATUS implementation

2011-05-24 Thread Guy Martin
Hi Manu, I'm currently writing an application that needs to know the detailed frontend status when there is no lock. As far as I can see from the sources, the code will only set the right status when there is a lock in stv6110x_get_status(). Does the STV6110 supports reporting of signal,

Re: STV090x FE_READ_STATUS implementation

2011-05-24 Thread Guy Martin
On Tue, 24 May 2011 19:47:17 +0200 Sébastien RAILLARD (COEXSI) s...@coexsi.fr wrote: Does the STV6110 supports reporting of signal, carrier, viterbi and sync ? I've done some tests with the CineS2, that is using the STV6110A as the tuner and the STV0903 as the demodulator. The

Re: STV090x FE_READ_STATUS implementation

2011-05-24 Thread Guy Martin
On Tue, 24 May 2011 21:05:33 +0200 Sébastien RAILLARD (COEXSI) s...@coexsi.fr wrote: In my case, the STV0903 is reporting the five following states : SCVYL. Indeed, after some more troubleshooting, I found out that the problem is not in the STV6110 but in the STV090X code. The

[PATCH] Disable dynamic current limit for ttpci budget cards

2011-05-21 Thread Guy Martin
avoid issues with rotors and DiSEqC switches which might require a higher current for a short period when powered on. Signed-off-by: Guy Martin gms...@tuxicoman.be -- drivers/media/dvb/ttpci/budget.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/dvb/ttpci

Re: Well supported USB DVB-C device?

2011-03-10 Thread Guy Martin
On Mon, 28 Feb 2011 02:28:37 +0200 Antti Palosaari cr...@iki.fi wrote: I am not sure which is status of TT CT-3650, it could be other one which is working. The CT-3650 works well. I belive everything works (CI, IR) but DVB-T is not yet implemented on that one. HTH, Guy -- To unsubscribe

Re: Simultaneous recordings from one frontend

2011-03-09 Thread Guy Martin
Hi Pascal, I've written a very small program that does just that : https://svn.tuxicoman.be/listing.php?repname=dvbsplit It's a quick hack, there is probably a better way to do this but at least it works :) To get the sources : svn checkout https://svn.tuxicoman.be/svn/dvbsplit/trunk dvbsplit.

Re: Status of the patches under review (85 patches) and some misc notes about the devel procedures

2010-05-27 Thread Guy Martin
Hi Mauro, Sorry for the delay, I was abroad. Let me detail the issue a bit more. In budget.c, the the frontend is attached this way : budget-dvb_frontend = dvb_attach(stv090x_attach, tt1600_stv090x_config, budget-i2c_adap, STV090x_DEMODULATOR_0); This means that the tt1600_stv090x_config

Re: [PATCH] stv6110x Fix kernel null pointer deref when plugging two TT s2-1600

2010-05-07 Thread Guy Martin
when plugging two of them in the same box. Check for fe-tuner_priv to be set when stv6110x_sleep() is called. Signed-off-by : Guy Martin gms...@tuxicoman.be Regards, Guy diff -r 4a8d6d981f07 linux/drivers/media/dvb/frontends/stv6110x.c --- a/linux/drivers/media/dvb/frontends/stv6110x.c Wed May 05

[PATCH] TT CT-3650 DVB-C support

2010-05-07 Thread Guy Martin
Hi linux-media, Add support for the DVB-C frontend of the TT CT-3650. DVB-T fe, CI and IR are not implemented. Signed-off-by: Guy Martin gms...@tuxicoman.be Regards, Guydiff -r 4a8d6d981f07 linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h --- a/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h

Re: [PATCH v2] stv6110x Fix kernel null pointer deref when plugging two TT s2-1600

2010-05-07 Thread Guy Martin
Hi Mauro, Seems that I've sent the wrong patch. It contained additional things which are irrelevant. Attached the correct one. Signed-off-by : Guy Martin gms...@tuxicoman.be Regards, Guy On Fri, 7 May 2010 09:05:15 +0200 Guy Martin gms...@tuxicoman.be wrote: Hi Mauro, This fix seem

Re: [PATCH] TT S2-1600 allow more current for diseqc

2010-04-28 Thread Guy Martin
Hi Andre, On Wed, 28 Apr 2010 14:29:10 +0200 André Weidemann andre.weidem...@web.de wrote: How come there is such a high current drain to drive the switch plus the LNBs? From what I understand, the switch should only power one LNB at a time. Usually the switch plus the LNB should not drain

Re: Xawtv sparc 64bit fix

2010-04-26 Thread Guy Martin
Hi Mauro, Thanks for the feedback. Here is the fixed version. Cheers, Guy On Sun, 25 Apr 2010 13:55:44 -0300 Mauro Carvalho Chehab mche...@redhat.com wrote: Guy Martin wrote: Hi, Here is an old patch of mine which I tried to submit in 2006 but never got it. I didn't really know

Xawtv sparc 64bit fix

2010-04-23 Thread Guy Martin
a char and then a 64bit integer and then substract the pointer of the 64bit int to the one of the char. This fix v4l-info doing a Bus Error on sparc with structs containing 64 bit integer following a non 64bit field aligned on a 8 byte boundary like v4l2_standard. Signed-off-by: Guy Martin gms

[PATCH] stv090x Fix kernel oops when plugging two cards

2010-04-11 Thread Guy Martin
-tuner_priv to be set, validating that a tuner has been attached to the frontend. This has been introduced in commit 5ff2bc2dc92c on linux-tv's v4l-dvb mercurial. Signed-off-by : Guy Martin gms...@tuxicoman.be For reference, here is the null pointer deref : [ 96.521023] saa7146: register extension

[PATCH] TT S2-1600 allow more current for diseqc

2010-04-11 Thread Guy Martin
Hi linux-media, The following patch increases the current limit for the isl6423 chip on the TT S2-1600 card. This allows DiSEqC to work with more complex and current demanding configurations. Signed-off-by: Guy Martin gms...@tuxicoman.be Regards, Guydiff -r 7c0b887911cf linux/drivers/media

Re: [linux-dvb] What is the status of the driver TT CT-3650

2009-11-09 Thread Guy Martin
Hanno, I've been working on having the CT-3650 supported however I didn't go very farther than having the dvb-c frontend to work. Nothing else works : no CI, no DVB-T, no IR. I've attached a patch which is working for me. Again, only the dvb-c interface works. Also this patch should definitely