diff options
author | York Sun <yorksun@freescale.com> | 2013-06-25 11:37:43 -0700 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2013-08-09 12:41:38 -0700 |
commit | f165bc35285460f9739a234de379a535519f39e6 (patch) | |
tree | eaf5957f7e71ed011bed3c490e393723b7b6b5d4 /board/freescale/b4860qds/b4860qds.c | |
parent | bc4804516e9fc75eea59b2d32a6b1de79f6fea6d (diff) | |
download | u-boot-imx-f165bc35285460f9739a234de379a535519f39e6.zip u-boot-imx-f165bc35285460f9739a234de379a535519f39e6.tar.gz u-boot-imx-f165bc35285460f9739a234de379a535519f39e6.tar.bz2 |
powerpc/corenet: Move RCW print to cpu.c
The RCW print is common for all corenet platforms. Not necessary to ducplicate
in each board file.
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'board/freescale/b4860qds/b4860qds.c')
-rw-r--r-- | board/freescale/b4860qds/b4860qds.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/board/freescale/b4860qds/b4860qds.c b/board/freescale/b4860qds/b4860qds.c index 86e44ea..e4f4bfd 100644 --- a/board/freescale/b4860qds/b4860qds.c +++ b/board/freescale/b4860qds/b4860qds.c @@ -35,8 +35,6 @@ int checkboard(void) char buf[64]; u8 sw; struct cpu_type *cpu = gd->arch.cpu; - ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR; - unsigned int i; static const char *const freq[] = {"100", "125", "156.25", "161.13", "122.88", "122.88", "122.88"}; int clock; @@ -61,19 +59,6 @@ int checkboard(void) /* the timestamp string contains "\n" at the end */ printf(" on %s", qixis_read_time(buf)); - /* Display the RCW, so that no one gets confused as to what RCW - * we're actually using for this boot. - */ - puts("Reset Configuration Word (RCW):"); - for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) { - u32 rcw = in_be32(&gur->rcwsr[i]); - - if ((i % 4) == 0) - printf("\n %08x:", i * 4); - printf(" %08x", rcw); - } - puts("\n"); - /* * Display the actual SERDES reference clocks as configured by the * dip switches on the board. Note that the SWx registers could |