Re: [U-Boot] [PATCH 03/14] tegra: Add crypto library for warmboot code

2012-01-08 Thread Simon Glass
Hi Mike, On Sat, Jan 7, 2012 at 9:51 PM, Mike Frysinger vap...@gentoo.org wrote: On Monday 26 December 2011 14:32:56 Simon Glass wrote: --- /dev/null +++ b/arch/arm/cpu/armv7/tegra2/crypto.c +#ifdef DEBUG +static void debug_print_vector(char *name, u32 num_bytes, u8 *data) +{ +     u32 i;

Re: [U-Boot] [PATCH 03/14] tegra: Add crypto library for warmboot code

2012-01-07 Thread Mike Frysinger
On Monday 26 December 2011 14:32:56 Simon Glass wrote: --- /dev/null +++ b/arch/arm/cpu/armv7/tegra2/crypto.c +#ifdef DEBUG +static void debug_print_vector(char *name, u32 num_bytes, u8 *data) +{ + u32 i; + + printf(%s [%d] @0x%08x, name, num_bytes, (u32)data); + for (i = 0;

[U-Boot] [PATCH 03/14] tegra: Add crypto library for warmboot code

2011-12-26 Thread Simon Glass
From: Yen Lin ye...@nvidia.com Provides an interface to aes.c for the warmboot code. Signed-off-by: Simon Glass s...@chromium.org --- arch/arm/cpu/armv7/tegra2/crypto.c | 234 arch/arm/cpu/armv7/tegra2/crypto.h | 36 ++ 2 files changed, 270