blob: 14d3ce448a237d24c598f506baf5a9c1c406b372 [file] [log] [blame]
wdenk1df49e22002-09-17 21:37:55 +00001/*
2 * (C) Copyright 2001
3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/*
25 * cpu.c
26 *
27 * CPU specific code
28 *
29 * written or collected and sometimes rewritten by
30 * Magnus Damm <damm@bitsmart.com>
31 *
32 * minor modifications by
33 * Wolfgang Denk <wd@denx.de>
34 *
35 * more modifications by
36 * Josh Huber <huber@mclx.com>
37 * added support for the 74xx series of cpus
38 * added support for the 7xx series of cpus
39 * made the code a little less hard-coded, and more auto-detectish
40 */
41
42#include <common.h>
43#include <command.h>
44#include <74xx_7xx.h>
45#include <asm/cache.h>
46
Gerald Van Baren84714ba2008-06-03 20:24:58 -040047#if defined(CONFIG_OF_LIBFDT)
48#include <libfdt.h>
49#include <fdt_support.h>
50#endif
51
Wolfgang Denk6405a152006-03-31 18:32:53 +020052DECLARE_GLOBAL_DATA_PTR;
53
wdenk1df49e22002-09-17 21:37:55 +000054cpu_t
55get_cpu_type(void)
56{
57 uint pvr = get_pvr();
58 cpu_t type;
59
60 type = CPU_UNKNOWN;
61
62 switch (PVR_VER(pvr)) {
63 case 0x000c:
64 type = CPU_7400;
65 break;
66 case 0x0008:
67 type = CPU_750;
68
wdenkaaf48a92003-06-20 23:10:58 +000069 if (((pvr >> 8) & 0xff) == 0x01) {
wdenk1df49e22002-09-17 21:37:55 +000070 type = CPU_750CX; /* old CX (80100 and 8010x?)*/
71 } else if (((pvr >> 8) & 0xff) == 0x22) {
72 type = CPU_750CX; /* CX (82201,82202) and CXe (82214) */
73 } else if (((pvr >> 8) & 0xff) == 0x33) {
74 type = CPU_750CX; /* CXe (83311) */
75 } else if (((pvr >> 12) & 0xF) == 0x3) {
76 type = CPU_755;
wdenkaaf48a92003-06-20 23:10:58 +000077 }
wdenk1df49e22002-09-17 21:37:55 +000078 break;
79
wdenkaaf48a92003-06-20 23:10:58 +000080 case 0x7000:
81 type = CPU_750FX;
82 break;
83
wdenk5da7f2f2004-01-03 00:43:19 +000084 case 0x7002:
85 type = CPU_750GX;
86 break;
87
wdenk1df49e22002-09-17 21:37:55 +000088 case 0x800C:
89 type = CPU_7410;
90 break;
91
wdenkaaf48a92003-06-20 23:10:58 +000092 case 0x8000:
wdenk1df49e22002-09-17 21:37:55 +000093 type = CPU_7450;
94 break;
95
wdenk5da7f2f2004-01-03 00:43:19 +000096 case 0x8001:
97 type = CPU_7455;
98 break;
99
100 case 0x8002:
101 type = CPU_7457;
102 break;
103
roy zangd136d662006-11-02 18:49:51 +0800104 case 0x8003:
105 type = CPU_7447A;
106 break;
roy zang373baf42006-12-01 19:01:25 +0800107
roy zangd136d662006-11-02 18:49:51 +0800108 case 0x8004:
109 type = CPU_7448;
110 break;
roy zang373baf42006-12-01 19:01:25 +0800111
wdenk1df49e22002-09-17 21:37:55 +0000112 default:
113 break;
114 }
115
116 return type;
117}
118
119/* ------------------------------------------------------------------------- */
120
121#if !defined(CONFIG_BAB7xx)
122int checkcpu (void)
123{
wdenk1df49e22002-09-17 21:37:55 +0000124 uint type = get_cpu_type();
125 uint pvr = get_pvr();
126 ulong clock = gd->cpu_clk;
127 char buf[32];
128 char *str;
129
130 puts ("CPU: ");
131
132 switch (type) {
133 case CPU_750CX:
134 printf ("750CX%s v%d.%d", (pvr&0xf0)?"e":"",
135 (pvr>>8) & 0xf,
136 pvr & 0xf);
137 goto PR_CLK;
138
139 case CPU_750:
140 str = "750";
141 break;
142
wdenkaaf48a92003-06-20 23:10:58 +0000143 case CPU_750FX:
144 str = "750FX";
145 break;
146
wdenk5da7f2f2004-01-03 00:43:19 +0000147 case CPU_750GX:
148 str = "750GX";
149 break;
150
wdenk1df49e22002-09-17 21:37:55 +0000151 case CPU_755:
152 str = "755";
153 break;
154
155 case CPU_7400:
156 str = "MPC7400";
157 break;
158
wdenkaaf48a92003-06-20 23:10:58 +0000159 case CPU_7410:
160 str = "MPC7410";
wdenk1df49e22002-09-17 21:37:55 +0000161 break;
162
roy zang373baf42006-12-01 19:01:25 +0800163 case CPU_7447A:
164 str = "MPC7447A";
165 break;
166
Stefan Roese45993ea2006-11-29 15:42:37 +0100167 case CPU_7448:
168 str = "MPC7448";
169 break;
170
wdenkaaf48a92003-06-20 23:10:58 +0000171 case CPU_7450:
172 str = "MPC7450";
wdenk1df49e22002-09-17 21:37:55 +0000173 break;
174
wdenk5da7f2f2004-01-03 00:43:19 +0000175 case CPU_7455:
176 str = "MPC7455";
177 break;
178
179 case CPU_7457:
180 str = "MPC7457";
181 break;
182
wdenk1df49e22002-09-17 21:37:55 +0000183 default:
wdenkaaf48a92003-06-20 23:10:58 +0000184 printf("Unknown CPU -- PVR: 0x%08x\n", pvr);
wdenk1df49e22002-09-17 21:37:55 +0000185 return -1;
186 }
187
188 printf ("%s v%d.%d", str, (pvr >> 8) & 0xFF, pvr & 0xFF);
189PR_CLK:
190 printf (" @ %s MHz\n", strmhz(buf, clock));
191
192 return (0);
193}
194#endif
195/* these two functions are unimplemented currently [josh] */
196
wdenkaaf48a92003-06-20 23:10:58 +0000197/* -------------------------------------------------------------------- */
198/* L1 i-cache */
wdenk1df49e22002-09-17 21:37:55 +0000199
200int
201checkicache(void)
202{
203 return 0; /* XXX */
204}
205
wdenkaaf48a92003-06-20 23:10:58 +0000206/* -------------------------------------------------------------------- */
207/* L1 d-cache */
wdenk1df49e22002-09-17 21:37:55 +0000208
209int
210checkdcache(void)
211{
212 return 0; /* XXX */
213}
214
wdenkaaf48a92003-06-20 23:10:58 +0000215/* -------------------------------------------------------------------- */
wdenk1df49e22002-09-17 21:37:55 +0000216
217static inline void
218soft_restart(unsigned long addr)
219{
220 /* SRR0 has system reset vector, SRR1 has default MSR value */
221 /* rfi restores MSR from SRR1 and sets the PC to the SRR0 value */
222
223 __asm__ __volatile__ ("mtspr 26, %0" :: "r" (addr));
224 __asm__ __volatile__ ("li 4, (1 << 6)" ::: "r4");
225 __asm__ __volatile__ ("mtspr 27, 4");
226 __asm__ __volatile__ ("rfi");
227
228 while(1); /* not reached */
229}
230
231
232#if !defined(CONFIG_PCIPPC2) && \
233 !defined(CONFIG_BAB7xx) && \
Heiko Schocherd7f77fb2006-06-19 11:02:41 +0200234 !defined(CONFIG_ELPPC) && \
235 !defined(CONFIG_PPMC7XX)
wdenk1df49e22002-09-17 21:37:55 +0000236/* no generic way to do board reset. simply call soft_reset. */
237void
wdenk57b2d802003-06-27 21:31:46 +0000238do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk1df49e22002-09-17 21:37:55 +0000239{
Wolfgang Denk87b3d4b2006-11-30 18:02:20 +0100240 ulong addr;
wdenk1df49e22002-09-17 21:37:55 +0000241 /* flush and disable I/D cache */
242 __asm__ __volatile__ ("mfspr 3, 1008" ::: "r3");
243 __asm__ __volatile__ ("ori 5, 5, 0xcc00" ::: "r5");
244 __asm__ __volatile__ ("ori 4, 3, 0xc00" ::: "r4");
245 __asm__ __volatile__ ("andc 5, 3, 5" ::: "r5");
246 __asm__ __volatile__ ("sync");
247 __asm__ __volatile__ ("mtspr 1008, 4");
248 __asm__ __volatile__ ("isync");
249 __asm__ __volatile__ ("sync");
250 __asm__ __volatile__ ("mtspr 1008, 5");
251 __asm__ __volatile__ ("isync");
252 __asm__ __volatile__ ("sync");
253
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200254#ifdef CONFIG_SYS_RESET_ADDRESS
255 addr = CONFIG_SYS_RESET_ADDRESS;
wdenk1df49e22002-09-17 21:37:55 +0000256#else
257 /*
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200258 * note: when CONFIG_SYS_MONITOR_BASE points to a RAM address,
259 * CONFIG_SYS_MONITOR_BASE - sizeof (ulong) is usually a valid
wdenk1df49e22002-09-17 21:37:55 +0000260 * address. Better pick an address known to be invalid on your
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200261 * system and assign it to CONFIG_SYS_RESET_ADDRESS.
wdenk1df49e22002-09-17 21:37:55 +0000262 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200263 addr = CONFIG_SYS_MONITOR_BASE - sizeof (ulong);
wdenk1df49e22002-09-17 21:37:55 +0000264#endif
265 soft_restart(addr);
266 while(1); /* not reached */
267}
268#endif
269
270/* ------------------------------------------------------------------------- */
271
272/*
273 * For the 7400 the TB clock runs at 1/4 the cpu bus speed.
274 */
Wolfgang Denkb0b104a2010-06-13 18:28:54 +0200275#ifndef CONFIG_SYS_BUS_CLK
Wolfgang Denk7329f252010-06-13 18:38:23 +0200276#define CONFIG_SYS_BUS_CLK gd->bus_clk
277#endif
278
wdenk452cfd62002-11-19 11:04:11 +0000279unsigned long get_tbclk(void)
wdenk1df49e22002-09-17 21:37:55 +0000280{
Wolfgang Denk7329f252010-06-13 18:38:23 +0200281 return CONFIG_SYS_BUS_CLK / 4;
wdenk1df49e22002-09-17 21:37:55 +0000282}
283
wdenk1df49e22002-09-17 21:37:55 +0000284/* ------------------------------------------------------------------------- */
Wolfgang Denk7329f252010-06-13 18:38:23 +0200285
wdenk1df49e22002-09-17 21:37:55 +0000286#if defined(CONFIG_WATCHDOG)
287#if !defined(CONFIG_PCIPPC2) && !defined(CONFIG_BAB7xx)
288void
289watchdog_reset(void)
290{
291
292}
293#endif /* !CONFIG_PCIPPC2 && !CONFIG_BAB7xx */
294#endif /* CONFIG_WATCHDOG */
295
296/* ------------------------------------------------------------------------- */
roy zangd136d662006-11-02 18:49:51 +0800297
Gerald Van Baren84714ba2008-06-03 20:24:58 -0400298#ifdef CONFIG_OF_LIBFDT
299void ft_cpu_setup(void *blob, bd_t *bd)
roy zangd136d662006-11-02 18:49:51 +0800300{
Gerald Van Baren84714ba2008-06-03 20:24:58 -0400301 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
302 "timebase-frequency", bd->bi_busfreq / 4, 1);
303 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
304 "bus-frequency", bd->bi_busfreq, 1);
305 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
306 "clock-frequency", bd->bi_intfreq, 1);
Wolfgang Denkf972e772007-03-04 01:36:05 +0100307
Gerald Van Baren84714ba2008-06-03 20:24:58 -0400308 fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
Wolfgang Denkf972e772007-03-04 01:36:05 +0100309
Kumar Galafabda922008-08-19 15:41:18 -0500310 fdt_fixup_ethernet(blob);
roy zangd136d662006-11-02 18:49:51 +0800311}
312#endif
313/* ------------------------------------------------------------------------- */