]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
arm: am437x: Correct PLL frequency for 25MHz
authorJames Doublesin <doublesin@ti.com>
Mon, 22 Dec 2014 22:26:12 +0000 (16:26 -0600)
committerTom Rini <trini@ti.com>
Tue, 13 Jan 2015 16:53:39 +0000 (11:53 -0500)
The frequencies for 25MHz in dpll_per were out of spec for 25MHz,
correct.

Signed-off-by: James Doublesin <doublesin@ti.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
board/ti/am43xx/board.c

index d851f833aa737715f90300a14bd5d9383615b492..9874773bab955349ead828e6d78259ed092e0468 100644 (file)
@@ -124,7 +124,7 @@ const struct dpll_params dpll_core[NUM_CRYSTAL_FREQ] = {
 const struct dpll_params dpll_per[NUM_CRYSTAL_FREQ] = {
                {400, 7, 5, -1, -1, -1, -1},    /* 19.2 MHz */
                {400, 9, 5, -1, -1, -1, -1},    /* 24 MHz */
-               {32, 0, 8, -1, -1, -1, -1},     /* 25 MHz */
+               {384, 9, 5, -1, -1, -1, -1},    /* 25 MHz */
                {480, 12, 5, -1, -1, -1, -1}    /* 26 MHz */
 };