#linuxtv 2020-06-10,Wed

↑back Search ←Prev date Next date→ Show only urls(Click on time to select a line by its url)

WhoWhatWhen
marc|gonzalezmchehab: syoung: b-rad: hello mates :-)
Soooo, I have a question about my beloved si2168 driver upstream
The HW is able to scan terrestrial frequencies in a mode where it scans for both DVB-T and DVB-T2 *at the same time*
However, the driver does not use that feature at the moment... I'd like to add it, but I'm not sure about the API
Typically, userspace would call at some point indirectly call si2168_set_frontend() with c->delivery_system set to either SYS_DVBT or SYS_DVBT2
It might not expect the demod to scan for both?
Should a new delivery_system type be declared, maybe DVB-T-ALL or some such?
[09:28]
......................................... (idle for 3h21mn)
mchehabmarc|gonzalez: I suspect b-rad_ might have missed your question [12:53]
marc|gonzalezmchehab: What do you mean "missed my question" ? [12:53]
mchehababout DVB-T2 [12:53]
marc|gonzalezon the mailing list or here? [12:53]
mchehabI mean, he just loggged as b-rad_
here
[12:54]
marc|gonzalezah I see, I highlighted b-rad, but he's now b-rad_ ... [12:54]
mchehabanyway, that's indeed a good point... I'm not sure how drivers currently handle DVB-T x DVB-T2 scanning
I guess some drivers just accept DVB-T as part of a DVB-T2 scan, while others don't
s/scan/tuning/
[12:54]
marc|gonzalezmchehab: I'm looking at a user-space tool that's supposed to do "everything" : https://github.com/mighty-p/t2scan/
I have spent some time studying the si2168 data sheet and I see that some HW features are unused in the Linux driver
[12:55]
mchehabah, a variant of w_scan [12:56]
marc|gonzalezI'm wondering how much is due to the API... [12:56]
mchehabyeah, probably some things are due to the API
Btw, some Sony chipsets even have a way to do blind scans
which should be faster than doing it via software
[12:58]
marc|gonzalez"blind scan" would mean: find everything on a given frequency interval? [12:59]
mchehabblind scan I mean scan without needing a file
(like w_scan and this t2scan tool)
[13:00]
marc|gonzalezI'm not really clear about low-level stuff between tuner and demod and the terrestrial parameters like bandwidth, FFT size, etc [13:00]
mchehabfor DVB-T/T2, this is not that hard, but this is a lot harder for DVB-S/S2
a blind scan with DVB-S/S2 takes hours
[13:00]
marc|gonzalezI don't know how much MUST be given and not guessed [13:01]
mchehabwith those Sony chiptets, it happens in minuts [13:01]
marc|gonzalezWere they using a SONY-made demod? [13:01]
mchehabCXD drivers
the feat is not there, but one develper who upstreamed the driver (not the official one) did some tests with such feat
[13:01]
marc|gonzalezinteresting... My task is to add support for DVB-T2 and not make scanning time worse. Ideally even optimize it... [13:02]
mchehabI was hoping that he would be trying to push it
IMHO, the best would be to add a feature like:
seek for the next available channel starting from freq "foo"
[13:03]
marc|gonzalezhow wide of a step though? [13:04]
mchehabsomething like that would be generic enough to be implemented at driver level, on devices that would support something like that
marc|gonzalez: for DVB-T/T2 this is not an issue... as frequencies are equally spaced within VHF or UHF range
[13:04]
marc|gonzalezIn my use-case, I have a list of 7 frequencies where there is something, I must determine if it's T ot T2 [13:05]
mchehabIn practice, I guess the same applies for DVB-C, but this may not be the case
for DVB-S/S2, the channel position is actually a nightmare
that's where a hardware-based scan could benefit
well, 7 frequencies is not too much
you could try first T2, falling back to T if T2 doesn't work
[13:05]
marc|gonzalezmchehab: that would double the scan time [13:08]
mchehab(yet, a proper scan kernel feature could improve it)
marc|gonzalez: it won't double... probably most channels are T2. It will only double the time for T channels
[13:08]
marc|gonzalezIn France today, 0 channels are T2 [13:09]
mchehab(and the number of T channels should reduce as time goes by) [13:09]
marc|gonzalezit's expected for 2024 only [13:09]
mchehaboh, really?
didn't know that!
[13:09]
marc|gonzalezI think I'm going to hack the driver and keep the dirty code to myself...
Unless we can get some discussion going on the list for a clean way forward with b-rad_ and yourself
[13:10]
........ (idle for 38mn)
mchehabmarc|gonzalez: as I said, the better would be to add a scan function
we have an API for that at V4L2 side
VIDIOC_S_HW_FREQ_SEEK
IMO, we should implement something similar at the Kernel side
[13:49]
marc|gonzalezmchehab: OK, I might look into that once I figure out the HW bits [13:51]
mchehabfor DVB [13:51]
marc|gonzalezoh there's nothing right now? [13:51]
mchehabwell, there's just for V4L2
implementing it for DVB shouldn't be hard
[13:51]
marc|gonzalezmchehab: I'm not familiar with the distinction V4L2 vs DVB ? [13:52]
mchehabtwo different APIs [13:52]
marc|gonzalezI mean, in the end, it has to hit the driver, right? [13:52]
mchehabone for analog TV, cameras, radio, etc
yes, both reach the same drivers in the end
[13:52]
marc|gonzalezSo they would just call the set_frontend() callback? [13:53]
mchehabfor analog, there are a bunch of other callbacks [13:53]
marc|gonzalezBecause right now, the si2168 set_frontend does not do the right thing, for broad scanning [13:53]
mchehabin the case of VIDIOC_S_HW_FREQ_SEEK, it uses a separate function
separate callback, I mean
(few drivers actually implement it at V4L2 side)
as you may see, the V4L2 API sets:
low freq, high freq, step, and if it will seek channels from the lowest to the highest fequency (or the other way)
(it also has two V4L2 specific parameters - not relevant for DVB)
for DVB, we could just add a few extra properties, like
DTV_SEEK_STEP, DTV_SEEK_LOW_FREQ, DTV_SEEK_HIGH_FREQ, DTV_SEEK_START_FROM_LOW
the core could auto-fill DTV_SEEK_LOW_FREQ, DTV_SEEK_HIGH_FREQ with some default (based on frontend low/high freq)
[13:53]
marc|gonzalezOK thanks for the pointers, I will try to play with the HW, and report back
mchehab: what about parameters like QAM256 or 8k can they be automagically detected?
Or do we need to cycle through all the possibilities?
Or it depends on the HW?
Like the Sony demod that can do everything in a single HW step
[13:59]
mchehabwell, IMO, if the hardware is capable of auto-detectiong, those shoulnd't be passed
the hardware should be set to autodetect and then report what it was detected
it the hardware doesn't support that, well, it should report an error, and userspace will use the normal scan mode
[14:04]
marc|gonzalezmchehab: in a hypothetical SCAN API function, you mean? [14:05]
mchehabyeah, that's what I'm talking
we should implement it *only* if the hardware is capable of auto-detecting the tuning parameters
most of modern ones can
hmm... there is a catch, though!
DVB-T2 has one property that I'm not sure if this is detected
[14:05]
marc|gonzalezthe PLP thingy? [14:07]
mchehabyes [14:07]
marc|gonzalezno that is autodetected in si2168 I think [14:07]
mchehabOK
yeah, some devices can autodetect
[14:08]
marc|gonzalezat least the "strongest PLP" whatever that means
might not be deterministic!
depending on scan-time conditions
[14:08]
mchehabwell, maybe detecting one could be enough... not sure
I mean, maybe the NIT tables will contain info about other PLPs
and userspace could use that, together with the "legacy" way to detect the other PLPs
documenting it could be painful, though
we may need something special for PLP scanning
(same happens for DVB-S2, which has something equivalent to PLP
DTV_STREAM_ID
=============
Used on DVB-S2, DVB-T2 and ISDB-S.
in practice, I never saw more than one PLP being used at the same time
but there are some places where the default (PLP = 0) won't tune
[14:09]
marc|gonzaleztypically, these specs are written by people who love matroska-dolls with many levels of complexity, but in the end, it's rare for everything in the spec to be used, in my limited experience [14:13]
mchehabheh
anyway, need to go
ttyl
[14:14]
marc|gonzalezbye! [14:14]
........ (idle for 36mn)
b-radmarc|gonzalez, did you see my auto T/T2 patch that was rejected? [14:50]
marc|gonzalezb-rad: no I have not. Who rejected it? [14:50]
b-radit still exists in all of my built kernels
it was rejected because i had it as a module option to enable when desired and was told no no
since there was no core support like QAM_AUTO for DVBT_AUTO, i left it since i had no time
(i know qam_auto and dvbt_auto are not the same really)
[14:50]
marc|gonzalezb-rad: can you provide a link? [14:51]
b-radhttps://patchwork.kernel.org/patch/10744999/
i'm running low on things left to upstream though, so I was going to look into adding it
[14:52]
marc|gonzalezb-rad: wow that was a short discussion :) [14:53]
b-radwelcome to dvb
where you're lucky for a single review or comment at all
[14:53]
marc|gonzalezb-rad: I tried upstreaming something last year, and no one cared actually [14:54]
b-radc'est la vie [14:54]
marc|gonzalezsmirk [14:54]
b-radi still care because it's my job [14:54]
marc|gonzalezmakes sense
I care when it's an active task :)
I had a cool patch... I'd have to dig it up someday
"[RFC v2] DT-based tuner/demod init" it was :)
[14:54]
b-radyup i remember [14:57]
marc|gonzalezI was scratching on a limitation of the current DVB API
the current situation is a disgrace, with everyone embedding the init of a specific tuner in their demod driver
"disgrace" may be a bit strong :)
[14:57]
b-radit's a billion times better than the old dvb_attach abomination [14:58]
marc|gonzalezWow, I cannot imagine the mess that was before then :) [14:58]
b-radi won't even touch a lot of old drivers due to so many weird style choices [14:59]
marc|gonzalezwhere do you work? [15:00]
b-radeverything from excessive global variables to presumption of a single instance of a driver system wide
hauppauge
[15:00]
marc|gonzalezah yes, I have heard of them [15:00]
b-radyou'd probably know of pctv our old euro company [15:01]
marc|gonzalezAbout 20 years ago, I wanted to digitize my VHS tapes
then got lazy and figured "someone will do it better than me at some point"
I was planning on using hauppauge gear with connexant chipsets
also to sidestep the VHS copy protection nastiness
[15:01]
b-rada noble use case
well i gotta go get outside, but if you want to look around in dvb-core for ideas about t/t2 auto support feel free
i still get regular inquiries about why i don't upstream it, but alas there's just pieces missing in between
and that whole "time" thing
[15:04]
marc|gonzalezthanks! ttyl [15:07]
...... (idle for 26mn)
b-radi need to change my filter to leave a copy of list mails cc'd to me [15:33]
............. (idle for 1h2mn)
***_abbenormal has quit IRC (Ping timeout: 240 seconds) [16:35]
.............................................................. (idle for 5h9mn)
Muzer has quit IRC (Ping timeout: 260 seconds) [21:44]

↑back Search ←Prev date Next date→ Show only urls(Click on time to select a line by its url)