From: Marek Vasut Date: Wed, 14 Sep 2011 14:09:04 +0000 (+0000) Subject: MX5: Clean up the output of "clocks" command X-Git-Tag: v2011.12-rc1~638 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37a6d2085e069166e830982bbe4676a1d7bb4674;p=platform%2Fkernel%2Fu-boot.git MX5: Clean up the output of "clocks" command The new output looks like this: > clocks PLL1 800 MHz PLL2 665 MHz PLL3 216 MHz AHB 133000 kHz IPG 66500 kHz IPG PERCLK 665000 kHz Signed-off-by: Marek Vasut Acked-by: Stefano Babic Acked-by: Jason Liu --- diff --git a/arch/arm/cpu/armv7/mx5/clock.c b/arch/arm/cpu/armv7/mx5/clock.c index 09556d3..0769a64 100644 --- a/arch/arm/cpu/armv7/mx5/clock.c +++ b/arch/arm/cpu/armv7/mx5/clock.c @@ -333,18 +333,20 @@ int do_mx5_showclocks(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) u32 freq; freq = decode_pll(mxc_plls[PLL1_CLOCK], CONFIG_SYS_MX5_HCLK); - printf("pll1: %dMHz\n", freq / 1000000); + printf("PLL1 %8d MHz\n", freq / 1000000); freq = decode_pll(mxc_plls[PLL2_CLOCK], CONFIG_SYS_MX5_HCLK); - printf("pll2: %dMHz\n", freq / 1000000); + printf("PLL2 %8d MHz\n", freq / 1000000); freq = decode_pll(mxc_plls[PLL3_CLOCK], CONFIG_SYS_MX5_HCLK); - printf("pll3: %dMHz\n", freq / 1000000); + printf("PLL3 %8d MHz\n", freq / 1000000); #ifdef CONFIG_MX53 freq = decode_pll(mxc_plls[PLL4_CLOCK], CONFIG_SYS_MX5_HCLK); - printf("pll4: %dMHz\n", freq / 1000000); + printf("PLL4 %8d MHz\n", freq / 1000000); #endif - printf("ahb clock : %dHz\n", mxc_get_clock(MXC_AHB_CLK)); - printf("ipg clock : %dHz\n", mxc_get_clock(MXC_IPG_CLK)); - printf("ipg per clock : %dHz\n", mxc_get_clock(MXC_IPG_PERCLK)); + + printf("\n"); + printf("AHB %8d kHz\n", mxc_get_clock(MXC_AHB_CLK) / 1000); + printf("IPG %8d kHz\n", mxc_get_clock(MXC_IPG_CLK) / 1000); + printf("IPG PERCLK %8d kHz\n", mxc_get_clock(MXC_IPG_PERCLK) / 1000); return 0; }