buzzmarshall has quit [Quit: Konversation terminated!]
mag has joined #beagle
mag_ has quit [Ping timeout: 240 seconds]
waldo323 has quit [Ping timeout: 272 seconds]
Shadyman has quit [Quit: Leaving.]
djinni has quit [Quit: Leaving]
johanhenselmans_ has joined #beagle
johanhenselmans has quit [Ping timeout: 272 seconds]
johanhenselmans_ is now known as johanhenselmans
djinni has joined #beagle
demirok has joined #beagle
pagnol has joined #beagle
<pagnol>
does anyone happen to have a recommendation for a 5G USB dongle?
Posterdati has joined #beagle
demirok has quit [Quit: Leaving.]
otisolsen70 has joined #beagle
jfsimon1981 has quit [Quit: Leaving]
jfsimon1981 has joined #beagle
buckket has quit [Quit: buckket]
buckket has joined #beagle
pagnol has quit [Ping timeout: 268 seconds]
PhotoJim has quit [Ping timeout: 244 seconds]
PhotoJim has joined #beagle
randombot has joined #beagle
vagrantc has joined #beagle
buzzmarshall has joined #beagle
zjason` is now known as zjason
Shadyman has joined #beagle
mag_ has joined #beagle
mag has quit [Ping timeout: 268 seconds]
randombot has quit [Remote host closed the connection]
randombot has joined #beagle
randombot has quit [Ping timeout: 255 seconds]
xet7 has joined #beagle
xet7_ has joined #beagle
xet7 has quit [Ping timeout: 268 seconds]
xet7_ has quit [Ping timeout: 272 seconds]
vagrantc has quit [Quit: leaving]
randombot has joined #beagle
randombot has quit [Ping timeout: 268 seconds]
xet7 has joined #beagle
jfsimon1981 has quit [Ping timeout: 260 seconds]
jfsimon1981 has joined #beagle
Guest9782 has joined #beagle
<Guest9782>
Is beagleboard ai-64 available for order anywhere in the US? I cant find a single place its not soldout
<Guest9782>
EU and SG seem to still have availablility
lucascastro has joined #beagle
randombot has joined #beagle
otisolsen70 has quit [Quit: Leaving]
<rcn-ee>
Guest9782: should show up in another week or two...
azarubkin has joined #beagle
<azarubkin>
Hi everyone, I have a question regarding device tree modification. Is it enough to modify it in U-Boot sources, or I should make similar changes in the Linux kernel sources?
<zmatt>
azarubkin: regardless of how you build it, you need to ensure u-boot passes a dtb to the kernel that's correct for your board
<azarubkin>
So U-Boot passes dtb to the kernel, so it's not necessary to modify the dts file in Linux kernel sources?
<zmatt>
typically the kernel source tree is where the dts resides to be build and installed alongside the kernel (unless you build and install it separately), then u-boot loads it from the filesystem and passes it to the loaded kernel
<zmatt>
I know recent u-boot versions also does something with embedded dtbs or something but I don't really know anything about it, I've not really worked with any such u-boot versions
<zmatt>
most information in the dtb is irrelevant to u-boot, it only needs to perform some board-specific initialization (and it needs to do so before it can load the dtb, so the dtb can't really be used by u-boot as a source of useful information)
<zmatt>
in practice dtbs are kernel-version-specific to some degree which is why they're normally built and installed alongside the kernel itself
<azarubkin>
Thank you. I'm trying to get my head around all the U-Boot, device tree & Linux kernel stuff, trying to modify the original setup for a custom board with TPS65910 instead of TPS65217 PMIC :(
<zmatt>
that may require significant modification to board initialization in u-boot
<azarubkin>
I'm looking into it. There are two functions - `scale_vcores_bone` dealing with TPS65217 and `scale_vcores_generic` dealing with TPS65910. I guess I should make U-Boot call the latter.
<azarubkin>
Also I need to enable config options for the new chip, I guess they are called CONFIG_DM_PMIC and CONFIG_DM_PMIC_TPS65910
lucascastro has quit [Remote host closed the connection]
lucascastro has joined #beagle
<zmatt>
if CONFIG_DM_PMIC wasn't already enabled then I don't know if you want to enable it
<zmatt>
CONFIG_DM_* stuff is the new "device model" which iirc is different from the older way of doing board initialization, so changing something from non-DM to DM presumably means further changes are required
<zmatt>
but it's been ages since I've done anything with u-boot, and mostly pre-DM, so anything I say here should be taken with a grain of salt
<azarubkin>
Thank you, I'll look at the available configuration options carefully