exynos5420: Fix some clock settings

Some registers and bit fields were wrong, but the difference is mostly
academic since the code that uses them are never called.

Change-Id: I0ce5e1529cdda1a4973765af8c31b79130b1111c
Signed-off-by: Gabe Black <gabeblack@google.com>
Reviewed-on: https://gerrit.chromium.org/gerrit/63189
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Commit-Queue: Gabe Black <gabeblack@chromium.org>
Tested-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/4385
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
Gabe Black 2013-07-24 03:57:49 -07:00 committed by Patrick Georgi
parent ad88fda1cf
commit e13680bdd0
1 changed files with 4 additions and 7 deletions

View File

@ -41,9 +41,9 @@ static struct clk_bit_info clk_bit_info[PERIPH_ID_COUNT] = {
{12, 16, 24},
{-1, -1, -1},
{16, 0, 8}, /* PERIPH_ID_SROMC */
{20, 16, 24},
{24, 0, 8},
{0, 0, 4},
{20, 20, 24},
{24, 24, 8},
{28, 28, 4},
{4, 12, 16},
{-1, -1, -1},
{-1, -1, -1},
@ -170,12 +170,9 @@ unsigned long clock_get_periph_rate(enum periph_id peripheral)
break;
case PERIPH_ID_SPI0:
case PERIPH_ID_SPI1:
src = readl(&clk->clk_src_peric1);
div = readl(&clk->clk_div_peric1);
break;
case PERIPH_ID_SPI2:
src = readl(&clk->clk_src_peric1);
div = readl(&clk->clk_div_peric2);
div = readl(&clk->clk_div_peric1);
break;
case PERIPH_ID_SPI3:
case PERIPH_ID_SPI4: