Guest569 has quit [Read error: Connection reset by peer]
Hypfer has joined #linux-sunxi
rajkosto has quit [Ping timeout: 480 seconds]
apritzel has joined #linux-sunxi
rajkosto has joined #linux-sunxi
Net147 has quit [Quit: Quit]
Net147 has joined #linux-sunxi
Net147 has quit [Quit: Quit]
Net147 has joined #linux-sunxi
apritzel has quit [Ping timeout: 480 seconds]
anarsoul has quit [Read error: Connection reset by peer]
anarsoul has joined #linux-sunxi
apritzel has joined #linux-sunxi
Net147 has quit [Read error: Connection reset by peer]
Net147 has joined #linux-sunxi
disctanger has joined #linux-sunxi
Hypfer is now known as Guest581
Hypfer has joined #linux-sunxi
Guest581 has quit [Ping timeout: 480 seconds]
rajkosto has quit [Ping timeout: 480 seconds]
disctanger has quit [Remote host closed the connection]
cnxsoft has quit []
sunshavi has quit [Ping timeout: 480 seconds]
sunshavi has joined #linux-sunxi
aggi has quit [Quit: leaving]
aggi has joined #linux-sunxi
aggi is now known as Guest594
Guest594 has quit []
aggi has joined #linux-sunxi
aggi is now known as Guest596
Guest596 has quit []
aggi_ has joined #linux-sunxi
aggi_ has quit []
aggi_ has joined #linux-sunxi
aggi_ has quit []
aggi_ has joined #linux-sunxi
aggi_ has quit []
aggi has joined #linux-sunxi
aggi has quit [Quit: nyaa~]
aggi has joined #linux-sunxi
<smaeul>
mripard: jernej: thanks for the hints! LCD_RB_SWAP made the tint red instead of blue. and even with all layers disabled, the blender background color was affected. BLD_BK_COLOR=0xffff7f was full white. (changing any of the other bits did have an effect)
<smaeul>
so the problem was between the blender and the TCON FIFO... or in other words, the TCON TOP
<smaeul>
the problem was DE_PORT_SELECT_REG having both mixers mapped to TCON_LCD (value == 0)
<smaeul>
R40 manual has the note: "If TCON_LCD0 selects DE0 and DE1 as source at the same time, then DE0 will be used for the source of TCON_LCD0."
<smaeul>
so theoretically it should be fine, but it causes both the 1 pixel offset/wraparound and the incorrect colors
rajkosto has joined #linux-sunxi
adjtm has joined #linux-sunxi
<machinehum>
I'm assuming some people here have used Ghidra, is there a way to check to see which section of the program has accessed this memory? https://imgur.com/a/GoEHiLc
<machinehum>
But I'm not sure how to find which section of the program is using this string
JohnDoe_71Rus has quit []
<jernej>
smaeul: interesting, good to know
<smaeul>
machinehum: 1) make sure you have the right base address, so absolute address references work 2) split the memory region between .text/.rodata and .data/bss, and mark the .text/.rodata region as read-only. This allows the analysis to "dereference" through constant pools
<machinehum>
Right of course, yeah it's a relative
<machinehum>
all
<jernej>
smaeul: second point explains the annoyance I have with ghidra when analyzing binaries.