All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] am335x_evm_defconfig: Disable CMD_BOOTEFI_BOOTMGR
@ 2021-08-07 17:20 Matwey V. Kornilov
  2021-08-07 19:43 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Matwey V. Kornilov @ 2021-08-07 17:20 UTC (permalink / raw)
  To: sjg, paul.barker, dariobin, lokeshvutla, vigneshr
  Cc: u-boot, Matwey V. Kornilov

Previously, it was reported [1] that

    commit f3866909e350 ("distro_bootcmd: call EFI bootmgr even without having /EFI/boot")

introduced a regression for am335x_evm_defconfig (BeagleBone Black board).
Namely, an attempt to execute EFI binary from USB mass storage device has been
ending up with the following issue:

    data abort
    pc : [<9ce0b6d0>]          lr : [<9ffab7c7>]
    reloc pc : [<7d69d6d0>]    lr : [<8083d7c7>]
    sp : 9df44e28  ip : 9ffdfe90     fp : 00000003
    r10: 9ffe3300  r9 : 00000000     r8 : 9df6fe88
    r7 : 00000000  r6 : 9ce5da08     r5 : 9ce571f8  r4 : 9ce2c040
    r3 : 00000000  r2 : 00000001     r1 : 9ce56598  r0 : 00000000
    Flags: NzCv  IRQs off  FIQs on  Mode SVC_32
    Code: e3500000 0a000015 e590000c eb00f96e (e5d03000)
    UEFI image [0x9ce46000:0x9cf28fff] '/efi\boot\bootarm.efi'
    Resetting CPU ...

This issue is always reproduced when U-boot is stored on MMC, loaded via UART, or
USB RNDIS.

An attempt to fix this issue revealed a design issue in EFI subsystem [2],
so unlikely the satisfactory fix will be proposed quickly.

In this patch we disable CMD_BOOTEFI_BOOTMGR which is enabled by default and
never worked correctly for this board as a temporarly workaround for the issue.

Reference: https://lists.denx.de/pipermail/u-boot/2021-June/451486.html
Reference: https://lists.denx.de/pipermail/u-boot/2021-June/452297.html
Signed-off-by: Matwey V. Kornilov <matwey.kornilov@gmail.com>
---
 configs/am335x_evm_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/am335x_evm_defconfig b/configs/am335x_evm_defconfig
index ef8de5999e..c229b6acd6 100644
--- a/configs/am335x_evm_defconfig
+++ b/configs/am335x_evm_defconfig
@@ -91,3 +91,4 @@ CONFIG_WDT=y
 CONFIG_DYNAMIC_CRC_TABLE=y
 CONFIG_RSA=y
 CONFIG_LZO=y
+# CONFIG_CMD_BOOTEFI_BOOTMGR is not set
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] am335x_evm_defconfig: Disable CMD_BOOTEFI_BOOTMGR
  2021-08-07 17:20 [PATCH] am335x_evm_defconfig: Disable CMD_BOOTEFI_BOOTMGR Matwey V. Kornilov
@ 2021-08-07 19:43 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2021-08-07 19:43 UTC (permalink / raw)
  To: Matwey V. Kornilov, Heinrich Schuchardt
  Cc: sjg, paul.barker, dariobin, lokeshvutla, vigneshr, u-boot

[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]

On Sat, Aug 07, 2021 at 08:20:54PM +0300, Matwey V. Kornilov wrote:

> Previously, it was reported [1] that
> 
>     commit f3866909e350 ("distro_bootcmd: call EFI bootmgr even without having /EFI/boot")
> 
> introduced a regression for am335x_evm_defconfig (BeagleBone Black board).
> Namely, an attempt to execute EFI binary from USB mass storage device has been
> ending up with the following issue:
> 
>     data abort
>     pc : [<9ce0b6d0>]          lr : [<9ffab7c7>]
>     reloc pc : [<7d69d6d0>]    lr : [<8083d7c7>]
>     sp : 9df44e28  ip : 9ffdfe90     fp : 00000003
>     r10: 9ffe3300  r9 : 00000000     r8 : 9df6fe88
>     r7 : 00000000  r6 : 9ce5da08     r5 : 9ce571f8  r4 : 9ce2c040
>     r3 : 00000000  r2 : 00000001     r1 : 9ce56598  r0 : 00000000
>     Flags: NzCv  IRQs off  FIQs on  Mode SVC_32
>     Code: e3500000 0a000015 e590000c eb00f96e (e5d03000)
>     UEFI image [0x9ce46000:0x9cf28fff] '/efi\boot\bootarm.efi'
>     Resetting CPU ...
> 
> This issue is always reproduced when U-boot is stored on MMC, loaded via UART, or
> USB RNDIS.
> 
> An attempt to fix this issue revealed a design issue in EFI subsystem [2],
> so unlikely the satisfactory fix will be proposed quickly.
> 
> In this patch we disable CMD_BOOTEFI_BOOTMGR which is enabled by default and
> never worked correctly for this board as a temporarly workaround for the issue.
> 
> Reference: https://lists.denx.de/pipermail/u-boot/2021-June/451486.html
> Reference: https://lists.denx.de/pipermail/u-boot/2021-June/452297.html
> Signed-off-by: Matwey V. Kornilov <matwey.kornilov@gmail.com>
> ---
>  configs/am335x_evm_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/configs/am335x_evm_defconfig b/configs/am335x_evm_defconfig
> index ef8de5999e..c229b6acd6 100644
> --- a/configs/am335x_evm_defconfig
> +++ b/configs/am335x_evm_defconfig
> @@ -91,3 +91,4 @@ CONFIG_WDT=y
>  CONFIG_DYNAMIC_CRC_TABLE=y
>  CONFIG_RSA=y
>  CONFIG_LZO=y
> +# CONFIG_CMD_BOOTEFI_BOOTMGR is not set

Heinrich?

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-08-07 19:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-07 17:20 [PATCH] am335x_evm_defconfig: Disable CMD_BOOTEFI_BOOTMGR Matwey V. Kornilov
2021-08-07 19:43 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.