2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2006-04-26 22:58:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2004 Freescale Semiconductor.
|
2006-05-31 18:55:35 +00:00
|
|
|
* Jeff Brown
|
2006-04-26 22:58:56 +00:00
|
|
|
* Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
|
|
|
|
*
|
|
|
|
* (C) Copyright 2000-2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-12-28 17:44:58 +00:00
|
|
|
#include <clock_legacy.h>
|
2006-04-26 22:58:56 +00:00
|
|
|
#include <mpc86xx.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2006-04-26 22:58:56 +00:00
|
|
|
#include <asm/processor.h>
|
mpc8[56]xx: Put localbus clock in sysinfo and gd
Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
and print it out, but don't save it.
This changes where its calculated and stored to be more consistent with the
CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
The localbus frequency is added to sysinfo and calculated when sysinfo is
set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
get_clocks() copies the frequency into the global data, as the other
frequencies are, into a new field that is only enabled for MPC85xx and
MPC86xx.
checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
from sysinfo, like the other frequencies, instead of calculating it on the
spot.
Signed-off-by: Trent Piepho <tpiepho@freescale.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Jon Loeliger <jdl@freescale.com>
2008-12-03 23:16:37 +00:00
|
|
|
#include <asm/io.h>
|
2006-04-26 22:58:56 +00:00
|
|
|
|
2007-09-15 18:48:41 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2006-04-26 22:58:56 +00:00
|
|
|
|
2007-11-18 15:36:27 +00:00
|
|
|
/* used in some defintiions of CONFIG_SYS_CLK_FREQ */
|
|
|
|
extern unsigned long get_board_sys_clk(unsigned long dummy);
|
|
|
|
|
2013-08-16 09:22:26 +00:00
|
|
|
void get_sys_info(sys_info_t *sys_info)
|
2006-04-26 22:58:56 +00:00
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
|
2006-04-26 22:58:56 +00:00
|
|
|
volatile ccsr_gur_t *gur = &immap->im_gur;
|
|
|
|
uint plat_ratio, e600_ratio;
|
|
|
|
|
2006-05-31 18:55:35 +00:00
|
|
|
plat_ratio = (gur->porpllsr) & 0x0000003e;
|
2006-04-26 22:58:56 +00:00
|
|
|
plat_ratio >>= 1;
|
2006-04-27 15:15:16 +00:00
|
|
|
|
2006-08-22 17:06:18 +00:00
|
|
|
switch (plat_ratio) {
|
2006-05-31 18:55:35 +00:00
|
|
|
case 0x0:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_systembus = 16 * CONFIG_SYS_CLK_FREQ;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
|
|
|
case 0x02:
|
|
|
|
case 0x03:
|
|
|
|
case 0x04:
|
|
|
|
case 0x05:
|
|
|
|
case 0x06:
|
|
|
|
case 0x08:
|
|
|
|
case 0x09:
|
|
|
|
case 0x0a:
|
|
|
|
case 0x0c:
|
2006-05-31 18:55:35 +00:00
|
|
|
case 0x10:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_systembus = plat_ratio * CONFIG_SYS_CLK_FREQ;
|
2006-05-31 18:55:35 +00:00
|
|
|
break;
|
2006-04-26 22:58:56 +00:00
|
|
|
default:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_systembus = 0;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
e600_ratio = (gur->porpllsr) & 0x003f0000;
|
|
|
|
e600_ratio >>= 16;
|
2006-04-27 15:15:16 +00:00
|
|
|
|
|
|
|
switch (e600_ratio) {
|
2006-04-26 22:58:56 +00:00
|
|
|
case 0x10:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = 2 * sys_info->freq_systembus;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
2006-05-31 18:55:35 +00:00
|
|
|
case 0x19:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = 5 * sys_info->freq_systembus / 2;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
|
|
|
case 0x20:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = 3 * sys_info->freq_systembus;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
2006-05-31 18:55:35 +00:00
|
|
|
case 0x39:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = 7 * sys_info->freq_systembus / 2;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
|
|
|
case 0x28:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = 4 * sys_info->freq_systembus;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
|
|
|
case 0x1d:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = 9 * sys_info->freq_systembus / 2;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
2006-05-31 18:55:35 +00:00
|
|
|
default:
|
2013-08-16 09:22:26 +00:00
|
|
|
sys_info->freq_processor = e600_ratio +
|
|
|
|
sys_info->freq_systembus;
|
2006-04-26 22:58:56 +00:00
|
|
|
break;
|
|
|
|
}
|
mpc8[56]xx: Put localbus clock in sysinfo and gd
Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
and print it out, but don't save it.
This changes where its calculated and stored to be more consistent with the
CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
The localbus frequency is added to sysinfo and calculated when sysinfo is
set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
get_clocks() copies the frequency into the global data, as the other
frequencies are, into a new field that is only enabled for MPC85xx and
MPC86xx.
checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
from sysinfo, like the other frequencies, instead of calculating it on the
spot.
Signed-off-by: Trent Piepho <tpiepho@freescale.com>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Jon Loeliger <jdl@freescale.com>
2008-12-03 23:16:37 +00:00
|
|
|
|
2017-02-02 09:32:00 +00:00
|
|
|
sys_info->freq_localbus = sys_info->freq_systembus;
|
2006-04-26 22:58:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Measure CPU clock speed (core clock GCLK1, GCLK2)
|
|
|
|
* (Approx. GCLK frequency in Hz)
|
|
|
|
*/
|
|
|
|
|
2006-04-27 15:15:16 +00:00
|
|
|
int get_clocks(void)
|
2006-04-26 22:58:56 +00:00
|
|
|
{
|
|
|
|
sys_info_t sys_info;
|
|
|
|
|
2006-04-27 15:15:16 +00:00
|
|
|
get_sys_info(&sys_info);
|
2013-08-16 09:22:26 +00:00
|
|
|
gd->cpu_clk = sys_info.freq_processor;
|
|
|
|
gd->bus_clk = sys_info.freq_systembus;
|
|
|
|
gd->arch.lbc_clk = sys_info.freq_localbus;
|
2008-04-04 16:16:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The base clock for I2C depends on the actual SOC. Unfortunately,
|
|
|
|
* there is no pattern that can be used to determine the frequency, so
|
|
|
|
* the only choice is to look up the actual SOC number and use the value
|
|
|
|
* for that SOC. This information is taken from application note
|
|
|
|
* AN2919.
|
|
|
|
*/
|
2016-11-23 22:06:21 +00:00
|
|
|
#ifdef CONFIG_ARCH_MPC8610
|
2013-08-16 09:22:26 +00:00
|
|
|
gd->arch.i2c1_clk = sys_info.freq_systembus;
|
2008-04-04 16:16:11 +00:00
|
|
|
#else
|
2013-08-16 09:22:26 +00:00
|
|
|
gd->arch.i2c1_clk = sys_info.freq_systembus / 2;
|
2008-04-04 16:16:11 +00:00
|
|
|
#endif
|
2012-12-13 20:48:49 +00:00
|
|
|
gd->arch.i2c2_clk = gd->arch.i2c1_clk;
|
2006-04-27 15:15:16 +00:00
|
|
|
|
|
|
|
if (gd->cpu_clk != 0)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
2006-04-26 22:58:56 +00:00
|
|
|
}
|
|
|
|
|
2006-04-27 15:15:16 +00:00
|
|
|
|
|
|
|
/*
|
2006-04-26 22:58:56 +00:00
|
|
|
* get_bus_freq
|
2006-04-27 15:15:16 +00:00
|
|
|
* Return system bus freq in Hz
|
|
|
|
*/
|
2006-05-31 18:55:35 +00:00
|
|
|
|
2006-04-27 15:15:16 +00:00
|
|
|
ulong get_bus_freq(ulong dummy)
|
2006-04-26 22:58:56 +00:00
|
|
|
{
|
|
|
|
ulong val;
|
|
|
|
sys_info_t sys_info;
|
|
|
|
|
2006-04-27 15:15:16 +00:00
|
|
|
get_sys_info(&sys_info);
|
2013-08-16 09:22:26 +00:00
|
|
|
val = sys_info.freq_systembus;
|
2006-04-26 22:58:56 +00:00
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|