]> git.sur5r.net Git - u-boot/commitdiff
Revert "85xx: Using proper I2C source clock divider for MPC8544"
authorKumar Gala <galak@kernel.crashing.org>
Fri, 17 Oct 2008 02:58:49 +0000 (21:58 -0500)
committerWolfgang Denk <wd@denx.de>
Fri, 17 Oct 2008 08:50:41 +0000 (10:50 +0200)
This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.

The fix introduced by this patch is not correct.  The problem is
that the documentation is not correct for the MPC8544 with regards
to which bit in PORDEVSR2 is for the SEC_CFG.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
cpu/mpc85xx/speed.c

index 70dfad0321ee73aa86d55a541fb752e9efdc9786..485ba20fd76e5e6b179e34cc3332281693b6681a 100644 (file)
@@ -102,9 +102,9 @@ int get_clocks (void)
         * PORDEVSR2_SEC_CFG bit is 0 on all 85xx boards that are not an 8544.
         */
        if (gur->pordevsr2 & MPC85xx_PORDEVSR2_SEC_CFG)
-               gd->i2c1_clk = sys_info.freqSystemBus / 2;
-       else
                gd->i2c1_clk = sys_info.freqSystemBus / 3;
+       else
+               gd->i2c1_clk = sys_info.freqSystemBus / 2;
 #else
        /* Most 85xx SOCs use CCB/2, so this is the default behavior. */
        gd->i2c1_clk = sys_info.freqSystemBus / 2;