]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
MPC83XX: Fix PCI express clock setup
authorBill Cook <cook@isgchips.com>
Wed, 25 May 2011 19:51:07 +0000 (15:51 -0400)
committerKim Phillips <kim.phillips@freescale.com>
Thu, 7 Jul 2011 00:09:28 +0000 (19:09 -0500)
On a 8308 based board it was found that the PEX_GLK_RATIO register
(programmed in arch/powerpc/cpu/mpc83xx/pcie.c) was getting set to 0, This
was tracked to the fact that the pci express clock frequency was not being
assigned to the pciexp1_clk entry in the global data structure in file
arch/powerpc/cpu/mpc83xx/speed.c. Fix this and a similiar issue in
'do_clocks' command.

Signed-off-by: Bill Cook <cook@isgchips.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
arch/powerpc/cpu/mpc83xx/speed.c

index 1eca1a8f2636b7a2ee1096aa4a0cb597d56e5f87..4542ab1ac4636826cc505c2adb29bdbe063a18bd 100644 (file)
@@ -483,7 +483,8 @@ int get_clocks(void)
        gd->qe_clk = qe_clk;
        gd->brg_clk = brg_clk;
 #endif
-#if defined(CONFIG_MPC837x)
+#if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \
+       defined(CONFIG_MPC837x)
        gd->pciexp1_clk = pciexp1_clk;
        gd->pciexp2_clk = pciexp2_clk;
 #endif
@@ -543,7 +544,8 @@ int do_clocks (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
 #if defined(CONFIG_MPC834x)
        printf("  USB MPH:             %-4s MHz\n", strmhz(buf, gd->usbmph_clk));
 #endif
-#if defined(CONFIG_MPC837x)
+#if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \
+       defined(CONFIG_MPC837x)
        printf("  PCIEXP1:             %-4s MHz\n", strmhz(buf, gd->pciexp1_clk));
        printf("  PCIEXP2:             %-4s MHz\n", strmhz(buf, gd->pciexp2_clk));
 #endif