ChanServ changed the topic of #linux-sunxi to: Allwinner/sunxi development discussion - Don't ask to ask. Just ask! - See http://linux-sunxi.org | https://github.com/linux-sunxi/ | Logs at http://irclog.whitequark.org/linux-sunxi
jorgegeorge has quit [Remote host closed the connection]
egbert has quit [Disconnected by services]
egbert has joined #linux-sunxi
eebrah_ has joined #linux-sunxi
eebrah_ has quit [Ping timeout: 260 seconds]
wingrime has joined #linux-sunxi
Quarx has joined #linux-sunxi
eebrah has quit [Ping timeout: 264 seconds]
JCQ has quit [Ping timeout: 240 seconds]
JCQ has joined #linux-sunxi
eebrah has joined #linux-sunxi
eebrah has quit [Ping timeout: 256 seconds]
rellla has joined #linux-sunxi
theOzzieRat has quit [Ping timeout: 256 seconds]
eebrah_ has joined #linux-sunxi
theOzzieRat has joined #linux-sunxi
shineworld has joined #linux-sunxi
n01|work|away is now known as n01
eebrah_ has quit [Ping timeout: 255 seconds]
ZaEarl has quit [Ping timeout: 245 seconds]
eebrah_ has joined #linux-sunxi
rz2k has joined #linux-sunxi
eebrah_ has quit [Ping timeout: 255 seconds]
<orly_owl> sweet
<shineworld> I would like same cubieboard but powered by A20 :)
<shineworld> however I'm satisfied with actual cubie power:
plan_b has joined #linux-sunxi
plan_b has quit [Client Quit]
<Turl> mripard_: do you recall around how many interrupts/sec does emac produce?
shineworld has left #linux-sunxi ["Leaving"]
shineworld has joined #linux-sunxi
ssvb has joined #linux-sunxi
rellla has quit [Remote host closed the connection]
shineworld has quit [Remote host closed the connection]
rellla has joined #linux-sunxi
shineworld has joined #linux-sunxi
ganbold__ has joined #linux-sunxi
calris has quit [Ping timeout: 252 seconds]
calris has joined #linux-sunxi
ZaEarl has joined #linux-sunxi
Dave77 has joined #linux-sunxi
<mnemoc> uploaded olimex's A20 documents to http://dl.linux-sunxi.org/A20/
<jinzo> that's the same they uploaded to their github right?
<mnemoc> yes, but the rar extracted
<jinzo> great - hope they get it out soon.
<mnemoc> and the changelog <http://dl.linux-sunxi.org/A20/a20_pad_std_v1_1.txt> reencoded
<mnemoc> hope someone takes the time to improve [[A20]] and [[A20/PIO]] in the wiki
<hramrach> did anybody look at the defconfig changes?
* mnemoc missed that
<hramrach> only git branch
<mnemoc> url?
<mnemoc> ssvb also sent a proposal for sun4i_defconfig not long ago
<mnemoc> it has RFC on the subject
<mnemoc> it might be good to reduce the diffs between defconfigs before adding the kitchensink...
<hramrach> unless I am missing something that is email I sent, not ssvb
<mnemoc> uh. ok :)
<hramrach> but I am using gmail so the search facility is not that great
<mnemoc> can we do the standarization of defconfigs before adding the kitchensink? :)
<mnemoc> easier to review...
<hramrach> I basically started with enabling everything on sun4i 3.4
<hramrach> and then merged that with crane, sun5i and nuclear
<hramrach> well, I reviewed that I don't remove options
<hramrach> doing standardization of completely different configs, pff
<hramrach> we probably want http://defconfigman.sourceforge.net/ in the long run
<hramrach> but for now usable static defconfig should do
<ssvb> mnemoc: sorry for dropping the ball, I have no problems using local defconfig patches, so improving default defconfigs was kinda nice to have but definitely not critical
<mnemoc> I use the defconfigs for test building after merging commits. and also share pre-builts
<hramrach> I just use local config
<hramrach> because the defconfigs had no drivers
<hramrach> also on 3.4 teh usb configuration is somehow broken
<mnemoc> so it's more useful if those tests/pre-builts are more complete
<hramrach> so I added some workarounds but not really awesome
<hramrach> if somebody knows how the kconfig is supposed to work maybe there is a better fix to be had
<ssvb> can we check which kernel modules are shipped with the popular desktop linux distros and just try to provide a similar set?
<hramrach> basically the usb configuration does not stick if you do savedefconfig ; cp ; defconfig
<hramrach> ssvb: you know any popular distro for devboards?
<ssvb> hramrach: who cares about devboards? we have a full fledged desktop computer with everything including SATA hard drive, ethernet, hdmi, ... (for cubieboard and tv boxes)
<hramrach> yes but no PCI but tons of weird pins with i2c, spi ..
<ssvb> at least everything usb related that is provided by x86 desktop distros could be enabled
<hramrach> everything USB related can be enabled, yes
<wingrime> ssvb: hramrach: how can I measue IOWAIT?
<hramrach> I have no idea
<wingrime> ssvb: look like android works slow becose nand have "wait cycles"
<mnemoc> if the cores of the things are enabled, people can build the .ko of their desired driver and reuse the core
<wingrime> I mean not interpurtable
<hramrach> and the wait is not preemptible?
<hramrach> mnemoc: well, no. they would have to have the exact same source and build the whole kernel, anyway
<hramrach> afaik you cannot build a module without building the kernel
<wingrime> hramrach: simple wait
<wingrime> hramrach: with while
<hramrach> busy wait
<hramrach> that really kills performance on single core
<mnemoc> hramrach: if usbserial is enabled in the defconfig, and so in the prebuilt kernel. they can compile only the wanted .ko
<mnemoc> and drop it in
<mnemoc> for example.
<hramrach> after building the whole kernel they can just drop in the .ko
<hramrach> but by then the whole kernel is built, anyway
<wingrime> hramrach: I prefer fix it in a first prio
<ssvb> mnemoc: I'm almost sure nobody will do that, and the people who are skilled enough will just crosscompile their own kernel instead of using the hwpack
<hramrach> busy wait is the first impl when prototyping a driver, typically
<hramrach> it's very precise, too
<wingrime> how make it interpurable
<wingrime> I know only wait_event
<hramrach> you just use some sleep function
<hramrach> but you must know that the hardware can tolerate late finish of the wait
<wingrime> only problem is,that if I fix this I gen some performace downgrade
<hramrach> that is if you wait longer nothing more happens
<mnemoc> ssvb: good point
<wingrime> but get perfect responce
<hramrach> perfect response is waht most people perceive as performance
<hramrach> you can make a switch, possibly
<wingrime> do you know best way for replace while
<hramrach> I am not driver developer
<hramrach> I would look at other driver or grep for sleep/delay
<techn__> wingrime: include schedule request into that while
ganbold___ has joined #linux-sunxi
ganbold__ has quit [Ping timeout: 252 seconds]
focus has quit [Remote host closed the connection]
rellla has quit [Quit: Nettalk6 - www.ntalk.de]
ZaEarl has quit [Read error: No route to host]
ZaEarl has joined #linux-sunxi
<hramrach> so
<hramrach> we have CONFIG_SND_SUN4I_SOC_CODEC on 3.4 and CONFIG_SND_SUN5I_SOC_CODEC on 3.0 :s
<mnemoc> I haven't finished backporting that unification to stage/3.0 yet
<hramrach> so that's expected
<mnemoc> will be "solved" tonight
<mnemoc> and will merge the rest of hansg/olvier sound changes
techn__ has quit [Read error: Connection reset by peer]
techn_ has joined #linux-sunxi
n01 is now known as n01|work|afk
<wingrime> mnemoc: why do you still not accept cedarx unification
simosx has joined #linux-sunxi
ganbold___ has quit [Remote host closed the connection]
ganbold__ has joined #linux-sunxi
<wingrime> I want cm to test on a13
<techn_> Turl: how about that pull request?
paulk-desktop has joined #linux-sunxi
torqu3e has quit [Quit: torqu3e]
ssvb has quit [Quit: Leaving]
<drachensun> This is kind of a generic driver question, why would a driver never be probed?
eebrah has joined #linux-sunxi
Quarx has quit []
n01 has joined #linux-sunxi
Dave77 has quit []
eebrah_ has joined #linux-sunxi
<mnemoc> drachensun: you mean modprobed by udev automatically? because the driver doesn't provide the right alias usually
<drachensun> ah ok
<wingrime> ssvb: are you tested dma patches ?
<mnemoc> wingrime: two reasons. 1) still haven't had time to finish merging hansg's sound unification, (some aren't trivial to backport to 3.0) 2) haven't seen feedback of people about it's safety
<wingrime> mnemoc: you can look at diff
<wingrime> only clocks "slighly different"
<wingrime> tecnh_: what with android ?
<mnemoc> wingrime: yes, but time availabilty is VERY scarse. working over 14h/d on finishing $work$ for a trade show
<mnemoc> wingrime: will try after merging the sound stuff
eebrah_ has quit [Ping timeout: 255 seconds]
<wingrime> mnemoc: I still have some dma optimize/cleanup patches in my repo and I still wait benches for others
<wingrime> mnemoc: and now I trying avoid "busy wait" I think it a great problem
<wingrime> mnemoc: but I still noob with profiling
<mnemoc> do your clean ups rely in something still unmerged?
<wingrime> 4 last patchs
<Turl> techn_: oops, I had forgotten completely
<mnemoc> wingrime: I'm talking about commits on the ML
<Turl> techn_: feel free to ping me more frequently if I forget to do stuff :)
<wingrime> mnemoc: may be
<wingrime> mnemoc: wait
<wingrime> [PATCH] sunxi:nand Cleanup useless readme file
<Turl> techn_: if there's none, having just one file and copying it twice to different targets would be a better choice
<wingrime> [PATCH] sunxi:mmc: clean sdxc.c comments
<Turl> techn_: the rest of the commits look okay
<wingrime> mnemoc: that ^ but that not relay important patches, just cleanup some useless stuff
<mnemoc> wingrime: please reply it "reminding" me about it
<mnemoc> wingrime: and then send your dma patchset
<wingrime> mnemoc: it still in testing and may be will be more patches
<mnemoc> ok
<wingrime> mnemoc: optimization is a hard tihng
<wingrime> mnemoc: And I still do't know what do __so_softirq in a top
<wingrime> it costs ~20% kernel time
<wingrime> and I still don't know how get callstack for living kernel
ZaEarl_ has joined #linux-sunxi
ZaEarl has quit [Read error: Connection reset by peer]
eebrah has quit [Ping timeout: 245 seconds]
eebrah has joined #linux-sunxi
<techn_> Turl: no differences.. but androids init.rc seems to require machine specific files ?
<techn_> Turl: but there could be g2d difference :/
<techn_> but ofcourse separation could be done after we have different files
<Turl> techn_: yeah it requires machine names
<Turl> techn_: but you can have a rule like dev.../init.sunxi.rc:rootwhatever/init.sun4i.rc
<Turl> and then another one with same origin but to ...sun5i.rc
<Turl> I don't expect any difference on the init scripts between sun4i and sun5i
torqu3e has joined #linux-sunxi
Tartarus has quit [Excess Flood]
Tartarus has joined #linux-sunxi
vinifm has joined #linux-sunxi
<wingrime> techn_: what works/notworks on andorid a13 ?
<wingrime> and 3.4?
<vinifm> a10 supports run the operating system from the SATA hard disk?
<wingrime> only if boot on nand
<wingrime> I mean kernel and loader must be on nand/mmc
<wingrime> root can be anywhere
<vinifm> good :)
<oliv3r> mnemoc: time for A20/PIO :p http://dl.linux-sunxi.org/A20/a20_pad_std_v1_1.pdf
<wingrime> olvi3r: I add two patches on top
<wingrime> It must make kernel work quicker when you write/read something from nand
shineworld has quit [Quit: Leaving]
<n01> mripard_: when I try to build uImage I get multiple (or no) load addresses. Even if I specify LOADADDR=0x48000000 I'm not able to boot (It is stuck after Starting kernel ...
<n01> any hints?
<techn_> wingrime, you need your board specific layer
<techn_> wingrime: you could use https://github.com/techn/android_device_allwinner_a13_mid as base
<wingrime> techn_: good question, what is work ?
<wingrime> techn_: what is not work?
<wingrime> techn_: can uboot start fastboot?
<wingrime> techn_: I hily recomentd you test my branch
<wingrime> techn_: last patches must make android quicker
<Turl> n01: you building mainline?
<Turl> n01: have you enabled earlyprintk?
<n01> Turl: dt-for-3.10, branch in mripard_ repo
<Turl> n01: it's LOADADDR=0x40008000
<Turl> at least that's what I use and works :)
<n01> :D ok, let's try
<Turl> n01: what did you use as defconfig btw?
<n01> Turl: multi_v7_defconfig
hansg has joined #linux-sunxi
<Turl> n01: did you enable earlyprintk and chose sunxi uart?
<n01> yes, now, it's compiling :)
<n01> Turl: Starting kernel ... and nothing else
<n01> uhm ... i'm doing something wrong
wingrime has quit [Ping timeout: 252 seconds]
<n01> the dtb to append is sun4i-a10-cubieboard.dtb right?
<Turl> I dunno, I tftp the files separately
<Turl> I mean that's the file, yes
<Turl> but I dunno how appending works :)
<n01> don't you append dtb to zImage?
<Turl> are you appending it before or after making the uImage?
<n01> before
<Turl> no, I load uImage, dtb and use triplet bootm
<n01> ok something new to me :D triplet bootm?
<n01> I do: compile -> append dtb to zImage -> make uImage with LOADADDR=0x40008000 -> bootm
<Turl> I do export LOADADDR; make uImage sun4i-a10-cubieboard.dtb; reboot board :)
<Turl> are you passing "earlyprintk" on your cmdline?
<n01> with uboot yes and it is also in "chosen" in dts file
<n01> but what is triplet bootm?
<Turl> bootm with 3 args
<oliv3r> winrime: i'll try tomorrow your new patch
<n01> are u using sunxi-u-boot?
hansg has quit [Remote host closed the connection]
<Turl> yes
<n01> ok let's try :)
<Turl> bootm kerneladdr - fdtaddr
<Turl> (the dash would be the initrd which I don't use)
<Turl> http://sprunge.us/ERAX this is my config if you want to compare
<n01> (y) tnx
hansg has joined #linux-sunxi
hansg has quit [Remote host closed the connection]
<oliv3r> did sun4i do hdmi 1.4?
<mnemoc> 1.3 iirc
<mnemoc> oliv3r: mr oliverlist, you forgot to subscribe
<oliv3r> mnemoc: i forgot to subscribe to?
<mnemoc> sunxi's ML
<oliv3r> so if A20 has hdmi 1.4 (brief says so too) It should have a 'data' channel for ethernet (will check pinouts)
<mnemoc> but I just whitelisted your oliverlist@
<oliv3r> mnemoc: it should be oliver+list@
<mnemoc> no +
<oliv3r> i get tons of mailsf from the list
<oliv3r> well I have oliver@ and I have oliverlist@ as two seperate mailboxes. I have set up oliver+list as an alias for oliverlist :)
<oliv3r> everything else (oliver+rest) goes to oliver; its just so i can seperate mailing lists from everything else
<oliv3r> i see what you mean now
<oliv3r> i used the wrong identity to mail
<oliv3r> i should remove that one actually
<oliv3r> done on my laptop :p (I have way to many identities to manage)
<oliv3r> but feel free to un-whitelist it
<oliv3r> i should be punished :)
<n01> Turl: can you pastebin your cmd script for uboot?
<oliv3r> oh wow the A20 schematic was last update april 1st; so it's quite recent :)
<oliv3r> mnemoc: have you looked at the PIO schematic bit?
<oliv3r> mnemoc: i'm trying to do A20/PIO
<oliv3r> but get stuck on the first bit allready :)
<oliv3r> litterally
<Turl> n01: I used uEnv.txt, you'll have to wait a bit as I don't have my cubie handy now
<n01> no prob :)
<n01> I'm always around
<Turl> it was nothing too fancy though, just a couple of lines to download the stuff to ram and then the bootm call
<mnemoc> oliv3r: no, haven't looked
<Turl> you'll need a tftp server on your pc, you can set that up meanwhile :)
<n01> I'm using mmc so I don't need a tftp server :) anyway loading the kernel @ 0x40008000 I got something like "undefined instruction
<n01> after starting the kernel
<oliv3r> mnemoc: you did A10 PIO right? Where did you learn about the functions bound to a pin. I can see that some pins have more functions , but it doesn't say which mux is what, though it looks like the same right to left on what we have
<n01> if I put the kernel @ 0x48000000 still got nothing
<n01> (no undefined instruction but no messages on console)
<n01> still investigating though
<oliv3r> i really should use netboot for testing! i keep putting it all on the SD card over and over; good call
<oliv3r> n01: wasn't it at 0x40000800?
<oliv3r> or something closer to that
<n01> ok we have 3 different addresses now :D
<mripard_> 4800000 seems way too high, probably out of the memory space
<mripard_> I usually use 0x40008000
torqu3e has quit [Ping timeout: 245 seconds]
<mnemoc> u-boot relocates the kernel before calling it
<mripard_> and backlogging, make uImage doesn't work with appended dtbs
<mripard_> you have to generate the zImage, append the dtb, and run mkimage by hand on it
<n01> uhm ok, I'll try also this way
<oliv3r> would be nice if those manual commands where added to the sunxi-bsp :)
<mripard_> what I usually do is
<mripard_> make zImage
<mripard_> make <board>.dtb
<mripard_> cat arch/arm/boot/zImage arch/arm/boot/dts/<board>.dtb > zImage_dt
<mripard_> scripts/mkuboot.sh -A arm -O linux -T kernel -C none -a 0x40008000 -e 0x40008000 -n 'Allwinner A1X' -d zImage_dt uImage.dtb
<mripard_> and that's it
<mnemoc> oliv3r: add it to [[Linux]] ;-)
torqu3e has joined #linux-sunxi
<mnemoc> on a subsection of #Mainline or something
<oliv3r> mnemoc: busy doing A20/PIO after that gonna add missing balls to A10/PIO :p
<oliv3r> mripard_: do you use sunxi-bsp?
<mripard_> nope
<oliv3r> :(
<mnemoc> there isn't much use yet for the bsp when working with mainline kernel
<mripard_> I have a very small initramfs generated with buildroot
<mripard_> sunxi-bsp doesn't add much given the current state of the mainline support :)
<n01> mripard_: my patches for cubieboard on buildroot are still pending :(
<mnemoc> once we can generate a .dts from .fex and get a user-usuable system it can become useful
<n01> yeah, I need to resubmit them
<Turl> mnemoc: we need drivers first, that's the least of the worries :)
<mnemoc> Turl: :)
<mnemoc> Turl: btw, have you tried android on 3.4?
<oliv3r> mnemoc: pff, i tried to use it on ml kernel build and besides those loadaddr things it works good enough :p
<mnemoc> would really like to "legacy" the 3.0 tree, and merge sun[67]i stuff into 3.4
<mnemoc> oliv3r: :)
<oliv3r> and while it may only add 0.1%; it does make it much easier for everybody else 'experimenting' with different kernels etc :)
<Turl> mnemoc: I haven't yet
<oliv3r> i'll look at 67 stuff for 3.4 on the audio bit sometime soon
<mripard_> n01: as far as I remember, you still have unaddressed comments on your patches
<mripard_> (if you are Carlo Caione)
<n01> yes I am, no time to work on them .... I hope during this we
<oliv3r> mripard_: started to rework the driver, looks better and I understand i better now too; in bed now so only doing some ligh twiki stuff ;)
<oliv3r> ok this doc is funny. PI0, TWI3_SCK, ball A20, not connected?
<oliv3r> or is that schema for their reference deisgn, it is called 'a20_pad_std'
<mnemoc> the PIO template allows comments
<mnemoc> oliv3r: yes, just partial reference design. not datasheet yet
<oliv3r> mnemoc: ah, then their reference design simply doesn' thook up twi3, ok makes sense then
<oliv3r> not sure why olimex says a10 uses that pin for GPS though; A20 no longer does in any case (and our current A10/PIO doesn't mention it at all)
<oliv3r> i think cubieoard schematic uses/is done by the same application/layout
<mnemoc> grep for gps in sunxi-boards
<oliv3r> so should extrat missing info from that
<oliv3r> mnemoc: i know from script.bin that it's posisble
<oliv3r> but i think it was a gpio; but don't recall
<mnemoc> the cubieboard was designed by an EE working for allwinner, so he probably just used his "well known" reference design
<oliv3r> i'll use the cubieboard schematic to finish a10/pio
<mnemoc> oliv3r: there is real IP, but no RF
<oliv3r> yeah so the 'part' should have everything on it ( I know it does for some of the not connected pins)
<mnemoc> like the mac/phy thing for ethernet
<oliv3r> yeah
<oliv3r> i'll look at the fex_guide now :p
<mnemoc> we have a .ko with symbols if you want to RE A10's GPS
<oliv3r> would need an RF bit
<oliv3r> and something actually working
<oliv3r> but the GPS 'external' bits are connected partially to PI00 and partially to GPIO of PC/PI
<oliv3r> but yes, A10 had GPS on PI00 too, just A10/PIO was incomplete
<mnemoc> complete it ;-)
<oliv3r> i said i would :p
<n01> gosh
<n01> Turl, mripard_: http://pastebin.com/27B6fVdX
<mnemoc> *g*
<oliv3r> hmm, according to the reference design, looks like they may have removed it
<Turl> n01: what's uImage.dtb?
<oliv3r> anyway, that's why i asked, how did you do A10/PIO? I can't figure out what mux something belongs to
<oliv3r> oh wait, you did it with the proper datasheet
<n01> 23:30 < mripard_> cat arch/arm/boot/zImage arch/arm/boot/dts/<board>.dtb > zImage_dt jinzo
<n01> 23:30 < mripard_> scripts/mkuboot.sh -A arm -O linux -T kernel -C none -a 0x40008000 -e 0x40008000 -n 'Allwinner A1X' -d zImage_dt uImage.dtb
<Turl> oh ok
<mripard_> what toolchain are you using?
<n01> gcc-linaro-arm-linux-gnueabihf
<mripard_> yeah, don't
<n01> O_o oh
<Turl> not kernel related, but I've had issues with linaro toolchain generating crap when used on buildroot with cortex-A8 flag
<mripard_> linaro toolchains are soooooooooo buggy
<n01> ok, codesourcery? crosstool-ng? gcc-arm? :)
<Turl> codesorcery/mentor one has been behaving ok so far
<mripard_> codesourcery is a good choice yes
<n01> :D ok I'll switch, thank you guys
<zumbi> mripard_: ooi, why are linaro tools buggy?
<Turl> mripard_: have you ever seen a sigill on init? that's what linaro got for me
<vinifm> and debian toolchains?
<mripard_> don't ask me. ask the linaro toolchain guys
<mripard_> but I've seen things like Turl speaks about on a regular basis with linaro toolchains
<oliv3r> mnemoc: yeah cubieboard schmatic has GPL_CLK on PIO, its now TWI3_SCK; i think they had problems with GPS, as most datasheet references are removed aswell; so they probably replaced it with twi3
<zumbi> vinifm: also debian toolchain is buggy?
<oliv3r> gentoo's crossdev builds a good one :D
<vinifm> no, i guess
<mripard_> vinifm: I don't know, I don't use debian :S
<oliv3r> but tbh, if linaro toolchain is buggy, they should be able to fix it quite easily
<zumbi> mripard_: I have been using the ubuntu toolchain, based on linaro, it contains codesourcey patches, worked fine so far for me
<oliv3r> fedora probably has arm toolchian too?
<vinifm> i uses and i like
<vinifm> I have not had problems
<zumbi> i was wondering if there was some known big bug, or if is just words gone with the wind
<mripard_> zumbi: yes, I use the one in ubuntu, and never had any problem with this one
<zumbi> that one is debian+linaro based
<mripard_> I know.
<zumbi> linaro did a pass over codesourcery patches and integrate them in their tools as well
<oliv3r> mnemoc: everything is marked as I/O; i'm sure that's not true (I think i saw some input only, output only things somewhere) how is it defined in the 3rd colomn?
<vinifm> oliv3r, are you looking at here? http://linux-sunxi.org/A10/PIO
<Turl> n01: boot_tftp=env set bootargs rdinit=/sbin/init earlyprintk console=ttyS0,115200; tftpboot 0x40000000 sun4i-a10-cubieboard.dtb; tftpboot 0x50000000 uImage; bootm 0x50000000 - 0x40000000
<oliv3r> vinifm: A20 actually; but will improve A10 asap
vinifm has quit [Quit: Saindo]
<n01> thanks! your uImage is @ 0x50000000 !
<Turl> yeah, uboot then relocates it to the right place
<Turl> I use LOADADDR=0x40008000
<n01> got it
rz2k has quit []
<n01> finally!!! I still get "Kernel panic - not syncing: Can't get timer clock
<n01> " but it is something :D
<n01> \0/
<Turl> what branch did you use to build?
<n01> dt-for-3.10
<Turl> hm, doesn't sound like a wise choice :)
<n01> :D do we have a more stable branch where to test dt?
<Turl> for a first try I'd go with torvalds/master
<Turl> pure mainline :)
<n01> yeah but I need dt for sunxi
<Turl> yeah there's dt support for sunxi on it already
<n01> why do I lost always something?
<n01> :) lol
<n01> anyway thank you guys, you have been amazing
<oliv3r> n01: dt-for-3.10 is probablya little further ahead ;)
<n01> yep, I didn't know there was already support for sunxi-dt in the mainline
<oliv3r> n01: oh yeah check linux-sunxi.org/mainlining_effort
ZaEarl__ has joined #linux-sunxi
ZaEarl_ has quit [Ping timeout: 245 seconds]
paulk-desktop has quit [Quit: Ex-Chat]
n01 has quit [Ping timeout: 276 seconds]