blob: 7f16b92a6cac06af26f00a9a267f7bd6c371323a [file] [log] [blame]
wdenk945af8d2003-07-16 21:53:01 +00001/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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 specific code for the MPC5xxx CPUs
26 */
27
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
31#include <mpc5xxx.h>
Grant Likelycf2817a2007-09-06 09:46:23 -060032#include <asm/io.h>
wdenk945af8d2003-07-16 21:53:01 +000033#include <asm/processor.h>
34
Grant Likelycf2817a2007-09-06 09:46:23 -060035#if defined(CONFIG_OF_LIBFDT)
36#include <libfdt.h>
37#include <libfdt_env.h>
Stefan Roesee59581c2006-11-28 17:55:49 +010038#endif
39
Wolfgang Denkd87080b2006-03-31 18:32:53 +020040DECLARE_GLOBAL_DATA_PTR;
41
wdenk945af8d2003-07-16 21:53:01 +000042int checkcpu (void)
43{
wdenk945af8d2003-07-16 21:53:01 +000044 ulong clock = gd->cpu_clk;
45 char buf[32];
wdenk36c72872004-06-09 17:45:32 +000046#ifndef CONFIG_MGT5100
Rafal Jaworowskib66a9382006-03-29 13:17:09 +020047 uint svr, pvr;
wdenk36c72872004-06-09 17:45:32 +000048#endif
wdenk945af8d2003-07-16 21:53:01 +000049
50 puts ("CPU: ");
51
wdenk36c72872004-06-09 17:45:32 +000052#ifdef CONFIG_MGT5100
53 puts (CPU_ID_STR);
wdenk945af8d2003-07-16 21:53:01 +000054 printf (" (JTAG ID %08lx)", *(vu_long *)MPC5XXX_CDM_JTAGID);
wdenk36c72872004-06-09 17:45:32 +000055#else
Rafal Jaworowskib66a9382006-03-29 13:17:09 +020056 svr = get_svr();
57 pvr = get_pvr();
Grzegorz Wianeckia9d87e22007-04-29 14:01:54 +020058
59 switch (pvr) {
60 case PVR_5200:
61 printf("MPC5200");
62 break;
63 case PVR_5200B:
64 printf("MPC5200B");
wdenk36c72872004-06-09 17:45:32 +000065 break;
66 default:
Grzegorz Wianeckia9d87e22007-04-29 14:01:54 +020067 printf("Unknown MPC5xxx");
wdenk36c72872004-06-09 17:45:32 +000068 break;
69 }
70
Wolfgang Denkcf48eb92006-04-16 10:51:58 +020071 printf (" v%d.%d, Core v%d.%d", SVR_MJREV (svr), SVR_MNREV (svr),
Rafal Jaworowskib66a9382006-03-29 13:17:09 +020072 PVR_MAJ(pvr), PVR_MIN(pvr));
wdenk36c72872004-06-09 17:45:32 +000073#endif
wdenk945af8d2003-07-16 21:53:01 +000074 printf (" at %s MHz\n", strmhz (buf, clock));
wdenk945af8d2003-07-16 21:53:01 +000075 return 0;
76}
77
78/* ------------------------------------------------------------------------- */
79
80int
81do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
82{
wdenkd94f92c2003-08-28 09:41:22 +000083 ulong msr;
wdenk945af8d2003-07-16 21:53:01 +000084 /* Interrupts and MMU off */
85 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
86
87 msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
88 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
89
wdenkd94f92c2003-08-28 09:41:22 +000090 /* Charge the watchdog timer */
wdenk2d5b5612003-10-14 19:43:55 +000091 *(vu_long *)(MPC5XXX_GPT0_COUNTER) = 0x0001000f;
wdenkd94f92c2003-08-28 09:41:22 +000092 *(vu_long *)(MPC5XXX_GPT0_ENABLE) = 0x9004; /* wden|ce|timer_ms */
wdenk2d5b5612003-10-14 19:43:55 +000093 while(1);
wdenkd94f92c2003-08-28 09:41:22 +000094
wdenk945af8d2003-07-16 21:53:01 +000095 return 1;
96
97}
98
99/* ------------------------------------------------------------------------- */
100
101/*
102 * Get timebase clock frequency (like cpu_clk in Hz)
103 *
104 */
105unsigned long get_tbclk (void)
106{
wdenk945af8d2003-07-16 21:53:01 +0000107 ulong tbclk;
108
109 tbclk = (gd->bus_clk + 3L) / 4L;
110
111 return (tbclk);
112}
113
114/* ------------------------------------------------------------------------- */
Stefan Roesee59581c2006-11-28 17:55:49 +0100115
Grant Likelycf2817a2007-09-06 09:46:23 -0600116#ifdef CONFIG_OF_LIBFDT
117static void do_fixup(void *fdt, const char *node, const char *prop,
118 const void *val, int len, int create)
Stefan Roesee59581c2006-11-28 17:55:49 +0100119{
Grant Likelycf2817a2007-09-06 09:46:23 -0600120#if defined(DEBUG)
121 int i;
122 debug("Updating property '%s/%s' = ", node, prop);
123 for (i = 0; i < len; i++)
124 debug(" %.2x", *(u8*)(val+i));
125 debug("\n");
126#endif
127 int rc = fdt_find_and_setprop(fdt, node, prop, val, len, create);
128 if (rc)
129 printf("Unable to update property %s:%s, err=%s\n",
130 node, prop, fdt_strerror(rc));
131}
Stefan Roesee59581c2006-11-28 17:55:49 +0100132
Grant Likelycf2817a2007-09-06 09:46:23 -0600133static void do_fixup_u32(void *fdt, const char *node, const char *prop,
134 u32 val, int create)
135{
136 val = cpu_to_fdt32(val);
137 do_fixup(fdt, node, prop, &val, sizeof(val), create);
138}
Stefan Roesee59581c2006-11-28 17:55:49 +0100139
Grant Likelycf2817a2007-09-06 09:46:23 -0600140void ft_cpu_setup(void *blob, bd_t *bd)
141{
142 int div = in_8((void*)CFG_MBAR + 0x204) & 0x0020 ? 8 : 4;
143 char * cpu_path = "/cpus/" OF_CPU;
144 char * eth_path = "/" OF_SOC "/ethernet@3000";
Stefan Roesee59581c2006-11-28 17:55:49 +0100145
Grant Likelycf2817a2007-09-06 09:46:23 -0600146 do_fixup_u32(blob, cpu_path, "timebase-frequency", OF_TBCLK, 1);
147 do_fixup_u32(blob, cpu_path, "bus-frequency", bd->bi_busfreq, 1);
148 do_fixup_u32(blob, cpu_path, "clock-frequency", bd->bi_intfreq, 1);
149 do_fixup_u32(blob, "/" OF_SOC, "bus-frequency", bd->bi_ipbfreq, 1);
150 do_fixup_u32(blob, "/" OF_SOC, "system-frequency",
151 bd->bi_busfreq*div, 1);
152 do_fixup(blob, eth_path, "mac-address", bd->bi_enetaddr, 6, 0);
153 do_fixup(blob, eth_path, "local-mac-address", bd->bi_enetaddr, 6, 0);
Stefan Roesee59581c2006-11-28 17:55:49 +0100154}
155#endif