]> git.ipfire.org Git - people/ms/u-boot.git/blame - post/post.c
The patch adds new POST tests for the Lwmon5 board.
[people/ms/u-boot.git] / post / post.c
CommitLineData
a042ac84
WD
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#include <console.h>
26#include <watchdog.h>
27#include <post.h>
28
56f94be3
WD
29#ifdef CONFIG_LOGBUFFER
30#include <logbuff.h>
31#endif
32
a042ac84
WD
33#ifdef CONFIG_POST
34
d87080b7
WD
35DECLARE_GLOBAL_DATA_PTR;
36
a042ac84
WD
37#define POST_MAX_NUMBER 32
38
39#define BOOTMODE_MAGIC 0xDEAD0000
40
4532cb69
WD
41int post_init_f (void)
42{
4532cb69
WD
43 int res = 0;
44 unsigned int i;
45
46 for (i = 0; i < post_list_size; i++) {
47 struct post_test *test = post_list + i;
48
49 if (test->init_f && test->init_f()) {
50 res = -1;
51 }
52 }
8bde7f77 53
4532cb69
WD
54 gd->post_init_f_time = post_time_ms(0);
55 if (!gd->post_init_f_time)
56 {
57 printf("post/post.c: post_time_ms seems not to be implemented\n");
58 }
59
60 return res;
61}
62
a042ac84
WD
63void post_bootmode_init (void)
64{
65 int bootmode = post_bootmode_get (0);
27b207fd 66 int newword;
42d1f039 67
27b207fd
WD
68 if (post_hotkeys_pressed() && !(bootmode & POST_POWERTEST)) {
69 newword = BOOTMODE_MAGIC | POST_SLOWTEST;
6dff5529 70 } else if (bootmode == 0) {
27b207fd 71 newword = BOOTMODE_MAGIC | POST_POWERON;
6dff5529 72 } else if (bootmode == POST_POWERON || bootmode == POST_SLOWTEST) {
27b207fd 73 newword = BOOTMODE_MAGIC | POST_NORMAL;
a042ac84 74 } else {
27b207fd
WD
75 /* Use old value */
76 newword = post_word_load () & ~POST_COLDBOOT;
a042ac84
WD
77 }
78
27b207fd
WD
79 if (bootmode == 0)
80 {
81 /* We are booting after power-on */
82 newword |= POST_COLDBOOT;
83 }
84
85 post_word_store (newword);
86
228f29ac
WD
87 /* Reset activity record */
88 gd->post_log_word = 0;
a042ac84
WD
89}
90
91int post_bootmode_get (unsigned int *last_test)
92{
93 unsigned long word = post_word_load ();
94 int bootmode;
95
96 if ((word & 0xFFFF0000) != BOOTMODE_MAGIC) {
97 return 0;
98 }
99
27b207fd 100 bootmode = word & 0x7F;
a042ac84
WD
101
102 if (last_test && (bootmode & POST_POWERTEST)) {
103 *last_test = (word >> 8) & 0xFF;
104 }
105
106 return bootmode;
107}
108
228f29ac
WD
109/* POST tests run before relocation only mark status bits .... */
110static void post_log_mark_start ( unsigned long testid )
111{
228f29ac
WD
112 gd->post_log_word |= (testid)<<16;
113}
114
115static void post_log_mark_succ ( unsigned long testid )
116{
228f29ac
WD
117 gd->post_log_word |= testid;
118}
119
120/* ... and the messages are output once we are relocated */
121void post_output_backlog ( void )
122{
228f29ac
WD
123 int j;
124
125 for (j = 0; j < post_list_size; j++) {
126 if (gd->post_log_word & (post_list[j].testid<<16)) {
127 post_log ("POST %s ", post_list[j].cmd);
128 if (gd->post_log_word & post_list[j].testid)
129 post_log ("PASSED\n");
63e73c9a 130 else {
228f29ac 131 post_log ("FAILED\n");
fad63407 132 show_boot_progress (-31);
63e73c9a 133 }
228f29ac
WD
134 }
135 }
136}
137
a042ac84
WD
138static void post_bootmode_test_on (unsigned int last_test)
139{
140 unsigned long word = post_word_load ();
141
142 word |= POST_POWERTEST;
143
144 word |= (last_test & 0xFF) << 8;
145
146 post_word_store (word);
147}
148
149static void post_bootmode_test_off (void)
150{
151 unsigned long word = post_word_load ();
152
153 word &= ~POST_POWERTEST;
154
155 post_word_store (word);
156}
157
158static void post_get_flags (int *test_flags)
159{
8564acf9
WD
160 int flag[] = { POST_POWERON, POST_NORMAL, POST_SLOWTEST };
161 char *var[] = { "post_poweron", "post_normal", "post_slowtest" };
a042ac84
WD
162 int varnum = sizeof (var) / sizeof (var[0]);
163 char list[128]; /* long enough for POST list */
164 char *name;
165 char *s;
166 int last;
167 int i, j;
168
169 for (j = 0; j < post_list_size; j++) {
170 test_flags[j] = post_list[j].flags;
171 }
172
173 for (i = 0; i < varnum; i++) {
174 if (getenv_r (var[i], list, sizeof (list)) <= 0)
175 continue;
176
177 for (j = 0; j < post_list_size; j++) {
178 test_flags[j] &= ~flag[i];
179 }
180
181 last = 0;
182 name = list;
183 while (!last) {
184 while (*name && *name == ' ')
185 name++;
186 if (*name == 0)
187 break;
188 s = name + 1;
189 while (*s && *s != ' ')
190 s++;
191 if (*s == 0)
192 last = 1;
193 else
194 *s = 0;
195
196 for (j = 0; j < post_list_size; j++) {
197 if (strcmp (post_list[j].cmd, name) == 0) {
198 test_flags[j] |= flag[i];
199 break;
200 }
201 }
202
203 if (j == post_list_size) {
204 printf ("No such test: %s\n", name);
205 }
206
207 name = s + 1;
208 }
209 }
6dff5529
WD
210
211 for (j = 0; j < post_list_size; j++) {
212 if (test_flags[j] & POST_POWERON) {
213 test_flags[j] |= POST_SLOWTEST;
214 }
215 }
a042ac84
WD
216}
217
218static int post_run_single (struct post_test *test,
219 int test_flags, int flags, unsigned int i)
220{
221 if ((flags & test_flags & POST_ALWAYS) &&
222 (flags & test_flags & POST_MEM)) {
223 WATCHDOG_RESET ();
224
225 if (!(flags & POST_REBOOT)) {
226 if ((test_flags & POST_REBOOT) && !(flags & POST_MANUAL)) {
227 post_bootmode_test_on (i);
228 }
229
228f29ac
WD
230 if (test_flags & POST_PREREL)
231 post_log_mark_start ( test->testid );
232 else
56f94be3 233 post_log ("POST %s ", test->cmd);
a042ac84
WD
234 }
235
228f29ac
WD
236 if (test_flags & POST_PREREL) {
237 if ((*test->test) (flags) == 0)
238 post_log_mark_succ ( test->testid );
239 } else {
63e73c9a 240 if ((*test->test) (flags) != 0) {
a042ac84 241 post_log ("FAILED\n");
fad63407 242 show_boot_progress (-32);
63e73c9a 243 }
a042ac84
WD
244 else
245 post_log ("PASSED\n");
228f29ac 246 }
a042ac84
WD
247
248 if ((test_flags & POST_REBOOT) && !(flags & POST_MANUAL)) {
249 post_bootmode_test_off ();
250 }
251
252 return 0;
253 } else {
254 return -1;
255 }
256}
257
258int post_run (char *name, int flags)
259{
260 unsigned int i;
261 int test_flags[POST_MAX_NUMBER];
262
263 post_get_flags (test_flags);
264
265 if (name == NULL) {
266 unsigned int last;
267
268 if (post_bootmode_get (&last) & POST_POWERTEST) {
269 if (last < post_list_size &&
270 (flags & test_flags[last] & POST_ALWAYS) &&
271 (flags & test_flags[last] & POST_MEM)) {
272
ea909b76
WD
273 post_run_single (post_list + last,
274 test_flags[last],
275 flags | POST_REBOOT, last);
a042ac84
WD
276
277 for (i = last + 1; i < post_list_size; i++) {
ea909b76
WD
278 post_run_single (post_list + i,
279 test_flags[i],
280 flags, i);
a042ac84
WD
281 }
282 }
283 } else {
284 for (i = 0; i < post_list_size; i++) {
ea909b76
WD
285 post_run_single (post_list + i,
286 test_flags[i],
287 flags, i);
a042ac84
WD
288 }
289 }
290
291 return 0;
292 } else {
293 for (i = 0; i < post_list_size; i++) {
294 if (strcmp (post_list[i].cmd, name) == 0)
295 break;
296 }
297
298 if (i < post_list_size) {
299 return post_run_single (post_list + i,
300 test_flags[i],
301 flags, i);
302 } else {
303 return -1;
304 }
305 }
306}
307
308static int post_info_single (struct post_test *test, int full)
309{
310 if (test->flags & POST_MANUAL) {
311 if (full)
312 printf ("%s - %s\n"
313 " %s\n", test->cmd, test->name, test->desc);
314 else
315 printf (" %-15s - %s\n", test->cmd, test->name);
316
317 return 0;
318 } else {
319 return -1;
320 }
321}
322
323int post_info (char *name)
324{
325 unsigned int i;
326
327 if (name == NULL) {
328 for (i = 0; i < post_list_size; i++) {
329 post_info_single (post_list + i, 0);
330 }
331
332 return 0;
333 } else {
334 for (i = 0; i < post_list_size; i++) {
335 if (strcmp (post_list[i].cmd, name) == 0)
336 break;
337 }
338
339 if (i < post_list_size) {
340 return post_info_single (post_list + i, 1);
341 } else {
342 return -1;
343 }
344 }
345}
346
347int post_log (char *format, ...)
348{
349 va_list args;
350 uint i;
351 char printbuffer[CFG_PBSIZE];
352
353 va_start (args, format);
354
355 /* For this to work, printbuffer must be larger than
356 * anything we ever want to print.
357 */
358 i = vsprintf (printbuffer, format, args);
359 va_end (args);
360
56f94be3 361#ifdef CONFIG_LOGBUFFER
228f29ac 362 /* Send to the logbuffer */
56f94be3
WD
363 logbuff_log (printbuffer);
364#else
a042ac84
WD
365 /* Send to the stdout file */
366 puts (printbuffer);
56f94be3 367#endif
a042ac84
WD
368
369 return 0;
370}
371
372void post_reloc (void)
373{
a042ac84
WD
374 unsigned int i;
375
376 /*
377 * We have to relocate the test table manually
378 */
379 for (i = 0; i < post_list_size; i++) {
380 ulong addr;
381 struct post_test *test = post_list + i;
382
383 if (test->name) {
384 addr = (ulong) (test->name) + gd->reloc_off;
385 test->name = (char *) addr;
386 }
387
388 if (test->cmd) {
389 addr = (ulong) (test->cmd) + gd->reloc_off;
390 test->cmd = (char *) addr;
391 }
392
393 if (test->desc) {
394 addr = (ulong) (test->desc) + gd->reloc_off;
395 test->desc = (char *) addr;
396 }
397
398 if (test->test) {
399 addr = (ulong) (test->test) + gd->reloc_off;
400 test->test = (int (*)(int flags)) addr;
401 }
4532cb69
WD
402
403 if (test->init_f) {
404 addr = (ulong) (test->init_f) + gd->reloc_off;
405 test->init_f = (int (*)(void)) addr;
406 }
407
408 if (test->reloc) {
409 addr = (ulong) (test->reloc) + gd->reloc_off;
410 test->reloc = (void (*)(void)) addr;
8bde7f77 411
4532cb69
WD
412 test->reloc();
413 }
a042ac84
WD
414 }
415}
416
4532cb69
WD
417
418/*
419 * Some tests (e.g. SYSMON) need the time when post_init_f started,
420 * but we cannot use get_timer() at this point.
421 *
422 * On PowerPC we implement it using the timebase register.
423 */
424unsigned long post_time_ms (unsigned long base)
425{
426#ifdef CONFIG_PPC
a11e0696 427 return (unsigned long)(get_ticks () / (get_tbclk () / CFG_HZ)) - base;
4532cb69 428#else
ad5bb451 429#warning "Not implemented yet"
4532cb69
WD
430 return 0; /* Not implemented yet */
431#endif
432}
433
a042ac84 434#endif /* CONFIG_POST */