]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/glsdk-u-boot.git/blob - arch/powerpc/cpu/74xx_7xx/cpu.c
Merge branch 'master' of git://git.denx.de/u-boot-i2c
[glsdk/glsdk-u-boot.git] / arch / powerpc / cpu / 74xx_7xx / cpu.c
1 /*
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  */
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  */
42 #include <common.h>
43 #include <command.h>
44 #include <74xx_7xx.h>
45 #include <asm/cache.h>
47 #if defined(CONFIG_OF_LIBFDT)
48 #include <libfdt.h>
49 #include <fdt_support.h>
50 #endif
52 #ifdef CONFIG_AMIGAONEG3SE
53 #include "../board/MAI/AmigaOneG3SE/via686.h"
54 #include "../board/MAI/AmigaOneG3SE/memio.h"
55 #endif
57 DECLARE_GLOBAL_DATA_PTR;
59 cpu_t
60 get_cpu_type(void)
61 {
62         uint pvr = get_pvr();
63         cpu_t type;
65         type = CPU_UNKNOWN;
67         switch (PVR_VER(pvr)) {
68         case 0x000c:
69                 type = CPU_7400;
70                 break;
71         case 0x0008:
72                 type = CPU_750;
74                 if (((pvr >> 8) & 0xff) == 0x01) {
75                         type = CPU_750CX;       /* old CX (80100 and 8010x?)*/
76                 } else if (((pvr >> 8) & 0xff) == 0x22) {
77                         type = CPU_750CX;       /* CX (82201,82202) and CXe (82214) */
78                 } else if (((pvr >> 8) & 0xff) == 0x33) {
79                         type = CPU_750CX;       /* CXe (83311) */
80                 } else if (((pvr >> 12) & 0xF) == 0x3) {
81                         type = CPU_755;
82                 }
83                 break;
85         case 0x7000:
86                 type = CPU_750FX;
87                 break;
89         case 0x7002:
90                 type = CPU_750GX;
91                 break;
93         case 0x800C:
94                 type = CPU_7410;
95                 break;
97         case 0x8000:
98                 type = CPU_7450;
99                 break;
101         case 0x8001:
102                 type = CPU_7455;
103                 break;
105         case 0x8002:
106                 type = CPU_7457;
107                 break;
109         case 0x8003:
110                 type = CPU_7447A;
111                 break;
113         case 0x8004:
114                 type = CPU_7448;
115                 break;
117         default:
118                 break;
119         }
121         return type;
124 /* ------------------------------------------------------------------------- */
126 #if !defined(CONFIG_BAB7xx)
127 int checkcpu (void)
129         uint type   = get_cpu_type();
130         uint pvr    = get_pvr();
131         ulong clock = gd->cpu_clk;
132         char buf[32];
133         char *str;
135         puts ("CPU:   ");
137         switch (type) {
138         case CPU_750CX:
139                 printf ("750CX%s v%d.%d", (pvr&0xf0)?"e":"",
140                         (pvr>>8) & 0xf,
141                         pvr & 0xf);
142                 goto    PR_CLK;
144         case CPU_750:
145                 str = "750";
146                 break;
148         case CPU_750FX:
149                 str = "750FX";
150                 break;
152         case CPU_750GX:
153                 str = "750GX";
154                 break;
156         case CPU_755:
157                 str = "755";
158                 break;
160         case CPU_7400:
161                 str = "MPC7400";
162                 break;
164         case CPU_7410:
165                 str = "MPC7410";
166                 break;
168         case CPU_7447A:
169                 str = "MPC7447A";
170                 break;
172         case CPU_7448:
173                 str = "MPC7448";
174                 break;
176         case CPU_7450:
177                 str = "MPC7450";
178                 break;
180         case CPU_7455:
181                 str = "MPC7455";
182                 break;
184         case CPU_7457:
185                 str = "MPC7457";
186                 break;
188         default:
189                 printf("Unknown CPU -- PVR: 0x%08x\n", pvr);
190                 return -1;
191         }
193         printf ("%s v%d.%d", str, (pvr >> 8) & 0xFF, pvr & 0xFF);
194 PR_CLK:
195         printf (" @ %s MHz\n", strmhz(buf, clock));
197         return (0);
199 #endif
200 /* these two functions are unimplemented currently [josh] */
202 /* -------------------------------------------------------------------- */
203 /* L1 i-cache                                                           */
205 int
206 checkicache(void)
208         return 0; /* XXX */
211 /* -------------------------------------------------------------------- */
212 /* L1 d-cache                                                           */
214 int
215 checkdcache(void)
217         return 0; /* XXX */
220 /* -------------------------------------------------------------------- */
222 static inline void
223 soft_restart(unsigned long addr)
225         /* SRR0 has system reset vector, SRR1 has default MSR value */
226         /* rfi restores MSR from SRR1 and sets the PC to the SRR0 value */
228         __asm__ __volatile__ ("mtspr    26, %0"         :: "r" (addr));
229         __asm__ __volatile__ ("li       4, (1 << 6)"    ::: "r4");
230         __asm__ __volatile__ ("mtspr    27, 4");
231         __asm__ __volatile__ ("rfi");
233         while(1);       /* not reached */
237 #if !defined(CONFIG_PCIPPC2) && \
238     !defined(CONFIG_BAB7xx)  && \
239     !defined(CONFIG_ELPPC)   && \
240     !defined(CONFIG_PPMC7XX)
241 /* no generic way to do board reset. simply call soft_reset. */
242 void
243 do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
245         ulong addr;
246         /* flush and disable I/D cache */
247         __asm__ __volatile__ ("mfspr    3, 1008"        ::: "r3");
248         __asm__ __volatile__ ("ori      5, 5, 0xcc00"   ::: "r5");
249         __asm__ __volatile__ ("ori      4, 3, 0xc00"    ::: "r4");
250         __asm__ __volatile__ ("andc     5, 3, 5"        ::: "r5");
251         __asm__ __volatile__ ("sync");
252         __asm__ __volatile__ ("mtspr    1008, 4");
253         __asm__ __volatile__ ("isync");
254         __asm__ __volatile__ ("sync");
255         __asm__ __volatile__ ("mtspr    1008, 5");
256         __asm__ __volatile__ ("isync");
257         __asm__ __volatile__ ("sync");
259 #ifdef CONFIG_SYS_RESET_ADDRESS
260         addr = CONFIG_SYS_RESET_ADDRESS;
261 #else
262         /*
263          * note: when CONFIG_SYS_MONITOR_BASE points to a RAM address,
264          * CONFIG_SYS_MONITOR_BASE - sizeof (ulong) is usually a valid
265          * address. Better pick an address known to be invalid on your
266          * system and assign it to CONFIG_SYS_RESET_ADDRESS.
267          */
268         addr = CONFIG_SYS_MONITOR_BASE - sizeof (ulong);
269 #endif
270         soft_restart(addr);
271         while(1);       /* not reached */
273 #endif
275 /* ------------------------------------------------------------------------- */
277 /*
278  * For the 7400 the TB clock runs at 1/4 the cpu bus speed.
279  */
280 #if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SYS_CONFIG_BUS_CLK)
281 unsigned long get_tbclk(void)
283         return (gd->bus_clk / 4);
285 #else   /* ! CONFIG_AMIGAONEG3SE and !CONFIG_SYS_CONFIG_BUS_CLK*/
287 unsigned long get_tbclk (void)
289         return CONFIG_SYS_BUS_HZ / 4;
291 #endif  /* CONFIG_AMIGAONEG3SE or CONFIG_SYS_CONFIG_BUS_CLK*/
292 /* ------------------------------------------------------------------------- */
293 #if defined(CONFIG_WATCHDOG)
294 #if !defined(CONFIG_PCIPPC2) && !defined(CONFIG_BAB7xx)
295 void
296 watchdog_reset(void)
300 #endif  /* !CONFIG_PCIPPC2 && !CONFIG_BAB7xx */
301 #endif  /* CONFIG_WATCHDOG */
303 /* ------------------------------------------------------------------------- */
305 #ifdef CONFIG_OF_LIBFDT
306 void ft_cpu_setup(void *blob, bd_t *bd)
308         do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
309                              "timebase-frequency", bd->bi_busfreq / 4, 1);
310         do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
311                              "bus-frequency", bd->bi_busfreq, 1);
312         do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
313                              "clock-frequency", bd->bi_intfreq, 1);
315         fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
317         fdt_fixup_ethernet(blob);
319 #endif
320 /* ------------------------------------------------------------------------- */