Re: [PATCH 1/2] arm64: Add missing GD_FLG_SKIP_RELOC handling

2021-10-15 Thread Marek Vasut
On 10/14/21 3:55 AM, Peng Fan (OSS) wrote: [...] diff --git a/arch/arm/lib/crt0_64.S b/arch/arm/lib/crt0_64.S index 680e674fa3..28c8356aee 100644 --- a/arch/arm/lib/crt0_64.S +++ b/arch/arm/lib/crt0_64.S @@ -104,6 +104,10 @@ ENTRY(_main)   bic    sp, x0, #0xf    /* 16-byte alignment for ABI

Re: [PATCH 1/2] arm64: Add missing GD_FLG_SKIP_RELOC handling

2021-10-13 Thread Peng Fan (OSS)
On 2021/10/11 5:52, marek.va...@gmail.com wrote: From: Marek Vasut In case U-Boot enters relocation with GD_FLG_SKIP_RELOC, skip the relocation. The code still has to set up new_gd pointer and new stack pointer. Signed-off-by: Marek Vasut Cc: Simon Glass Cc: Tom Rini ---

[PATCH 1/2] arm64: Add missing GD_FLG_SKIP_RELOC handling

2021-10-10 Thread marek . vasut
From: Marek Vasut In case U-Boot enters relocation with GD_FLG_SKIP_RELOC, skip the relocation. The code still has to set up new_gd pointer and new stack pointer. Signed-off-by: Marek Vasut Cc: Simon Glass Cc: Tom Rini --- arch/arm/lib/crt0_64.S | 4 lib/asm-offsets.c | 3 +++ 2