From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Mon, 6 Jul 2015 10:38:29 -0600 Subject: [U-Boot] [PATCH 02/13] ARM: tegra: allow reading recovery mode boot type In-Reply-To: <46d2437161c7f4598650dd58225fcdfe1fda5166.1436170106.git.marcel.ziswiler@toradex.com> References: <46d2437161c7f4598650dd58225fcdfe1fda5166.1436170106.git.marcel.ziswiler@toradex.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, On 6 July 2015 at 02:20, Marcel Ziswiler wrote: > From: Marcel Ziswiler > > Allow reading recovery mode (RCM) boot type from the boot information > table (BIT) written by the boot ROM (BR) to the IRAM. nit: Shouldn't this say that it is just adding the defines? Reviewed-by: Simon Glass > Signed-off-by: Marcel Ziswiler > --- > arch/arm/include/asm/arch-tegra/tegra.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/include/asm/arch-tegra/tegra.h b/arch/arm/include/asm/arch-tegra/tegra.h > index b6c7cab..3add1b3 100644 > --- a/arch/arm/include/asm/arch-tegra/tegra.h > +++ b/arch/arm/include/asm/arch-tegra/tegra.h > @@ -56,6 +56,8 @@ struct timerus { > /* Address at which WB code runs, it must not overlap Bootrom's IRAM usage */ > #define NV_WB_RUN_ADDRESS 0x40020000 > > +#define NVBOOTTYPE_RECOVERY 2 /* BR entered RCM */ > +#define NVBOOTINFOTABLE_BOOTTYPE 0xC /* Boot type in BIT in IRAM */ > #define NVBOOTINFOTABLE_BCTSIZE 0x38 /* BCT size in BIT in IRAM */ > #define NVBOOTINFOTABLE_BCTPTR 0x3C /* BCT pointer in BIT in IRAM */ > > -- > 1.9.3 > Regards, Simon