Re: [PATCH] avb: Extend support to non-eMMC interfaces

2022-10-11 Thread Alistair Delva
On Mon, Oct 10, 2022 at 7:53 AM Mattijs Korpershoek wrote: > > Hi Alistair, > > Thank you for your patch. > > On lun., sept. 26, 2022 at 22:02, Alistair Delva wrote: > > > From: Jiyong Park > > > > Previously Android AVB supported block devices only

Re: [PATCH] Makefile: Disable PLATFORM_LIBGCC for LLVM toolchain

2022-09-27 Thread Alistair Delva
Hi Tom, On Tue, Sep 27, 2022 at 8:57 AM Tom Rini wrote: > > On Mon, Sep 26, 2022 at 08:47:47PM +, Alistair Delva wrote: > > > The LLVM toolchain does not have or need libgcc, so do not require > > it to exist on the library path. Even if "-print-libgcc-file-na

[PATCH] x86: Fix i8259 ifdef include guard

2022-09-26 Thread Alistair Delva
When building U-Boot with clang, it notices that the i8259.h include guard does not work correctly due to a typo. Fix it. Signed-off-by: Alistair Delva Cc: Simon Glass Cc: Bin Meng Cc: Nick Desaulniers --- arch/x86/include/asm/i8259.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH] avb: Extend support to non-eMMC interfaces

2022-09-26 Thread Alistair Delva
nitializes avb for the first (0) disk that is accessible via the virtio interface. [adelva: The "avb init" command is updated directly, as this is considered a "debug command" that can't be usefully used in u-boot scripts.] Signed-off-by: Alistair Delva Cc: Igor Opaniu

[PATCH] spl: atf: Fix clang -Wasm-operand-widths warning

2022-09-26 Thread Alistair Delva
^ common/spl/spl_atf.c:187:34: note: use constraint modifier "w" __asm__ __volatile__("msr DAIF, %0\n\t" : : "r" (daif) : "memory"); ^~ %w0 Use %x0 to match what Linux does in write

[PATCH] Makefile: Disable PLATFORM_LIBGCC for LLVM toolchain

2022-09-26 Thread Alistair Delva
available for testing. Signed-off-by: Alistair Delva Cc: Simon Glass Cc: Tom Rini Cc: Nick Desaulniers --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 8af67ebd63..af06b7aa19 100644 --- a/Makefile +++ b/Makefile @@ -874,8 +874,10 @@ u-boot-main :

[PATCH] Makefile: apply dynamic relocations for LLD

2022-09-26 Thread Alistair Delva
Nick Desaulniers Signed-off-by: Alistair Delva Cc: Simon Glass Cc: Tom Rini Cc: Nick Desaulniers --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 010ace9d7c..af06b7aa19 100644 --- a/Makefile +++ b/Makefile @@ -1022,7 +1022,7 @@ LDFLAGS_u

[PATCH] examples: standalone: Fix build with LLVM toolchain

2022-09-26 Thread Alistair Delva
static' in stubs.c. It's strange how gcc builds are working. Signed-off-by: Alistair Delva Cc: Rick Chen Cc: Simon Glass Cc: Tom Rini Cc: Nick Desaulniers --- examples/standalone/stubs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/standalone/stub

Re: Commit 4f2e2280862a ("RFC: arm: pci: Add PCI cam support to PCI-E ecam driver")

2022-01-19 Thread Alistair Delva
Hi Pali, Sorry for the late reply.. On Thu, Jan 13, 2022 at 4:34 AM Pali Rohár wrote: > > Hello! > > Now I see that you have merged commit 4f2e2280862a ("RFC: arm: pci: Add > PCI cam support to PCI-E ecam driver"). It adds some "PCI cam support" > with generic DT binding "pci-host-cam-generic".

[PATCH] arm64: relocate-rela: Add support for ld.lld

2021-10-20 Thread Alistair Delva
-Boot with ld.lld, the STATIC_RELA feature (enabled by default on arm64) breaks the build. After this patch, U-Boot can be linked successfully with and without CONFIG_STATIC_RELA. Originally-from: Elena Petrova Signed-off-by: Alistair Delva Cc: David Brazdil Cc: Scott Wood Cc: Tom Rini ---