#linuxtv 2017-04-26,Wed

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

WhoWhatWhen
buxy81AtWorkyesterday night's experience: compiling a kernel driver module from scratch ain't easy.
i could not manage to place media_tree and media_build correctly
checked out like https://www.linuxtv.org/repo/ said
and then i tried multiple versions of https://www.linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4L-DVB_Device_Drivers
maybe i should start from scratch with the latter only?
[07:43]
............................. (idle for 2h22mn)
hi again. is there any way to see the channel log from web irc client? [10:09]
................. (idle for 1h21mn)
wow, compile has finished, modprobe-ing em28xx was successful. i'm so excited! :) but i have to wait to get home and try with the actual hardware... [11:30]
iivebuxy81AtWork: iirc the patch had tuner disabled, so it might not be able to get a program, without you recompiling again.
you said that you had opened your device, do you have a photo, have you written down the labels of the big chips?
[11:34]
buxy81AtWorkiive: now that i have the toolchain, i can recompile anytime, if needed.
the chips are marked EM2884, DRX3926, TDA18271
[11:43]
iiveit looks like tuner absent is used for other dongles that use same tda, and it is called from the init source code. [11:57]
buxy81AtWorkiive: i'm not really sure that i know what that means. if there's anything i should modify in the source code, please tell me. (the terratec h6 will be available to connect in about 6 hours from now.) [12:06]
iivethe same if is present in H5 code, so it might work just as well. [12:17]
buxy81AtWorki really really hope that it will work. (the device identifies itself as H5 MKII) [12:20]
......................................................... (idle for 4h41mn)
buxy81mchehab: SUCCESS! :)
thank you very much for this little patch!
here is the dmesg output: https://pastebin.com/WK3a95Lm
the next step would be some higher level dvb tests, or just smash it into tvheadend somehow.
[17:01]
.................... (idle for 1h35mn)
yahalI am using librelec on a Raspberry PI 3, with a Terratec H7 DVB-T/DVB-C USB-Box with external power supply and over vdr-osd gui it founds no channels and in dmesg I found the error: "drxk: Error -22 on get_lock_status" - Any idea how to fix this, DVB-Card seems to be correctly recognized. [18:40]
................. (idle for 1h22mn)
mchehabbuxy81: good news! [20:02]
buxy81is the dmesg log normal? [20:02]
mchehab[  489.934521] em28xx 1-1.5:1.0: The frontend of your DVB/ATSC card isn't supported yet
you likely need to modify em28xx-dvb too
probably an one line change is enough to include the new board model
if drx init is identical to HTC
the remaining lines at the log looks OK
right now you have:
case EM2884_BOARD_CINERGY_HTC_STICK:
[20:03]
buxy81checking... [20:06]
mchehabyou would need to add a new case below it, with the TERRATEC_H6 board name
(or below H5)
something like:
[20:06]
buxy81i also have a case EM3884_BOARD_TERRATEC_H5 [20:08]
mchehabcase EM2884_BOARD_TERRATEC_H5:
case EM2884_BOARD_TERRATEC_H6:
I've no idea what model is closer to the one you have
[20:08]
buxy81i'll check the net for a quick comparison
and decide where to insert the case H6 row
[20:09]
mchehabok, I checked at the code... [20:11]
buxy81weird. there are actually TWO htc sticks, one with and one without analog components [20:12]
mchehabthe difference between HTC, HTC_XS and H5 are the init sequences
see terratec_h5_init(), terratec_htc_stick_init() and terratec_htc_usb_xs_init()
the only way to be sure would be to get the GPIO sequence that the original driver does...
by either sniffing the USB commands from the original driver...
or looking at the .inf (with might contain something useful)
[20:12]
buxy81i'll try to get the .inf file first... [20:13]
mchehabbasically, GPIOs are pins inside em28xx that are used to control other devices
(GPIO is Generic Pin I/O)
each manufacturer can do whatever they want with those pins
[20:14]
buxy81whoa, i have a driver set. i can provide .inf files for terratec H6, H7, S7, T1, T3, T6. [20:15]
mchehabthey're typically used to power down/power up other chips...
and to reset chips
[20:15]
buxy81right. so we need the actual pinout [20:15]
mchehabyes [20:15]
buxy81well, searching for gpio in the inf file got:
; GPIO for AM DEMOD HKR,settings\OEMSettings,AMDEMOD,0x00010001,2 ; 2=GPIO2, 6=GPIO6
[20:16]
mchehabyou could get it from the hardware, if you have its circuit... [20:16]
buxy81damn that it's two lines [20:16]
mchehab(or if you're capable of discovering it by looking at the circuit lines) [20:16]
buxy81; GPIO for AM DEMOD
HKR,settings\OEMSettings,AMDEMOD,0x00010001,2 ; 2=GPIO2, 6=GPIO6
opening...
[20:16]
mchehabI don't have the em28xx pinup handy, but I guess you can get it from the internet
in the specific case of DVB, it is used to control DRX-K power/reset lines
and some lines at the tda18271 tuner
[20:17]
buxy81it's impossible to tell. there are TWO pcbs on each other like a sandwich. on one side is the em2884, the other pcb the other two chips... [20:18]
mchehab(typically: power, reset and AGC control)
yeah, getting it from the hardware is not trivial
[20:18]
buxy81there is a 22-pin connector between the two panels. ...and a 10-pin too.
can i do any harm with experimenting with the 3 init sequences as trial-and-error?
...or should i set up a windows usb sniffer instead...
[20:18]
mchehabtrial and error usually don't damage
sniffing is safer
[20:21]
buxy81i found this page https://www.linuxtv.org/wiki/index.php/Usbsnoop [20:21]
mchehabyou can even sniff using QEMU
yep, that's it
[20:21]
buxy81which do you prefer? [20:21]
mchehabwhatever works for you [20:22]
buxy81right. :) [20:22]
mchehabIn this specific case, we're insterested only on writes to registers 0x08 and 0x80 [20:22]
buxy81as i have a 64-bit system, it should be sniffusb. hope it works.
cannot download. site is down. searching for another mirror...
[20:22]
mchehabthe problem is that several those sniffers don't work with newer USB stacks
found on newer OSes
[20:23]
buxy81h6 is not a very new stick. i have win7
do you know this sw? http://desowin.org/usbpcap/tour.html
[20:24]
mchehabhttps://www.linuxtv.org/wiki/index.php/Bus_snooping/sniffing#Snooping_Procedures:
the above is the main link with regards to sniffing
I don't use win sniffers for a **long** time
[20:25]
cropeuse wireshark as a sniffer [20:25]
buxy81alright, np [20:25]
mchehabnowadays, I just run windows under a QEMU and I run a perl script I wrote
VM eventually crashes, but GPIO setting happen early at the code
[20:26]
buxy81(i thought wireshark is for tcp/ip stuff, but i'll give it a shot) [20:26]
mchehabnewer versions can sniff USB too [20:27]
buxy81aham [20:27]
mchehab(not sure if this is supported at its window version) [20:27]
cropei think wireshark is ~only one usb sniffer that works with new windows versions. usbsnoop supports only xp
free sniffer I mean, there is some commercial available too
[20:27]
mchehabcrope: good to know!
buxy81: if you succeed using it, perhaps you could consider updating bus sniffing pages at our wiki in order to help others with similar issues
[20:28]
buxy81okay. usbpcap wants to restart my pc, wireshark download is really slow. [20:30]
whew, i didn't know that h6 was so "rare" it is not supported yet. :/ but i'm happy to help now. :) [20:41]
..... (idle for 21mn)
hi, i'm back.
i've made a usbpcap binary file as i'm plugging in the h6 strick
and i have a wireshark that can open that log file
(and i've lost my irc history by rebooting)
[21:02]
mchehabI have an H6 stick here
but it is different from yours
on mine, eeprom is at I2C bus 0
very likely, the hardware vendor changed (again) the harware manufacturer (it is OEM)
[21:03]
buxy81yes, i already wanted to ask about your h6
my stick is made in taiwan
barcode 9301249975
i'm trying to follow that guide you showed me
there is no hex sequence like "40 02 00 00 ba 00 03 00"
[21:04]
mchehabthe better is to use a parser to filter it
there are some em28xx parsers at v4l-utils contrib/ dir
[21:08]
buxy81i'm new to wireshark... [21:09]
mchehabbut the capture should match the format the tool expects
(it is a perl script)
[21:09]
buxy81did not find a v4l-utils dir on my linux installation... [21:10]
mchehabgit.linuxtv.org [21:11]
buxy81got it. now to get the snoop file to the reach of the util...
winscp rulez
well i ran "parse_em28xx.pl terratec.pcap" and......nothing happened.
[21:14]
mchehabyou'll likely need to modify it
it is not prepared to handle wireshark's format
[21:16]
buxy81it's usbpcap's format
but i can save it using wireshark in several formats
for example, is "suse 6.3 tcpdump" supported?
or "redhat 6.1 tcpdump"?
[21:17]
mchehabmaybe you can parse the tcpdump format and feed the em28xx parser [21:23]
buxy81ehh, trying all tcpdump exports, but they're all binary. em28xx expects a hex list in ascii... [21:24]
mchehabparse_tcpdump_log.pl [21:26]
cropemchehab: that parser didnt know used payload. I tried it very recently for one windows sniff... [21:26]
buxy81oh :)
let's give it a try
"Can't locate Net/Pcap.pm in @INC (you may need to install the Net::Pcap module)"
[21:26]
mchehabyou need to install it
that's actually not really needed when just parsing, but I never cared to make it optional :-P
[21:28]
buxy81:D
i'll have to search that package for my distro
[21:28]
mchehab(that parse script actually can do the same as tcpdump)
Pcap.pm provides such functionality
[21:28]
buxy81Link type 249 ERROR: Link type is not USB at ./parse_tcpdump_log.pl line 603. [21:30]
mchehabno... just do something like: [21:30]
cropeyep. thats the same error I saw...
it does not know that link type. iirc it was 220 script knows
[21:30]
mchehabcat file.dump | ./parse_tcpdump_log.pl | ./em28xx/parse_em28xx_drxk.pl [21:31]
cropehttp://www.tcpdump.org/linktypes.html [21:32]
buxy81i get the same error
i'll try with a different wireshark export format
[21:32]
cropeLINKTYPE_USBPCAP vs. LINKTYPE_USB_LINUX_MMAPPED
I tested all the formats and it was same for all
[21:32]
mchehabah
yeah, I never used it with a windows-parsed stuff
[21:33]
buxy81err, i'm lost a bit. :) please tell me what i should do :) [21:34]
mchehabthe script handles one specific type of output... [21:34]
cropebuxy81: use wireshark gui to examine data [21:34]
mchehabwith is used by Linux TCP dump
apparently, wireshark on windows produce a different type of output
[21:34]
buxy81(perl scripts failed with suse and redhat style tcpdump files too) [21:34]
mchehabthe script assumes this specific type: LINKTYPE_USB_LINUX_MMAPPED
if wireshark produces a different format, the script won't recognize
[21:35]
buxy81okay, so i have wireshark. according to https://www.linuxtv.org/wiki/index.php/Bus_snooping/sniffing#Snooping_Procedures: i could not find hex values "40 02 00 00 ba 00 03 00" [21:35]
mchehabI guess it shouldn't be that hard to add a new type there, but you need to be a perl programmer [21:36]
buxy81but there are human-readable, parsed lines [21:36]
mchehab(I don't have any time to do that - at least not this week) [21:36]
cropewhat I did was I saved sniff to text format using wireshark and then made own dissector using python [21:37]
mchehabthat parser wants a real tcpdump binary output file
# Decode an USB header mapped frame. The frame is defined at libpcap as:
#
#typedef struct _usb_header_mmapped {
# u_int64_t id;
# u_int8_t event_type;
# u_int8_t transfer_type;
...
buxy81: yeah, crope solution works
[21:38]
buxy81wireshark could export a verbose, too-human-friendly text format, but not an ascii hex (at least, i did not find it yet) [21:39]
mchehabit would also work if you could convert the output of wireshark to this format:
000000000 ms 000000 ms (000127 us EP=80) 80 06 00 01 00 00 28 00 >>> 12 01 00 02 00 00 00 40 40 20 13 65 10 01 00 01 02 01
000000000 ms 000000 ms (000002 us EP=80) 80 06 00 01 00 00 28 00 >>> 12 01 00 02 09 00 00 40 6b 1d 02 00 06 02 03 02 01 01
000000006 ms 000005 ms (000239 us EP=80) c0 00 00 00 45 00 03 00 <<< 00 00 10
000001006 ms 001000 ms (000112 us EP=80) c0 00 00 00 45 00 03 00 <<< 00 00 10
the em28xx/parse_em28xx.pl actually ignores the timing information at the beginning...
parsing just:
80 06 00 01 00 00 28 00 >>> 12 01 00 02 00 00 00 40 40 20 13 65 10 01 00 01 02 01
[21:39]
buxy81yeah right. now i have to fight with Mr. Wireshark to export that stuff for me [21:40]
cropebuxy81: there is that kind of format:
126 0.405601 host 3.3.2 USB 39 URB_BULK out
0000 1b 00 20 e5 de 07 80 fa ff ff 80 f8 ff ff 09 00 .. .............
0010 00 03 00 03 00 02 03 0c 00 00 00 0b 00 00 28 01 ..............(.
0020 02 00 00 12 22 b3 ec ...."..
[21:41]
buxy81i see the hex stuff, but i could not batch export it to file :( [21:41]
cropebuxy81: export as "plain text" file
export packet dissections -> export as "plain text" file
[21:44]
buxy81Export Packet Dissections -> As Plain Text
oooooh
if i resize the export window
there are lots of options to tweak
[21:45]
cropecheck packet bytes [21:46]
buxy81ok now i have like
0000 1c 00 10 a0 aa 07 80 fa ff ff 00 00 00 00 0b 00 ................ 0010 00 04 00 01 00 00 02 08 00 00 00 00 80 06 00 01 ................
stupid multiline
anyway, you get it
let's feed it...
unknown magic in header, cannot parse this file, make sure it is pcap and not a pcapng (run file <filename> to find out) and then convert with wireshark. at ./parse_tcpdump_log.pl line 185.
oh
[21:46]
cropebuxy81: you have to make parser that converts it to format: "00:39 < mchehab> 000000000 ms 000000 ms (000127 us EP=80) 80 06 00 01 00 00 28 00 >>> 12 01 00 02 00 00 00 40 40 20 13 65 10 01 00 01 02 01"
or analyze bytes. it should not be hard to find gpios
[21:49]
buxy81maybe i was too strict on the export parameters
no luck yet. experimenting further...
[21:50]
guys, my hex dump does not have ">>>" anywhere. what am i doing wrong? [22:00]
mchehab>>> (or <<<) gives the direction: output or input
that is what the old usbsnoop tools used to produce
on USB, there are actually two packets...
one on each direction
they need to be merged, in order to understand what's really going on
[22:01]
buxy81hm, in this dump, the USB URB is also included as hex. there is an IRP information byte at 0x10 there is a direction byte 00 for FDO->PDO and 01 for PDO->FDO [22:05]
cropejust make simple comversion script [22:07]
buxy81maybe that's what i should do...... [22:09]
.... (idle for 17mn)
iivebuxy81: why don't you just give them the wireshark file... they can extend their tools :D [22:26]
buxy81iive: that's the easy way ...for me! :D
i could write a converter by myself, but i just cannot match the data fields of usbpcap and usbsnoop.
currently only the direction bit is sure for me :D
and packet data length
of course it's 4 bytes in one, and 2 bytes in the other, but that's minor
i don't understand "URB Request", "URB Value", "URB Index" in the context of the existing usbpcap data fields
i have like "URB Function", "URB transfer type", and "Control transfer stage" on the other side
[22:26]
anyway, it's 00:30 local time, i must leave and go sleep.
thanks everyone, will continue tomorrow!
[22:37]

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