]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
dafa84d2 PD |
2 | /* |
3 | * (C) Copyright 2000-2009 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
5 | * | |
6 | * Copy the startup prototype, previously defined in common.h | |
7 | * Copyright (C) 2018, STMicroelectronics - All Rights Reserved | |
dafa84d2 PD |
8 | */ |
9 | ||
10 | #ifndef __INIT_H_ | |
11 | #define __INIT_H_ 1 | |
12 | ||
67c4e9f8 SG |
13 | #include <linux/types.h> |
14 | ||
94133872 SG |
15 | struct global_data; |
16 | ||
dafa84d2 PD |
17 | #ifndef __ASSEMBLY__ /* put C only stuff in this section */ |
18 | ||
35a3f871 SG |
19 | /* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */ |
20 | #ifdef CONFIG_EFI_STUB | |
21 | #define ll_boot_init() false | |
22 | #else | |
ba974a01 | 23 | #define ll_boot_init() (!(gd->flags & GD_FLG_SKIP_LL_INIT)) |
35a3f871 SG |
24 | #endif |
25 | ||
dafa84d2 PD |
26 | /* |
27 | * Function Prototypes | |
28 | */ | |
29 | ||
30 | /* common/board_f.c */ | |
d6f87712 | 31 | void board_init_f(ulong dummy); |
dafa84d2 PD |
32 | |
33 | /** | |
34 | * arch_cpu_init() - basic cpu-dependent setup for an architecture | |
35 | * | |
36 | * This is called after early malloc is available. It should handle any | |
37 | * CPU- or SoC- specific init needed to continue the init sequence. See | |
38 | * board_f.c for where it is called. If this is not provided, a default | |
39 | * version (which does nothing) will be used. | |
40 | * | |
dc145a7b | 41 | * Return: 0 on success, otherwise error |
dafa84d2 PD |
42 | */ |
43 | int arch_cpu_init(void); | |
44 | ||
d6f87712 PD |
45 | /** |
46 | * arch_cpu_init_dm() - init CPU after driver model is available | |
47 | * | |
48 | * This is called immediately after driver model is available before | |
49 | * relocation. This is similar to arch_cpu_init() but is able to reference | |
50 | * devices | |
51 | * | |
dc145a7b | 52 | * Return: 0 if OK, -ve on error |
d6f87712 PD |
53 | */ |
54 | int arch_cpu_init_dm(void); | |
55 | ||
dafa84d2 PD |
56 | /** |
57 | * mach_cpu_init() - SoC/machine dependent CPU setup | |
58 | * | |
59 | * This is called after arch_cpu_init(). It should handle any | |
60 | * SoC or machine specific init needed to continue the init sequence. See | |
61 | * board_f.c for where it is called. If this is not provided, a default | |
62 | * version (which does nothing) will be used. | |
63 | * | |
dc145a7b | 64 | * Return: 0 on success, otherwise error |
dafa84d2 PD |
65 | */ |
66 | int mach_cpu_init(void); | |
67 | ||
d6f87712 PD |
68 | /** |
69 | * arch_fsp_init() - perform firmware support package init | |
70 | * | |
71 | * Where U-Boot relies on binary blobs to handle part of the system init, this | |
72 | * function can be used to set up the blobs. This is used on some Intel | |
73 | * platforms. | |
dc145a7b MS |
74 | * |
75 | * Return: 0 | |
d6f87712 PD |
76 | */ |
77 | int arch_fsp_init(void); | |
78 | ||
fe08d39d SG |
79 | /** |
80 | * arch_fsp_init() - perform post-relocation firmware support package init | |
81 | * | |
82 | * Where U-Boot relies on binary blobs to handle part of the system init, this | |
83 | * function can be used to set up the blobs. This is used on some Intel | |
84 | * platforms. | |
85 | * | |
86 | * Return: 0 | |
87 | */ | |
88 | int arch_fsp_init_r(void); | |
89 | ||
d6f87712 PD |
90 | int dram_init(void); |
91 | ||
92 | /** | |
93 | * dram_init_banksize() - Set up DRAM bank sizes | |
94 | * | |
95 | * This can be implemented by boards to set up the DRAM bank information in | |
96 | * gd->bd->bi_dram(). It is called just before relocation, after dram_init() | |
97 | * is called. | |
98 | * | |
99 | * If this is not provided, a default implementation will try to set up a | |
100 | * single bank. It will do this if CONFIG_NR_DRAM_BANKS and | |
101 | * CONFIG_SYS_SDRAM_BASE are set. The bank will have a start address of | |
102 | * CONFIG_SYS_SDRAM_BASE and the size will be determined by a call to | |
103 | * get_effective_memsize(). | |
104 | * | |
dc145a7b | 105 | * Return: 0 if OK, -ve on error |
d6f87712 PD |
106 | */ |
107 | int dram_init_banksize(void); | |
108 | ||
9b4a205f SG |
109 | long get_ram_size(long *base, long size); |
110 | phys_size_t get_effective_memsize(void); | |
111 | ||
49acd56e SG |
112 | int testdram(void); |
113 | ||
d6f87712 | 114 | /** |
dc145a7b | 115 | * arch_reserve_stacks() - Reserve all necessary stacks |
d6f87712 PD |
116 | * |
117 | * This is used in generic board init sequence in common/board_f.c. Each | |
118 | * architecture could provide this function to tailor the required stacks. | |
119 | * | |
120 | * On entry gd->start_addr_sp is pointing to the suggested top of the stack. | |
121 | * The callee ensures gd->start_add_sp is 16-byte aligned, so architectures | |
122 | * require only this can leave it untouched. | |
123 | * | |
124 | * On exit gd->start_addr_sp and gd->irq_sp should be set to the respective | |
125 | * positions of the stack. The stack pointer(s) will be set to this later. | |
126 | * gd->irq_sp is only required, if the architecture needs it. | |
127 | * | |
dc145a7b | 128 | * Return: 0 if no error |
d6f87712 PD |
129 | */ |
130 | int arch_reserve_stacks(void); | |
131 | ||
79926e4f OP |
132 | /** |
133 | * arch_reserve_mmu() - Reserve memory for MMU TLB table | |
134 | * | |
135 | * Architecture-specific routine for reserving memory for the MMU TLB table. | |
136 | * This is used in generic board init sequence in common/board_f.c. | |
137 | * | |
138 | * If an implementation is not provided, it will just be a nop stub. | |
139 | * | |
140 | * Return: 0 if OK | |
141 | */ | |
142 | int arch_reserve_mmu(void); | |
143 | ||
b8aa55cb PD |
144 | /** |
145 | * init_cache_f_r() - Turn on the cache in preparation for relocation | |
146 | * | |
dc145a7b | 147 | * Return: 0 if OK, -ve on error |
b8aa55cb PD |
148 | */ |
149 | int init_cache_f_r(void); | |
150 | ||
5d6c61ac MS |
151 | #if !CONFIG_IS_ENABLED(CPU) |
152 | /** | |
153 | * print_cpuinfo() - Display information about the CPU | |
154 | * | |
155 | * Return: 0 if OK, -ve on error | |
156 | */ | |
d6f87712 | 157 | int print_cpuinfo(void); |
5d6c61ac | 158 | #endif |
d6f87712 | 159 | int timer_init(void); |
d6f87712 | 160 | int misc_init_f(void); |
dc145a7b | 161 | |
d6f87712 PD |
162 | #if defined(CONFIG_DTB_RESELECT) |
163 | int embedded_dtb_select(void); | |
164 | #endif | |
165 | ||
11f86cba PD |
166 | /* common/init/board_init.c */ |
167 | extern ulong monitor_flash_len; | |
168 | ||
169 | /** | |
170 | * ulong board_init_f_alloc_reserve - allocate reserved area | |
dc145a7b | 171 | * @top: top of the reserve area, growing down. |
11f86cba PD |
172 | * |
173 | * This function is called by each architecture very early in the start-up | |
174 | * code to allow the C runtime to reserve space on the stack for writable | |
175 | * 'globals' such as GD and the malloc arena. | |
176 | * | |
dc145a7b | 177 | * Return: bottom of reserved area |
11f86cba PD |
178 | */ |
179 | ulong board_init_f_alloc_reserve(ulong top); | |
180 | ||
181 | /** | |
182 | * board_init_f_init_reserve - initialize the reserved area(s) | |
dc145a7b | 183 | * @base: top from which reservation was done |
11f86cba PD |
184 | * |
185 | * This function is called once the C runtime has allocated the reserved | |
186 | * area on the stack. It must initialize the GD at the base of that area. | |
11f86cba PD |
187 | */ |
188 | void board_init_f_init_reserve(ulong base); | |
189 | ||
67c4e9f8 SG |
190 | struct global_data; |
191 | ||
11f86cba PD |
192 | /** |
193 | * arch_setup_gd() - Set up the global_data pointer | |
dc145a7b | 194 | * @gd_ptr: Pointer to global data |
11f86cba PD |
195 | * |
196 | * This pointer is special in some architectures and cannot easily be assigned | |
197 | * to. For example on x86 it is implemented by adding a specific record to its | |
198 | * Global Descriptor Table! So we we provide a function to carry out this task. | |
199 | * For most architectures this can simply be: | |
200 | * | |
201 | * gd = gd_ptr; | |
11f86cba | 202 | */ |
67c4e9f8 | 203 | void arch_setup_gd(struct global_data *gd_ptr); |
11f86cba | 204 | |
dafa84d2 | 205 | /* common/board_r.c */ |
67c4e9f8 SG |
206 | void board_init_r(struct global_data *id, ulong dest_addr) |
207 | __attribute__ ((noreturn)); | |
e2c219cd PD |
208 | |
209 | int cpu_init_r(void); | |
210 | int last_stage_init(void); | |
211 | int mac_read_from_eeprom(void); | |
212 | int set_cpu_clk_info(void); | |
213 | int update_flash_size(int flash_size); | |
214 | int arch_early_init_r(void); | |
215 | void pci_init(void); | |
fd00c53f | 216 | void pci_ep_init(void); |
e2c219cd PD |
217 | int misc_init_r(void); |
218 | #if defined(CONFIG_VID) | |
219 | int init_func_vid(void); | |
220 | #endif | |
221 | ||
fc22ee21 PD |
222 | /* common/board_info.c */ |
223 | int checkboard(void); | |
224 | int show_board_info(void); | |
dafa84d2 | 225 | |
67c4e9f8 SG |
226 | /** |
227 | * Get the uppermost pointer that is valid to access | |
228 | * | |
229 | * Some systems may not map all of their address space. This function allows | |
230 | * boards to indicate what their highest support pointer value is for DRAM | |
231 | * access. | |
232 | * | |
233 | * @param total_size Size of U-Boot (unused?) | |
234 | */ | |
235 | ulong board_get_usable_ram_top(ulong total_size); | |
236 | ||
5255932f SG |
237 | int board_early_init_f(void); |
238 | ||
239 | /* manipulate the U-Boot fdt before its relocation */ | |
240 | int board_fix_fdt(void *rw_fdt_blob); | |
241 | int board_late_init(void); | |
242 | int board_postclk_init(void); /* after clocks/timebase, before env/serial */ | |
243 | int board_early_init_r(void); | |
244 | ||
2cf431c2 SG |
245 | /* TODO([email protected]): Drop this when DM_PCI migration is completed */ |
246 | void pci_init_board(void); | |
247 | ||
d67bdaa7 SG |
248 | void trap_init(unsigned long reloc_addr); |
249 | ||
6b8d3cea SG |
250 | /** |
251 | * main_loop() - Enter the main loop of U-Boot | |
252 | * | |
253 | * This normally runs the command line. | |
254 | */ | |
255 | void main_loop(void); | |
256 | ||
94133872 SG |
257 | #if defined(CONFIG_ARM) |
258 | void relocate_code(ulong addr_moni); | |
259 | #else | |
260 | void relocate_code(ulong start_addr_sp, struct global_data *new_gd, | |
261 | ulong relocaddr) | |
262 | __attribute__ ((noreturn)); | |
263 | #endif | |
264 | ||
655f17ff SG |
265 | /* Print a numeric value (for use in arch_print_bdinfo()) */ |
266 | void bdinfo_print_num(const char *name, ulong value); | |
267 | ||
268 | /* Print a clock speed in MHz */ | |
269 | void bdinfo_print_mhz(const char *name, unsigned long hz); | |
270 | ||
59b0d7d8 SG |
271 | /* Show arch-specific information for the 'bd' command */ |
272 | void arch_print_bdinfo(void); | |
273 | ||
dafa84d2 PD |
274 | #endif /* __ASSEMBLY__ */ |
275 | /* Put only stuff here that the assembler can digest */ | |
276 | ||
277 | #endif /* __INIT_H_ */ |