Schimsalabim has quit [Read error: Connection reset by peer]
gsz has joined #linux-sunxi
Schimsalabim has joined #linux-sunxi
gsz has quit [Ping timeout: 480 seconds]
Schimsalabim has quit [Ping timeout: 480 seconds]
Schimsalabim has joined #linux-sunxi
Schimsalabim has quit [Read error: Connection reset by peer]
Schimsalabim has joined #linux-sunxi
vulpes2[m] has quit []
halal_beef has quit [Remote host closed the connection]
<loki666>
Can I help any of the pending patch series with a Tested-by?
<loki666>
I saw tokyovigilante patch, but I think it still too soon for that
<loki666>
I can test macromorgan patches, but I feel it will also need a V2
<loki666>
apritzel iommu patch?
apritzel_ has joined #linux-sunxi
<apritzel_>
loki666: any public feedback is useful, really. And be it to show that people are interested in those features, and it's not just some box-ticking exercise
colinsane has quit []
colinsane has joined #linux-sunxi
ftg has joined #linux-sunxi
fraolt has quit [Quit: Client limit exceeded: 20000]
<loki666>
Ok, I'll just need a simple test case (something to actually run the code) to validate that it works
Schimsalabim has quit [Ping timeout: 480 seconds]
Schimsalabim has joined #linux-sunxi
<apritzel_>
loki666: if you could test tokyovigilante's DE33 patches, that would be very useful. Try to apply them on top of current mainline, then add as much LCD code on top as you need
<apritzel_>
I haven't checked, but I'd assume that tokyovigilante's branch is still based on an earlier version of the DE33 patches?
<apritzel_>
so it would be good to go as close to mainline with this as possible, just add enough of the rest to actually see a picture
<apritzel_>
and maybe add in the iommu code here as well, I think the DE references that as well?
<tokyovigilante>
My branch is still against 6.10-rc2, and I generally try to go back to as close to mainline as possible when preparing a patch for submission, rather than have a pile of out of tree code underneath (I do have most of the pending AXP patches applied, and the IOMMUv2 patches).
<tokyovigilante>
apritzel: I'll give the crypto patches a try tomorrow, I also want to go back to the audio codec driver while I wait for DE feedback, and I have some deferred userspace work to catch up on.
<tokyovigilante>
I see Lee has merged the cpufreq bin for the H700, hopefully the DT patches will also get acked presently.
<tokyovigilante>
I have got the LCD patches squashed on top for testing, so if you build 35e2be56 from my de33-mainline-v1 branch you should get a display
<loki666>
Ok I'll hack this over the weekend
<apritzel_>
tokyovigilante: ah, very good, thanks for the update
colinsane has quit [Remote host closed the connection]
colinsane has joined #linux-sunxi
colinsane has quit [Remote host closed the connection]
colinsane has joined #linux-sunxi
dsimic has quit [Ping timeout: 480 seconds]
gsz has quit [Ping timeout: 480 seconds]
dsimic has joined #linux-sunxi
Schimsalabim has quit [Read error: Connection reset by peer]
Schimsalabim has joined #linux-sunxi
gsz has joined #linux-sunxi
jakllsch has joined #linux-sunxi
dsimic is now known as Guest10383
dsimic has joined #linux-sunxi
Guest10383 has quit [Ping timeout: 480 seconds]
gsz has quit [Ping timeout: 480 seconds]
dsimic has quit [Ping timeout: 480 seconds]
JohnDoe_71Rus has joined #linux-sunxi
dsimic has joined #linux-sunxi
Schimsalabim has quit [Ping timeout: 480 seconds]
Schimsalabim has joined #linux-sunxi
pg12 has quit [Remote host closed the connection]
pg12 has joined #linux-sunxi
wigyori has quit [Ping timeout: 480 seconds]
<apritzel_>
wens: many thanks for the reviews, much appreciated!
apritzel_ has quit [Ping timeout: 480 seconds]
<macromorgan>
yeah, going to do a V2 but so far I don't expect any major changes. That of course may change if someone finds a bug or an issue with the way I am doing things currently. So far I just need to fix a few macros for creating MFD cells and update the DT YAML doc commit message.
<loki666>
macromorgan: ok, what would be a valid test ?
<macromorgan>
does the battery percentage show correct, does the online/present values reflect reality, do the input current/input voltage look correct
<macromorgan>
honestly since I refactored so much a good test case would be "it doesn't break on this other board that previously worked"
<loki666>
arf, that would be difficult, as I only own a rg35xx-h
<loki666>
I don't see sun8i-mixer 1100000.mixer: Adding to iommu group 0
<loki666>
and lcd screen is dead
chewitt has joined #linux-sunxi
<macromorgan>
apritzel: I'm working on the U-Boot stuff now, and was curious... I loaded the 6 patch series for the axp driver changes for SPL, and I'm getting this error now when compiling the axp_spl.c file: error: unknown type name ‘u8’
<macromorgan>
I feel like the compiler should know what a u8 is...
<macromorgan>
I can bypass it, I just didn't know if you have seen that before
<apritzel>
macromorgan: there was a hiccup in the U-Boot tree, with common.h first removed, then brought back
<apritzel>
u8 is a Linux invention, not endorsed by the C standard, so you need some custom header for that
<apritzel>
stdint.h gives you uint8_t and friends, but you need linux/types.h for the shorter versions
<apritzel>
so you need to include the latter in axp_spl.c
<macromorgan>
okay... I got around it by defining it myself in a header, but that'll just be an ugly patch for now
<macromorgan>
I'm trying to build U-Boot with an upstream device tree currently
<apritzel>
what's the difference?
<apritzel>
do you mean using the dts/upstream directory?
<macromorgan>
yes, I'm going to set the CONFIG_OF_UPSTREAM=y and work from there