diff options
author | Kim Phillips <kim.phillips@freescale.com> | 2008-03-28 10:19:07 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-03-28 16:01:06 -0500 |
commit | e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9 (patch) | |
tree | 2c75761816373aa02a3e9a5e369f74a4fba4c911 /board/freescale/mpc8360emds/mpc8360emds.c | |
parent | 81fd52c6c8fd19f0b7856b98217ce37c46c521af (diff) | |
download | u-boot-imx-e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9.zip u-boot-imx-e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9.tar.gz u-boot-imx-e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9.tar.bz2 |
mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
convenience macros.
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board/freescale/mpc8360emds/mpc8360emds.c')
-rw-r--r-- | board/freescale/mpc8360emds/mpc8360emds.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/board/freescale/mpc8360emds/mpc8360emds.c b/board/freescale/mpc8360emds/mpc8360emds.c index d90cdb3..2119320 100644 --- a/board/freescale/mpc8360emds/mpc8360emds.c +++ b/board/freescale/mpc8360emds/mpc8360emds.c @@ -98,11 +98,8 @@ int board_early_init_f(void) /* Enable flash write */ bcsr[0xa] &= ~0x04; - /* Disable G1TXCLK, G2TXCLK h/w buffers (rev.2 h/w bug workaround) */ - if (immr->sysconf.spridr == SPR_8360_REV20 || - immr->sysconf.spridr == SPR_8360E_REV20 || - immr->sysconf.spridr == SPR_8360_REV21 || - immr->sysconf.spridr == SPR_8360E_REV21) + /* Disable G1TXCLK, G2TXCLK h/w buffers (rev.2.x h/w bug workaround) */ + if (REVID_MAJOR(immr->sysconf.spridr) == 2) bcsr[0xe] = 0x30; /* Enable second UART */ @@ -308,8 +305,8 @@ void ft_board_setup(void *blob, bd_t *bd) * if on mpc8360ea rev. 2.1, * change both ucc phy-connection-types from rgmii-id to rgmii-rxid */ - if (immr->sysconf.spridr == SPR_8360_REV21 || - immr->sysconf.spridr == SPR_8360E_REV21) { + if ((REVID_MAJOR(immr->sysconf.spridr) == 2) && + (REVID_MINOR(immr->sysconf.spridr) == 1)) { int nodeoffset; const char *prop; int path; |