[01:38] <merbanan> what tools should I use to test pid filter support when developing a driver ?
[04:08] *** book`_ has quit IRC (Ping timeout: 244 seconds)
[18:56] <merbanan> how do I trigger .read_signal_strength calls in a driver ?
[20:30] <crope> merbanan: calling some ioctl which is likely very near that callback name
[20:30] <merbanan> crope: are there any existing tools ?
[20:30] <crope> merbanan: but it is all legacy dvbv3 api - new dvbv5 api uses different call
[20:30] <crope> merbanan: tzap, czat, szap, femon
[20:31] <crope> dvbv5-zap does not use that old method
[20:31] <merbanan> ok
[20:33] <crope> good dvbv5 example is si2157 driver. and dvbv5-zap then shows signal strenght value
[20:34] <merbanan> crope: ok, I've restarted working on the astrometa stick
[20:36] <crope> merbanan: thats how pctv 292e reports http://pastebin.com/EJxu3mek
[20:36] <crope> as you can see also how pids are listed
[20:36] <crope> Lock   (0x1f) Signal= -59.00dBm C/N= 34.75dB
[20:36] <crope> signal and cnr
[20:37] <merbanan> ok, I implemented the old v3 api
[20:37] <merbanan> thought something would use it anyway
[20:38] <merbanan> crope: I have a working fix for the firmware loading issue and then I need to fix the pid filter
[20:38] <crope> signal strenght is calculated by tuner driver (from different agc gains). so it should really go there. demod could estimate it very poorly, only limited resolution from IF
[20:40] <merbanan> well for the nm88472 the agc (signal strenght) is just 2 8 bit regs
[20:41] <merbanan> crope: how did you test the pid filters code ?
[20:41] <merbanan> for dvbv5 that is
[21:13] <mchehab> croppe, dvbv5 tools use the old method if you tell it to do it
[21:13] <mchehab> crope: there's a command line fo rit
[21:14] <mchehab> s/fo rit/for it/
[21:14] <mchehab> Usage: dvbv5-zap [OPTION...]
[21:14] <mchehab>             <channel name> [or <frequency> if in monitor mode]
[21:14] <mchehab> DVB zap utility
[21:14] <mchehab>   -3, --dvbv3                Use DVBv3 only
[21:14] <mchehab> ...
[21:14] <mchehab> the option is there to test legacy drivers
[21:53] <crope> mchehab: ok, didnt noticed that earlier
[21:54] <crope> merbanan: which kind of fw loading fix?
[21:55] <merbanan> mchehab: does libdvdv5 filter the ts stream if the hardware doesn't have pid filter support
[21:55] <merbanan> crope: failure to load firmware
[21:55] <crope> merbanan: I assume those 2 agc registers are IF and RF AGC feedbacks
[21:56] <merbanan> something like that
[21:56] <crope> merbanan: does it still fail for some i2c error?
[21:57] <merbanan> mchehab: I patched dvb_set_pesfilter(fd, 0x2000, DMX_PES_OTHER to 0x1fff
[21:58] <crope> merbanan: I test pid filter just tuning to some channel and then looked stream contains only those pids
[21:58] <merbanan> I only got the 0x1fff pid but I never saw any calls in the driver to the pid functions
[21:58] <crope> tzap/dvbtraffic, dvbv5-zap --monitor
[21:59] <merbanan> crope: but I don't see any logs from the pid filter function
[21:59] <crope> pid 1fff is just for null padding stream
[21:59] <merbanan> I know
[21:59] <crope> merbanan: ok, you then dont use hw pid filters I think. just force hw pid filters
[21:59] <merbanan> I'm just not able to trigger my code
[21:59] <merbanan> or technically your code
[22:00] <crope> modprobe dvb_usb_v2 force_pid_filter_usage=1
[22:01] <merbanan> crope: I don't see any i2c errors, with a few exceptions
[22:01] <merbanan> when the rtl28xx powers down the rtl2832 pll's
[22:02] <merbanan> when loading the firmware
[22:02] <merbanan> I just added a retry on the firmware load and now I can reliably always load it on first tune
[22:03] <merbanan> is there a way to say that a certain adapter needs pid filters to work properly ?
[22:04] <crope> does it need?
[22:04] <crope> you could set DVB_USB_ADAP_NEED_PID_FILTERING
[22:06] <merbanan> well some guy reported that his qam256 muxes maxed out the usb bandwidth
[22:06] <merbanan> I have a 6-7Mbit 0x1fff pid on my network
[22:07] <crope> if whole qam256 mux is out of usb bw, then there must be very many devices streaming same time
[22:08] <crope> usb having no other devices streaming helps
[22:08] <merbanan> I guess that filtering away that pid takes down the bw to a working limit
[22:09] <merbanan> sorry I meant the bridge bw limit
[22:09] <merbanan> rtl28xx hardware limit
[22:09] <merbanan> I guess it is close to max dvb-t limit
[22:09] <crope> have you tested it?
[22:10] <crope> IIRC qam256 worked fine last time I tested it
[22:12] <merbanan> actually worked for me
[22:13] <merbanan> the report I got was from a user that tested it on windows where it worked
[22:13] <merbanan> but got dropouts under linux
[22:18] <crope> I suspect it is still some other issue
[22:18] <crope> I should test maximum possible bw using modulator to see if there is really some limit
[22:19] <merbanan> dvb-t2 has 50 Mbit/s
[22:20] <merbanan> might be for some of those modes
[23:36] <merbanan> yey got hits in the pid code