blob: 5b2c7e28d6c98ae148c759bd72888b0c24d30813 [file] [log] [blame]
wdenk324f6cf2002-10-07 21:13:39 +00001/*
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
wdenk228f29a2002-12-08 09:53:23 +000022 *
23 * Be sure to mark tests to be run before relocation as such with the
24 * CFG_POST_PREREL flag so that logging is done correctly if the
25 * logbuffer support is enabled.
wdenk324f6cf2002-10-07 21:13:39 +000026 */
27
28#include <common.h>
29
30#ifdef CONFIG_POST
31
32#include <post.h>
33
34extern int cache_post_test (int flags);
35extern int watchdog_post_test (int flags);
36extern int i2c_post_test (int flags);
37extern int rtc_post_test (int flags);
38extern int memory_post_test (int flags);
39extern int cpu_post_test (int flags);
40extern int uart_post_test (int flags);
41extern int ether_post_test (int flags);
42extern int spi_post_test (int flags);
43extern int usb_post_test (int flags);
44extern int spr_post_test (int flags);
wdenk4532cb62003-04-27 22:52:51 +000045extern int sysmon_post_test (int flags);
46
47extern int sysmon_init_f (void);
48
49extern void sysmon_reloc (void);
50
wdenk324f6cf2002-10-07 21:13:39 +000051
52struct post_test post_list[] =
53{
54#if CONFIG_POST & CFG_POST_CACHE
55 {
56 "Cache test",
57 "cache",
58 "This test verifies the CPU cache operation.",
59 POST_RAM | POST_ALWAYS,
wdenk228f29a2002-12-08 09:53:23 +000060 &cache_post_test,
wdenk4532cb62003-04-27 22:52:51 +000061 NULL,
62 NULL,
wdenk228f29a2002-12-08 09:53:23 +000063 CFG_POST_CACHE
wdenk324f6cf2002-10-07 21:13:39 +000064 },
65#endif
66#if CONFIG_POST & CFG_POST_WATCHDOG
67 {
68 "Watchdog timer test",
69 "watchdog",
70 "This test checks the watchdog timer.",
71 POST_RAM | POST_POWERON | POST_POWERFAIL | POST_MANUAL | POST_REBOOT,
wdenk228f29a2002-12-08 09:53:23 +000072 &watchdog_post_test,
wdenk4532cb62003-04-27 22:52:51 +000073 NULL,
74 NULL,
wdenk228f29a2002-12-08 09:53:23 +000075 CFG_POST_WATCHDOG
wdenk324f6cf2002-10-07 21:13:39 +000076 },
77#endif
78#if CONFIG_POST & CFG_POST_I2C
79 {
80 "I2C test",
81 "i2c",
82 "This test verifies the I2C operation.",
83 POST_RAM | POST_ALWAYS,
wdenk228f29a2002-12-08 09:53:23 +000084 &i2c_post_test,
wdenk4532cb62003-04-27 22:52:51 +000085 NULL,
86 NULL,
wdenk228f29a2002-12-08 09:53:23 +000087 CFG_POST_I2C
wdenk324f6cf2002-10-07 21:13:39 +000088 },
89#endif
90#if CONFIG_POST & CFG_POST_RTC
91 {
92 "RTC test",
93 "rtc",
94 "This test verifies the RTC operation.",
95 POST_RAM | POST_POWERFAIL | POST_MANUAL,
wdenk228f29a2002-12-08 09:53:23 +000096 &rtc_post_test,
wdenk4532cb62003-04-27 22:52:51 +000097 NULL,
98 NULL,
wdenk228f29a2002-12-08 09:53:23 +000099 CFG_POST_RTC
wdenk324f6cf2002-10-07 21:13:39 +0000100 },
101#endif
102#if CONFIG_POST & CFG_POST_MEMORY
103 {
104 "Memory test",
105 "memory",
106 "This test checks RAM.",
wdenk228f29a2002-12-08 09:53:23 +0000107 POST_ROM | POST_POWERON | POST_POWERFAIL | POST_PREREL,
108 &memory_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000109 NULL,
110 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000111 CFG_POST_MEMORY
wdenk324f6cf2002-10-07 21:13:39 +0000112 },
113#endif
114#if CONFIG_POST & CFG_POST_CPU
115 {
116 "CPU test",
117 "cpu",
118 "This test verifies the arithmetic logic unit of"
119 " CPU.",
120 POST_RAM | POST_ALWAYS,
wdenk228f29a2002-12-08 09:53:23 +0000121 &cpu_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000122 NULL,
123 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000124 CFG_POST_CPU
wdenk324f6cf2002-10-07 21:13:39 +0000125 },
126#endif
127#if CONFIG_POST & CFG_POST_UART
128 {
129 "UART test",
130 "uart",
131 "This test verifies the UART operation.",
132 POST_RAM | POST_POWERFAIL | POST_MANUAL,
wdenk228f29a2002-12-08 09:53:23 +0000133 &uart_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000134 NULL,
135 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000136 CFG_POST_UART
wdenk324f6cf2002-10-07 21:13:39 +0000137 },
138#endif
139#if CONFIG_POST & CFG_POST_ETHER
140 {
141 "ETHERNET test",
142 "ethernet",
143 "This test verifies the ETHERNET operation.",
144 POST_RAM | POST_ALWAYS | POST_MANUAL,
wdenk228f29a2002-12-08 09:53:23 +0000145 &ether_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000146 NULL,
147 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000148 CFG_POST_ETHER
wdenk324f6cf2002-10-07 21:13:39 +0000149 },
150#endif
151#if CONFIG_POST & CFG_POST_SPI
152 {
153 "SPI test",
154 "spi",
155 "This test verifies the SPI operation.",
156 POST_RAM | POST_ALWAYS | POST_MANUAL,
wdenk228f29a2002-12-08 09:53:23 +0000157 &spi_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000158 NULL,
159 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000160 CFG_POST_SPI
wdenk324f6cf2002-10-07 21:13:39 +0000161 },
162#endif
163#if CONFIG_POST & CFG_POST_USB
164 {
165 "USB test",
166 "usb",
167 "This test verifies the USB operation.",
168 POST_RAM | POST_ALWAYS | POST_MANUAL,
wdenk228f29a2002-12-08 09:53:23 +0000169 &usb_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000170 NULL,
171 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000172 CFG_POST_USB
wdenk324f6cf2002-10-07 21:13:39 +0000173 },
174#endif
175#if CONFIG_POST & CFG_POST_SPR
176 {
177 "SPR test",
178 "spr",
179 "This test checks SPR contents.",
wdenk228f29a2002-12-08 09:53:23 +0000180 POST_ROM | POST_ALWAYS | POST_PREREL,
181 &spr_post_test,
wdenk4532cb62003-04-27 22:52:51 +0000182 NULL,
183 NULL,
wdenk228f29a2002-12-08 09:53:23 +0000184 CFG_POST_SPR
wdenk324f6cf2002-10-07 21:13:39 +0000185 },
186#endif
wdenk4532cb62003-04-27 22:52:51 +0000187#if CONFIG_POST & CFG_POST_SYSMON
188 {
189 "SYSMON test",
190 "sysmon",
191 "This test monitors system hardware.",
192 POST_RAM | POST_ALWAYS,
193 &sysmon_post_test,
194 &sysmon_init_f,
195 &sysmon_reloc,
196 CFG_POST_SYSMON
197 },
198#endif
wdenk324f6cf2002-10-07 21:13:39 +0000199};
200
201unsigned int post_list_size = sizeof (post_list) / sizeof (struct post_test);
202
203#endif /* CONFIG_POST */