Turl changed the topic of #linux-sunxi to: Allwinner/sunxi /development discussion - did you try looking at our wiki? https://linux-sunxi.org - Don't ask to ask. Just ask and wait! - https://github.com/linux-sunxi/ - Logs at http://irclog.whitequark.org/linux-sunxi
lennyraposo1 has joined #linux-sunxi
lennyraposo has quit [Read error: Connection reset by peer]
apritzel has quit [Quit: Leaving.]
Da_Coynul has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
OverCR has quit [Quit: Leaving.]
MXfive has joined #linux-sunxi
kaspter has joined #linux-sunxi
<_mamalala> ha! who says one can't get a decent io output under linux with very little jitter ... if one just puts some effort into it: http://abload.de/img/ds1z_quickprint20boulb.png
MXfive has quit [Read error: Connection reset by peer]
kaspter has quit [Remote host closed the connection]
kaspter has joined #linux-sunxi
afaerber has quit [Quit: Ex-Chat]
orly_owl has joined #linux-sunxi
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
egbert has quit [Disconnected by services]
egbert has joined #linux-sunxi
MXfive has joined #linux-sunxi
jstein has quit [Remote host closed the connection]
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
pekka10 has quit [Ping timeout: 244 seconds]
MXfive has joined #linux-sunxi
ninolein has quit [Ping timeout: 258 seconds]
ninolein has joined #linux-sunxi
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cnxsoft has joined #linux-sunxi
curtis22 has quit [Quit: Leaving]
pg12 has quit [Ping timeout: 258 seconds]
pg12 has joined #linux-sunxi
_mamalala_ has joined #linux-sunxi
_mamalala has quit [Ping timeout: 240 seconds]
Putti has joined #linux-sunxi
Putti has quit [Ping timeout: 244 seconds]
petr has quit [Ping timeout: 244 seconds]
tsuggs has quit [Ping timeout: 265 seconds]
petr has joined #linux-sunxi
orly_owl has quit [Ping timeout: 244 seconds]
kaspter has quit [Ping timeout: 244 seconds]
orly_owl has joined #linux-sunxi
<topi`> _mamalala_: what frequency is that 39.049mhz?
<_mamalala_> topi`: it's kHz ... 39kHz
<topi`> yeah :)
<topi`> so not good enough to drive a MCU...
<_mamalala_> generated by a timer irq and gpio on a H3
<topi`> seems to be a pretty exact timer
<_mamalala_> but the frequency is not the point ... it#s about having little jitter
<topi`> is this affected by the variable latency of kernel task scheduling?
<_mamalala_> with moderate sysload it's possible to even get a somewhat stable stable 100kHz or more, with only the occasional jitter
<topi`> otoh, modern kernels have the NOHZ ticks, which is tickless
<_mamalala_> not anymore, i hacked the kernel ;)
<topi`> back in the day when I used to dabble with the kernel, there were no such thing and you got a timer interrupt 100 times per second.
<_mamalala_> yea, but they have a huge ovcerhead in the irq handling, a deep call-tree where a lot of stuff in that tree is interruptible/preemptible
<_mamalala_> i explained the stuff and uploaded the patch & demo here: http://forum.armbian.com/index.php/topic/1901-patch-for-quick-interrupt-handling-on-the-h3-fast-gpio/
<_mamalala_> hopefully a newer mainline kernel will have full h3 support ... then i can try to add FIQ handling there, which should result in even better results
<_mamalala_> i'm not using any kernel timer at all ... i directly use the TMR1 from the H3, which is completely unused
<_mamalala_> heck, even TMR0 would be unused, only some test-module actually uses it ...
<_mamalala_> and from what i can see, the high speed timer of the H3 is unused as well
<_mamalala_> the same is probably true for other allwinner chips running linux as well
IgorPec15 has joined #linux-sunxi
<_mamalala_> good morning IgorPec15
<_mamalala_> topi`: usually it's not really possible to drive stepper motors smoothly under linux without extra hardware, i wanted to change that for my own project ... and so far it looks quite promising
IgorPec15 has quit [Ping timeout: 244 seconds]
<topi`> _mamalala_: maybe it depends on the architecture?
<_mamalala_> yes and no
<topi`> was this the main reason why those "windows modems" never really worked with linux? being run by software...
<topi`> windows modems from early 2000s :)
<_mamalala_> older arm chips have a VIC, there you can easily use the FIQ for such stuff ... modern arm chips use a GIC, so it's not that easy anymore
<topi`> yeah a GIC essentially looks like an intel interrupt chip
<_mamalala_> and then there are hybrids that have arm cores plus one or two extra cores for realtime stuff that run dedicated code
IgorPec has joined #linux-sunxi
<_mamalala_> otoh, the GIC does have two interrupt groups ... but then, the old 3.4.x kernel doesn't make use of that either
<topi`> well 3.4.x should be retired by now :)
<_mamalala_> and diving into the depths of that old code is just too much ... so i went for the brute force approach :P
<topi`> he's like an overworking pensioner who hasn't realized that the pension money is already coming :D
<topi`> poor 3.4.x
<_mamalala_> yea, it should ... but then, current mainline kernels should have full support for the h3, which they don't
<topi`> some bits might take a while to come... I just need a working CSI camera :D
<_mamalala_> ha, don't be so sorry for the 3.4 .... just look at all those cheap routers and other gadgets that still ship with 2.6 :P
<topi`> specifically, the Xunlong camera module support
<_mamalala_> the 2.6 kernel is like a zombie, it just won't die ... haha
<topi`> yeah, I know the feeling. My work mate ordered a "brand new IoT gateway" a while ago, and we were utterly surprised to find out it runs kernel 2.6.38 !
<topi`> which was out, what, 10 years ago??
<_mamalala_> yea, eons ago
<topi`> I worked for Nokia then, and we based the Maemo OS on 2.6.18
<topi`> which became the Nokia N900
<_mamalala_> initially i had the silly idea to make a diff between the sunxi 3.4.39 kernel and a current one ....
<topi`> then you found out about the size of that diff? :D
<topi`> let me guess, a million lines??
<_mamalala_> well, that didn't work, obviously, so i tried a diff between sunxi 3.4.39 and standard 3.4.39 ....
<_mamalala_> which made it pretty clear that the sunxi kernel is a frankenkernel all by itself already
<topi`> yes, patched and patched
<topi`> and god knows in which order
<_mamalala_> lots of patches that are not directly related to their stuff, lots of packported patches
<topi`> well backports are good, aren't they :D
<_mamalala_> the fact that their own code, and the sunxi-realted patches to the original codebase, are of such poor quality probably doesn't help the integration into mainline either
<topi`> exactly
<_mamalala_> ... not to mention the virtually non-existant documentation from them
<topi`> many big companies did learn their stuff the hard way, like TI, Freescale, AMD...
<topi`> but the chinese still have to learn
<_mamalala_> "the chinese" is too broaf a brush
<topi`> initially, year 2006, even TI was doing this frankenstein development on the linux 2.6
<_mamalala_> there are excellent companies as well ... and there are bad non.chinese companies too
<topi`> it took them several years and 3 iterations with us (Nokia) to make that right
<_mamalala_> yea
<topi`> but they learned, and now everything is rather smooth concerning their chips and mainline linux
<_mamalala_> it would be a great help if they would at least publish usefull documentation .... heck, i even would be happy with a full manual in chinese ... someone will come along and translate it
<topi`> (I'm not really well into this knowledge since I don't nowadays work with TI chips, but the Beaglebone is probably pretty good)
<_mamalala_> but all we have are rather lousy datasheets that basically just list the register, and give little info on the actual use
<topi`> do you have any "excellent" chinese companies in mind? they all struggle with the kernel process
<_mamalala_> not really off the top of my had
<topi`> Amlogic is just as bad as AW, but they did release the S905 data
<_mamalala_> head
<topi`> perhaps Rockchip is trying to behave better, since their actual employees push patches to mainline
<_mamalala_> but i had contact with some in the past years that had no problem in sending me full manuals and stuff
<_mamalala_> but then, it's also somewhat of a hit-and-miss .... depends who you end up with when you make contact
<topi`> evidently that plays a big role :)
<topi`> the chinese I was in contact with from both Allwinner and Merrii did not even seem to understand my questions...
<_mamalala_> still no worse than western companies and their silly NDA crap for documentation ... i mean, do they want people to use their stuff or not?
<topi`> true, that
<topi`> I never understood that overjealousness
<_mamalala_> yea
<topi`> just look at ARM/MALI
<topi`> I had the same experience while we worked with the first Imagination shader core, the first SGX
<_mamalala_> what irks me most are all the SoC, µC and CPU companies that happily sell their stuff, use Linux as a big marketing thing, but then refuse to open up at least their documentation ... damn freeloaders .P
<topi`> the fact that I even watched their bloody powerpoint slides, implied that I was under a NDA
<wens> nah, officially you still have to sign an NDA to work with the Chinese companies
<_mamalala_> i mean, i don't expect free support for them or such ... but hey, at least give me some usable docs so that i can try and figure stuff out on my own
<wens> the engineers just hand stuff to you if convenient
<_mamalala_> ha, it often is quite fun to read the actual NDA's ... more often than not they are not worth the bits they use up in the PDF
<_mamalala_> like, when was it ... a year or two ago, when i hacke the ESP8266 wlan microcontroller
<_mamalala_> i got them to have me sign an NDA ....
<topi`> wens: in the western companies, engineers are afraid of committing a "mistake" if they released stuff without a proper NDA
<_mamalala_> ... which had funny clauses in it which basically translated to "well, if you punlish the info we can't do squat anyways"
<_mamalala_> publish
<topi`> "if you publish, we will sell your grandma for slavery"
<_mamalala_> nope
<_mamalala_> damn, i can't find the nda on a quick search ... i have it somewhere ...
<_mamalala_> ahhh, there it is
<_mamalala_> read the stuff 3: Exception
JohnDoe_71Rus has joined #linux-sunxi
<_mamalala_> and in the Confidentially section are some gems as well
<_mamalala_> the stuff under the exception clause basically gives a free pass if one wants to be nasty
<_mamalala_> sign the nda, give the info to someone else, have that person publish it anonymously, done
<_mamalala_> after that you have a free pass to publish it yourself, because, uh, someone else already did :P
fire2191 has quit [Read error: Connection reset by peer]
<mripard> _mamalala_: "Now, not only is that a long way to go, but in many of those functions a lot of other functions are called, many of which are by themselves interruptible/preemptible." that's not really true
<mripard> interrupts handler are run with interrupts masked
<mripard> and that's very likely to be the cause of your jitter
<mripard> under stress, you get more interrupts, they're masked more often, which increases the latency
<_mamalala_> mripard: up to a point only, otherwise there would be no need to keep track of the depth, i think
<mripard> I think the depth tracking is only for tracing
<_mamalala_> mainly preempting, that is
<mripard> but the first thing handle_fasteoi_irq does is raw_spin_lock
<_mamalala_> i mean, if the call tree would be non-interruptible, non-preemptible, one would just expect a somewhat fixed latency, but that isn't the case .... ah, yes, and spinlocks
foxx_ has joined #linux-sunxi
<mripard> it is
<mripard> if you just have a single interrupt source
<_mamalala_> hehe, yea
<mripard> which is not the case
<mripard> if you have two interrupts (or more) coming at around the same time
<mripard> the second handler will be delayed until the first one is done
<mripard> which means additional latency
<mripard> which means jitter
<mripard> and of course, it only gets worse when you add more interrupts into the mix
<mripard> and under stress, you can easily have a significant number of interrupts coming in your system pretty much all the time
<_mamalala_> indeed
<mripard> storage, network, UART if you have a console, timers, etc.
<_mamalala_> yea, as said, my approach is quite brute-force, but works fine for the intended use
foudubassan has joined #linux-sunxi
<mripard> so you just increase the average latency, but in an entirely non-deterministic way
<mripard> this is what xenomai and preempt-rt are about
<_mamalala_> i just hope that once there is good support for the H3 in the mainline kernel, i can add FIQ handling there
<mripard> yeah, I did it in the past
<mripard> precisely to drive some steppers
<mripard> it was working quite well
<mripard> but it wasn't with a GIC
<_mamalala_> hehe, VIC then, i guess?
<_mamalala_> i guess the incomplete/non-existing support for groups with the GIC is the reason the 3.4 kernel fails to boot in non-secure mode
<_mamalala_> from what i gathered, it seems that all IRQ's are in group 0, which normally would be secure mode
<_mamalala_> (and FIQ)
<_mamalala_> but in 3.4 there seems to be no seperation, so all is considered "secure", i think
<_mamalala_> i can shift the TMR1 to group 1, for example ... and it still gets registered and the calls counted up ... but the handler itself never gets called
<_mamalala_> alas, peeking at the group id of other interrupts shows them all as group 0
<wens> topi`: i guess that's because copyright litigation is more developed? :p
<_mamalala_> ah well ... as said, i hope that a new mainline kernel is ready sometime soon-ish ;)
<_mamalala_> for now the dirty hack has to do
mosterta has joined #linux-sunxi
lennyraposo1 has quit [Quit: Leaving.]
dearfibonacci has joined #linux-sunxi
lennyraposo has joined #linux-sunxi
mosterta has quit [Ping timeout: 260 seconds]
<wens> _mamalala_: mainline u-boot has FIQs running in monitor mode
iamfrankenstein1 has joined #linux-sunxi
<mripard> _mamalala_: no, I did it on two systems, the imx28 that has its custom interrupt controller
<mripard> and the tegra2 with a gic and a custom one
<mripard> and I was using the custom one for the FIQ
IgorPec has quit [Ping timeout: 264 seconds]
iamfrankenstein has quit [Ping timeout: 276 seconds]
iamfrankenstein1 is now known as iamfrankenstein
MiLeon has joined #linux-sunxi
pg12 has quit [Ping timeout: 250 seconds]
lennyraposo has quit [Quit: Leaving.]
pg12 has joined #linux-sunxi
pg12 has quit [Ping timeout: 265 seconds]
pg12 has joined #linux-sunxi
popolon has joined #linux-sunxi
matthias_bgg has joined #linux-sunxi
lemonzest has joined #linux-sunxi
Mr__Anderson has joined #linux-sunxi
ricardocrudo has joined #linux-sunxi
paulk-collins has joined #linux-sunxi
premoboss has joined #linux-sunxi
IgorPec has joined #linux-sunxi
IgorPec has quit [Client Quit]
IgorPec has joined #linux-sunxi
enrico_ has joined #linux-sunxi
matthias_bgg has quit [Quit: Leaving]
dearfibonacci has quit [Ping timeout: 258 seconds]
dearfibonacci has joined #linux-sunxi
OverCR has joined #linux-sunxi
dizzuhen has joined #linux-sunxi
dizzuhen has quit [Quit: Textual IRC Client: www.textualapp.com]
matthias_bgg has joined #linux-sunxi
jstein_ has joined #linux-sunxi
jstein_ is now known as jstein
<jonkerj> can anyone explain to me how cpufreq and clock cooling/thermal interact?
<jonkerj> seems to me that both are automatic mechanisms to govern cpu speed
IgorPec15 has joined #linux-sunxi
IgorPec15 has quit [Ping timeout: 244 seconds]
<KotCzarny> thermal sets min/max
<KotCzarny> cpufreq changes according to governor
<KotCzarny> but since cpufreq doesnt have any thermal sensing governors it has to be done externally by thermal driver
foxx_ has quit [Ping timeout: 258 seconds]
reinforce has joined #linux-sunxi
MY123 has joined #linux-sunxi
huawei is now known as shirasaka-hazumi
OverCR1 has joined #linux-sunxi
OverCR1 has quit [Client Quit]
OverCR has quit [Ping timeout: 265 seconds]
azend|vps_ has joined #linux-sunxi
aliosa27 has quit [Ping timeout: 250 seconds]
azend|vps has quit [Ping timeout: 258 seconds]
aliosa27 has joined #linux-sunxi
JohnDoe_71Rus has quit [Ping timeout: 252 seconds]
orly_owl has quit [Ping timeout: 258 seconds]
orly_owl has joined #linux-sunxi
TheLinuxBug has quit [Ping timeout: 258 seconds]
slapin has quit [Ping timeout: 244 seconds]
TheLinuxBug has joined #linux-sunxi
slapin has joined #linux-sunxi
JohnDoe_71Rus has joined #linux-sunxi
<jonkerj> KotCzarny: thanks for clearing up
Net147 has quit [Quit: Quit]
<jonkerj> I've got a hunch that CCU broke uart1-uart3 on H3-based SOCs
<jonkerj> from 4.7 to 4.8-rc2 they stopped working (input/output errors), kconfig en dtb are unchanged, and dtb is identical to working uart0
<jonkerj> funny thing is that the compiled dtb when dumped, shows exact same values in clocks/resets in /soc/serial@01c28*00/
<jonkerj> the source DT contains unique values (<&ccu CLK_BUS_UART2> etc)
<jonkerj> moreover, during boot only a message about uart0 is printed, and uart1-3 just silenty appear under /dev without any message
<jonkerj> does all this ring a bell for someone? I hope I am just missing something
TheLinuxBug has quit [Ping timeout: 244 seconds]
TheLinuxBug has joined #linux-sunxi
MiLeon has quit [Quit: Leaving]
Net147 has joined #linux-sunxi
valkyr1e has quit [Quit: Bye.]
Putti has joined #linux-sunxi
<jonkerj> it mystifies me why dtc turns these two lines...:
<jonkerj> 489 clocks = <&ccu 62>;
<jonkerj> ..
<jonkerj> 502 clocks = <&ccu 63>;
<jonkerj> into:
<jonkerj> clocks = <0x00000002 0x000001a2>;
<jonkerj> and
<jonkerj> clocks = <0x00000002 0x000001a2>;
<jonkerj> (the same)
<jonkerj> 0x00000002 matches the phandle of the ccu in the dtb
<jonkerj> so far, so good
<jonkerj> but 1a2 != 62 (or 63) and should be a bit more unique
<KotCzarny> maybe ccu doesnt take any params?
JohnDoe_71Rus has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org]
<jonkerj> KotCzarny: it does in several other places in that same (preprocessed) DTS
<jonkerj> a lot of clocks/resets are converted to CCU per 4.8
<jonkerj> and ccu has #clock-cells = <1>, which should tell that
<jonkerj> hey, when I compile when bleeding edge git DTC, I get unique and sensible values
<mripard> jonkerj: yes, this is what I just checked, and it works here
<mripard> with the kernel's dtc
<jonkerj> sorry to blame (your) CCU work :-)
<mripard> don't speak too quickly
<mripard> because the uart1-uart3 is my fault
<mripard> +broken
<jonkerj> oh besides the DTC problem they have a different issue?
<mripard> yes
<mripard> the register offset is wrong for their resets (along with i2c's)
<jonkerj> oh that's a pity
* jonkerj uses two 3-way serial interconnected H3 boards
<jonkerj> one pretends to be my power meter, heat meter and water meter, and the other is used to develop a framework to read and submit measurements
<mripard> someone sent me an email about it, but I was in holidays, and haven't had time to do a patch just yet
<mripard> but you know, this is why we have RCs :)
<jonkerj> no prob, it's nice weather
<jonkerj> we should be out in the sun enjoying instead :-)
Amit_T has quit [Ping timeout: 240 seconds]
<jonkerj> it's the DTC in 4.8-rc2 containing the bug, by the way
<jonkerj> not some distro provided system-wide (I got rid of it to be sure)
premoboss has quit [Ping timeout: 264 seconds]
dearfibonacci has quit [Quit: Leaving]
cptG has joined #linux-sunxi
cnxsoft has quit [Quit: cnxsoft]
cptG_ has quit [Ping timeout: 252 seconds]
<MY123> libv, hi
Putti has quit [Ping timeout: 252 seconds]
jonkerj has quit [Remote host closed the connection]
jonkerj has joined #linux-sunxi
<jonkerj> something else is being fishy
foudubassan has quit [Ping timeout: 258 seconds]
<jonkerj> the DTB seems OK or not OK, depending how you look at it
<jonkerj> fdtget gets the correct clocks/resets:
<jonkerj> fdtget arch/arm/boot/dts/sun8i-h3-orangepi-plus.dtb /soc/serial@01c28400 clocks
tomboy65 has quit [Ping timeout: 258 seconds]
<jonkerj> 2 63
<jonkerj> fdtdump shows 0x00000002 0x000001a2 on those nodes
<jonkerj> so DTC is not broken at all
<jonkerj> (probably)
<jonkerj> /sys/firmware/devicetree/base/soc/serial@01c28400 on the booted system does seem to have the right contents
<jonkerj> so I blame fdtdump for putting me on the wrong track here
foudubassan has joined #linux-sunxi
<libv> my123: hi.
tomboy65 has joined #linux-sunxi
paulk-collins has quit [Remote host closed the connection]
MXfive has joined #linux-sunxi
<MY123> libv, after breaking Secure Boot for RT tablets and Windows Phone devices, I'm now dealing with (trying to) port Linux
IgorPec has quit [Quit: Nettalk6 - www.ntalk.de]
<MY123> should I try the downstream nVidia and Qualcomm kernels or the upstream kernel(note that I have no UART/JTAG/...)
<MY123> JTAG is disabled in the OTP fuses
MXfive has quit [Read error: Connection reset by peer]
<MY123> It's stuck somewhere, and I have no way to debug
<libv> this does not sound like a sunxi thing
<MY123> libv, yep, Allwinner very weirdly states that Windows devices using their SoCs exist, but I saw exactly zero mentions in Microsoft driver packages
<MY123> like, they say that the A20 can run RT, but it has a Mali-400 GPU which has no drivers that I know of(unlike Mali-T)
<MY123> Rockchip is officially mentionned in the docs that I have
MXfive has joined #linux-sunxi
<MY123> (Freescale i.MX6 also)
foxx_ has joined #linux-sunxi
perr has joined #linux-sunxi
Putti has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
jstein has quit [Remote host closed the connection]
perr has quit [Quit: Leaving]
vishnup has joined #linux-sunxi
MXfive has joined #linux-sunxi
vishnup has quit [Ping timeout: 276 seconds]
paulk-nyan-big has joined #linux-sunxi
vishnup has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
jernej has joined #linux-sunxi
MXfive has joined #linux-sunxi
therealfibonacci has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
tkaiser has joined #linux-sunxi
<tkaiser> KotCzarny: Ready to test? https://groups.google.com/forum/#!topic/linux-sunxi/OZe9uFuT8Io%5B1-25%5D
MXfive has joined #linux-sunxi
[Awaxx] has quit [Quit: "The real white hat."]
MXfive has quit [Read error: Connection reset by peer]
vagrantc has joined #linux-sunxi
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
<mpmc> tkaiser: Hey, was wondering if you have any news on a 4.x kernel for the OPC? :)
MXfive has joined #linux-sunxi
tkaiser has quit [Ping timeout: 240 seconds]
Mr__Anderson has quit [Remote host closed the connection]
tkaiser has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
therealfibonacci has left #linux-sunxi [#linux-sunxi]
MXfive has joined #linux-sunxi
enrico_ has quit [Quit: Bye]
orly_owl has quit [Quit: leaving]
scream has joined #linux-sunxi
BenG83 has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
ricardocrudo has quit [Read error: Connection reset by peer]
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
paulk-nyan-big has quit [Quit: Leaving]
MXfive has quit [Read error: Connection reset by peer]
OverCR has joined #linux-sunxi
paulk-leonov has joined #linux-sunxi
hp197 has quit [Ping timeout: 244 seconds]
Mr__Anderson has joined #linux-sunxi
MXfive has joined #linux-sunxi
scream has quit [Read error: Connection timed out]
scream has joined #linux-sunxi
xenoxaos has quit [Ping timeout: 250 seconds]
xenoxaos has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
hp197 has joined #linux-sunxi
<jelle> hmm should I add that's I'm working on the zeitec touchscreen driver to this page? http://linux-sunxi.org/Linux_mainlining_effort
Mr__Anderson has quit [Ping timeout: 258 seconds]
Mr__Anderson has joined #linux-sunxi
MXfive has joined #linux-sunxi
Mr__Anderson has quit [Quit: Leaving.]
MXfive has quit [Read error: Connection reset by peer]
matthias_bgg has quit [Quit: Leaving]
MXfive has joined #linux-sunxi
jstein_ has joined #linux-sunxi
jstein_ is now known as jstein
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
iamfrankenstein1 has joined #linux-sunxi
iamfrankenstein has quit [Ping timeout: 276 seconds]
iamfrankenstein1 is now known as iamfrankenstein
MXfive has quit [Read error: Connection reset by peer]
Mr__Anderson has joined #linux-sunxi
vishnup has quit [Remote host closed the connection]
paulk-leonov has quit [Remote host closed the connection]
Mr__Anderson has quit [Remote host closed the connection]
vagrantc has quit [Quit: leaving]
ricardocrudo has joined #linux-sunxi
Putti has quit [Ping timeout: 240 seconds]
iamfrankenstein has quit [Quit: iamfrankenstein]
MXfive has joined #linux-sunxi
Mr__Anderson has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
paulk-leonov has joined #linux-sunxi
MXfive has joined #linux-sunxi
MXfive has quit [Ping timeout: 265 seconds]
lemonzest has quit [Quit: Leaving]
iamfrankenstein has joined #linux-sunxi
MXfive has joined #linux-sunxi
<libv> things are really shifting for the eoma68
<libv> 7.5k left to go
jstein has quit [Remote host closed the connection]
iamfrankenstein has quit [Ping timeout: 276 seconds]
foxx_ has quit [Ping timeout: 264 seconds]
Mr__Anderson1 has joined #linux-sunxi
Mr__Anderson has quit [Ping timeout: 258 seconds]
Guest41847 has joined #linux-sunxi
Guest41847 has quit [Client Quit]
MXfive has quit [Ping timeout: 276 seconds]
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
fire219 has joined #linux-sunxi
fire219 has quit [Changing host]
fire219 has joined #linux-sunxi
iamfrankenstein has joined #linux-sunxi
MXfive has joined #linux-sunxi
<willmore> my123, congrats on that little hack, but I'm taking points away for that web site. ;)
MXfive has quit [Ping timeout: 265 seconds]
MXfive has joined #linux-sunxi
IgorPec has joined #linux-sunxi
tkaiser has quit [Quit: jIRCii - http://www.oldschoolirc.com]
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
curtis22 has joined #linux-sunxi
IgorPec has quit [Ping timeout: 276 seconds]
foudubassan has quit [Ping timeout: 276 seconds]
MXfive has quit [Read error: Connection reset by peer]
paulk-leonov has quit [Ping timeout: 240 seconds]
MXfive has joined #linux-sunxi
paulk-leonov has joined #linux-sunxi
florianH has quit [Quit: Connection closed for inactivity]
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
Mr__Anderson1 has quit [Remote host closed the connection]
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
MXfive has quit [Read error: Connection reset by peer]
MXfive has joined #linux-sunxi
pg12 has quit [Ping timeout: 265 seconds]
pg12 has joined #linux-sunxi
MXfive has quit [Ping timeout: 276 seconds]
paulk-collins has joined #linux-sunxi
paulk-leonov has quit [Quit: Leaving]
reinforce has quit [Quit: Leaving.]
MXfive has joined #linux-sunxi
hp197 has quit [Ping timeout: 244 seconds]
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
[Awaxx] has joined #linux-sunxi
ricardocrudo has quit [Remote host closed the connection]
paulk-collins has quit [Quit: Leaving]
lvmc has joined #linux-sunxi
<lvmc> good night.
<lvmc> has anoyone here experience with micro usb / otg max current?
jernej has quit [Ping timeout: 276 seconds]
tsuggs has joined #linux-sunxi