Blame view

include/post.h 4.65 KB
7133d4c4f   wdenk   Initial revision
1
2
3
4
  /*
   * (C) Copyright 2002
   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
   *
800eb0964   Michael Zaidman   POST cleanup.
5
6
7
8
   * (C) Copyright 2010
   * Michael Zaidman, Kodak, michael.zaidman@kodak.com
   * post_word_{load|store} cleanup.
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
9
   * SPDX-License-Identifier:	GPL-2.0+
7133d4c4f   wdenk   Initial revision
10
11
12
13
14
15
   */
  #ifndef _POST_H
  #define _POST_H
  
  #ifndef	__ASSEMBLY__
  #include <common.h>
800eb0964   Michael Zaidman   POST cleanup.
16
  #include <asm/io.h>
c5404b64f   Simon Glass   Drop the log buffer
17
  #if defined(CONFIG_POST)
800eb0964   Michael Zaidman   POST cleanup.
18

3e161ced8   Valentin Longchamp   POST: allow redef...
19
  #ifndef CONFIG_POST_EXTERNAL_WORD_FUNCS
800eb0964   Michael Zaidman   POST cleanup.
20
21
22
  #ifdef CONFIG_SYS_POST_WORD_ADDR
  #define _POST_WORD_ADDR	CONFIG_SYS_POST_WORD_ADDR
  #else
064b55cfc   Heiko Schocher   powerpc, 5xxx, 51...
23
  #if defined(CONFIG_MPC8360)
38d67a4e5   Zhao Qiang   qe: move immap_qe...
24
  #include <linux/immap_qe.h>
800eb0964   Michael Zaidman   POST cleanup.
25
26
27
  #define _POST_WORD_ADDR	(CONFIG_SYS_IMMR + CPM_POST_WORD_ADDR)
  
  #elif defined (CONFIG_MPC85xx)
8790ac039   York Sun   Setup POST word f...
28
  #include <asm/immap_85xx.h>
9de0aa744   Kumar Gala   powerpc/8xxx: Fix...
29
30
  #define _POST_WORD_ADDR	(CONFIG_SYS_IMMR + CONFIG_SYS_MPC85xx_PIC_OFFSET + \
  				offsetof(ccsr_pic_t, tfrr))
800eb0964   Michael Zaidman   POST cleanup.
31

65f23519d   Peter Tyser   mpc86xx: Add gene...
32
33
  #elif defined (CONFIG_MPC86xx)
  #include <asm/immap_86xx.h>
9de0aa744   Kumar Gala   powerpc/8xxx: Fix...
34
35
  #define _POST_WORD_ADDR	(CONFIG_SYS_IMMR + CONFIG_SYS_MPC86xx_PIC_OFFSET + \
  				offsetof(ccsr_pic_t, tfrr))
7133d4c4f   wdenk   Initial revision
36
  #endif
800eb0964   Michael Zaidman   POST cleanup.
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  #ifndef _POST_WORD_ADDR
  #error "_POST_WORD_ADDR currently not implemented for this platform!"
  #endif
  #endif /* CONFIG_SYS_POST_WORD_ADDR */
  
  static inline ulong post_word_load (void)
  {
  	return in_le32((volatile void *)(_POST_WORD_ADDR));
  }
  
  static inline void post_word_store (ulong value)
  {
  	out_le32((volatile void *)(_POST_WORD_ADDR), value);
  }
3e161ced8   Valentin Longchamp   POST: allow redef...
51
52
53
54
55
56
57
  
  #else
  
  extern ulong post_word_load(void);
  extern void post_word_store(ulong value);
  
  #endif /* CONFIG_POST_EXTERNAL_WORD_FUNCS */
c5404b64f   Simon Glass   Drop the log buffer
58
  #endif /* defined (CONFIG_POST) */
800eb0964   Michael Zaidman   POST cleanup.
59
  #endif /* __ASSEMBLY__ */
7133d4c4f   wdenk   Initial revision
60
61
62
  #ifdef CONFIG_POST
  
  #define POST_POWERON		0x01	/* test runs on power-on booting */
8564acf93   wdenk   * Patches by Yuli...
63
64
  #define POST_NORMAL		0x02	/* test runs on normal booting */
  #define POST_SLOWTEST		0x04	/* test is slow, enabled by key press */
7133d4c4f   wdenk   Initial revision
65
  #define POST_POWERTEST		0x08	/* test runs after watchdog reset */
27b207fd0   wdenk   * Implement new m...
66
  #define POST_COLDBOOT		0x80	/* first boot after power-on */
7133d4c4f   wdenk   Initial revision
67
68
69
70
  #define POST_ROM		0x0100	/* test runs in ROM */
  #define POST_RAM		0x0200	/* test runs in RAM */
  #define POST_MANUAL		0x0400	/* test runs on diag command */
  #define POST_REBOOT		0x0800	/* test may cause rebooting */
800eb0964   Michael Zaidman   POST cleanup.
71
  #define POST_PREREL		0x1000  /* test runs before relocation */
7133d4c4f   wdenk   Initial revision
72

b428f6a8c   Yuri Tikhonov   The patch introdu...
73
  #define POST_CRITICAL		0x2000	/* Use failbootcmd if test failed */
28a385065   Yuri Tikhonov   POST: add POST_ST...
74
  #define POST_STOP		0x4000	/* Interrupt POST sequence on fail */
b428f6a8c   Yuri Tikhonov   The patch introdu...
75

7133d4c4f   wdenk   Initial revision
76
  #define POST_MEM		(POST_RAM | POST_ROM)
8564acf93   wdenk   * Patches by Yuli...
77
78
79
  #define POST_ALWAYS		(POST_NORMAL	| \
  				 POST_SLOWTEST	| \
  				 POST_MANUAL	| \
7133d4c4f   wdenk   Initial revision
80
  				 POST_POWERON	)
b428f6a8c   Yuri Tikhonov   The patch introdu...
81
  #define POST_FAIL_SAVE		0x80
e070a56c7   Michael Zaidman   POST: add progres...
82
83
84
85
  #define POST_BEFORE		1
  #define POST_AFTER		0
  #define POST_PASSED		1
  #define POST_FAILED		0
7133d4c4f   wdenk   Initial revision
86
87
88
89
90
91
92
93
  #ifndef	__ASSEMBLY__
  
  struct post_test {
  	char *name;
  	char *cmd;
  	char *desc;
  	int flags;
  	int (*test) (int flags);
4532cb696   wdenk   * LWMON extensions:
94
95
  	int (*init_f) (void);
  	void (*reloc) (void);
228f29ac6   wdenk   * Improve log buf...
96
  	unsigned long testid;
7133d4c4f   wdenk   Initial revision
97
  };
4532cb696   wdenk   * LWMON extensions:
98
  int post_init_f (void);
7133d4c4f   wdenk   Initial revision
99
100
101
  void post_bootmode_init (void);
  int post_bootmode_get (unsigned int * last_test);
  void post_bootmode_clear (void);
228f29ac6   wdenk   * Improve log buf...
102
  void post_output_backlog ( void );
7133d4c4f   wdenk   Initial revision
103
104
105
  int post_run (char *name, int flags);
  int post_info (char *name);
  int post_log (char *format, ...);
2e5167cca   Wolfgang Denk   Replace CONFIG_RE...
106
  #ifdef CONFIG_NEEDS_MANUAL_RELOC
7133d4c4f   wdenk   Initial revision
107
  void post_reloc (void);
521af04d8   Peter Tyser   Conditionally per...
108
  #endif
4532cb696   wdenk   * LWMON extensions:
109
  unsigned long post_time_ms (unsigned long base);
7133d4c4f   wdenk   Initial revision
110
111
112
  
  extern struct post_test post_list[];
  extern unsigned int post_list_size;
27b207fd0   wdenk   * Implement new m...
113
  extern int post_hotkeys_pressed(void);
eaf5e65af   Heiko Schocher   post, memory test...
114
  extern int memory_post_test(int flags);
7133d4c4f   wdenk   Initial revision
115

ce82ff053   Yuri Tikhonov   FPU POST: fix war...
116
117
118
119
120
121
122
123
124
125
126
127
128
  /*
   *  If GCC is configured to use a version of GAS that supports
   * the .gnu_attribute directive, it will use that directive to
   * record certain properties of the output code.
   *  This feature is new to GCC 4.3.0.
   *  .gnu_attribute is new to GAS 2.18.
   */
  #if (__GNUC__ >= 4 && __GNUC_MINOR__ >= 3)
  /* Tag_GNU_Power_ABI_FP/soft-float */
  #define GNU_FPOST_ATTR	asm(".gnu_attribute	4, 2");
  #else
  #define GNU_FPOST_ATTR
  #endif /* __GNUC__ */
7133d4c4f   wdenk   Initial revision
129
  #endif /* __ASSEMBLY__ */
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
130
131
132
133
134
135
136
137
  #define CONFIG_SYS_POST_RTC		0x00000001
  #define CONFIG_SYS_POST_WATCHDOG	0x00000002
  #define CONFIG_SYS_POST_MEMORY		0x00000004
  #define CONFIG_SYS_POST_CPU		0x00000008
  #define CONFIG_SYS_POST_I2C		0x00000010
  #define CONFIG_SYS_POST_CACHE		0x00000020
  #define CONFIG_SYS_POST_UART		0x00000040
  #define CONFIG_SYS_POST_ETHER		0x00000080
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
138
139
140
141
142
143
144
145
146
147
148
149
150
  #define CONFIG_SYS_POST_USB		0x00000200
  #define CONFIG_SYS_POST_SPR		0x00000400
  #define CONFIG_SYS_POST_SYSMON		0x00000800
  #define CONFIG_SYS_POST_DSP		0x00001000
  #define CONFIG_SYS_POST_OCM		0x00002000
  #define CONFIG_SYS_POST_FPU		0x00004000
  #define CONFIG_SYS_POST_ECC		0x00008000
  #define CONFIG_SYS_POST_BSPEC1		0x00010000
  #define CONFIG_SYS_POST_BSPEC2		0x00020000
  #define CONFIG_SYS_POST_BSPEC3		0x00040000
  #define CONFIG_SYS_POST_BSPEC4		0x00080000
  #define CONFIG_SYS_POST_BSPEC5		0x00100000
  #define CONFIG_SYS_POST_CODEC		0x00200000
29fd7ceb3   Anatolij Gustschin   mpc5121: pdm360ng...
151
  #define CONFIG_SYS_POST_COPROC		0x00400000
f6f7395eb   Mike Frysinger   post: new nor fla...
152
  #define CONFIG_SYS_POST_FLASH		0x00800000
8d3fcb5e6   Valentin Longchamp   POST: add new mem...
153
  #define CONFIG_SYS_POST_MEM_REGIONS	0x01000000
7133d4c4f   wdenk   Initial revision
154
155
156
157
  
  #endif /* CONFIG_POST */
  
  #endif /* _POST_H */