]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - post/cpu.c
Initial revision
[karo-tx-uboot.git] / post / cpu.c
1 /*
2  * (C) Copyright 2002
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 #include <common.h>
25
26 /*
27  * CPU test
28  *
29  * This test checks the arithmetic logic unit (ALU) of CPU.
30  * It tests independently various groups of instructions using
31  * run-time modification of the code to reduce the memory footprint.
32  * For more details refer to post/cpu/ *.c files.
33  */
34
35 #ifdef CONFIG_POST
36
37 #include <watchdog.h>
38 #include <post.h>
39
40 #if CONFIG_POST & CFG_POST_CPU
41
42 extern int cpu_post_test_cmp (void);
43 extern int cpu_post_test_cmpi (void);
44 extern int cpu_post_test_two (void);
45 extern int cpu_post_test_twox (void);
46 extern int cpu_post_test_three (void);
47 extern int cpu_post_test_threex (void);
48 extern int cpu_post_test_threei (void);
49 extern int cpu_post_test_andi (void);
50 extern int cpu_post_test_srawi (void);
51 extern int cpu_post_test_rlwnm (void);
52 extern int cpu_post_test_rlwinm (void);
53 extern int cpu_post_test_rlwimi (void);
54 extern int cpu_post_test_store (void);
55 extern int cpu_post_test_load (void);
56 extern int cpu_post_test_cr (void);
57 extern int cpu_post_test_b (void);
58 extern int cpu_post_test_multi (void);
59 extern int cpu_post_test_string (void);
60 extern int cpu_post_test_complex (void);
61
62 ulong cpu_post_makecr (long v)
63 {
64         ulong cr = 0;
65
66         if (v < 0)
67                 cr |= 0x80000000;
68         if (v > 0)
69                 cr |= 0x40000000;
70         if (v == 0)
71                 cr |= 0x20000000;
72
73         return cr;
74 }
75
76 int cpu_post_test (int flags)
77 {
78         int ic = icache_status ();
79         int ret = 0;
80
81         if (ic)
82                 icache_disable ();
83
84         if (ret == 0)
85                 ret = cpu_post_test_cmp ();
86         if (ret == 0)
87                 ret = cpu_post_test_cmpi ();
88         if (ret == 0)
89                 ret = cpu_post_test_two ();
90         if (ret == 0)
91                 ret = cpu_post_test_twox ();
92         if (ret == 0)
93                 ret = cpu_post_test_three ();
94         if (ret == 0)
95                 ret = cpu_post_test_threex ();
96         if (ret == 0)
97                 ret = cpu_post_test_threei ();
98         WATCHDOG_RESET();
99         if (ret == 0)
100                 ret = cpu_post_test_andi ();
101         if (ret == 0)
102                 ret = cpu_post_test_srawi ();
103         if (ret == 0)
104                 ret = cpu_post_test_rlwnm ();
105         if (ret == 0)
106                 ret = cpu_post_test_rlwinm ();
107         if (ret == 0)
108                 ret = cpu_post_test_rlwimi ();
109         if (ret == 0)
110                 ret = cpu_post_test_store ();
111         if (ret == 0)
112                 ret = cpu_post_test_load ();
113         WATCHDOG_RESET();
114         if (ret == 0)
115                 ret = cpu_post_test_cr ();
116         if (ret == 0)
117                 ret = cpu_post_test_b ();
118         if (ret == 0)
119                 ret = cpu_post_test_multi ();
120         if (ret == 0)
121                 ret = cpu_post_test_string ();
122         if (ret == 0)
123                 ret = cpu_post_test_complex ();
124
125         if (ic)
126                 icache_enable ();
127
128         return ret;
129 }
130
131 #endif /* CONFIG_POST & CFG_POST_CPU */
132 #endif /* CONFIG_POST */