diff options
author | Haiying Wang <Haiying.Wang@freescale.com> | 2009-05-20 12:30:29 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-06-12 17:16:59 -0500 |
commit | b3d7f20f43a0f8d11c65e2f92153b5512b11580c (patch) | |
tree | 8a840b991bf04c01c27ab769d8185f78ea07e752 /cpu/mpc85xx/cpu.c | |
parent | 71b358cc26792889bbac35054d8e89d59b3fabc4 (diff) | |
download | u-boot-imx-b3d7f20f43a0f8d11c65e2f92153b5512b11580c.zip u-boot-imx-b3d7f20f43a0f8d11c65e2f92153b5512b11580c.tar.gz u-boot-imx-b3d7f20f43a0f8d11c65e2f92153b5512b11580c.tar.bz2 |
85xx: Add QE clk support
Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
Acked-by: Timur Tabi <Timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/cpu.c')
-rw-r--r-- | cpu/mpc85xx/cpu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c index 1c3eddf..8f94bad 100644 --- a/cpu/mpc85xx/cpu.c +++ b/cpu/mpc85xx/cpu.c @@ -186,6 +186,10 @@ int checkcpu (void) printf("CPM: %s MHz\n", strmhz(buf1, sysinfo.freqSystemBus)); #endif +#ifdef CONFIG_QE + printf(" QE:%-4s MHz\n", strmhz(buf1, sysinfo.freqQE)); +#endif + puts("L1: D-cache 32 kB enabled\n I-cache 32 kB enabled\n"); return 0; |