blob: daa9047118e7de85e4ebf329c6439189c4b340b0 [file] [log] [blame]
wdenk7133d4c2002-09-12 22:42:52 +00001/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Michael Zaidman800eb092010-09-20 08:51:53 +02005 * (C) Copyright 2010
6 * Michael Zaidman, Kodak, michael.zaidman@kodak.com
7 * post_word_{load|store} cleanup.
8 *
wdenk7133d4c2002-09-12 22:42:52 +00009 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27#ifndef _POST_H
28#define _POST_H
29
30#ifndef __ASSEMBLY__
31#include <common.h>
Michael Zaidman800eb092010-09-20 08:51:53 +020032#include <asm/io.h>
33
34#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
35
36#ifdef CONFIG_SYS_POST_WORD_ADDR
37#define _POST_WORD_ADDR CONFIG_SYS_POST_WORD_ADDR
38#else
39
40#ifdef CONFIG_MPC5xxx
41#define _POST_WORD_ADDR (MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE)
42
43#elif defined(CONFIG_MPC512X)
44#define _POST_WORD_ADDR \
45 (CONFIG_SYS_SRAM_BASE + CONFIG_SYS_GBL_DATA_OFFSET - 0x4)
46
47#elif defined(CONFIG_8xx)
48#define _POST_WORD_ADDR \
49 (((immap_t *)CONFIG_SYS_IMMR)->im_cpm.cp_dpmem + CPM_POST_WORD_ADDR)
50
51#elif defined(CONFIG_MPC8260)
52#include <asm/cpm_8260.h>
53#define _POST_WORD_ADDR (CONFIG_SYS_IMMR + CPM_POST_WORD_ADDR)
54
55#elif defined(CONFIG_MPC8360)
56#include <asm/immap_qe.h>
57#define _POST_WORD_ADDR (CONFIG_SYS_IMMR + CPM_POST_WORD_ADDR)
58
59#elif defined (CONFIG_MPC85xx)
York Sun8790ac02010-09-28 15:20:35 -070060#include <asm/immap_85xx.h>
61#define _POST_WORD_ADDR (CONFIG_SYS_IMMR + offsetof(ccsr_pic_t, tfrr))
Michael Zaidman800eb092010-09-20 08:51:53 +020062
63#elif defined (CONFIG_4xx)
64#define _POST_WORD_ADDR \
65 (CONFIG_SYS_OCM_DATA_ADDR + CONFIG_SYS_GBL_DATA_OFFSET - 0x4)
wdenk7133d4c2002-09-12 22:42:52 +000066#endif
67
Michael Zaidman800eb092010-09-20 08:51:53 +020068#ifndef _POST_WORD_ADDR
69#error "_POST_WORD_ADDR currently not implemented for this platform!"
70#endif
71#endif /* CONFIG_SYS_POST_WORD_ADDR */
72
73static inline ulong post_word_load (void)
74{
75 return in_le32((volatile void *)(_POST_WORD_ADDR));
76}
77
78static inline void post_word_store (ulong value)
79{
80 out_le32((volatile void *)(_POST_WORD_ADDR), value);
81}
82#endif /* defined (CONFIG_POST) || defined(CONFIG_LOGBUFFER) */
83#endif /* __ASSEMBLY__ */
84
wdenk7133d4c2002-09-12 22:42:52 +000085#ifdef CONFIG_POST
86
87#define POST_POWERON 0x01 /* test runs on power-on booting */
wdenk8564acf2003-07-14 22:13:32 +000088#define POST_NORMAL 0x02 /* test runs on normal booting */
89#define POST_SLOWTEST 0x04 /* test is slow, enabled by key press */
wdenk7133d4c2002-09-12 22:42:52 +000090#define POST_POWERTEST 0x08 /* test runs after watchdog reset */
91
wdenk27b207f2003-07-24 23:38:38 +000092#define POST_COLDBOOT 0x80 /* first boot after power-on */
93
wdenk7133d4c2002-09-12 22:42:52 +000094#define POST_ROM 0x0100 /* test runs in ROM */
95#define POST_RAM 0x0200 /* test runs in RAM */
96#define POST_MANUAL 0x0400 /* test runs on diag command */
97#define POST_REBOOT 0x0800 /* test may cause rebooting */
Michael Zaidman800eb092010-09-20 08:51:53 +020098#define POST_PREREL 0x1000 /* test runs before relocation */
wdenk7133d4c2002-09-12 22:42:52 +000099
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +0100100#define POST_CRITICAL 0x2000 /* Use failbootcmd if test failed */
Yuri Tikhonov28a38502008-05-08 15:45:26 +0200101#define POST_STOP 0x4000 /* Interrupt POST sequence on fail */
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +0100102
wdenk7133d4c2002-09-12 22:42:52 +0000103#define POST_MEM (POST_RAM | POST_ROM)
wdenk8564acf2003-07-14 22:13:32 +0000104#define POST_ALWAYS (POST_NORMAL | \
105 POST_SLOWTEST | \
106 POST_MANUAL | \
wdenk7133d4c2002-09-12 22:42:52 +0000107 POST_POWERON )
108
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +0100109#define POST_FAIL_SAVE 0x80
110
Michael Zaidmane070a562010-03-01 11:47:36 +0200111#define POST_BEFORE 1
112#define POST_AFTER 0
113#define POST_PASSED 1
114#define POST_FAILED 0
115
wdenk7133d4c2002-09-12 22:42:52 +0000116#ifndef __ASSEMBLY__
117
118struct post_test {
119 char *name;
120 char *cmd;
121 char *desc;
122 int flags;
123 int (*test) (int flags);
wdenk4532cb62003-04-27 22:52:51 +0000124 int (*init_f) (void);
125 void (*reloc) (void);
wdenk228f29a2002-12-08 09:53:23 +0000126 unsigned long testid;
wdenk7133d4c2002-09-12 22:42:52 +0000127};
wdenk4532cb62003-04-27 22:52:51 +0000128int post_init_f (void);
wdenk7133d4c2002-09-12 22:42:52 +0000129void post_bootmode_init (void);
130int post_bootmode_get (unsigned int * last_test);
131void post_bootmode_clear (void);
wdenk228f29a2002-12-08 09:53:23 +0000132void post_output_backlog ( void );
wdenk7133d4c2002-09-12 22:42:52 +0000133int post_run (char *name, int flags);
134int post_info (char *name);
135int post_log (char *format, ...);
Peter Tyser521af042009-09-21 11:20:36 -0500136#ifndef CONFIG_RELOC_FIXUP_WORKS
wdenk7133d4c2002-09-12 22:42:52 +0000137void post_reloc (void);
Peter Tyser521af042009-09-21 11:20:36 -0500138#endif
wdenk4532cb62003-04-27 22:52:51 +0000139unsigned long post_time_ms (unsigned long base);
wdenk7133d4c2002-09-12 22:42:52 +0000140
141extern struct post_test post_list[];
142extern unsigned int post_list_size;
wdenk27b207f2003-07-24 23:38:38 +0000143extern int post_hotkeys_pressed(void);
wdenk7133d4c2002-09-12 22:42:52 +0000144
Yuri Tikhonovce82ff02008-12-20 14:54:21 +0300145/*
146 * If GCC is configured to use a version of GAS that supports
147 * the .gnu_attribute directive, it will use that directive to
148 * record certain properties of the output code.
149 * This feature is new to GCC 4.3.0.
150 * .gnu_attribute is new to GAS 2.18.
151 */
152#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 3)
153/* Tag_GNU_Power_ABI_FP/soft-float */
154#define GNU_FPOST_ATTR asm(".gnu_attribute 4, 2");
155#else
156#define GNU_FPOST_ATTR
157#endif /* __GNUC__ */
wdenk7133d4c2002-09-12 22:42:52 +0000158#endif /* __ASSEMBLY__ */
159
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160#define CONFIG_SYS_POST_RTC 0x00000001
161#define CONFIG_SYS_POST_WATCHDOG 0x00000002
162#define CONFIG_SYS_POST_MEMORY 0x00000004
163#define CONFIG_SYS_POST_CPU 0x00000008
164#define CONFIG_SYS_POST_I2C 0x00000010
165#define CONFIG_SYS_POST_CACHE 0x00000020
166#define CONFIG_SYS_POST_UART 0x00000040
167#define CONFIG_SYS_POST_ETHER 0x00000080
168#define CONFIG_SYS_POST_SPI 0x00000100
169#define CONFIG_SYS_POST_USB 0x00000200
170#define CONFIG_SYS_POST_SPR 0x00000400
171#define CONFIG_SYS_POST_SYSMON 0x00000800
172#define CONFIG_SYS_POST_DSP 0x00001000
173#define CONFIG_SYS_POST_OCM 0x00002000
174#define CONFIG_SYS_POST_FPU 0x00004000
175#define CONFIG_SYS_POST_ECC 0x00008000
176#define CONFIG_SYS_POST_BSPEC1 0x00010000
177#define CONFIG_SYS_POST_BSPEC2 0x00020000
178#define CONFIG_SYS_POST_BSPEC3 0x00040000
179#define CONFIG_SYS_POST_BSPEC4 0x00080000
180#define CONFIG_SYS_POST_BSPEC5 0x00100000
181#define CONFIG_SYS_POST_CODEC 0x00200000
Anatolij Gustschin29fd7ce2010-04-24 19:27:11 +0200182#define CONFIG_SYS_POST_COPROC 0x00400000
wdenk7133d4c2002-09-12 22:42:52 +0000183
184#endif /* CONFIG_POST */
185
186#endif /* _POST_H */