narmstrong changed the topic of #linux-amlogic to: Amlogic mainline kernel development discussion - our wiki http://linux-meson.com/ - ml linux-amlogic@lists.infradead.org - Publicly Logged on https://irclog.whitequark.org/linux-amlogic
sheepman has quit [Ping timeout: 260 seconds]
porfiriopaiz has joined #linux-amlogic
porfiriopaiz has quit [Quit: leaving]
pionen has joined #linux-amlogic
pionen has quit [Ping timeout: 252 seconds]
pionen has joined #linux-amlogic
pionen has quit [Ping timeout: 268 seconds]
pionen has joined #linux-amlogic
ldevulder_ has joined #linux-amlogic
ldevulder has quit [Ping timeout: 252 seconds]
pionen has quit [Ping timeout: 264 seconds]
Barada has joined #linux-amlogic
sheepman has joined #linux-amlogic
random_yanek has joined #linux-amlogic
Darkmatter66 has joined #linux-amlogic
Darkmatter66_ has quit [Ping timeout: 252 seconds]
warpme_ has joined #linux-amlogic
Darkmatter66_ has joined #linux-amlogic
Darkmatter66 has quit [Ping timeout: 244 seconds]
ldevulder_ is now known as ldevulder
_whitelogger has joined #linux-amlogic
warpme_ has joined #linux-amlogic
ldevulder has quit [Read error: Connection reset by peer]
ldevulder has joined #linux-amlogic
warpme_ has quit [Quit: warpme_]
vagrantc has quit [Quit: leaving]
warpme_ has joined #linux-amlogic
Darkmatter66 has joined #linux-amlogic
Darkmatter66_ has quit [Ping timeout: 264 seconds]
Darkmatter66 has quit [Quit: ZNC 1.7.1 - https://znc.in]
Darkmatter66 has joined #linux-amlogic
Darkmatter66 has quit [Ping timeout: 252 seconds]
Darkmatter66 has joined #linux-amlogic
ldevulder has quit [Read error: Connection reset by peer]
ldevulder has joined #linux-amlogic
nsaenz has joined #linux-amlogic
ldevulder has quit [Read error: Connection reset by peer]
ldevulder has joined #linux-amlogic
AntonioND has joined #linux-amlogic
<warpme_> Hi!. Can anybody update me with usablility current mesa-lima? I built mesa-lima/linux-mali accordingly to https://github.com/yuq/mesa-lima/wiki booting my s905w shows in dmesg lima is loaded. Also I see /dev/dri0 for meson-dp and /dev/dri1 for lima gpu but xorg says: https://pastebin.com/A5iqDA9k Is this expected or I miss something?
<adema_> maybe you need fbdev and dbus ?
warpme_ has quit [Quit: warpme_]
warpme_ has joined #linux-amlogic
<warpme_> adema_: fbdev is nonaccell alternative to dri. I already have working dri so switching to fbdev is path to nowehere….
AntonioND has quit [Ping timeout: 268 seconds]
afaerber has joined #linux-amlogic
<narmstrong> warpme_: are you sure dri0 is the meson dp ? on my tests, it was on dri1 and it caused a lot of issus where sw expects the dp to be on dri0, but we cannot force lima to be on dri1 since it's probed before
<warpme_> narmstrong: give me sec. i’ll check it
<warpme_> well - acordingly to dmesg I think so. pls look: https://pastebin.com/wSwiaE22
warpme_ has quit [Quit: warpme_]
nsaenz has quit [Remote host closed the connection]
nsaenz has joined #linux-amlogic
Barada has quit [Quit: Barada]
warpme_ has joined #linux-amlogic
warpme_ has quit [Client Quit]
warpme_ has joined #linux-amlogic
vagrantc has joined #linux-amlogic
ldevulder_ has joined #linux-amlogic
ldevulder has quit [Ping timeout: 246 seconds]
<ldevulder_> narmstrong, I will do the rebase for regmap, so you didn't find anything weird in my code that could explain the kvim2 boot issue I have with my changes?
ldevulder_ is now known as ldevulder
<narmstrong> ldevulder: not really
<ldevulder> narmstrong, ok thx, I will test it with your all refactoring, maybe it solves the issues :D like the USB change made by Jean-Jacques Hiblot that resolved the issues on kvim/libretech-cc (I hope this change will be merged in the next u-boot version)
drieschel has joined #linux-amlogic
<narmstrong> ldevulder: i'll be thankful if you test the refactor aswell !!!
<Xogium> anyone here getting kernel oops on kernel 4.17 on odroid c2 using nfs as sever ? http://ix.io/1tSl
<Xogium> *server
<Xogium> no idea why it does that
<Xogium> its random
<Xogium> its mean
<narmstrong> Switch to 4.18 and use the last stable release
<narmstrong> Oops 4.19
<Xogium> narmstrong: yeah, I'll do that… But that oops is annoying. I hope it was fixed, its a pain when it spawns out of nowhere
<Xogium> some mess up in memory allocation I suppose it is
<Xogium> only way is to try it I guess
<Xogium> this c2 acts weird when its under some load, could be downloading a file with wget or building stuff, they keyboard starts repeating keys at random, and a lot of times
<Xogium> *the keyboard
<Xogium> no clue why though, nothing else is affected, not sound via usb, not even the external drive plugged in
drieschel has quit [Ping timeout: 252 seconds]
afaerber has quit [Quit: Leaving]
random_yanek has quit [Quit: random_yanek]
random_yanek has joined #linux-amlogic
random_yanek has quit [Max SendQ exceeded]
drieschel has joined #linux-amlogic
jakogut has joined #linux-amlogic
afaerber has joined #linux-amlogic
afaerber has quit [Quit: Leaving]
nsaenz has quit [Remote host closed the connection]
trem has joined #linux-amlogic
warpme_ has quit [Quit: warpme_]
<ldevulder> narmstrong, I think I found the reason for the kvim2 boot issue
<ldevulder> after rebase my code I found this change I did:
<ldevulder> -clrsetbits_le32(priv->addr + gate->reg,
<ldevulder> +clrsetbits_le32(priv->regmap->ranges[0].start + gate->reg,
<ldevulder> BIT(gate->bit), on ? BIT(gate->bit) : 0);
<ldevulder> not so good, it's better to use this I think:
<ldevulder> - clrsetbits_le32(priv->addr + gate->reg,
<ldevulder> - BIT(gate->bit), on ? BIT(gate->bit) : 0);
<ldevulder> + regmap_update_bits(priv->map, gate->reg,
<ldevulder> + BIT(gate->bit), on ? BIT(gate->bit) : 0);
<narmstrong> Indeed it’s better
<ldevulder> like you did in clk_meson_axg.c
<ldevulder> and I'm now able to boot Ubuntu on kvim2 with my changes (and all your refactory code)
<ldevulder> but still issue on openSUSE, looks like a config diff, I will check the difference
warpme_ has joined #linux-amlogic
warpme_ has quit [Client Quit]
warpme_ has joined #linux-amlogic
warpme_ has quit [Client Quit]
warpme_ has joined #linux-amlogic
warpme_ has quit [Client Quit]
warpme_ has joined #linux-amlogic
warpme_ has quit [Client Quit]
sputnik_ has joined #linux-amlogic
<ldevulder> narmstrong, network looks broken on kvim with the latest u-boot and the amlogic cleanup + my patch... I need to check which patch is broken
drieschel has quit [Quit: drieschel]
trem has quit [Quit: Leaving]