Blame view

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

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

65f23519d   Peter Tyser   mpc86xx: Add gene...
31
32
  #elif defined (CONFIG_MPC86xx)
  #include <asm/immap_86xx.h>
9de0aa744   Kumar Gala   powerpc/8xxx: Fix...
33
34
  #define _POST_WORD_ADDR	(CONFIG_SYS_IMMR + CONFIG_SYS_MPC86xx_PIC_OFFSET + \
  				offsetof(ccsr_pic_t, tfrr))
7133d4c4f   wdenk   Initial revision
35
  #endif
800eb0964   Michael Zaidman   POST cleanup.
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  #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...
50
51
52
53
54
55
56
  
  #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
57
  #endif /* defined (CONFIG_POST) */
800eb0964   Michael Zaidman   POST cleanup.
58
  #endif /* __ASSEMBLY__ */
7133d4c4f   wdenk   Initial revision
59
60
61
  #ifdef CONFIG_POST
  
  #define POST_POWERON		0x01	/* test runs on power-on booting */
8564acf93   wdenk   * Patches by Yuli...
62
63
  #define POST_NORMAL		0x02	/* test runs on normal booting */
  #define POST_SLOWTEST		0x04	/* test is slow, enabled by key press */
7133d4c4f   wdenk   Initial revision
64
  #define POST_POWERTEST		0x08	/* test runs after watchdog reset */
27b207fd0   wdenk   * Implement new m...
65
  #define POST_COLDBOOT		0x80	/* first boot after power-on */
7133d4c4f   wdenk   Initial revision
66
67
68
69
  #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.
70
  #define POST_PREREL		0x1000  /* test runs before relocation */
7133d4c4f   wdenk   Initial revision
71

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

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

ce82ff053   Yuri Tikhonov   FPU POST: fix war...
115
116
117
118
119
120
121
122
123
124
125
126
127
  /*
   *  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
128
  #endif /* __ASSEMBLY__ */
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
129
130
131
132
133
134
135
136
  #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...
137
138
139
140
141
142
143
144
145
146
147
148
149
  #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...
150
  #define CONFIG_SYS_POST_COPROC		0x00400000
f6f7395eb   Mike Frysinger   post: new nor fla...
151
  #define CONFIG_SYS_POST_FLASH		0x00800000
8d3fcb5e6   Valentin Longchamp   POST: add new mem...
152
  #define CONFIG_SYS_POST_MEM_REGIONS	0x01000000
7133d4c4f   wdenk   Initial revision
153
154
155
156
  
  #endif /* CONFIG_POST */
  
  #endif /* _POST_H */