diff options
author | York Sun <yorksun@freescale.com> | 2011-01-26 10:30:00 -0800 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-01-26 23:43:57 -0600 |
commit | 2906845a1faf52a1db177b153f4353be804ef421 (patch) | |
tree | 2560d5a5f8741bd952bfd76c592ed5ba13f3b44a /include/configs/P1022DS.h | |
parent | 8aba9dceebb14144e07d19593111ee3a999c37fc (diff) |
p1022ds: fix pixis_reset altbank
Fix the bits for ngpixis to reset to alternative bank. Originally the mask
was 0xE0, which left it possible to reset to bank 3 if DIP switch is set to
boot from bank 1. Changing to 0xF0 gurantees to reset to bank 2.
Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/configs/P1022DS.h')
-rw-r--r-- | include/configs/P1022DS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/P1022DS.h b/include/configs/P1022DS.h index f31076858ea..cb240418fe6 100644 --- a/include/configs/P1022DS.h +++ b/include/configs/P1022DS.h @@ -151,7 +151,7 @@ #define CONFIG_SYS_OR2_PRELIM (OR_AM_32KB | 0x6ff7) #define PIXIS_LBMAP_SWITCH 7 -#define PIXIS_LBMAP_MASK 0xE0 +#define PIXIS_LBMAP_MASK 0xF0 #define PIXIS_LBMAP_ALTBANK 0x20 #define CONFIG_SYS_INIT_RAM_LOCK |