3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
29 * written or collected and sometimes rewritten by
30 * Magnus Damm <damm@bitsmart.com>
32 * minor modifications by
33 * Wolfgang Denk <wd@denx.de>
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
45 #include <asm/cache.h>
47 #if defined(CONFIG_OF_FLAT_TREE)
51 #ifdef CONFIG_AMIGAONEG3SE
52 #include "../board/MAI/AmigaOneG3SE/via686.h"
53 #include "../board/MAI/AmigaOneG3SE/memio.h"
56 DECLARE_GLOBAL_DATA_PTR;
66 switch (PVR_VER(pvr)) {
73 if (((pvr >> 8) & 0xff) == 0x01) {
74 type = CPU_750CX; /* old CX (80100 and 8010x?)*/
75 } else if (((pvr >> 8) & 0xff) == 0x22) {
76 type = CPU_750CX; /* CX (82201,82202) and CXe (82214) */
77 } else if (((pvr >> 8) & 0xff) == 0x33) {
78 type = CPU_750CX; /* CXe (83311) */
79 } else if (((pvr >> 12) & 0xF) == 0x3) {
123 /* ------------------------------------------------------------------------- */
125 #if !defined(CONFIG_BAB7xx)
128 uint type = get_cpu_type();
129 uint pvr = get_pvr();
130 ulong clock = gd->cpu_clk;
138 printf ("750CX%s v%d.%d", (pvr&0xf0)?"e":"",
188 printf("Unknown CPU -- PVR: 0x%08x\n", pvr);
192 printf ("%s v%d.%d", str, (pvr >> 8) & 0xFF, pvr & 0xFF);
194 printf (" @ %s MHz\n", strmhz(buf, clock));
199 /* these two functions are unimplemented currently [josh] */
201 /* -------------------------------------------------------------------- */
210 /* -------------------------------------------------------------------- */
219 /* -------------------------------------------------------------------- */
222 soft_restart(unsigned long addr)
224 /* SRR0 has system reset vector, SRR1 has default MSR value */
225 /* rfi restores MSR from SRR1 and sets the PC to the SRR0 value */
227 __asm__ __volatile__ ("mtspr 26, %0" :: "r" (addr));
228 __asm__ __volatile__ ("li 4, (1 << 6)" ::: "r4");
229 __asm__ __volatile__ ("mtspr 27, 4");
230 __asm__ __volatile__ ("rfi");
232 while(1); /* not reached */
236 #if !defined(CONFIG_PCIPPC2) && \
237 !defined(CONFIG_BAB7xx) && \
238 !defined(CONFIG_ELPPC) && \
239 !defined(CONFIG_PPMC7XX)
240 /* no generic way to do board reset. simply call soft_reset. */
242 do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
245 /* flush and disable I/D cache */
246 __asm__ __volatile__ ("mfspr 3, 1008" ::: "r3");
247 __asm__ __volatile__ ("ori 5, 5, 0xcc00" ::: "r5");
248 __asm__ __volatile__ ("ori 4, 3, 0xc00" ::: "r4");
249 __asm__ __volatile__ ("andc 5, 3, 5" ::: "r5");
250 __asm__ __volatile__ ("sync");
251 __asm__ __volatile__ ("mtspr 1008, 4");
252 __asm__ __volatile__ ("isync");
253 __asm__ __volatile__ ("sync");
254 __asm__ __volatile__ ("mtspr 1008, 5");
255 __asm__ __volatile__ ("isync");
256 __asm__ __volatile__ ("sync");
258 #ifdef CFG_RESET_ADDRESS
259 addr = CFG_RESET_ADDRESS;
262 * note: when CFG_MONITOR_BASE points to a RAM address,
263 * CFG_MONITOR_BASE - sizeof (ulong) is usually a valid
264 * address. Better pick an address known to be invalid on your
265 * system and assign it to CFG_RESET_ADDRESS.
267 addr = CFG_MONITOR_BASE - sizeof (ulong);
270 while(1); /* not reached */
274 /* ------------------------------------------------------------------------- */
277 * For the 7400 the TB clock runs at 1/4 the cpu bus speed.
279 #if defined(CONFIG_AMIGAONEG3SE) || defined(CFG_CONFIG_BUS_CLK)
280 unsigned long get_tbclk(void)
282 return (gd->bus_clk / 4);
284 #else /* ! CONFIG_AMIGAONEG3SE and !CFG_CONFIG_BUS_CLK*/
286 unsigned long get_tbclk (void)
288 return CFG_BUS_HZ / 4;
290 #endif /* CONFIG_AMIGAONEG3SE or CFG_CONFIG_BUS_CLK*/
291 /* ------------------------------------------------------------------------- */
292 #if defined(CONFIG_WATCHDOG)
293 #if !defined(CONFIG_PCIPPC2) && !defined(CONFIG_BAB7xx)
299 #endif /* !CONFIG_PCIPPC2 && !CONFIG_BAB7xx */
300 #endif /* CONFIG_WATCHDOG */
302 /* ------------------------------------------------------------------------- */
304 #ifdef CONFIG_OF_FLAT_TREE
306 ft_cpu_setup (void *blob, bd_t *bd)
312 clock = bd->bi_busfreq;
314 p = ft_get_prop (blob, "/cpus/" OF_CPU "/bus-frequency", &len);
316 *p = cpu_to_be32 (clock);
318 #if defined(CONFIG_TSI108_ETH)
319 p = ft_get_prop (blob, "/" OF_TSI "/ethernet@6200/address", &len);
320 memcpy (p, bd->bi_enetaddr, 6);
323 #if defined(CONFIG_HAS_ETH1)
324 p = ft_get_prop (blob, "/" OF_TSI "/ethernet@6600/address", &len);
325 memcpy (p, bd->bi_enet1addr, 6);
329 /* ------------------------------------------------------------------------- */