]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
MX5: Clean up the output of "clocks" command
authorMarek Vasut <marek.vasut@gmail.com>
Wed, 14 Sep 2011 14:09:04 +0000 (14:09 +0000)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Fri, 30 Sep 2011 20:01:05 +0000 (22:01 +0200)
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 <marek.vasut@gmail.com>
Acked-by: Stefano Babic <sbabic@denx.de>
Acked-by: Jason Liu <jason.hui@linaro.org>
arch/arm/cpu/armv7/mx5/clock.c

index 09556d31f0fb483b483ce75ade5291ed9e82d487..0769a645c3910f384ddc8c9765fe87f73eba4378 100644 (file)
@@ -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;
 }