blob: 18c1eea0c1ae1b7242051da35170a26e3044eac5 [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
2 * Copyright 2004 Freescale Semiconductor.
Jon Loeligerc934f652006-05-31 13:55:35 -05003 * Jeff Brown
Jon Loeligerdebb7352006-04-26 17:58:56 -05004 * Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
5 *
6 * (C) Copyright 2000-2002
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <mpc86xx.h>
30#include <asm/processor.h>
Trent Piephoada591d2008-12-03 15:16:37 -080031#include <asm/io.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050032
Wolfgang Denk1218abf2007-09-15 20:48:41 +020033DECLARE_GLOBAL_DATA_PTR;
Jon Loeligerdebb7352006-04-26 17:58:56 -050034
Wolfgang Denk409ecdc2007-11-18 16:36:27 +010035/* used in some defintiions of CONFIG_SYS_CLK_FREQ */
36extern unsigned long get_board_sys_clk(unsigned long dummy);
37
Jon Loeligerffff3ae2006-08-22 12:06:18 -050038void get_sys_info(sys_info_t *sysInfo)
Jon Loeligerdebb7352006-04-26 17:58:56 -050039{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
Jon Loeligerdebb7352006-04-26 17:58:56 -050041 volatile ccsr_gur_t *gur = &immap->im_gur;
42 uint plat_ratio, e600_ratio;
Trent Piephoada591d2008-12-03 15:16:37 -080043 uint lcrr_div;
Jon Loeligerdebb7352006-04-26 17:58:56 -050044
Jon Loeligerc934f652006-05-31 13:55:35 -050045 plat_ratio = (gur->porpllsr) & 0x0000003e;
Jon Loeligerdebb7352006-04-26 17:58:56 -050046 plat_ratio >>= 1;
Jon Loeliger5c9efb32006-04-27 10:15:16 -050047
Jon Loeligerffff3ae2006-08-22 12:06:18 -050048 switch (plat_ratio) {
Jon Loeligerc934f652006-05-31 13:55:35 -050049 case 0x0:
Jon Loeligerdebb7352006-04-26 17:58:56 -050050 sysInfo->freqSystemBus = 16 * CONFIG_SYS_CLK_FREQ;
51 break;
52 case 0x02:
53 case 0x03:
54 case 0x04:
55 case 0x05:
56 case 0x06:
57 case 0x08:
58 case 0x09:
59 case 0x0a:
60 case 0x0c:
Jon Loeligerc934f652006-05-31 13:55:35 -050061 case 0x10:
62 sysInfo->freqSystemBus = plat_ratio * CONFIG_SYS_CLK_FREQ;
63 break;
Jon Loeligerdebb7352006-04-26 17:58:56 -050064 default:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050065 sysInfo->freqSystemBus = 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050066 break;
67 }
68
Jon Loeligerdebb7352006-04-26 17:58:56 -050069 e600_ratio = (gur->porpllsr) & 0x003f0000;
70 e600_ratio >>= 16;
Jon Loeliger5c9efb32006-04-27 10:15:16 -050071
72 switch (e600_ratio) {
Jon Loeligerdebb7352006-04-26 17:58:56 -050073 case 0x10:
Jon Loeliger5c9efb32006-04-27 10:15:16 -050074 sysInfo->freqProcessor = 2 * sysInfo->freqSystemBus;
Jon Loeligerdebb7352006-04-26 17:58:56 -050075 break;
Jon Loeligerc934f652006-05-31 13:55:35 -050076 case 0x19:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050077 sysInfo->freqProcessor = 5 * sysInfo->freqSystemBus / 2;
Jon Loeligerdebb7352006-04-26 17:58:56 -050078 break;
79 case 0x20:
Jon Loeliger5c9efb32006-04-27 10:15:16 -050080 sysInfo->freqProcessor = 3 * sysInfo->freqSystemBus;
Jon Loeligerdebb7352006-04-26 17:58:56 -050081 break;
Jon Loeligerc934f652006-05-31 13:55:35 -050082 case 0x39:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050083 sysInfo->freqProcessor = 7 * sysInfo->freqSystemBus / 2;
Jon Loeligerdebb7352006-04-26 17:58:56 -050084 break;
85 case 0x28:
Jon Loeliger5c9efb32006-04-27 10:15:16 -050086 sysInfo->freqProcessor = 4 * sysInfo->freqSystemBus;
Jon Loeligerdebb7352006-04-26 17:58:56 -050087 break;
88 case 0x1d:
Jon Loeligerffff3ae2006-08-22 12:06:18 -050089 sysInfo->freqProcessor = 9 * sysInfo->freqSystemBus / 2;
Jon Loeligerdebb7352006-04-26 17:58:56 -050090 break;
Jon Loeligerc934f652006-05-31 13:55:35 -050091 default:
Jon Loeliger5c9efb32006-04-27 10:15:16 -050092 sysInfo->freqProcessor = e600_ratio + sysInfo->freqSystemBus;
Jon Loeligerdebb7352006-04-26 17:58:56 -050093 break;
94 }
Trent Piephoada591d2008-12-03 15:16:37 -080095
96#if defined(CONFIG_SYS_LBC_LCRR)
97 /* We will program LCRR to this value later */
98 lcrr_div = CONFIG_SYS_LBC_LCRR & LCRR_CLKDIV;
99#else
Becky Brucef51cdaf2010-06-17 11:37:20 -0500100 lcrr_div = in_be32(&immap->im_lbc.lcrr) & LCRR_CLKDIV;
Trent Piephoada591d2008-12-03 15:16:37 -0800101#endif
102 if (lcrr_div == 2 || lcrr_div == 4 || lcrr_div == 8) {
103 sysInfo->freqLocalBus = sysInfo->freqSystemBus / (lcrr_div * 2);
104 } else {
105 /* In case anyone cares what the unknown value is */
106 sysInfo->freqLocalBus = lcrr_div;
107 }
Jon Loeligerdebb7352006-04-26 17:58:56 -0500108}
109
110
Jon Loeligerdebb7352006-04-26 17:58:56 -0500111/*
112 * Measure CPU clock speed (core clock GCLK1, GCLK2)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500113 * (Approx. GCLK frequency in Hz)
114 */
115
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500116int get_clocks(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500117{
Jon Loeligerdebb7352006-04-26 17:58:56 -0500118 sys_info_t sys_info;
119
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500120 get_sys_info(&sys_info);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500121 gd->cpu_clk = sys_info.freqProcessor;
122 gd->bus_clk = sys_info.freqSystemBus;
Simon Glass67ac13b2012-12-13 20:48:48 +0000123 gd->arch.lbc_clk = sys_info.freqLocalBus;
Timur Tabi1b9ed252008-04-04 11:16:11 -0500124
125 /*
126 * The base clock for I2C depends on the actual SOC. Unfortunately,
127 * there is no pattern that can be used to determine the frequency, so
128 * the only choice is to look up the actual SOC number and use the value
129 * for that SOC. This information is taken from application note
130 * AN2919.
131 */
132#ifdef CONFIG_MPC8610
Simon Glass609e6ec2012-12-13 20:48:49 +0000133 gd->arch.i2c1_clk = sys_info.freqSystemBus;
Timur Tabi1b9ed252008-04-04 11:16:11 -0500134#else
Simon Glass609e6ec2012-12-13 20:48:49 +0000135 gd->arch.i2c1_clk = sys_info.freqSystemBus / 2;
Timur Tabi1b9ed252008-04-04 11:16:11 -0500136#endif
Simon Glass609e6ec2012-12-13 20:48:49 +0000137 gd->arch.i2c2_clk = gd->arch.i2c1_clk;
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500138
139 if (gd->cpu_clk != 0)
140 return 0;
141 else
142 return 1;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500143}
144
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500145
146/*
Jon Loeligerdebb7352006-04-26 17:58:56 -0500147 * get_bus_freq
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500148 * Return system bus freq in Hz
149 */
Jon Loeligerc934f652006-05-31 13:55:35 -0500150
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500151ulong get_bus_freq(ulong dummy)
Jon Loeligerdebb7352006-04-26 17:58:56 -0500152{
153 ulong val;
Jon Loeligerdebb7352006-04-26 17:58:56 -0500154 sys_info_t sys_info;
155
Jon Loeliger5c9efb32006-04-27 10:15:16 -0500156 get_sys_info(&sys_info);
Jon Loeligerdebb7352006-04-26 17:58:56 -0500157 val = sys_info.freqSystemBus;
158
159 return val;
160}