]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/mpc5xxx/cpu.c
Merge commit 'origin/master'
[karo-tx-uboot.git] / cpu / mpc5xxx / cpu.c
1 /*
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>
32 #include <asm/io.h>
33 #include <asm/processor.h>
34
35 #if defined(CONFIG_OF_LIBFDT)
36 #include <libfdt.h>
37 #include <libfdt_env.h>
38 #endif
39
40 DECLARE_GLOBAL_DATA_PTR;
41
42 int checkcpu (void)
43 {
44         ulong clock = gd->cpu_clk;
45         char buf[32];
46 #ifndef CONFIG_MGT5100
47         uint svr, pvr;
48 #endif
49
50         puts ("CPU:   ");
51
52 #ifdef CONFIG_MGT5100
53         puts   (CPU_ID_STR);
54         printf (" (JTAG ID %08lx)", *(vu_long *)MPC5XXX_CDM_JTAGID);
55 #else
56         svr = get_svr();
57         pvr = get_pvr();
58
59         switch (pvr) {
60         case PVR_5200:
61                 printf("MPC5200");
62                 break;
63         case PVR_5200B:
64                 printf("MPC5200B");
65                 break;
66         default:
67                 printf("Unknown MPC5xxx");
68                 break;
69         }
70
71         printf (" v%d.%d, Core v%d.%d", SVR_MJREV (svr), SVR_MNREV (svr),
72                 PVR_MAJ(pvr), PVR_MIN(pvr));
73 #endif
74         printf (" at %s MHz\n", strmhz (buf, clock));
75         return 0;
76 }
77
78 /* ------------------------------------------------------------------------- */
79
80 int
81 do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
82 {
83         ulong msr;
84         /* 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
90         /* Charge the watchdog timer */
91         *(vu_long *)(MPC5XXX_GPT0_COUNTER) = 0x0001000f;
92         *(vu_long *)(MPC5XXX_GPT0_ENABLE) = 0x9004; /* wden|ce|timer_ms */
93         while(1);
94
95         return 1;
96
97 }
98
99 /* ------------------------------------------------------------------------- */
100
101 /*
102  * Get timebase clock frequency (like cpu_clk in Hz)
103  *
104  */
105 unsigned long get_tbclk (void)
106 {
107         ulong tbclk;
108
109         tbclk = (gd->bus_clk + 3L) / 4L;
110
111         return (tbclk);
112 }
113
114 /* ------------------------------------------------------------------------- */
115
116 #ifdef CONFIG_OF_LIBFDT
117 static void do_fixup(void *fdt, const char *node, const char *prop,
118                      const void *val, int len, int create)
119 {
120 #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 }
132
133 static 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 }
139
140 void 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";
145
146         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);
154 }
155 #endif