diff options
author | wdenk <wdenk> | 2004-09-28 17:59:53 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-09-28 17:59:53 +0000 |
commit | 66ca92a5ba882807ba8ed8f772c0fc22b25976cc (patch) | |
tree | 45f62d161cf60f9b5be79427073c979d99a41be2 /cpu/mpc8xx/cpu.c | |
parent | 4ec3a7f0fdbad19ad4fa0172b97451b98e82316a (diff) | |
download | u-boot-imx-66ca92a5ba882807ba8ed8f772c0fc22b25976cc.zip u-boot-imx-66ca92a5ba882807ba8ed8f772c0fc22b25976cc.tar.gz u-boot-imx-66ca92a5ba882807ba8ed8f772c0fc22b25976cc.tar.bz2 |
* Patch by Yuli Barcohen, 13 Jul 2004:
Allow clock setting on MPC866/MPC885 series chips according to
environment variable `cpuclk'
* Patch by Yuli Barcohen, 20 Apr 2004:
Remove unnecessary redefine of CPM_DATAONLY_SIZE for MPC826x
Diffstat (limited to 'cpu/mpc8xx/cpu.c')
-rw-r--r-- | cpu/mpc8xx/cpu.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpu/mpc8xx/cpu.c b/cpu/mpc8xx/cpu.c index d23d7ee..89a176e 100644 --- a/cpu/mpc8xx/cpu.c +++ b/cpu/mpc8xx/cpu.c @@ -124,13 +124,13 @@ static int check_CPU (long clock, uint pvr, uint immr) printf ("unknown M%s (0x%08x)", id_str, k); -#if defined(CFG_866_CPUCLK_MIN) && defined(CFG_866_CPUCLK_MAX) +#if defined(CFG_8xx_CPUCLK_MIN) && defined(CFG_8xx_CPUCLK_MAX) printf (" at %s MHz [%d.%d...%d.%d MHz]\n ", strmhz (buf, clock), - CFG_866_CPUCLK_MIN / 1000000, - ((CFG_866_CPUCLK_MIN % 1000000) + 50000) / 100000, - CFG_866_CPUCLK_MAX / 1000000, - ((CFG_866_CPUCLK_MAX % 1000000) + 50000) / 100000 + CFG_8xx_CPUCLK_MIN / 1000000, + ((CFG_8xx_CPUCLK_MIN % 1000000) + 50000) / 100000, + CFG_8xx_CPUCLK_MAX / 1000000, + ((CFG_8xx_CPUCLK_MAX % 1000000) + 50000) / 100000 ); #else printf (" at %s MHz: ", strmhz (buf, clock)); @@ -140,7 +140,7 @@ static int check_CPU (long clock, uint pvr, uint immr) checkdcache () >> 10 ); - /* do we have a FEC (860T/P or 852/859/866)? */ + /* do we have a FEC (860T/P or 852/859/866/885)? */ immap->im_cpm.cp_fec.fec_addr_low = 0x12345678; if (immap->im_cpm.cp_fec.fec_addr_low == 0x12345678) { |