2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2003-12-08 01:34:36 +00:00
|
|
|
/*
|
2004-02-12 00:47:09 +00:00
|
|
|
* (C) Copyright 2003
|
|
|
|
* Josef Baumgartner <josef.baumgartner@telex.de>
|
2003-12-08 01:34:36 +00:00
|
|
|
*
|
2012-03-26 21:49:04 +00:00
|
|
|
* Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
|
2007-08-16 18:20:50 +00:00
|
|
|
* Hayden Fraser (Hayden.Fraser@freescale.com)
|
2003-12-08 01:34:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:44:58 +00:00
|
|
|
#include <clock_legacy.h>
|
2003-12-08 01:34:36 +00:00
|
|
|
#include <asm/processor.h>
|
2007-08-16 18:20:50 +00:00
|
|
|
#include <asm/immap.h>
|
2012-03-26 21:49:04 +00:00
|
|
|
#include <asm/io.h>
|
2003-12-08 01:34:36 +00:00
|
|
|
|
2006-03-31 16:32:53 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2009-06-12 11:29:00 +00:00
|
|
|
/* get_clocks() fills in gd->cpu_clock and gd->bus_clk */
|
2019-12-28 17:44:58 +00:00
|
|
|
int get_clocks(void)
|
2003-12-08 01:34:36 +00:00
|
|
|
{
|
2009-06-12 11:29:00 +00:00
|
|
|
#if defined(CONFIG_M5208)
|
2012-03-26 21:49:04 +00:00
|
|
|
pll_t *pll = (pll_t *) MMAP_PLL;
|
2009-06-12 11:29:00 +00:00
|
|
|
|
2012-03-26 21:49:04 +00:00
|
|
|
out_8(&pll->odr, CONFIG_SYS_PLL_ODR);
|
|
|
|
out_8(&pll->fdr, CONFIG_SYS_PLL_FDR);
|
2009-06-12 11:29:00 +00:00
|
|
|
#endif
|
|
|
|
|
2007-08-16 18:20:50 +00:00
|
|
|
#if defined(CONFIG_M5249) || defined(CONFIG_M5253)
|
|
|
|
volatile unsigned long cpll = mbar2_readLong(MCFSIM_PLLCR);
|
|
|
|
unsigned long pllcr;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifndef CONFIG_SYS_PLL_BYPASS
|
2007-08-16 18:20:50 +00:00
|
|
|
|
2004-12-16 18:09:49 +00:00
|
|
|
#ifdef CONFIG_M5249
|
2007-08-16 18:20:50 +00:00
|
|
|
/* Setup the PLL to run at the specified speed */
|
2008-10-16 13:01:15 +00:00
|
|
|
#ifdef CONFIG_SYS_FAST_CLK
|
2007-08-16 18:20:50 +00:00
|
|
|
pllcr = 0x925a3100; /* ~140MHz clock (PLL bypass = 0) */
|
|
|
|
#else
|
|
|
|
pllcr = 0x135a4140; /* ~72MHz clock (PLL bypass = 0) */
|
|
|
|
#endif
|
|
|
|
#endif /* CONFIG_M5249 */
|
|
|
|
|
|
|
|
#ifdef CONFIG_M5253
|
2008-10-16 13:01:15 +00:00
|
|
|
pllcr = CONFIG_SYS_PLLCR;
|
2007-08-16 18:20:50 +00:00
|
|
|
#endif /* CONFIG_M5253 */
|
|
|
|
|
|
|
|
cpll = cpll & 0xfffffffe; /* Set PLL bypass mode = 0 (PSTCLK = crystal) */
|
|
|
|
mbar2_writeLong(MCFSIM_PLLCR, cpll); /* Set the PLL to bypass mode (PSTCLK = crystal) */
|
|
|
|
mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* set the clock speed */
|
|
|
|
pllcr ^= 0x00000001; /* Set pll bypass to 1 */
|
|
|
|
mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* Start locking (pll bypass = 1) */
|
|
|
|
udelay(0x20); /* Wait for a lock ... */
|
2008-10-16 13:01:15 +00:00
|
|
|
#endif /* #ifndef CONFIG_SYS_PLL_BYPASS */
|
2007-08-16 18:20:50 +00:00
|
|
|
|
|
|
|
#endif /* CONFIG_M5249 || CONFIG_M5253 */
|
|
|
|
|
2008-02-04 21:38:20 +00:00
|
|
|
#if defined(CONFIG_M5275)
|
2012-03-26 21:49:04 +00:00
|
|
|
pll_t *pll = (pll_t *)(MMAP_PLL);
|
2008-02-04 21:38:20 +00:00
|
|
|
|
2008-04-13 16:59:26 +00:00
|
|
|
/* Setup PLL */
|
2012-03-26 21:49:04 +00:00
|
|
|
out_be32(&pll->syncr, 0x01080000);
|
|
|
|
while (!(in_be32(&pll->synsr) & FMPLL_SYNSR_LOCK))
|
2008-04-13 16:59:26 +00:00
|
|
|
;
|
2012-03-26 21:49:04 +00:00
|
|
|
out_be32(&pll->syncr, 0x01000000);
|
|
|
|
while (!(in_be32(&pll->synsr) & FMPLL_SYNSR_LOCK))
|
2008-04-13 16:59:26 +00:00
|
|
|
;
|
2008-02-04 21:38:20 +00:00
|
|
|
#endif
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
gd->cpu_clk = CONFIG_SYS_CLK;
|
2009-06-12 11:29:00 +00:00
|
|
|
#if defined(CONFIG_M5208) || defined(CONFIG_M5249) || defined(CONFIG_M5253) || \
|
2009-01-23 14:27:00 +00:00
|
|
|
defined(CONFIG_M5271) || defined(CONFIG_M5275)
|
2004-12-16 18:09:49 +00:00
|
|
|
gd->bus_clk = gd->cpu_clk / 2;
|
|
|
|
#else
|
2004-02-12 00:47:09 +00:00
|
|
|
gd->bus_clk = gd->cpu_clk;
|
2004-12-16 18:09:49 +00:00
|
|
|
#endif
|
2008-08-18 21:01:19 +00:00
|
|
|
|
2012-10-24 11:48:22 +00:00
|
|
|
#ifdef CONFIG_SYS_I2C_FSL
|
2012-12-13 20:48:49 +00:00
|
|
|
gd->arch.i2c1_clk = gd->bus_clk;
|
2012-10-24 11:48:22 +00:00
|
|
|
#ifdef CONFIG_SYS_I2C2_FSL_OFFSET
|
2012-12-13 20:48:49 +00:00
|
|
|
gd->arch.i2c2_clk = gd->bus_clk;
|
2008-08-18 21:01:19 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2004-02-12 00:47:09 +00:00
|
|
|
return (0);
|
2003-12-08 01:34:36 +00:00
|
|
|
}
|