Message ID | 20210929181645.21855-1-clabbe.montjoie@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ARM: handle CONFIG_CPU_ENDIAN_BE32 in arch/arm/kernel/head.S | expand |
On Wed, Sep 29, 2021 at 8:19 PM Corentin Labbe <clabbe.montjoie@gmail.com> wrote: > My intel-ixp42x-welltech-epbx100 no longer boot since 4.14. > This is due to commit 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel > mapping regression") > which forgot to handle CONFIG_CPU_ENDIAN_BE32 as possible BE config. > > Suggested-by: Krzysztof Hałasa <khalasa@piap.pl> > Fixes: 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel mapping regression") > Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> Good catch! Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Please put this into Russell's patch tracker. Yours, Linus Walleij
Le Wed, Sep 29, 2021 at 09:08:38PM +0200, Linus Walleij a écrit : > On Wed, Sep 29, 2021 at 8:19 PM Corentin Labbe > <clabbe.montjoie@gmail.com> wrote: > > > My intel-ixp42x-welltech-epbx100 no longer boot since 4.14. > > This is due to commit 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel > > mapping regression") > > which forgot to handle CONFIG_CPU_ENDIAN_BE32 as possible BE config. > > > > Suggested-by: Krzysztof Hałasa <khalasa@piap.pl> > > Fixes: 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel mapping regression") > > Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> > > Good catch! > Reviewed-by: Linus Walleij <linus.walleij@linaro.org> > > Please put this into Russell's patch tracker. hello How to achieve that ? Do you mean https://www.arm.linux.org.uk/developer/patches/add.php ? Regards
On Tue, Oct 12, 2021 at 2:31 PM Corentin Labbe <clabbe.montjoie@gmail.com> wrote: > Le Wed, Sep 29, 2021 at 09:08:38PM +0200, Linus Walleij a écrit : > > On Wed, Sep 29, 2021 at 8:19 PM Corentin Labbe > > <clabbe.montjoie@gmail.com> wrote: > > > > > My intel-ixp42x-welltech-epbx100 no longer boot since 4.14. > > > This is due to commit 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel > > > mapping regression") > > > which forgot to handle CONFIG_CPU_ENDIAN_BE32 as possible BE config. > > > > > > Suggested-by: Krzysztof Hałasa <khalasa@piap.pl> > > > Fixes: 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel mapping regression") > > > Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> > > > > Good catch! > > Reviewed-by: Linus Walleij <linus.walleij@linaro.org> > > > > Please put this into Russell's patch tracker. > > hello > > How to achieve that ? > Do you mean https://www.arm.linux.org.uk/developer/patches/add.php ? Yes you need an account and the submit the patches using mail or the web interface. If it seems troublesome for you, tell me and I can sign it off and put it into the system. Yours, Linus Walleij
diff --git a/arch/arm/kernel/head.S b/arch/arm/kernel/head.S index 29070eb8df7d..3fc7f9750ce4 100644 --- a/arch/arm/kernel/head.S +++ b/arch/arm/kernel/head.S @@ -253,7 +253,7 @@ __create_page_tables: add r0, r4, #KERNEL_OFFSET >> (SECTION_SHIFT - PMD_ORDER) ldr r6, =(_end - 1) adr_l r5, kernel_sec_start @ _pa(kernel_sec_start) -#ifdef CONFIG_CPU_ENDIAN_BE8 +#if defined CONFIG_CPU_ENDIAN_BE8 || defined CONFIG_CPU_ENDIAN_BE32 str r8, [r5, #4] @ Save physical start of kernel (BE) #else str r8, [r5] @ Save physical start of kernel (LE) @@ -266,7 +266,7 @@ __create_page_tables: bls 1b eor r3, r3, r7 @ Remove the MMU flags adr_l r5, kernel_sec_end @ _pa(kernel_sec_end) -#ifdef CONFIG_CPU_ENDIAN_BE8 +#if defined CONFIG_CPU_ENDIAN_BE8 || defined CONFIG_CPU_ENDIAN_BE32 str r3, [r5, #4] @ Save physical end of kernel (BE) #else str r3, [r5] @ Save physical end of kernel (LE)
My intel-ixp42x-welltech-epbx100 no longer boot since 4.14. This is due to commit 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel mapping regression") which forgot to handle CONFIG_CPU_ENDIAN_BE32 as possible BE config. Suggested-by: Krzysztof Hałasa <khalasa@piap.pl> Fixes: 463dbba4d189 ("ARM: 9104/2: Fix Keystone 2 kernel mapping regression") Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> --- arch/arm/kernel/head.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)