2008-12-17 22:36:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Extreme Engineering Solutions, Inc.
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-12-17 22:36:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2009-08-07 18:16:34 +00:00
|
|
|
#include <asm/io.h>
|
2008-12-17 22:36:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Return SYSCLK input frequency - 50 MHz or 66 MHz depending on POR config
|
|
|
|
*/
|
|
|
|
unsigned long get_board_sys_clk(ulong dummy)
|
|
|
|
{
|
2009-05-22 15:26:37 +00:00
|
|
|
#if defined(CONFIG_MPC85xx)
|
2008-12-17 22:36:23 +00:00
|
|
|
volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
|
2009-05-22 15:26:37 +00:00
|
|
|
#elif defined(CONFIG_MPC86xx)
|
|
|
|
immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
|
|
|
|
volatile ccsr_gur_t *gur = &immap->im_gur;
|
|
|
|
#endif
|
2008-12-17 22:36:23 +00:00
|
|
|
|
2009-08-07 18:16:34 +00:00
|
|
|
if (in_be32(&gur->gpporcr) & 0x10000)
|
2008-12-17 22:36:23 +00:00
|
|
|
return 66666666;
|
|
|
|
else
|
2016-11-18 19:08:43 +00:00
|
|
|
#ifdef CONFIG_ARCH_P2020
|
2010-10-22 05:20:34 +00:00
|
|
|
return 100000000;
|
|
|
|
#else
|
2008-12-17 22:36:23 +00:00
|
|
|
return 50000000;
|
2010-10-22 05:20:34 +00:00
|
|
|
#endif
|
2008-12-17 22:36:23 +00:00
|
|
|
}
|
|
|
|
|
2009-05-22 15:26:37 +00:00
|
|
|
#ifdef CONFIG_MPC85xx
|
2008-12-17 22:36:23 +00:00
|
|
|
/*
|
|
|
|
* Return DDR input clock - synchronous with SYSCLK or 66 MHz
|
2009-05-22 15:26:37 +00:00
|
|
|
* Note: 86xx doesn't support asynchronous DDR clk
|
2008-12-17 22:36:23 +00:00
|
|
|
*/
|
|
|
|
unsigned long get_board_ddr_clk(ulong dummy)
|
|
|
|
{
|
|
|
|
volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
|
2009-08-07 18:16:34 +00:00
|
|
|
u32 ddr_ratio = (in_be32(&gur->porpllsr) & 0x00003e00) >> 9;
|
2008-12-17 22:36:23 +00:00
|
|
|
|
|
|
|
if (ddr_ratio == 0x7)
|
|
|
|
return get_board_sys_clk(dummy);
|
|
|
|
|
2016-11-18 19:08:43 +00:00
|
|
|
#ifdef CONFIG_ARCH_P2020
|
2010-10-22 05:20:34 +00:00
|
|
|
if (in_be32(&gur->gpporcr) & 0x20000)
|
|
|
|
return 66666666;
|
|
|
|
else
|
|
|
|
return 100000000;
|
|
|
|
#else
|
2008-12-17 22:36:23 +00:00
|
|
|
return 66666666;
|
2010-10-22 05:20:34 +00:00
|
|
|
#endif
|
2008-12-17 22:36:23 +00:00
|
|
|
}
|
2009-05-22 15:26:37 +00:00
|
|
|
#endif
|