blob: b9b9c3775baff5709af28c109f0217c48fe13592 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenk7133d4c2002-09-12 22:42:52 +000010 */
11#ifndef _POST_H
12#define _POST_H
13
14#ifndef __ASSEMBLY__
15#include <common.h>
Michael Zaidman800eb092010-09-20 08:51:53 +020016#include <asm/io.h>
17
18#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
19
Valentin Longchamp3e161ce2011-09-02 04:59:04 +000020#ifndef CONFIG_POST_EXTERNAL_WORD_FUNCS
Michael Zaidman800eb092010-09-20 08:51:53 +020021#ifdef CONFIG_SYS_POST_WORD_ADDR
22#define _POST_WORD_ADDR CONFIG_SYS_POST_WORD_ADDR
23#else
24
Heiko Schocher064b55c2017-06-14 05:49:40 +020025#if defined(CONFIG_MPC8360)
Zhao Qiang38d67a4e2014-06-03 16:27:07 +080026#include <linux/immap_qe.h>
Michael Zaidman800eb092010-09-20 08:51:53 +020027#define _POST_WORD_ADDR (CONFIG_SYS_IMMR + CPM_POST_WORD_ADDR)
28
29#elif defined (CONFIG_MPC85xx)
York Sun8790ac02010-09-28 15:20:35 -070030#include <asm/immap_85xx.h>
Kumar Gala9de0aa72010-12-01 06:42:04 -060031#define _POST_WORD_ADDR (CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PIC_OFFSET + \
32 offsetof(ccsr_pic_t, tfrr))
Michael Zaidman800eb092010-09-20 08:51:53 +020033
Peter Tyser65f23512010-10-22 00:20:32 -050034#elif defined (CONFIG_MPC86xx)
35#include <asm/immap_86xx.h>
Kumar Gala9de0aa72010-12-01 06:42:04 -060036#define _POST_WORD_ADDR (CONFIG_SYS_IMMR + CONFIG_SYS_MPC86xx_PIC_OFFSET + \
37 offsetof(ccsr_pic_t, tfrr))
Peter Tyser65f23512010-10-22 00:20:32 -050038
Michael Zaidman800eb092010-09-20 08:51:53 +020039#elif defined (CONFIG_4xx)
40#define _POST_WORD_ADDR \
41 (CONFIG_SYS_OCM_DATA_ADDR + CONFIG_SYS_GBL_DATA_OFFSET - 0x4)
wdenk7133d4c2002-09-12 22:42:52 +000042#endif
43
Michael Zaidman800eb092010-09-20 08:51:53 +020044#ifndef _POST_WORD_ADDR
45#error "_POST_WORD_ADDR currently not implemented for this platform!"
46#endif
47#endif /* CONFIG_SYS_POST_WORD_ADDR */
48
49static inline ulong post_word_load (void)
50{
51 return in_le32((volatile void *)(_POST_WORD_ADDR));
52}
53
54static inline void post_word_store (ulong value)
55{
56 out_le32((volatile void *)(_POST_WORD_ADDR), value);
57}
Valentin Longchamp3e161ce2011-09-02 04:59:04 +000058
59#else
60
61extern ulong post_word_load(void);
62extern void post_word_store(ulong value);
63
64#endif /* CONFIG_POST_EXTERNAL_WORD_FUNCS */
Michael Zaidman800eb092010-09-20 08:51:53 +020065#endif /* defined (CONFIG_POST) || defined(CONFIG_LOGBUFFER) */
66#endif /* __ASSEMBLY__ */
67
wdenk7133d4c2002-09-12 22:42:52 +000068#ifdef CONFIG_POST
69
70#define POST_POWERON 0x01 /* test runs on power-on booting */
wdenk8564acf2003-07-14 22:13:32 +000071#define POST_NORMAL 0x02 /* test runs on normal booting */
72#define POST_SLOWTEST 0x04 /* test is slow, enabled by key press */
wdenk7133d4c2002-09-12 22:42:52 +000073#define POST_POWERTEST 0x08 /* test runs after watchdog reset */
74
wdenk27b207f2003-07-24 23:38:38 +000075#define POST_COLDBOOT 0x80 /* first boot after power-on */
76
wdenk7133d4c2002-09-12 22:42:52 +000077#define POST_ROM 0x0100 /* test runs in ROM */
78#define POST_RAM 0x0200 /* test runs in RAM */
79#define POST_MANUAL 0x0400 /* test runs on diag command */
80#define POST_REBOOT 0x0800 /* test may cause rebooting */
Michael Zaidman800eb092010-09-20 08:51:53 +020081#define POST_PREREL 0x1000 /* test runs before relocation */
wdenk7133d4c2002-09-12 22:42:52 +000082
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +010083#define POST_CRITICAL 0x2000 /* Use failbootcmd if test failed */
Yuri Tikhonov28a38502008-05-08 15:45:26 +020084#define POST_STOP 0x4000 /* Interrupt POST sequence on fail */
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +010085
wdenk7133d4c2002-09-12 22:42:52 +000086#define POST_MEM (POST_RAM | POST_ROM)
wdenk8564acf2003-07-14 22:13:32 +000087#define POST_ALWAYS (POST_NORMAL | \
88 POST_SLOWTEST | \
89 POST_MANUAL | \
wdenk7133d4c2002-09-12 22:42:52 +000090 POST_POWERON )
91
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +010092#define POST_FAIL_SAVE 0x80
93
Michael Zaidmane070a562010-03-01 11:47:36 +020094#define POST_BEFORE 1
95#define POST_AFTER 0
96#define POST_PASSED 1
97#define POST_FAILED 0
98
wdenk7133d4c2002-09-12 22:42:52 +000099#ifndef __ASSEMBLY__
100
101struct post_test {
102 char *name;
103 char *cmd;
104 char *desc;
105 int flags;
106 int (*test) (int flags);
wdenk4532cb62003-04-27 22:52:51 +0000107 int (*init_f) (void);
108 void (*reloc) (void);
wdenk228f29a2002-12-08 09:53:23 +0000109 unsigned long testid;
wdenk7133d4c2002-09-12 22:42:52 +0000110};
wdenk4532cb62003-04-27 22:52:51 +0000111int post_init_f (void);
wdenk7133d4c2002-09-12 22:42:52 +0000112void post_bootmode_init (void);
113int post_bootmode_get (unsigned int * last_test);
114void post_bootmode_clear (void);
wdenk228f29a2002-12-08 09:53:23 +0000115void post_output_backlog ( void );
wdenk7133d4c2002-09-12 22:42:52 +0000116int post_run (char *name, int flags);
117int post_info (char *name);
118int post_log (char *format, ...);
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200119#ifdef CONFIG_NEEDS_MANUAL_RELOC
wdenk7133d4c2002-09-12 22:42:52 +0000120void post_reloc (void);
Peter Tyser521af042009-09-21 11:20:36 -0500121#endif
wdenk4532cb62003-04-27 22:52:51 +0000122unsigned long post_time_ms (unsigned long base);
wdenk7133d4c2002-09-12 22:42:52 +0000123
124extern struct post_test post_list[];
125extern unsigned int post_list_size;
wdenk27b207f2003-07-24 23:38:38 +0000126extern int post_hotkeys_pressed(void);
Heiko Schochereaf5e652011-07-26 20:31:08 +0000127extern int memory_post_test(int flags);
wdenk7133d4c2002-09-12 22:42:52 +0000128
Yuri Tikhonovce82ff02008-12-20 14:54:21 +0300129/*
130 * If GCC is configured to use a version of GAS that supports
131 * the .gnu_attribute directive, it will use that directive to
132 * record certain properties of the output code.
133 * This feature is new to GCC 4.3.0.
134 * .gnu_attribute is new to GAS 2.18.
135 */
136#if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 3)
137/* Tag_GNU_Power_ABI_FP/soft-float */
138#define GNU_FPOST_ATTR asm(".gnu_attribute 4, 2");
139#else
140#define GNU_FPOST_ATTR
141#endif /* __GNUC__ */
wdenk7133d4c2002-09-12 22:42:52 +0000142#endif /* __ASSEMBLY__ */
143
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200144#define CONFIG_SYS_POST_RTC 0x00000001
145#define CONFIG_SYS_POST_WATCHDOG 0x00000002
146#define CONFIG_SYS_POST_MEMORY 0x00000004
147#define CONFIG_SYS_POST_CPU 0x00000008
148#define CONFIG_SYS_POST_I2C 0x00000010
149#define CONFIG_SYS_POST_CACHE 0x00000020
150#define CONFIG_SYS_POST_UART 0x00000040
151#define CONFIG_SYS_POST_ETHER 0x00000080
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200152#define CONFIG_SYS_POST_USB 0x00000200
153#define CONFIG_SYS_POST_SPR 0x00000400
154#define CONFIG_SYS_POST_SYSMON 0x00000800
155#define CONFIG_SYS_POST_DSP 0x00001000
156#define CONFIG_SYS_POST_OCM 0x00002000
157#define CONFIG_SYS_POST_FPU 0x00004000
158#define CONFIG_SYS_POST_ECC 0x00008000
159#define CONFIG_SYS_POST_BSPEC1 0x00010000
160#define CONFIG_SYS_POST_BSPEC2 0x00020000
161#define CONFIG_SYS_POST_BSPEC3 0x00040000
162#define CONFIG_SYS_POST_BSPEC4 0x00080000
163#define CONFIG_SYS_POST_BSPEC5 0x00100000
164#define CONFIG_SYS_POST_CODEC 0x00200000
Anatolij Gustschin29fd7ce2010-04-24 19:27:11 +0200165#define CONFIG_SYS_POST_COPROC 0x00400000
Mike Frysingerf6f73952011-05-10 13:35:40 +0000166#define CONFIG_SYS_POST_FLASH 0x00800000
Valentin Longchamp8d3fcb52011-09-12 04:18:40 +0000167#define CONFIG_SYS_POST_MEM_REGIONS 0x01000000
wdenk7133d4c2002-09-12 22:42:52 +0000168
wdenk7133d4c2002-09-12 22:42:52 +0000169#endif /* CONFIG_POST */
170
171#endif /* _POST_H */