blob: 94651dc4a69846731d2e8bae49645e5b2eb63c95 [file] [log] [blame]
wdenk4a9cbbe2002-08-27 09:48:53 +00001/*
Wolfgang Denkd87080b2006-03-31 18:32:53 +02002 * (C) Copyright 2000-2006
wdenk4a9cbbe2002-08-27 09:48:53 +00003 * 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/*
wdenk8564acf2003-07-14 22:13:32 +000025 * CPU specific code for the MPC825x / MPC826x / MPC827x / MPC828x
wdenk4a9cbbe2002-08-27 09:48:53 +000026 *
27 * written or collected and sometimes rewritten by
28 * Magnus Damm <damm@bitsmart.com>
29 *
wdenk4532cb62003-04-27 22:52:51 +000030 * modified by
wdenk4a9cbbe2002-08-27 09:48:53 +000031 * Wolfgang Denk <wd@denx.de>
32 *
33 * modified for 8260 by
34 * Murray Jensen <Murray.Jensen@cmst.csiro.au>
35 *
36 * added 8260 masks by
37 * Marius Groeger <mag@sysgo.de>
wdenk8564acf2003-07-14 22:13:32 +000038 *
wdenk04a85b32004-04-15 18:22:41 +000039 * added HiP7 (824x/827x/8280) processors support by
wdenk8564acf2003-07-14 22:13:32 +000040 * Yuli Barcohen <yuli@arabellasw.com>
wdenk4a9cbbe2002-08-27 09:48:53 +000041 */
42
43#include <common.h>
44#include <watchdog.h>
45#include <command.h>
46#include <mpc8260.h>
47#include <asm/processor.h>
48#include <asm/cpm_8260.h>
49
Wolfgang Denkd87080b2006-03-31 18:32:53 +020050DECLARE_GLOBAL_DATA_PTR;
51
Heiko Schocherfa230442006-12-21 17:17:02 +010052#if defined(CONFIG_GET_CPU_STR_F)
53extern int get_cpu_str_f (char *buf);
54#endif
55
wdenk4a9cbbe2002-08-27 09:48:53 +000056int checkcpu (void)
57{
wdenk4a9cbbe2002-08-27 09:48:53 +000058 volatile immap_t *immap = (immap_t *) CFG_IMMR;
59 ulong clock = gd->cpu_clk;
60 uint pvr = get_pvr ();
61 uint immr, rev, m, k;
62 char buf[32];
63
64 puts ("CPU: ");
65
wdenk8564acf2003-07-14 22:13:32 +000066 switch (pvr) {
67 case PVR_8260:
68 case PVR_8260_HIP3:
69 k = 3;
70 break;
71 case PVR_8260_HIP4:
72 k = 4;
73 break;
wdenk5779d8d2003-12-06 23:55:10 +000074 case PVR_8260_HIP7R1:
wdenke1599e82004-10-10 23:27:33 +000075 case PVR_8260_HIP7RA:
wdenk8564acf2003-07-14 22:13:32 +000076 case PVR_8260_HIP7:
77 k = 7;
78 break;
79 default:
wdenk4a9cbbe2002-08-27 09:48:53 +000080 return -1; /* whoops! not an MPC8260 */
wdenk8564acf2003-07-14 22:13:32 +000081 }
wdenk4a9cbbe2002-08-27 09:48:53 +000082 rev = pvr & 0xff;
83
84 immr = immap->im_memctl.memc_immr;
85 if ((immr & IMMR_ISB_MSK) != CFG_IMMR)
86 return -1; /* whoops! someone moved the IMMR */
87
Heiko Schocherfa230442006-12-21 17:17:02 +010088#if defined(CONFIG_GET_CPU_STR_F)
89 get_cpu_str_f (buf);
90 printf ("%s (HiP%d Rev %02x, Mask ", buf, k, rev);
91#else
wdenk8564acf2003-07-14 22:13:32 +000092 printf (CPU_ID_STR " (HiP%d Rev %02x, Mask ", k, rev);
Heiko Schocherfa230442006-12-21 17:17:02 +010093#endif
wdenk4a9cbbe2002-08-27 09:48:53 +000094
95 /*
96 * the bottom 16 bits of the immr are the Part Number and Mask Number
97 * (4-34); the 16 bits at PROFF_REVNUM (0x8af0) in dual port ram is the
98 * RISC Microcode Revision Number (13-10).
99 * For the 8260, Motorola doesn't include the Microcode Revision
100 * in the mask.
101 */
102 m = immr & (IMMR_PARTNUM_MSK | IMMR_MASKNUM_MSK);
103 k = *((ushort *) & immap->im_dprambase[PROFF_REVNUM]);
104
105 switch (m) {
106 case 0x0000:
wdenk4b9206e2004-03-23 22:14:11 +0000107 puts ("0.2 2J24M");
wdenk4a9cbbe2002-08-27 09:48:53 +0000108 break;
109 case 0x0010:
wdenk4b9206e2004-03-23 22:14:11 +0000110 puts ("A.0 K22A");
wdenk4a9cbbe2002-08-27 09:48:53 +0000111 break;
112 case 0x0011:
wdenk4b9206e2004-03-23 22:14:11 +0000113 puts ("A.1 1K22A-XC");
wdenk4a9cbbe2002-08-27 09:48:53 +0000114 break;
115 case 0x0001:
wdenk4b9206e2004-03-23 22:14:11 +0000116 puts ("B.1 1K23A");
wdenk4a9cbbe2002-08-27 09:48:53 +0000117 break;
118 case 0x0021:
wdenk4b9206e2004-03-23 22:14:11 +0000119 puts ("B.2 2K23A-XC");
wdenk4a9cbbe2002-08-27 09:48:53 +0000120 break;
121 case 0x0023:
wdenk4b9206e2004-03-23 22:14:11 +0000122 puts ("B.3 3K23A");
wdenk4a9cbbe2002-08-27 09:48:53 +0000123 break;
124 case 0x0024:
wdenk4b9206e2004-03-23 22:14:11 +0000125 puts ("C.2 6K23A");
wdenk4a9cbbe2002-08-27 09:48:53 +0000126 break;
127 case 0x0060:
wdenk4b9206e2004-03-23 22:14:11 +0000128 puts ("A.0(A) 2K25A");
wdenk4a9cbbe2002-08-27 09:48:53 +0000129 break;
wdenk4532cb62003-04-27 22:52:51 +0000130 case 0x0062:
wdenk4b9206e2004-03-23 22:14:11 +0000131 puts ("B.1 4K25A");
wdenk4532cb62003-04-27 22:52:51 +0000132 break;
wdenk54387ac2003-10-08 22:45:44 +0000133 case 0x0064:
wdenk4b9206e2004-03-23 22:14:11 +0000134 puts ("C.0 5K25A");
wdenk54387ac2003-10-08 22:45:44 +0000135 break;
wdenk8564acf2003-07-14 22:13:32 +0000136 case 0x0A00:
wdenk4b9206e2004-03-23 22:14:11 +0000137 puts ("0.0 0K49M");
wdenk8564acf2003-07-14 22:13:32 +0000138 break;
139 case 0x0A01:
wdenk4b9206e2004-03-23 22:14:11 +0000140 puts ("0.1 1K49M");
wdenk8564acf2003-07-14 22:13:32 +0000141 break;
wdenke1599e82004-10-10 23:27:33 +0000142 case 0x0A10:
143 puts ("1.0 1K49M");
144 break;
wdenk04a85b32004-04-15 18:22:41 +0000145 case 0x0C00:
wdenke1599e82004-10-10 23:27:33 +0000146 puts ("0.0 0K50M");
147 break;
148 case 0x0C10:
Wolfgang Denkd980a162005-08-06 02:03:03 +0200149 puts ("1.0 1K50M");
wdenke1599e82004-10-10 23:27:33 +0000150 break;
wdenk04a85b32004-04-15 18:22:41 +0000151 case 0x0D00:
wdenke1599e82004-10-10 23:27:33 +0000152 puts ("0.0 0K50M");
153 break;
154 case 0x0D10:
Wolfgang Denkd980a162005-08-06 02:03:03 +0200155 puts ("1.0 1K50M");
wdenk04a85b32004-04-15 18:22:41 +0000156 break;
wdenk4a9cbbe2002-08-27 09:48:53 +0000157 default:
158 printf ("unknown [immr=0x%04x,k=0x%04x]", m, k);
159 break;
160 }
161
162 printf (") at %s MHz\n", strmhz (buf, clock));
163
164 return 0;
165}
166
167/* ------------------------------------------------------------------------- */
168/* configures a UPM by writing into the UPM RAM array */
169/* uses bank 11 and a dummy physical address (=BRx_BA_MSK) */
170/* NOTE: the physical address chosen must not overlap into any other area */
171/* mapped by the memory controller because bank 11 has the lowest priority */
172
173void upmconfig (uint upm, uint * table, uint size)
174{
175 volatile immap_t *immap = (immap_t *) CFG_IMMR;
176 volatile memctl8260_t *memctl = &immap->im_memctl;
177 volatile uchar *dummy = (uchar *) BRx_BA_MSK; /* set all BA bits */
178 uint i;
179
180 /* first set up bank 11 to reference the correct UPM at a dummy address */
181
182 memctl->memc_or11 = ORxU_AM_MSK; /* set all AM bits */
183
184 switch (upm) {
185
186 case UPMA:
187 memctl->memc_br11 =
188 ((uint)dummy & BRx_BA_MSK) | BRx_PS_32 | BRx_MS_UPMA |
189 BRx_V;
190 memctl->memc_mamr = MxMR_OP_WARR;
191 break;
192
193 case UPMB:
194 memctl->memc_br11 =
195 ((uint)dummy & BRx_BA_MSK) | BRx_PS_32 | BRx_MS_UPMB |
196 BRx_V;
197 memctl->memc_mbmr = MxMR_OP_WARR;
198 break;
199
200 case UPMC:
201 memctl->memc_br11 =
202 ((uint)dummy & BRx_BA_MSK) | BRx_PS_32 | BRx_MS_UPMC |
203 BRx_V;
204 memctl->memc_mcmr = MxMR_OP_WARR;
205 break;
206
207 default:
208 panic ("upmconfig passed invalid UPM number (%u)\n", upm);
209 break;
210
211 }
212
213 /*
214 * at this point, the dummy address is set up to access the selected UPM,
215 * the MAD pointer is zero, and the MxMR OP is set for writing to RAM
216 *
217 * now we simply load the mdr with each word and poke the dummy address.
218 * the MAD is incremented on each access.
219 */
220
221 for (i = 0; i < size; i++) {
222 memctl->memc_mdr = table[i];
223 *dummy = 0;
224 }
225
226 /* now kill bank 11 */
227 memctl->memc_br11 = 0;
228}
229
230/* ------------------------------------------------------------------------- */
231
wdenkba91e262005-05-30 23:55:42 +0000232#if !defined(CONFIG_HAVE_OWN_RESET)
wdenk4a9cbbe2002-08-27 09:48:53 +0000233int
wdenk8bde7f72003-06-27 21:31:46 +0000234do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
wdenk4a9cbbe2002-08-27 09:48:53 +0000235{
236 ulong msr, addr;
237
238 volatile immap_t *immap = (immap_t *) CFG_IMMR;
239
240 immap->im_clkrst.car_rmr = RMR_CSRE; /* Checkstop Reset enable */
241
242 /* Interrupts and MMU off */
243 __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
244
245 msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
246 __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
247
248 /*
249 * Trying to execute the next instruction at a non-existing address
250 * should cause a machine check, resulting in reset
251 */
252#ifdef CFG_RESET_ADDRESS
253 addr = CFG_RESET_ADDRESS;
254#else
255 /*
256 * note: when CFG_MONITOR_BASE points to a RAM address, CFG_MONITOR_BASE
257 * - sizeof (ulong) is usually a valid address. Better pick an address
258 * known to be invalid on your system and assign it to CFG_RESET_ADDRESS.
259 */
260 addr = CFG_MONITOR_BASE - sizeof (ulong);
261#endif
262 ((void (*)(void)) addr) ();
263 return 1;
264
265}
wdenkba91e262005-05-30 23:55:42 +0000266#endif /* CONFIG_HAVE_OWN_RESET */
wdenk4a9cbbe2002-08-27 09:48:53 +0000267
268/* ------------------------------------------------------------------------- */
269
270/*
271 * Get timebase clock frequency (like cpu_clk in Hz)
272 *
273 */
274unsigned long get_tbclk (void)
275{
wdenk4a9cbbe2002-08-27 09:48:53 +0000276 ulong tbclk;
277
278 tbclk = (gd->bus_clk + 3L) / 4L;
279
280 return (tbclk);
281}
282
283/* ------------------------------------------------------------------------- */
284
285#if defined(CONFIG_WATCHDOG)
286void watchdog_reset (void)
287{
288 int re_enable = disable_interrupts ();
289
290 reset_8260_watchdog ((immap_t *) CFG_IMMR);
291 if (re_enable)
292 enable_interrupts ();
293}
294#endif /* CONFIG_WATCHDOG */
295
296/* ------------------------------------------------------------------------- */