mnemoc changed the topic of #arm-netbook to: EOMA: Embedded Open Modular Architecture - Don't ask to ask. Just ask! - http://elinux.org/Embedded_Open_Modular_Architecture/EOMA-68 - ML arm-netbook@lists.phcomp.co.uk - Logs http://ibot.rikers.org/%23arm-netbook or http://irclog.whitequark.org/arm-netbook/ - http://rhombus-tech.net/
lerc has joined #arm-netbook
<GeorgeIoak> same result, didn't check adb though
<GeorgeIoak> yeah, same error in the adb log
<Turl> you'll have to go back to =1 then to get android working again
<GeorgeIoak> ok, but i can't understand why "stock" image doesn't support lcd
<GeorgeIoak> or at least stock from cubieboard. is there an image you think i can try from elsewhere?
<Turl> well, cubieboards don't ship with an lcd attached, the main android use is hdmi
<Turl> you could try with a mele image I guess
<Turl> nvm that's a stupid idea, I was thinking hdmi >.<
<Turl> fuu summer heat
<Turl> a tablet image? :P
<GeorgeIoak> what partition is that ro.display.switch file on so i can edit in when i boot from sd card?
<GeorgeIoak> a tablet image should work
<GeorgeIoak> i don't care about vga or sata
<GeorgeIoak> "care" for this project
<Turl> usually it's nandd but I don't know the exact layout of that cubie image
<GeorgeIoak> ok, i'll poke around and find it
<GeorgeIoak> is there a mele image you think i should try?
<Turl> meles have hdmi and dvi, forget I even said that :)
<Turl> and vga*
<Turl> derp
<GeorgeIoak> derp?
voronaam has quit [Quit: Leaving.]
aesok has quit [Remote host closed the connection]
stefanro1 has joined #arm-netbook
hg_5_ has joined #arm-netbook
stefanro has quit [Ping timeout: 276 seconds]
hg_5 has quit [Ping timeout: 252 seconds]
freakazoid0223 has joined #arm-netbook
hg_5_ has quit [Read error: Connection reset by peer]
hg_5 has joined #arm-netbook
hg_5 has quit [Client Quit]
rz2k has joined #arm-netbook
cnxsoft has joined #arm-netbook
dyoung-away is now known as dyoung
cnxsoft has quit [Read error: Connection reset by peer]
GeorgeIoak has left #arm-netbook [#arm-netbook]
cnxsoft has joined #arm-netbook
ln2 has joined #arm-netbook
ln2 has quit [Client Quit]
L84Supper has joined #arm-netbook
L84Supper has quit [Quit: <puff of smoke>]
L84Supper has joined #arm-netbook
aholler has joined #arm-netbook
aholler_ has quit [Ping timeout: 248 seconds]
freakazoid0223 has quit [Quit: Leaving]
KoH_ has joined #arm-netbook
KoH__ has quit [Ping timeout: 248 seconds]
Avernos has joined #arm-netbook
Avernos has joined #arm-netbook
SouL_ has joined #arm-netbook
SouL_ has left #arm-netbook [#arm-netbook]
Avernos__ has quit [Ping timeout: 248 seconds]
dyoung is now known as dyoung-away
ibrah has left #arm-netbook [#arm-netbook]
Avernos_ has joined #arm-netbook
Avernos has quit [Ping timeout: 244 seconds]
rz2k has quit [Read error: Connection reset by peer]
gimli has joined #arm-netbook
Quarx has joined #arm-netbook
ZaEarl has joined #arm-netbook
cnxsoft has quit [Ping timeout: 248 seconds]
RaYmAn has joined #arm-netbook
rsalveti has quit [Ping timeout: 248 seconds]
wingrime has joined #arm-netbook
Alex1269 has joined #arm-netbook
ZaEarl has quit [Quit: Ex-Chat]
DEAT has quit [Read error: Connection reset by peer]
DEAT has joined #arm-netbook
dfletcher_ has joined #arm-netbook
drgreenthumb has quit [Ping timeout: 248 seconds]
cnxsoft has joined #arm-netbook
wingrime has quit [Ping timeout: 252 seconds]
<Alex1269> mnemoc, are you here ?
herdingcat has joined #arm-netbook
hg_5 has joined #arm-netbook
<mnemoc> Alex1269:
<Alex1269> Could you look this: http://sprunge.us/SdOb?c (gpio-sunxi.c) and http://sprunge.us/LUEg?c (gpio-sunxi.h)
<Alex1269> gpio-sunxi.c lines 283 and 410
<Alex1269> 283: this function is not exported to modules. Is it possible to replace it with something ? I with my driver could work as module..
<Alex1269> 410 - it use 32 virtual irqs (A10) to demux gpio irq28. I choose irqs 97-129, is it correct choise?
<Alex1269> This is final version of sunxi gpio driver...
<mnemoc> q1) how do others deal with set_irq_flags() ?
<mnemoc> q2) why making the SUNXI_ macros SUN4I only? the data, sure. but the macro functions? they are harmless and we will have to add data for other SoCs too
<Alex1269> as I understand - they disable irq in modules...
gimli has quit [Read error: Operation timed out]
<mnemoc> about the irq base, sounds fair... but i don't know what would be correct, comment this in the commit message so others can suggest a better base if wise
<Alex1269> q2 - I'm not sure this registers same in other sunxi platforms. And I can't check... For example a13 have only 24 eint gpios
<mnemoc> the most frustrating bit is that we can't distinguish A10S from A13 programatically yet
<mnemoc> iirc the pio and eint registers are identical in sun4i and sun5i
<mnemoc> even part of the same controller
<Alex1269> Ok. This need to be tested. I found info about a13 eint and can add a table.
<mnemoc> ignore sun5i/a13 in the first submit
<mnemoc> we need to import the code to distiguish the different sun5i socs first
<mnemoc> also, as this is new code, can we avoid typedef?
<Alex1269> Ok. About set_irq_flags. I've seen a patch exporting this function to modules and a patch to remove this functions from drivers (they say it is useless). I tried to remove it and it doesn't work - gpiolib can't request virtual interrupts
<Alex1269> enum... I'll remove it :)
<mnemoc> adding one EXPORT_SYMBOL isn't such a big deal
<Alex1269> So I'll add it via seaparate patch
<mnemoc> yes, 1/N
<mnemoc> (to not break bisecting)
<Alex1269> What is 1/N ? :)
<mnemoc> patch 1 of N
<Alex1269> Ok..
<mnemoc> git rebase -i is awesome :)
tinti has joined #arm-netbook
<Alex1269> So I 1) remove enum 2) comment virq base in commit 3) move out SUNXI_ macroses 3) make export patch 1/2 4) make gpio patch 2/2
<mnemoc> yes, that
<Alex1269> Ok. Thanks for tips :)
cnxsoft has quit [Ping timeout: 248 seconds]
Alex1269 has quit [Ping timeout: 245 seconds]
merbzt has joined #arm-netbook
<mnemoc> err... he left :|
<L84Supper> http://postimage.org/image/y2l75mw49/ carrier board
<L84Supper> they did in a few weeks what monkey boy hasn't been able to do in a year
discopig has quit [Ping timeout: 276 seconds]
rellla has joined #arm-netbook
<mnemoc> L84Supper: who? url?
<L84Supper> mnemoc: check the ML, "3 versions currently being tested. 512M, 1G and 2G RAM."
<L84Supper> just an email and name for now, he said the links will be up shortly to the product website
<mnemoc> :o
<L84Supper> amazing what can be done with cooperation
<L84Supper> vs ego trip
* mnemoc show look at the arm-netbook ml more often
<rellla> hi!
<mnemoc> hi rellla
<rellla> what could it be, that my selfmade debian image stucks at "Calibrating delay loop"? on cubie
<rellla> see here: http://pastebin.com/zXMQyiDk
* rellla has to set up a new card. zero'd uboot....
<hramrach> you never get the bogomips number?
<rellla> me? no more lines
<hramrach> it should be on the same line
<hramrach> did you try a pre-built image?
<rellla> no more output.
<hramrach> or pre-built kernel/u-boot
<rellla> not yet. as i have some sd-cards around, i'll try some prebuilt stuff from roman.
<rellla> was my first cubie-boot and i was hoping to have a quick success :-) i'll do some try and error later this day...
<hramrach> I did
<rellla> i had no problems setting up my meles myself a few weeks ago. so there is some work for a snowy weekend...
<hramrach> but success depends on frobbing some random kernel options
<hramrach> so known working config helps
<rellla> you mean .configs or bootenvs?
<hramrach> I don't have bootenv
<rellla> i used sun4i_defconfig and only did some nfs-server-enabling
<hramrach> do you have high precision timer?
<hramrach> don't know the exact option, sorry
<rellla> will check it out later, i'll be back ;)
rellla has quit [Read error: Connection reset by peer]
penguin42 has joined #arm-netbook
merbzt has quit [Ping timeout: 276 seconds]
herdingcat has quit [Remote host closed the connection]
discopig has joined #arm-netbook
cnxsoft has joined #arm-netbook
sv has joined #arm-netbook
discopig has quit [Ping timeout: 276 seconds]
sv has quit [Read error: Connection reset by peer]
discopig has joined #arm-netbook
wingrime has joined #arm-netbook
hg_5 has quit [Read error: Connection reset by peer]
<libv> has ithamar been around recently?
hp__ has quit [Ping timeout: 264 seconds]
hg_5 has joined #arm-netbook
rz2k has joined #arm-netbook
hg_5 has quit [Read error: Connection reset by peer]
<mnemoc> libv: no :|
tinti has quit [Read error: Connection reset by peer]
<libv> too bad, he has lots of good stuff to add, and i wanted to pick his brain on reviving some telechips hw to get some mali-200 work going again
tinti has joined #arm-netbook
cnxsoft has quit [Remote host closed the connection]
ZaEarl has joined #arm-netbook
ZaEarl has quit [Ping timeout: 246 seconds]
ZaEarl has joined #arm-netbook
L84Supper has quit [Quit: <puff of smoke>]
newbie has joined #arm-netbook
newbie is now known as hp__
ganbold__ has joined #arm-netbook
ganbold_ has quit [Ping timeout: 252 seconds]
vinifm has joined #arm-netbook
tinti has quit [Quit: Leaving]
hipboi has joined #arm-netbook
rz2k has quit []
wingrime has quit [Ping timeout: 260 seconds]
freakazoid0223 has joined #arm-netbook
L84Supper has joined #arm-netbook
muts has quit [Ping timeout: 252 seconds]
ln2 has joined #arm-netbook
muts has joined #arm-netbook
hipboi has quit [Ping timeout: 248 seconds]
ganbold___ has joined #arm-netbook
ganbold__ has quit [Read error: No route to host]
new has joined #arm-netbook
new is now known as Guest182
<Guest182> hi all, i have a cubieboard and i dont know that s.o. install for download films in hd and see it, thanks
<Guest182> it is the posibilities: Ubuntu - Debian - OpenELEC - Puppy - RasoRazor - Sugar - LTSP Thinclient and BerryWebServer
hipboi has joined #arm-netbook
Guest182 has quit [Quit: Page closed]
freakazoid0223 has quit [Read error: Connection reset by peer]
<Turl> hello hipboi
<hipboi> Turl: hi
<hipboi> happy new year
<Turl> happy new year :)
<mnemoc> hipboi: hey! what are you doing online? :p
<mnemoc> go out and celebrate!
<mnemoc> :)
<hipboi> it's cold outside
<hipboi> i just lit some firecrackers
<specing> hipboi: you should go *inside* and celebrate with your girlfriend
<specing> ... you know what I mean :)
<hipboi> Usually the Chinese new year eve is spend like this
<hipboi> a whole family around the tv, watch the celebration show from CCTV
<specing> spent*
<hipboi> specing: no longer girl friend
<hipboi> specing: we had a daughter, 3 months
<mnemoc> daughters are the best. until they start having boyfriends :|
<Turl> or "snake" friends as we say over here
wingrime has joined #arm-netbook
<mnemoc> Turl: odd thing, my bigger daughter becomes 12yo in the next weeks.... starting the year of the snake :|
<mnemoc> hipboi: sent you a mail. not to be replied these days obviusly, but please don't miss it :)
vinifm has quit [Quit: Ex-Chat]
rsalveti has joined #arm-netbook
<L84Supper> is there a link somewhere to the 500 page a10 manual?
<mnemoc> L84Supper: dl.linux-sunxi.org/A10
<L84Supper> thanks
<mnemoc> yw
Kraln has quit [Quit: No Ping reply in 180 seconds.]
<mnemoc> i'll tag the current sunxi-3.[04] branches and jump to the next stable releases, unless someone objects
Kraln has joined #arm-netbook
pwhalen has quit [Read error: Connection reset by peer]
<ln2> Have there been any updates on the EOMA-68 boards?
freakazoid0223 has joined #arm-netbook
ln2 has quit [Quit: ln2]
ln22 has joined #arm-netbook
dfletcher_ has quit [Changing host]
dfletcher_ has joined #arm-netbook
dfletcher_ is now known as drgreenthumb
pwhalen has joined #arm-netbook
eebrah has joined #arm-netbook
Avernos has joined #arm-netbook
Avernos has quit [Changing host]
Avernos has joined #arm-netbook
Avernos_ has quit [Ping timeout: 256 seconds]
tinti has joined #arm-netbook
jammi is now known as jammi--
jammi has joined #arm-netbook
jammi-- has quit [Quit: WeeChat 0.3.8]
Adibek_ has joined #arm-netbook
Quarx has quit []
eebrah has quit [Quit: ChatZilla 0.9.90 [Firefox 18.0.2/20130201065344]]
wingrime has quit [Ping timeout: 256 seconds]
ln2 has joined #arm-netbook
merbzt has joined #arm-netbook
eebrah has joined #arm-netbook
DEAT has quit [Read error: Connection reset by peer]
DEAT has joined #arm-netbook
<SPG> Alesh master a062ff3 rhombus allwinner_a10/orders/ajo.mdwn * http://git.hands.com/?p=rhombus.git;a=commitdiff;h=a062ff3
ln2 has quit [Quit: ln2]
<SPG> Alesh master 6e19525 rhombus allwinner_a10/orders/ajo2.mdwn * http://git.hands.com/?p=rhombus.git;a=commitdiff;h=6e19525
Turl has quit [Excess Flood]
Turl has joined #arm-netbook
eebrah has quit [Ping timeout: 240 seconds]
hg_5 has joined #arm-netbook
bsdfox_ has joined #arm-netbook
adibek has quit [Ping timeout: 245 seconds]
freakazoid0223 has quit [Quit: Leaving]
Turl has quit [Excess Flood]
Turl has joined #arm-netbook
toxicpsion has quit [Remote host closed the connection]
Avernos_ has joined #arm-netbook
Avernos has quit [Ping timeout: 248 seconds]
GeorgeIoak has joined #arm-netbook
<GeorgeIoak> another day and some more work ahead! i now have android running with a 15.6" LVDS panel thanks to tom
<GeorgeIoak> doesn't look like it has the resistive touch screen driver loaded sun4i_ts
<GeorgeIoak> lsmod (from the UART console) doesn't list it and insmod sun4i_ts says ir can't open sun4i_ts
<Turl> GeorgeIoak: the kernel probably lacks the module
<Turl> for insmod you need a full path
<Turl> eg insmod /system/lib/modules/sun4i_ts.ko
<GeorgeIoak> i hope it has it, he knew that's what i needed, i'll try the full path
merbzt has quit [Ping timeout: 264 seconds]
<GeorgeIoak> either this cubie board has network problem or the image does because i can't connect to internet, even fixing the IP
<GeorgeIoak> still trying to loacte the modules
<GeorgeIoak> can't use find, what works in android
Adibek_ has quit [Quit: Page closed]
<Turl> ls
<Turl> busybox has find if you have it installed
<GeorgeIoak> busybox doesn't seem to work, not really sure what shell i'm in on the uart console. seems limited whatever it is
<GeorgeIoak> ls works but it's difficult to use because | more or piping doesn't seem to work
<GeorgeIoak> with network i can't install a terminal
<Turl> try running 'mksh'
<GeorgeIoak> ok, that worked but the damn status messgaes keep coming onto the prompt but at least a step better
<GeorgeIoak> kkkk
<GeorgeIoak> system/lib has a bunch of libxxx.so but no .ko files or modules directory
hg_5 has quit [Ping timeout: 246 seconds]
vinifm has joined #arm-netbook
<GeorgeIoak> i see a /sys/modules directory
<Turl> /sys is a virtual filesystem created by the kernel, you won't find anything there
<GeorgeIoak> oh, i found /sys/modules/sun4i_cs0 directory with files in it but no sun4i_ts directory. where should i look for the "real" modules then
<Turl> I don't know where they are on your image, usually they're on /system/lib/modules
<GeorgeIoak> he said he was building a standard tablet image. if i ls in the /system/libary directory i see a bunch of those libxxx.so files and the next file is soundfx which is a directpry
<GeorgeIoak> could i possibly have more curve balls thrown at me??!
<Turl> haha
<Turl> if you had busybox you could busybox find / -name "*ko"
<GeorgeIoak> oh wait, now that i'm in makesh i do have busybox
<GeorgeIoak> good news, they're in /system/vendor/modules
<GeorgeIoak> bad news is that it goes from sun4i_spdma.ko to sunxi-ps2.ko so it looks like he didn't give me sun4i_ts.ko
<GeorgeIoak> Linux localhost 3.0.8+ #15 PREEMPT Sat Feb 9 23:42:57 CST 2013 armv7l GNU/Linux
<GeorgeIoak> is what i have, do i just need to find a sun4i_ts.ko for that kernel, copy it over and insmod it?
<ssvb> techn_: yes, I have seen that. Actually it is the driver for Mali-T604 from ARM Chromebook
<ssvb> techn_: unfortunately it's a bit of a mess, with one git repository hosted by linaro people, another one hosted by chromium people (the linaro variant oopses the kernel on chromebook)
<ssvb> techn_: and it has some OMAP remnants left in it, which indicates that it has been hacked in a hurry
<techn_> ssvb: someone mentioned that mali stuff mainlining has started.. where I can find sources?
<techn_> or do I remember it wrong