ChanServ changed the topic of #linux-rockchip to: Rockchip development discussion | IRC log http://irclog.whitequark.org/linux-rockchip | Community GH https://github.com/linux-rockchip | Rockchip GH https://github.com/rockchip-linux | ML https://groups.google.com/group/linux-rockchip
vicencb has quit [Quit: Leaving.]
vicencb has joined #linux-rockchip
chewitt has quit [Ping timeout: 246 seconds]
<vicencb> mmind0: just tested: i have observed two things
<vicencb> mmind0: the kernel provided by archlinuxarm has random behaviour, sometimes the issue is reproduced at boot, sometimes is not reproduced.
<vicencb> mmind0: the kernel i compiled with the debug option does not reproduce the issue, although the configuration is very different.
<vicencb> mmind0: later this week will test with another kernel with debugging on and with a more similar configuration.
vicencb has quit [Quit: Leaving.]
kever has joined #linux-rockchip
chewitt has joined #linux-rockchip
hanetzer has quit [Ping timeout: 245 seconds]
vagrantc has quit [Quit: leaving]
hanetzer has joined #linux-rockchip
asciilifeform has joined #linux-rockchip
sb35 has quit [Ping timeout: 246 seconds]
afaerber has joined #linux-rockchip
vstehle has quit [Ping timeout: 244 seconds]
_whitelogger has joined #linux-rockchip
stikonas has quit [Remote host closed the connection]
chewitt has quit [Quit: Zzz..]
chewitt has joined #linux-rockchip
chewitt has quit [Quit: Zzz..]
chewitt has joined #linux-rockchip
field^Mop has joined #linux-rockchip
field^Zzz4 has quit [Ping timeout: 258 seconds]
field^Zzz1 has joined #linux-rockchip
field^Mop has quit [Ping timeout: 258 seconds]
sb35 has joined #linux-rockchip
aalm has quit [*.net *.split]
jailbox has quit [*.net *.split]
VargaD has quit [Ping timeout: 246 seconds]
VargaD has joined #linux-rockchip
jailbox has joined #linux-rockchip
sb35 has quit [Ping timeout: 268 seconds]
kaspter has quit [Ping timeout: 260 seconds]
kaspter has joined #linux-rockchip
amstan has quit [Ping timeout: 250 seconds]
aalm has joined #linux-rockchip
kever has quit [Ping timeout: 244 seconds]
kever has joined #linux-rockchip
vstehle has joined #linux-rockchip
anarsoul|2 has quit [Ping timeout: 272 seconds]
amstan has joined #linux-rockchip
VargaD has quit [Ping timeout: 268 seconds]
kaspter has quit [Remote host closed the connection]
kaspter has joined #linux-rockchip
VargaD has joined #linux-rockchip
camus has joined #linux-rockchip
kaspter has quit [Ping timeout: 264 seconds]
camus is now known as kaspter
kaspter has quit [Client Quit]
kaspter has joined #linux-rockchip
camus has joined #linux-rockchip
kaspter has quit [Ping timeout: 272 seconds]
camus is now known as kaspter
nsaenz has joined #linux-rockchip
nsaenz has quit [Read error: Connection reset by peer]
vicencb has joined #linux-rockchip
matthias_bgg has joined #linux-rockchip
ldevulder has joined #linux-rockchip
ldevulder has quit [Ping timeout: 250 seconds]
ldevulder has joined #linux-rockchip
vicencb has quit [Quit: Leaving.]
vicencb has joined #linux-rockchip
nsaenz has joined #linux-rockchip
kever has quit [Ping timeout: 272 seconds]
BenG83 has quit [Ping timeout: 244 seconds]
matthias_bgg has quit [Ping timeout: 264 seconds]
matthias_bgg has joined #linux-rockchip
jackmitchell has joined #linux-rockchip
<jackmitchell> does anyone know if it's possible to boot a ramdisk from the rockchip bootrom using mainline tools? I had a workflow with sunxi processors where it went bootrom -> uboot spl -> uboot proper -> linux and ramdisk which had been pre-loaded into memory via bootrom
<jackmitchell> I have been experimenting with the rkdevelop/rkflash tools but so far have only managed to get to the point where I can load the spl, but it then drops back to maskrom immediately where I suspect it then tries to load uboot proper from a storage device?
BenG83 has joined #linux-rockchip
<hanetzer> jackmitchell: unsure if it can be done with tools available now, but I believe it is possible
<jackmitchell> hanetzer: ok, I had come to that conclusion but thought I would double check I wasn't missing anything, I guess the next best option is probably a minimal emmc image to flash to the board which brings up uboot proper and then starts dfu to allow flashing
<jackmitchell> one last question though, on my rk3288 firefly board, I have wiped the emmc from rkflashtool in maskrom mode, however when I reset the board I still get a full build of uboot starting, is this coming from the emmc and erasing the flash from 0x0 hasn't actually wiped the flash; or is it embedded somewhere else
<jackmitchell> I understand from rockusb you can only access the emmc from an offset of 0x2000, however I thought from maskrom you could access the full emmc from 0x0
<hanetzer> unsure. does there exist spi flash? is this booted with some sdcard in it which may contain u-boot code?
<jackmitchell> no spi flash as far as I'm aware and without sd card, I have suspicions that the erase emmc isn't fully working or not behaving how I understand it to; I'll keep going and see if I can get to the bottom of it, thanks for you help!
catphish has joined #linux-rockchip
rellla has joined #linux-rockchip
somy has quit [Remote host closed the connection]
somy has joined #linux-rockchip
catphish has left #linux-rockchip ["Leaving"]
<DuClare> mmind00: Hmh, is there a simple way to enable clocks?
<DuClare> Like, statically
<mmind00> DuClare: not from the commandline ... if in doubt just disable the disabling in drivers/clk/clk-gate.c ;-)
<DuClare> Yea.. simply frobbing the grfs didn't do much for me, so I'm fumbling on to the next thing
<DuClare> debugfs tells me none of the hsic related clocks are enabled
<mmind00> DuClare: at least HCLK_HSIC should've gotten enabled through the ehci driver though
<DuClare> Oh right
<DuClare> That one is
<mmind00> DuClare: but yeah, the phy related clocks probably never get enabled due to the missing phy driver
<DuClare> What's the purpose of registering a clock in the phy driver anyway? Is it just so the usb driver can then toggle it off to save power?
sb35 has joined #linux-rockchip
sb35 has quit [Ping timeout: 246 seconds]
<mmind00> DuClare: yep ... the phy itself is a separate hardware block, "just" connected to the actual usb controller
<mmind00> DuClare: the phy driver in the Rockchip case handles clocks + GRF settings (there is also some part of power-control in there)
<mmind00> DuClare: and that is stuff you really don't want hacked into a _generic_ usb driver that can be used by a lot of different socs
<mmind00> (even on rockchip socs we have the same phy connected to both dwc2 + ehci-generic at least)
<mmind00> not even thinking about the usbphy also containing its own PLL which even gets fed back to the core clock controller
afaerber has quit [Quit: Leaving]
nsaenz has quit [Remote host closed the connection]
sb35 has joined #linux-rockchip
nsaenz has joined #linux-rockchip
nsaenz has quit [Remote host closed the connection]
nsaenz has joined #linux-rockchip
BenG83 has quit [Quit: Leaving]
afaerber has joined #linux-rockchip
BenG83 has joined #linux-rockchip
asciilifeform has left #linux-rockchip ["Leaving"]
nsaenz has quit [Read error: Connection reset by peer]
ldevulder has quit [Quit: Leaving]
nsaenz has joined #linux-rockchip
nsaenz has quit [Ping timeout: 272 seconds]
vagrantc has joined #linux-rockchip
kaspter has quit [Read error: Connection reset by peer]
kaspter has joined #linux-rockchip
anarsoul|2 has joined #linux-rockchip
stikonas has joined #linux-rockchip
vicencb has quit [Quit: Leaving.]
vicencb has joined #linux-rockchip
afaerber has quit [Quit: Leaving]
somy has quit [Remote host closed the connection]
somy has joined #linux-rockchip
jwerner has joined #linux-rockchip
nashpa has quit [Quit: Going away]
nashpa has joined #linux-rockchip
matthias_bgg has quit [Ping timeout: 246 seconds]
chewitt has quit [Quit: Zzz..]
chewitt has joined #linux-rockchip
vicencb has quit [Quit: Leaving.]
chewitt has quit [Quit: Zzz..]
chewitt has joined #linux-rockchip
chewitt has quit [Quit: Zzz..]
chewitt has joined #linux-rockchip
return0e has quit [Remote host closed the connection]
vicencb has joined #linux-rockchip
LargePrime has joined #linux-rockchip
jackmitchell has quit [Remote host closed the connection]
jackmitchell has joined #linux-rockchip
fischerm has joined #linux-rockchip
jackmitchell has quit [Ping timeout: 240 seconds]
vicencb has quit [Quit: Leaving.]
return0e has joined #linux-rockchip
vagrantc has quit [Quit: leaving]