[PATCH v4 05/15] lmb: notify of any changes to the LMB memory map
Sughosh Ganu
sughosh.ganu at linaro.org
Wed Feb 12 10:41:16 CET 2025
On Tue, 11 Feb 2025 at 20:25, Tom Rini <trini at konsulko.com> wrote:
>
> On Tue, Feb 11, 2025 at 07:40:40PM +0530, Sughosh Ganu wrote:
> > On Tue, 11 Feb 2025 at 19:30, Sughosh Ganu <sughosh.ganu at linaro.org> wrote:
> > >
> > > On Tue, 11 Feb 2025 at 19:24, Tom Rini <trini at konsulko.com> wrote:
> > > >
> > > > On Tue, Feb 11, 2025 at 04:41:09PM +0530, Sughosh Ganu wrote:
> > > > > On Tue, 11 Feb 2025 at 16:34, Alexander Dahl <ada at thorsis.com> wrote:
> > > > > >
> > > > > > Hello,
> > > > > >
> > > > > > Am Tue, Feb 11, 2025 at 04:23:13PM +0530 schrieb Sughosh Ganu:
> > > > > > > On Mon, 20 Jan 2025 at 15:43, Alexander Dahl <ada at thorsis.com> wrote:
> > > > > > > >
> > > > > > > > Hello,
> > > > > > > >
> > > > > > > > Am Mon, Jan 20, 2025 at 02:40:38PM +0530 schrieb Sughosh Ganu:
> > > > > > > > > On Fri, 17 Jan 2025 at 16:40, Alexander Dahl <ada at thorsis.com> wrote:
> > > > > > > >
> > > > > > > > […]
> > > > > > > >
> > > > > > > > > > This changeset breaks build with CONFIG_CC_OPTIMIZE_FOR_DEBUG=y for
> > > > > > > > > > me. In a usual non-debug build, everything is fine. However in a
> > > > > > > > > > debug build now I get this error:
> > > > > > > > > >
> > > > > > > > > > UPD include/generated/timestamp_autogenerated.h
> > > > > > > > > > GEN Makefile
> > > > > > > > > > Using /mnt/data/adahl/src/u-boot as source for U-Boot
> > > > > > > > > > CC common/version.o
> > > > > > > > > > AR common/built-in.o
> > > > > > > > > > LD u-boot
> > > > > > > > > > arm-v5te-linux-gnueabi-ld.bfd: lib/lmb.o: in function `lmb_map_update_notify':
> > > > > > > > > > /mnt/data/adahl/src/u-boot/lib/lmb.c:458: undefined reference to `efi_add_memory_map_pg'
> > > > > > > > >
> > > > > > > > > Can you share the details of the toolchain that you are using, where
> > > > > > > > > can I download it from. And the target that you build which shows this
> > > > > > > > > up. Thanks.
> > > > > > > >
> > > > > > > > Although I'm actually building with ptxdist and
> > > > > > > > OSELAS.Toolchain-2023.07.1/arm-v5te-linux-gnueabi for a custom board,
> > > > > > > > you should be able to reproduce the behaviour easily with buildman on
> > > > > > > > master when building for boards sam9x60ek or sam9x60_curiosity like
> > > > > > > > this:
> > > > > > > >
> > > > > > > > buildman -o ~/build/u-boot/buildman -e -a CC_OPTIMIZE_FOR_DEBUG sam9x60
> > > > > > > >
> > > > > > > > My output when running the above is this:
> > > > > > >
> > > > > > > Sorry, I haven't spent time debugging this issue, although this is on
> > > > > > > my todo list. Btw, since you already have a working setup, can you
> > > > > > > please reset your tree to the following commit and then check if that
> > > > > > > fixes your issue.
> > > > > > >
> > > > > > > 92e75ee47f1 ("board_r: Remove duplicate headers")
> > > > > >
> > > > > > Does not change anything.
> > > > > >
> > > > > > Note: my tree is not special in any way, it's a clean mainline u-boot
> > > > > > checkout and I'm building for a board with an in tree config.
> > > > > > Everyone should be able to reproduce this by using
> > > > > > configs/sam9x60_curiosity_mmc_defconfig, enabling
> > > > > > CC_OPTIMIZE_FOR_DEBUG and building with the default toolchain
> > > > > > downloaded by buildman, which is also mainline u-boot tooling.
> > > > > >
> > > > > > My assumption is: some efi code is pulled in unconditionally here,
> > > > > > but efi is not enabled on armv5 and it can not be enabled, efi is not
> > > > > > needed on this target anyways. Furthermore: I assume the code is
> > > > > > optimized out when doing a normal build without CC_OPTIMIZE_FOR_DEBUG,
> > > > > > which is basically building without optimizations and keeping debug
> > > > > > symbols.
> > > > >
> > > > > Okay. Please give me some time. I will try to spend some time on the
> > > > > issue this week. Thanks for your quick response.
> > > >
> > > > Yes, the problem is that CC_OPTIMIZE_FOR_DEBUG disables compiler
> > > > optimizations that we normally rely on to avoid having to #ifdef the
> > > > code. In this case, lmb_should_notify() causes this to normally be
> > > > optimized away as CONFIG_IS_ENABLED(EFI_LOADER) will be false and the
> > > > compiler will do the right thing. The "fix" is to instead make most of
> > > > the body of lmb_map_update_notify be guarded with #if
> > > > CONFIG_IS_ENABLED(EFI_LOADER) ... #endif
> > >
> > > Yes, that would be the obvious thing to do. But I suspect that because
> > > there are no optimisations with the said flag, it might be needed to
> > > even protect the function calls with the ifdefs. Which I am hoping to
> > > avoid.
> >
> > If we cannot do without using ifdefs at the function call sites, what
> > is your opinion on disabling lmb with the CC_OPTIMIZE_FOR_DEBUG flag
> > enabled? Maybe this can be converted into a config flag. There are
> > existing configurations like xilinix mini which too are disabling lmb.
> > Thoughts?
>
> It should just be a single set of #ifdef ... #endif, and possibly adding
> a __maybe_unused.
Like I suspected, just a single set of #ifdef ... #endif does not
help. Get link errors like such
arm-linux-gnueabi-ld.bfd: lib/lmb.o: in function `_lmb_alloc_base':
/data_sda/linaro_work/lmb_efi_fixes/lmb_qemu_test_setup/u-boot/lib/lmb.c:736:(.text._lmb_alloc_base+0x66):
undefined reference to `lmb_map_update_notify'
arm-linux-gnueabi-ld.bfd: lib/lmb.o: in function `lmb_add':
/data_sda/linaro_work/lmb_efi_fixes/lmb_qemu_test_setup/u-boot/lib/lmb.c:664:(.text.lmb_add+0x20):
undefined reference to `lmb_map_update_notify'
arm-linux-gnueabi-ld.bfd: lib/lmb.o: in function `lmb_free_flags':
/data_sda/linaro_work/lmb_efi_fixes/lmb_qemu_test_setup/u-boot/lib/lmb.c:676:(.text.lmb_free_flags+0x1e):
undefined reference to `lmb_map_update_notify'
arm-linux-gnueabi-ld.bfd: lib/lmb.o: in function `lmb_reserve':
/data_sda/linaro_work/lmb_efi_fixes/lmb_qemu_test_setup/u-boot/lib/lmb.c:696:(.text.lmb_reserve+0x2a):
undefined reference to `lmb_map_update_notify'
make: *** [Makefile:1824: u-boot] Error 1
This is with the CONFIG_CC_OPTIMIZE_FOR_DEBUG enabled.
-sughosh
>
> --
> Tom
More information about the U-Boot
mailing list