Tartarus changed the topic of #u-boot to: SOURCE MOVED TO https://source.denx.de/u-boot/u-boot.git / U-Boot v2022.07 is OUT / Merge Window is OPEN, -next is CLOSED / Release v2022.10 is scheduled for 3 October 2022 / http://www.denx.de/wiki/U-Boot / Channel archives at https://libera.irclog.whitequark.org/u-boot
minimal has quit [Quit: Leaving]
kmcopper has quit [Quit: kmcopper]
umbramalison has quit [Quit: %So long and thanks for all the fish%]
umbramalison has joined #u-boot
flyback is now known as canuck
canuck is now known as flyback
thopiekar_ has joined #u-boot
thopiekar has quit [Ping timeout: 268 seconds]
akaWolf has quit [Ping timeout: 252 seconds]
akaWolf has joined #u-boot
mmu_man has quit [Ping timeout: 252 seconds]
vagrantc has quit [Quit: leaving]
LeSpocky has quit [Ping timeout: 265 seconds]
LeSpocky has joined #u-boot
behanw has joined #u-boot
<hanetzer> so, about extlinux.conf booting. a lot of linux distros plop the dtbs in /boot/dtbs/<vendor>/<dtb-files>; on arm, I could do fdtdir /boot/dtbs and that was fine; similar for aarch64 with that subdir setup?
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #u-boot
crb_ has quit [Ping timeout: 268 seconds]
crb has joined #u-boot
crb_ has joined #u-boot
crb has quit [Ping timeout: 268 seconds]
crb_ has quit [Read error: Connection reset by peer]
crb has joined #u-boot
behanw has quit [Quit: Connection closed for inactivity]
sszy has joined #u-boot
mmu_man has joined #u-boot
persmule has quit [Ping timeout: 258 seconds]
monstr has joined #u-boot
mckoan|away is now known as mckoan
persmule has joined #u-boot
guillaume_g has joined #u-boot
cbmuser has joined #u-boot
ikarso has joined #u-boot
prabhakarlad has joined #u-boot
tre has joined #u-boot
<hanetzer> seems like this is the case. so in other news, I've determined the bits to fiddle in the rk3399 dts to enable uart over the sdcard; problem is I still only can input via it, output still only goes out to vidconsole :P
<hanetzer> ahhh I may have figured it.
flyback has quit [Ping timeout: 250 seconds]
flyback has joined #u-boot
sstiller has joined #u-boot
<milkylainen> Hmm. I have a stm32mp1 based board without a u-boot env partition. It's fip based, where the u-boot is used as BL33. I don't understand how it can save env stuff and where it does it.
<milkylainen> It shouldn't be in the fip. That is signed stuff.
<milkylainen> Is there anything inside u-boot to tell me where the actual env storage is at?
<milkylainen> I can't find it.
apritzel has joined #u-boot
<LeSpocky> milkylainen: there should be, look out for ENV_IS_IN_* variables in Kconfig and/or include/configs
<milkylainen> LeSpocky: Tnx. I just found it. It's beyond fugly.
<milkylainen> st writes to the fip partition, at a hard offset.
<milkylainen> partition is 0x80000 -> 0x480000. 4M. Configuration writes at mmc offset 0x280000, ignoring any data there.
<milkylainen> Even if you had fixed the default configuration, it finds the fip or ssbl partition and tries to write in that area, hoping to not trash whatever is there.
<LeSpocky> so it's CONFIG_ENV_IS_IN_MMC but not respecting partitioning of the actual mmc?
<milkylainen> LeSpocky: It env handling, that fetches a env partition. That is declared as fip or ssbl. If that fails it goes for an offset. Like CONFIG_ENV_OFFSET=0x280000. So either way it lands in the default fip area when using their platform.
<LeSpocky> board specific?
mmu_man has quit [Ping timeout: 248 seconds]
<milkylainen> LeSpocky: Hmm. I don't think so. More like u-boot behavior. But not sure. Like declare your partition, if that fails it goes after an offset on mmc if that is available?
<LeSpocky> sounds odd, I mean in U-Boot "menuconfig -> environment" I don't see any option to declare a partition
<LeSpocky> well it's a mmc device number and partition number in CONFIG_SYS_MMC_ENV_DEV and CONFIG_SYS_MMC_ENV_PART
<marex> qschulz: hey, you around for a bit of puma gpio discussion ?
<qschulz> marex: o/
<marex> qschulz: lemme finish the email
<marex> qschulz: but well, I don't get how the GPIO hog and boot mode select fit together
<qschulz> marex: in short, we have a switch on the devkit which allows to cut the power and clock lines to the eMMC and put the SPI-NOR flash in HOLD mode (reset basically)
<qschulz> marex: we then have a GPIO we can control with SW that allows to electrically override this switch on the devkit so that at runtime we can enable eMMC and SPI-NOR flash
<marex> oh
<marex> so like you flip some hardware switch , plug in SD card, power on => the board boots from SD card => in SPL you set this GPIO hog which inhibits the behavior of the hardware switch and continues booting from eMMC which is now connected again ?
<qschulz> yes
<qschulz> well, not exactly
<qschulz> to be pedantic, I still want U-Boot proper to boot from SD card as first option (see same-as-spl in Device Tree)
<qschulz> but if it's not available, allow to load it from eMMC or SPI-NOR flash
<qschulz> I still want U-Boot proper to boot from SD card as first option *if U-Boot SPL was loaded from SD card*
<marex> qschulz: ok, so in U-Boot SPL you want to implement board_boot_order() to do that part
<marex> qschulz: i.e. separate topic I think
<qschulz> marex: yup, rockchip already has one
<marex> qschulz: but /wrt the gpio hog, dm_init_and_scan() should bring that up for you
<marex> does it ?
<qschulz> marex: all I can say is that without the patch I can load U-Boot proper from eMMC but not with the patch (when loading SPL from SD card)
guillaume_g has quit [Quit: Konversation terminated!]
<marex> qschulz: can you check whether your DT contains u-boot,dm-pre-reloc for the GPIO controller and the hogs ?
<marex> qschulz: that might be why the hogs are ignored
<marex> also you likely need u-boot,dm-spl
<qschulz> marex: it works without your patch, so yes, I do have u-boot,dm-pre-reloc for the GPIO controller otherwise it wouldn't have worked at all I'd have assumed
<marex> qschulz: and the hogs too ?
<qschulz> if the hogs are not working I cannot load U-Boot proper from eMMC, and I can, so yes :)
<marex> qschulz: can you double-check that ? the gpio_hog_probe_all() does not check any flags, while dm_probe_devices() does check presence of DM_FLAG_PRE_RELOC
<qschulz> marex: u-boot,dm-pre-reloc should be enough? I don't think I need u-boot,dm-spl?
<marex> qschulz: actually ... add the following to the beginning of drivers/core/root.c dm_probe_devices()
<marex> #ifdef CONFIG_SPL_BUILD
<marex> printf("%s[%d] %s | %d\n", __func__, __LINE__, dev->name, pre_reloc_only);
<marex> #endif
<marex> compile, boot, and see whether the hogs pop up in the list
<marex> it is also probably worth printing the $flags there
camus has quit [Ping timeout: 268 seconds]
camus has joined #u-boot
<hanetzer> blerg... tryina get rk3399's uart2dbga to work over the sdcard. strangely enough, input works, but not output.
<qschulz> marex: it's in the list for the SPL stage
<qschulz> bios_disable_override
<qschulz> but you can see it cannot load from MMC1 and SPI is not tried either
<marex> qschulz: the flags are hex or dec ?
<qschulz> %u
<qschulz> so dec
<marex> dm_probe_devices[369] gpio1@ff730000 | 1 | 64
<marex> so that means flags are 0x40 ?
<qschulz> 0x40 for gpio3, 0x8042 for bios_disable_override (the gpio in question, which is in gpio3 bank)
<hanetzer> qschulz: oh, you're building on rk3399?
<marex> qschulz: hmmm, so device_probe() should be called on this gpio_hog device, right ?
<marex> 374 if ((flags & mask) == mask) {
<marex> 375 ret = device_probe(dev);
<marex> the conditional should be true for bios_disable_override GPIO hog , right ?
<qschulz> hanetzer: building for rk3399 yes :)
<hanetzer> nice. I thought that 0xff77 looked familiar :P
<qschulz> marex: mmmm seems about right, since DM_FLAG_PROBE_AFTER_BIND is 0x8000
<qschulz> but would it actually be put in that mode if the gpio controller controlling it isn't actually probed?
<qschulz> because gpio3 does not have this flag set
<marex> qschulz: I was wondering about that too, but the DM should recursively probe the parents too
<marex> OK, paste.debian.net considers one-liner patch a spam
apritzel has quit [Ping timeout: 248 seconds]
<marex> qschulz: try https://paste.ack.tf/258e0a , that should force probe the GPIO controller too
mckoan is now known as mckoan|away
<qschulz> marex: gpio3 has the flag now but still no U-Boot proper loading from eMMC
<marex> qschulz: could it be the line 375 above device_probe() call returns negative value ? can you check the return value of device_probe() above for the bios_disable_override device ?
apritzel has joined #u-boot
<marex> qschulz: and maybe stick a printf() into drivers/gpio/gpio-uclass.c gpio_hog_probe() and enable the debug statements there, to see if that gets called and maybe fails ?
mmu_man has joined #u-boot
<qschulz> marex: wait, line 375 is incorrect I believe
<LeSpocky> milkylainen: okay after reconsidering, I guess partitions in DT and that env offset must be coordinated anyway
<qschulz> that's why it does not probe, it never enters it
<qschulz> because we have one mroe flag than DM_FLAG_PROBE_AFTER_BIND;
<marex> qschulz: which flag ?
<qschulz> marex: the == mask is incorrect I believe?
<qschulz> 0x40
<PaulePanter> I registered at https://source.denx.de/users/sign_in yesterday and sent an email to the source admins, but my account has not been approved yet. Any idea, how long it’s going to take?
<qschulz> marex: DM_FLAG_BOUND
<milkylainen> LeSpocky: I'll poke the vendor about it.
<LeSpocky> milkylainen: is it some defconfig in mainline u-boot?
<marex> qschulz: well look at that ...
<milkylainen> LeSpocky: my u-boot gets built with ENV_OFFSET and ENV_OFFSET_REDUND set to specific offsets.
<qschulz> marex: all devices printed in drivers/core/root.c have this flag set
<marex> qschulz: wait ...
<marex> the check is (flags & mask) == mask
<marex> so even if flags has DM_FLAG_BOUND set, it gets cleared in the flags & mask part
<marex> (or do I really not see it?)
<qschulz> marex: no no, i just misread, you're right
<qschulz> however, it does not enter the if condition
<marex> qschulz: can you print the $flags and $mask separately then ?
<LeSpocky> milkylainen: that's okay if those offsets point to some "free" space not used otherwise
<qschulz> marex: on it
<marex> thanks
<hanetzer> I get the feeling that my issue is somewhere in GRF_SOC_CON7:grf_uart_dbg_sel... its not documented in the TRM and u-boot only has GRF_UART_DBG_SEL_C listed. I'm trying to use uart2dbga
<milkylainen> LeSpocky: It doesn't. And I prefer to have some type of logical formatting to prevent mishaps.
<milkylainen> logical partitioning even.
<LeSpocky> that would probably be nice
<qschulz> marex: ah, I put the printf in the wrong location
<qschulz> marex: the issue is that the mask is not only DM_FLAG_PROBE_AFTER_BIND
<qschulz> it also has DM_FLAG_PRE_RELOC in it
<qschulz> which none of the device actually have set
<milkylainen> LeSpocky: Since I can't boot anymore. I conclude that u-boot just trashed my boot partition which happens to be at that offset.
<qschulz> marex: https://paste.ack.tf/79193a with this it works
<qschulz> pretty sure it's not that simple and we need to add it only if it's supposed to be in prereloc according to the device tree
<marex> so why is DM_FLAG_PRE_RELOC not added ?
<marex> if the gpio-hog node contains u-boot,dm-pre-reloc , the flag should be present
<marex> qschulz: I think we need something like if (ofnode_pre_reloc(dev_ofnode(dev))) dev_or_flags(child, DM_FLAG_PRE_RELOC); in DM core ?
<marex> sjg1: ^
sakman has quit [Remote host closed the connection]
mlaga97 has quit [Quit: No Ping reply in 180 seconds.]
mrnuke_ has joined #u-boot
macromorgan has quit [Remote host closed the connection]
sszy has quit [Quit: No Ping reply in 180 seconds.]
bq has quit [Ping timeout: 244 seconds]
GNUtoo has quit [Ping timeout: 258 seconds]
WoC has quit [Remote host closed the connection]
sakman_ has joined #u-boot
mlaga97_ has joined #u-boot
sszy_ has joined #u-boot
macromorgan has joined #u-boot
persmule has quit [Ping timeout: 258 seconds]
WoC` has joined #u-boot
GNUtoo has joined #u-boot
xroumegue has quit [*.net *.split]
tom42 has quit [*.net *.split]
karthanistyr has quit [*.net *.split]
davlefou has quit [*.net *.split]
mwalle has quit [*.net *.split]
mrnuke has quit [*.net *.split]
Wouter0100 has quit [*.net *.split]
GNUtoo has quit [Remote host closed the connection]
thopiekar_ has quit [*.net *.split]
naoki has quit [*.net *.split]
Peng_Fan has quit [*.net *.split]
crb has quit [*.net *.split]
pinsl has quit [*.net *.split]
qschulz has quit [*.net *.split]
stefanro has quit [*.net *.split]
LinuxHackerman has quit [*.net *.split]
mvaittin has quit [*.net *.split]
underpantsgnome[ has quit [*.net *.split]
mthall has quit [*.net *.split]
sakman_ has quit [*.net *.split]
camus has quit [*.net *.split]
indy has quit [*.net *.split]
kettenis has quit [*.net *.split]
m5zs7k has quit [*.net *.split]
par[m] has quit [*.net *.split]
Domon has quit [*.net *.split]
ide12 has quit [*.net *.split]
sukbeom has quit [*.net *.split]
sstiller has quit [*.net *.split]
sbach has quit [*.net *.split]
eloy has quit [*.net *.split]
apalos has quit [*.net *.split]
srk has quit [*.net *.split]
alpernebbi has quit [*.net *.split]
qsx has quit [*.net *.split]
jevinskie[m] has quit [*.net *.split]
justache has quit [*.net *.split]
Forty-Bot has quit [*.net *.split]
zeewark1 has quit [*.net *.split]
Patater has quit [*.net *.split]
fionera has quit [*.net *.split]
sicelo has quit [*.net *.split]
tlwoerner has quit [*.net *.split]
mmind00 has quit [*.net *.split]
elvishjerricco has quit [*.net *.split]
samueldr has quit [*.net *.split]
aggi has quit [*.net *.split]
austriancoder has quit [*.net *.split]
Crofton has quit [*.net *.split]
smurray has quit [*.net *.split]
agraf has quit [*.net *.split]
jkridner has quit [*.net *.split]
jybz has quit [*.net *.split]
niska has quit [*.net *.split]
rfs613 has quit [*.net *.split]
moto-timo has quit [*.net *.split]
mmu_man has quit [*.net *.split]
cbmuser has quit [*.net *.split]
Zapy has quit [*.net *.split]
Sout_ has quit [*.net *.split]
mps has quit [*.net *.split]
finga4 has quit [*.net *.split]
Rahix has quit [*.net *.split]
LetoThe2nd has quit [*.net *.split]
stefanct has quit [*.net *.split]
MWelchUK has quit [*.net *.split]
manu has quit [*.net *.split]
mckoan|away has quit [*.net *.split]
kabel has quit [*.net *.split]
tpw_rules has quit [*.net *.split]
tperrot has quit [*.net *.split]
bigendian has quit [*.net *.split]
j`ey has quit [*.net *.split]
sszy_ has quit [*.net *.split]
monstr has quit [*.net *.split]
akaWolf has quit [*.net *.split]
ldevulder has quit [*.net *.split]
zkrx has quit [*.net *.split]
Julia[m]1 has quit [*.net *.split]
mripard has quit [*.net *.split]
ric342[m] has quit [*.net *.split]
JBB[m] has quit [*.net *.split]
mncheck has quit [*.net *.split]
johang has quit [*.net *.split]
foxtrot has quit [*.net *.split]
milkylainen has quit [*.net *.split]
mort has quit [*.net *.split]
cyrozap has quit [*.net *.split]
kallisti5[m] has quit [*.net *.split]
Net147 has quit [*.net *.split]
any1 has quit [*.net *.split]
sigmaris has quit [*.net *.split]
WoC` has quit [*.net *.split]
Tartarus has quit [*.net *.split]
cJ has quit [*.net *.split]
rhadye has quit [*.net *.split]
ullbeking_ has quit [*.net *.split]
ccaione has quit [*.net *.split]
georgem has quit [*.net *.split]
pavelow has quit [*.net *.split]
g5pw has quit [*.net *.split]
peac has quit [*.net *.split]
pbrobinson has quit [*.net *.split]
khilman has quit [*.net *.split]
chron0 has quit [*.net *.split]
ElementW has quit [*.net *.split]
drewfustini has quit [*.net *.split]
ezequielg has quit [*.net *.split]
kveremitz has quit [*.net *.split]
ddevault has quit [*.net *.split]
hthiery has quit [*.net *.split]
kolbrich has quit [*.net *.split]
haritz has quit [*.net *.split]
dgilmore has quit [*.net *.split]
narmstrong has quit [*.net *.split]
mkorpershoek has quit [*.net *.split]
senzilla has quit [*.net *.split]
hramrach has quit [*.net *.split]
m4t has quit [*.net *.split]
jtf has quit [*.net *.split]
marex has quit [*.net *.split]
xypron has quit [*.net *.split]
cottsay has quit [*.net *.split]
mranostaj has quit [*.net *.split]
broonie has quit [*.net *.split]
paulbarker has quit [*.net *.split]
macromorgan has quit [*.net *.split]
mlaga97_ has quit [*.net *.split]
ikarso has quit [*.net *.split]
hanetzer has quit [*.net *.split]
doppo has quit [*.net *.split]
grgy has quit [*.net *.split]
pratyush has quit [*.net *.split]
alan_o has quit [*.net *.split]
dlg has quit [*.net *.split]
rburton has quit [*.net *.split]
JPEW has quit [*.net *.split]
wyre has quit [*.net *.split]
jamestperk has quit [*.net *.split]
bradfa has quit [*.net *.split]
prabhakarlad has quit [*.net *.split]
apritzel has quit [Remote host closed the connection]
tom42 has joined #u-boot
kettenis has joined #u-boot
pratyush has joined #u-boot
m4t has joined #u-boot
Patater has joined #u-boot
Julia[m]1 has joined #u-boot
apritzel has joined #u-boot
WoC` has joined #u-boot
macromorgan has joined #u-boot
mlaga97_ has joined #u-boot
sszy_ has joined #u-boot
sakman_ has joined #u-boot
mmu_man has joined #u-boot
prabhakarlad has joined #u-boot
camus has joined #u-boot
sstiller has joined #u-boot
ikarso has joined #u-boot
cbmuser has joined #u-boot
crb has joined #u-boot
monstr has joined #u-boot
thopiekar_ has joined #u-boot
akaWolf has joined #u-boot
naoki has joined #u-boot
apalos has joined #u-boot
pinsl has joined #u-boot
Zapy has joined #u-boot
zkrx has joined #u-boot
srk has joined #u-boot
ddevault has joined #u-boot
m5zs7k has joined #u-boot
doppo has joined #u-boot
qsx has joined #u-boot
alpernebbi has joined #u-boot
hthiery has joined #u-boot
sbach has joined #u-boot
mranostaj has joined #u-boot
indy has joined #u-boot
zeewark1 has joined #u-boot
grgy has joined #u-boot
stefanro has joined #u-boot
ric342[m] has joined #u-boot
peac has joined #u-boot
ldevulder has joined #u-boot
qschulz has joined #u-boot
Peng_Fan has joined #u-boot
eloy has joined #u-boot
hanetzer has joined #u-boot
underpantsgnome[ has joined #u-boot
Domon has joined #u-boot
kolbrich has joined #u-boot
JBB[m] has joined #u-boot
LinuxHackerman has joined #u-boot
samueldr has joined #u-boot
jevinskie[m] has joined #u-boot
mripard has joined #u-boot
Tartarus has joined #u-boot
sukbeom has joined #u-boot
aggi has joined #u-boot
ide12 has joined #u-boot
justache has joined #u-boot
Net147 has joined #u-boot
mncheck has joined #u-boot
Forty-Bot has joined #u-boot
cJ has joined #u-boot
Sout_ has joined #u-boot
j`ey has joined #u-boot
mmind00 has joined #u-boot
bigendian has joined #u-boot
tperrot has joined #u-boot
kabel has joined #u-boot
tpw_rules has joined #u-boot
mckoan|away has joined #u-boot
manu has joined #u-boot
MWelchUK has joined #u-boot
LetoThe2nd has joined #u-boot
Rahix has joined #u-boot
stefanct has joined #u-boot
finga4 has joined #u-boot
moto-timo has joined #u-boot
jybz has joined #u-boot
jkridner has joined #u-boot
rfs613 has joined #u-boot
niska has joined #u-boot
smurray has joined #u-boot
austriancoder has joined #u-boot
Crofton has joined #u-boot
agraf has joined #u-boot
cyrozap has joined #u-boot
milkylainen has joined #u-boot
foxtrot has joined #u-boot
johang has joined #u-boot
mort has joined #u-boot
sigmaris has joined #u-boot
any1 has joined #u-boot
kveremitz has joined #u-boot
ezequielg has joined #u-boot
ElementW has joined #u-boot
drewfustini has joined #u-boot
pbrobinson has joined #u-boot
g5pw has joined #u-boot
khilman has joined #u-boot
chron0 has joined #u-boot
pavelow has joined #u-boot
ccaione has joined #u-boot
georgem has joined #u-boot
ullbeking_ has joined #u-boot
rhadye has joined #u-boot
narmstrong has joined #u-boot
dgilmore has joined #u-boot
haritz has joined #u-boot
mkorpershoek has joined #u-boot
paulbarker has joined #u-boot
broonie has joined #u-boot
cottsay has joined #u-boot
xypron has joined #u-boot
marex has joined #u-boot
jtf has joined #u-boot
hramrach has joined #u-boot
senzilla has joined #u-boot
bradfa has joined #u-boot
wyre has joined #u-boot
jamestperk has joined #u-boot
JPEW has joined #u-boot
rburton has joined #u-boot
dlg has joined #u-boot
sicelo has joined #u-boot
fionera has joined #u-boot
tlwoerner has joined #u-boot
elvishjerricco has joined #u-boot
alan_o has joined #u-boot
mps has joined #u-boot
mvaittin has joined #u-boot
kallisti5[m] has joined #u-boot
par[m] has joined #u-boot
rvalue has quit [Max SendQ exceeded]
xroumegue has joined #u-boot
karthanistyr has joined #u-boot
mwalle has joined #u-boot
Wouter0100 has joined #u-boot
davlefou has joined #u-boot
mthall has joined #u-boot
mthall has quit [Max SendQ exceeded]
mrnuke_ has quit [*.net *.split]
tre has quit [*.net *.split]
LeSpocky has quit [*.net *.split]
umbramalison has quit [*.net *.split]
jagan has quit [*.net *.split]
redbrain has quit [*.net *.split]
urja has quit [*.net *.split]
vfazio has quit [*.net *.split]
rfried has quit [*.net *.split]
zar has quit [*.net *.split]
PaulePanter has quit [*.net *.split]
sicelo has quit [Ping timeout: 252 seconds]
persmule has joined #u-boot
rvalue has joined #u-boot
GNUtoo has joined #u-boot
sicelo has joined #u-boot
sicelo has joined #u-boot
kallisti5[m] has quit [Ping timeout: 248 seconds]
jevinskie[m] has quit [Ping timeout: 250 seconds]
par[m] has quit [Ping timeout: 250 seconds]
kolbrich has quit [Ping timeout: 264 seconds]
underpantsgnome[ has quit [Ping timeout: 268 seconds]
ric342[m] has quit [Ping timeout: 268 seconds]
JBB[m] has quit [Ping timeout: 268 seconds]
Tartarus has quit [Ping timeout: 268 seconds]
samueldr has quit [Ping timeout: 268 seconds]
LinuxHackerman has quit [Ping timeout: 268 seconds]
mvaittin has quit [Ping timeout: 268 seconds]
mripard has quit [Ping timeout: 268 seconds]
karthanistyr has quit [Ping timeout: 264 seconds]
elvishjerricco has quit [Ping timeout: 268 seconds]
mthall has joined #u-boot
mrnuke_ has joined #u-boot
tre has joined #u-boot
LeSpocky has joined #u-boot
jagan has joined #u-boot
umbramalison has joined #u-boot
redbrain has joined #u-boot
urja has joined #u-boot
vfazio has joined #u-boot
rfried has joined #u-boot
zar has joined #u-boot
PaulePanter has joined #u-boot
<qschulz> marex: Yes, I think this should be automatically set for all nodes with u-boot,dm-pre-reloc property?
Domon has quit [Ping timeout: 250 seconds]
hthiery has quit [Ping timeout: 264 seconds]
Julia[m]1 has quit [Ping timeout: 268 seconds]
mthall has quit [Max SendQ exceeded]
mthall has joined #u-boot
mvaittin has joined #u-boot
<qschulz> marex: we could have a defualt post_bind for each driver which does this, c.f. https://paste.ack.tf/ddaef4
jevinskie[m] has joined #u-boot
<qschulz> or actually always have it, directly in device_bind_common instead of allowing the user to override it
<marex> qschulz: yup
par[m] has joined #u-boot
kallisti5[m] has joined #u-boot
mripard has joined #u-boot
samueldr has joined #u-boot
LinuxHackerman has joined #u-boot
Tartarus has joined #u-boot
underpantsgnome[ has joined #u-boot
bq has joined #u-boot
elvishjerricco has joined #u-boot
JBB[m] has joined #u-boot
hthiery has joined #u-boot
Domon has joined #u-boot
minimal has joined #u-boot
Julia[m]1 has joined #u-boot
rvalue has quit [Ping timeout: 268 seconds]
rvalue has joined #u-boot
WoC` has quit [Remote host closed the connection]
ric342[m] has joined #u-boot
rvalue has quit [Read error: Connection reset by peer]
kolbrich has joined #u-boot
ldevulder has quit [Remote host closed the connection]
karthanistyr has joined #u-boot
rvalue has joined #u-boot
elafon has quit [Remote host closed the connection]
elafon has joined #u-boot
ldevulder has joined #u-boot
davlefou has quit [Ping timeout: 264 seconds]
jagan has quit [Quit: Connection closed]
apritzel has quit [Ping timeout: 268 seconds]
sstiller has quit [Quit: Leaving]
davlefou has joined #u-boot
sszy_ is now known as sszy
ikarso has quit [Quit: Connection closed for inactivity]
tre has quit [Remote host closed the connection]
flyback has quit [Quit: Leaving]
flyback has joined #u-boot
mmu_man has quit [Ping timeout: 268 seconds]
thopiekar_ has quit [Ping timeout: 268 seconds]
behanw has joined #u-boot
mmu_man has joined #u-boot
thopiekar has joined #u-boot
WoC has joined #u-boot
WoC has quit [Quit: Leaving]
WoC has joined #u-boot
jagan has joined #u-boot
naoki has quit [Quit: naoki]
naoki has joined #u-boot
WoC has quit [Ping timeout: 244 seconds]
sszy has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
WoC has joined #u-boot
WoC has quit [Remote host closed the connection]
WoC has joined #u-boot
thopiekar has quit [Quit: Likely restarting quassel...]
thopiekar has joined #u-boot
monstr has quit [Remote host closed the connection]
behanw has quit [Quit: Connection closed for inactivity]
mmu_man has quit [Ping timeout: 264 seconds]
mmu_man has joined #u-boot
sakman_ has quit [Ping timeout: 250 seconds]
ikarso has joined #u-boot
sakman_ has joined #u-boot
sakman_ is now known as sakman
thopiekar_ has joined #u-boot
thopiekar has quit [Ping timeout: 264 seconds]
prabhakarlad has quit [Quit: Client closed]
prabhakarlad has joined #u-boot
jagan has quit [Ping timeout: 265 seconds]
Gravis has quit [Quit: No Ping reply in 180 seconds.]
Gravis has joined #u-boot
WoC has quit [Quit: Leaving]
WoC has joined #u-boot
mps has quit [Ping timeout: 268 seconds]
prabhakarlad has quit [Quit: Client closed]
vagrantc has joined #u-boot
hanetzer has quit [Quit: WeeChat 3.5]
ikarso has quit [Quit: Connection closed for inactivity]
umbramalison has quit [Ping timeout: 265 seconds]
sigmaris has quit [Ping timeout: 248 seconds]
umbramalison has joined #u-boot
sigmaris has joined #u-boot