From: James Doublesin Date: Mon, 22 Dec 2014 22:26:12 +0000 (-0600) Subject: arm: am437x: Correct PLL frequency for 25MHz X-Git-Tag: v2015.04-rc1~81^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c87b6a96aca6748d519fd047da10fb7ed47017ad;p=pandora-u-boot.git arm: am437x: Correct PLL frequency for 25MHz The frequencies for 25MHz in dpll_per were out of spec for 25MHz, correct. Signed-off-by: James Doublesin Signed-off-by: Felipe Balbi --- diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index d851f833aa7..9874773bab9 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -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 */ };