diff options
author | Prabhakar Kushwaha <prabhakar@freescale.com> | 2012-09-17 17:30:31 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-10-22 03:04:28 -0500 |
commit | 9f26fd7947a92a30f4eb68d4d0f60c1a73ab4280 (patch) | |
tree | a8839910dd96b8a6c0bd25ad9f1ebb7d6eca8cb1 /board/freescale/common/qixis.h | |
parent | 320d53da605d67b9d95622c5c6bfd5ac2c17ed58 (diff) | |
download | u-boot-imx-9f26fd7947a92a30f4eb68d4d0f60c1a73ab4280.zip u-boot-imx-9f26fd7947a92a30f4eb68d4d0f60c1a73ab4280.tar.gz u-boot-imx-9f26fd7947a92a30f4eb68d4d0f60c1a73ab4280.tar.bz2 |
board/freescale/common:QIXIS:Fix magic number usage
QIXIS FPGA layout defines the address of registers but The actual register bit
implementation is board-specific,
So avoid use of magic numbers as it may vary across different boards's QIXIS
FPGA implementation.
Also, Avoid board specific defines in common/qixis.h
Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/common/qixis.h')
-rw-r--r-- | board/freescale/common/qixis.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/board/freescale/common/qixis.h b/board/freescale/common/qixis.h index 7a0268a..83a3b69 100644 --- a/board/freescale/common/qixis.h +++ b/board/freescale/common/qixis.h @@ -86,12 +86,6 @@ struct qixis { u8 res15[16]; }; -#define QIXIS_BASE 0xffdf0000 -#define QIXIS_LBMAP_SWITCH 7 -#define QIXIS_LBMAP_MASK 0x0f -#define QIXIS_LBMAP_SHIFT 0 -#define QIXIS_LBMAP_ALTBANK 0x04 - u8 qixis_read(unsigned int reg); void qixis_write(unsigned int reg, u8 value); |