diff options
author | Jason Jin <Jason.jin@freescale.com> | 2007-10-29 19:26:21 +0800 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-11-07 14:08:45 -0600 |
commit | 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56 (patch) | |
tree | 0e2f2244762b91e517a540b361cba7cc41c0b5a8 /board/freescale/common | |
parent | a8318ec205c8e8794b5f9f1b8584abadb440e8ba (diff) | |
download | u-boot-imx-9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56.zip u-boot-imx-9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56.tar.gz u-boot-imx-9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56.tar.bz2 |
Unify pixis_reset altbank across board families
Basically, refactor the CFG_PIXIS_VBOOT_MASK values
into the separate board config files.
Signed-off-by: Jason Jin <Jason.jin@freescale.com>
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/freescale/common')
-rw-r--r-- | board/freescale/common/pixis.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/board/freescale/common/pixis.c b/board/freescale/common/pixis.c index fd99a93..45dcf4d 100644 --- a/board/freescale/common/pixis.c +++ b/board/freescale/common/pixis.c @@ -207,13 +207,16 @@ void read_from_px_regs_altbank(int set) out8(PIXIS_BASE + PIXIS_VCFGEN1, tmp); } +#ifndef CFG_PIXIS_VBOOT_MASK +#define CFG_PIXIS_VBOOT_MASK 0x40 +#endif void set_altbank(void) { u8 tmp; tmp = in8(PIXIS_BASE + PIXIS_VBOOT); - tmp ^= 0x40; + tmp ^= CFG_PIXIS_VBOOT_MASK; out8(PIXIS_BASE + PIXIS_VBOOT, tmp); } |