From: Matthew McClintock Date: Fri, 25 Feb 2011 22:20:11 +0000 (-0600) Subject: powerpc/85xx: Fix pixis_reset altbank mask on MPC8536DS X-Git-Tag: v2011.03-rc2~20 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=509e19cab43ba38311749eba5ceebd806116ce38;p=karo-tx-uboot.git powerpc/85xx: Fix pixis_reset altbank mask on MPC8536DS Currently, pixis_reset altbank does not work properly. This patch uses the correct mask to boot into the alternate bank. Signed-off-by: Matthew McClintock Signed-off-by: Kumar Gala --- diff --git a/include/configs/MPC8536DS.h b/include/configs/MPC8536DS.h index 11ee650418..13300de3ea 100644 --- a/include/configs/MPC8536DS.h +++ b/include/configs/MPC8536DS.h @@ -311,7 +311,7 @@ /* old pixis referenced names */ #define PIXIS_VCLKH 0x19 /* VELA VCLKH register */ #define PIXIS_VCLKL 0x1A /* VELA VCLKL register */ -#define CONFIG_SYS_PIXIS_VBOOT_MASK 0xc0 +#define CONFIG_SYS_PIXIS_VBOOT_MASK 0x4e #define CONFIG_SYS_INIT_RAM_LOCK 1 #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* Initial L1 address */