MINI2440: Add a command to re-init CFI NOR
[u-boot-openmoko/mini2440.git] / post / lib_ppc / cr.c
blobda6ef3745d0cb0c74282071b1fee1be5fec77cdc
1 /*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
6 * project.
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,
21 * MA 02111-1307 USA
24 #include <common.h>
27 * CPU test
28 * Condition register istructions: mtcr, mfcr, mcrxr,
29 * crand, crandc, cror, crorc, crxor,
30 * crnand, crnor, creqv, mcrf
32 * The mtcrf/mfcr instructions is tested by loading different
33 * values into the condition register (mtcrf), moving its value
34 * to a general-purpose register (mfcr) and comparing this value
35 * with the expected one.
36 * The mcrxr instruction is tested by loading a fixed value
37 * into the XER register (mtspr), moving XER value to the
38 * condition register (mcrxr), moving it to a general-purpose
39 * register (mfcr) and comparing the value of this register with
40 * the expected one.
41 * The rest of instructions is tested by loading a fixed
42 * value into the condition register (mtcrf), executing each
43 * instruction several times to modify all 4-bit condition
44 * fields, moving the value of the conditional register to a
45 * general-purpose register (mfcr) and comparing it with the
46 * expected one.
49 #ifdef CONFIG_POST
51 #include <post.h>
52 #include "cpu_asm.h"
54 #if CONFIG_POST & CFG_POST_CPU
56 extern void cpu_post_exec_11 (ulong *code, ulong *res, ulong op1);
57 extern void cpu_post_exec_21x (ulong *code, ulong *op1, ulong *op2, ulong op3);
59 static ulong cpu_post_cr_table1[] =
61 0xaaaaaaaa,
62 0x55555555,
64 static unsigned int cpu_post_cr_size1 =
65 sizeof (cpu_post_cr_table1) / sizeof (ulong);
67 static struct cpu_post_cr_s2 {
68 ulong xer;
69 ulong cr;
70 } cpu_post_cr_table2[] =
73 0xa0000000,
77 0x40000000,
81 static unsigned int cpu_post_cr_size2 =
82 sizeof (cpu_post_cr_table2) / sizeof (struct cpu_post_cr_s2);
84 static struct cpu_post_cr_s3 {
85 ulong cr;
86 ulong cs;
87 ulong cd;
88 ulong res;
89 } cpu_post_cr_table3[] =
92 0x01234567,
95 0x01230567
98 0x01234567,
101 0x71234567
104 static unsigned int cpu_post_cr_size3 =
105 sizeof (cpu_post_cr_table3) / sizeof (struct cpu_post_cr_s3);
107 static struct cpu_post_cr_s4 {
108 ulong cmd;
109 ulong cr;
110 ulong op1;
111 ulong op2;
112 ulong op3;
113 ulong res;
114 } cpu_post_cr_table4[] =
117 OP_CRAND,
118 0x0000ffff,
122 0x0000ffff
125 OP_CRAND,
126 0x0000ffff,
130 0x8000ffff
133 OP_CRANDC,
134 0x0000ffff,
138 0x0000ffff
141 OP_CRANDC,
142 0x0000ffff,
146 0x8000ffff
149 OP_CROR,
150 0x0000ffff,
154 0x8000ffff
157 OP_CROR,
158 0x0000ffff,
162 0x0000ffff
165 OP_CRORC,
166 0x0000ffff,
170 0x0000ffff
173 OP_CRORC,
174 0x0000ffff,
178 0x8000ffff
181 OP_CRXOR,
182 0x0000ffff,
186 0x0000ffff
189 OP_CRXOR,
190 0x0000ffff,
194 0x8000ffff
197 OP_CRNAND,
198 0x0000ffff,
202 0x8000ffff
205 OP_CRNAND,
206 0x0000ffff,
210 0x0000ffff
213 OP_CRNOR,
214 0x0000ffff,
218 0x0000ffff
221 OP_CRNOR,
222 0x0000ffff,
226 0x8000ffff
229 OP_CREQV,
230 0x0000ffff,
234 0x8000ffff
237 OP_CREQV,
238 0x0000ffff,
242 0x0000ffff
245 static unsigned int cpu_post_cr_size4 =
246 sizeof (cpu_post_cr_table4) / sizeof (struct cpu_post_cr_s4);
248 int cpu_post_test_cr (void)
250 int ret = 0;
251 unsigned int i;
252 unsigned long cr_sav;
254 asm ( "mfcr %0" : "=r" (cr_sav) : );
256 for (i = 0; i < cpu_post_cr_size1 && ret == 0; i++)
258 ulong cr = cpu_post_cr_table1[i];
259 ulong res;
261 unsigned long code[] =
263 ASM_MTCR(3),
264 ASM_MFCR(3),
265 ASM_BLR,
268 cpu_post_exec_11 (code, &res, cr);
270 ret = res == cr ? 0 : -1;
272 if (ret != 0)
274 post_log ("Error at cr1 test %d !\n", i);
278 for (i = 0; i < cpu_post_cr_size2 && ret == 0; i++)
280 struct cpu_post_cr_s2 *test = cpu_post_cr_table2 + i;
281 ulong res;
282 ulong xer;
284 unsigned long code[] =
286 ASM_MTXER(3),
287 ASM_MCRXR(test->cr),
288 ASM_MFCR(3),
289 ASM_MFXER(4),
290 ASM_BLR,
293 cpu_post_exec_21x (code, &res, &xer, test->xer);
295 ret = xer == 0 && ((res << (4 * test->cr)) & 0xe0000000) == test->xer ?
296 0 : -1;
298 if (ret != 0)
300 post_log ("Error at cr2 test %d !\n", i);
304 for (i = 0; i < cpu_post_cr_size3 && ret == 0; i++)
306 struct cpu_post_cr_s3 *test = cpu_post_cr_table3 + i;
307 ulong res;
309 unsigned long code[] =
311 ASM_MTCR(3),
312 ASM_MCRF(test->cd, test->cs),
313 ASM_MFCR(3),
314 ASM_BLR,
317 cpu_post_exec_11 (code, &res, test->cr);
319 ret = res == test->res ? 0 : -1;
321 if (ret != 0)
323 post_log ("Error at cr3 test %d !\n", i);
327 for (i = 0; i < cpu_post_cr_size4 && ret == 0; i++)
329 struct cpu_post_cr_s4 *test = cpu_post_cr_table4 + i;
330 ulong res;
332 unsigned long code[] =
334 ASM_MTCR(3),
335 ASM_12F(test->cmd, test->op3, test->op1, test->op2),
336 ASM_MFCR(3),
337 ASM_BLR,
340 cpu_post_exec_11 (code, &res, test->cr);
342 ret = res == test->res ? 0 : -1;
344 if (ret != 0)
346 post_log ("Error at cr4 test %d !\n", i);
350 asm ( "mtcr %0" : : "r" (cr_sav));
352 return ret;
355 #endif
356 #endif