From: Marek Vasut Date: Tue, 17 Apr 2018 00:49:48 +0000 (+0200) Subject: ARM: rmobile: Ignore U-Boot env when started via JTAG on Porter X-Git-Tag: v2018.05-rc3~49^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f2b6f82b9d97651200be3ab9f446668ae496178e;p=u-boot ARM: rmobile: Ignore U-Boot env when started via JTAG on Porter When U-Boot is started via JTAG, ignore the installed environment as it may interfere with the recovery of the board. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- diff --git a/board/renesas/porter/porter.c b/board/renesas/porter/porter.c index acd4f91d59..eb66bc903e 100644 --- a/board/renesas/porter/porter.c +++ b/board/renesas/porter/porter.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include @@ -136,3 +137,18 @@ void reset_cpu(ulong addr) if (ret) hang(); } + +enum env_location env_get_location(enum env_operation op, int prio) +{ + const u32 load_magic = 0xb33fc0de; + + /* Block environment access if loaded using JTAG */ + if ((readl(CONFIG_SPL_TEXT_BASE + 0x24) == load_magic) && + (op != ENVOP_INIT)) + return ENVL_UNKNOWN; + + if (prio) + return ENVL_UNKNOWN; + + return ENVL_SPI_FLASH; +}