]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/init.h
imx: imxrt1050-evk: Add support for SPI flash booting
[thirdparty/u-boot.git] / include / init.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
dafa84d2
PD
2/*
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
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
13#ifndef __ASSEMBLY__ /* put C only stuff in this section */
14
401d1c4f
SG
15#include <linux/types.h>
16
90794864
SG
17/*
18 * In case of the EFI app the UEFI firmware provides the low-level
19 * initialisation.
20 */
21#ifdef CONFIG_EFI
35a3f871
SG
22#define ll_boot_init() false
23#else
401d1c4f
SG
24#include <asm/global_data.h>
25
ba974a01 26#define ll_boot_init() (!(gd->flags & GD_FLG_SKIP_LL_INIT))
35a3f871
SG
27#endif
28
dafa84d2
PD
29/*
30 * Function Prototypes
31 */
32
33/* common/board_f.c */
d6f87712 34void board_init_f(ulong dummy);
dafa84d2
PD
35
36/**
37 * arch_cpu_init() - basic cpu-dependent setup for an architecture
38 *
39 * This is called after early malloc is available. It should handle any
40 * CPU- or SoC- specific init needed to continue the init sequence. See
41 * board_f.c for where it is called. If this is not provided, a default
42 * version (which does nothing) will be used.
43 *
dc145a7b 44 * Return: 0 on success, otherwise error
dafa84d2
PD
45 */
46int arch_cpu_init(void);
47
48/**
49 * mach_cpu_init() - SoC/machine dependent CPU setup
50 *
51 * This is called after arch_cpu_init(). It should handle any
52 * SoC or machine specific init needed to continue the init sequence. See
53 * board_f.c for where it is called. If this is not provided, a default
54 * version (which does nothing) will be used.
55 *
dc145a7b 56 * Return: 0 on success, otherwise error
dafa84d2
PD
57 */
58int mach_cpu_init(void);
59
fe08d39d
SG
60/**
61 * arch_fsp_init() - perform post-relocation firmware support package init
62 *
63 * Where U-Boot relies on binary blobs to handle part of the system init, this
64 * function can be used to set up the blobs. This is used on some Intel
65 * platforms.
66 *
67 * Return: 0
68 */
69int arch_fsp_init_r(void);
70
d6f87712
PD
71int dram_init(void);
72
73/**
74 * dram_init_banksize() - Set up DRAM bank sizes
75 *
76 * This can be implemented by boards to set up the DRAM bank information in
77 * gd->bd->bi_dram(). It is called just before relocation, after dram_init()
78 * is called.
79 *
80 * If this is not provided, a default implementation will try to set up a
81 * single bank. It will do this if CONFIG_NR_DRAM_BANKS and
aa6e94de
TR
82 * CFG_SYS_SDRAM_BASE are set. The bank will have a start address of
83 * CFG_SYS_SDRAM_BASE and the size will be determined by a call to
d6f87712
PD
84 * get_effective_memsize().
85 *
dc145a7b 86 * Return: 0 if OK, -ve on error
d6f87712
PD
87 */
88int dram_init_banksize(void);
89
9b4a205f
SG
90long get_ram_size(long *base, long size);
91phys_size_t get_effective_memsize(void);
92
49acd56e
SG
93int testdram(void);
94
d63fc994
OP
95/**
96 * arch_setup_dest_addr() - Fix up initial reloc address
97 *
98 * This is called in generic board init sequence in common/board_f.c at the end
99 * of the setup_dest_addr() initcall. Each architecture could provide this
100 * function to make adjustments to the initial reloc address.
101 *
102 * If an implementation is not provided, it will just be a nop stub.
103 *
104 * Return: 0 if OK
105 */
106int arch_setup_dest_addr(void);
107
d6f87712 108/**
dc145a7b 109 * arch_reserve_stacks() - Reserve all necessary stacks
d6f87712
PD
110 *
111 * This is used in generic board init sequence in common/board_f.c. Each
112 * architecture could provide this function to tailor the required stacks.
113 *
114 * On entry gd->start_addr_sp is pointing to the suggested top of the stack.
115 * The callee ensures gd->start_add_sp is 16-byte aligned, so architectures
116 * require only this can leave it untouched.
117 *
118 * On exit gd->start_addr_sp and gd->irq_sp should be set to the respective
119 * positions of the stack. The stack pointer(s) will be set to this later.
120 * gd->irq_sp is only required, if the architecture needs it.
121 *
dc145a7b 122 * Return: 0 if no error
d6f87712
PD
123 */
124int arch_reserve_stacks(void);
125
79926e4f
OP
126/**
127 * arch_reserve_mmu() - Reserve memory for MMU TLB table
128 *
129 * Architecture-specific routine for reserving memory for the MMU TLB table.
130 * This is used in generic board init sequence in common/board_f.c.
131 *
132 * If an implementation is not provided, it will just be a nop stub.
133 *
134 * Return: 0 if OK
135 */
136int arch_reserve_mmu(void);
137
81e7cb1e
OP
138/**
139 * arch_setup_bdinfo() - Architecture dependent boardinfo setup
140 *
141 * Architecture-specific routine for populating various boardinfo fields of
142 * gd->bd. It is called during the generic board init sequence.
143 *
144 * If an implementation is not provided, it will just be a nop stub.
145 *
146 * Return: 0 if OK
147 */
148int arch_setup_bdinfo(void);
149
ba743103
OP
150/**
151 * setup_bdinfo() - Generic boardinfo setup
152 *
153 * Routine for populating various generic boardinfo fields of
154 * gd->bd. It is called during the generic board init sequence.
155 *
156 * Return: 0 if OK
157 */
158int setup_bdinfo(void);
159
12a3e1ad
DS
160#if defined(CONFIG_SAVE_PREV_BL_INITRAMFS_START_ADDR) || \
161defined(CONFIG_SAVE_PREV_BL_FDT_ADDR)
162/**
163 * save_prev_bl_data - Save prev bl data in env vars.
164 *
165 * When u-boot is chain-loaded, save previous bootloader data,
166 * like initramfs address to environment variables.
167 *
168 * Return: 0 if ok; -ENODATA on error
169 */
170int save_prev_bl_data(void);
171#endif
172
fb504b2c
OP
173/**
174 * cpu_secondary_init_r() - CPU-specific secondary initialization
175 *
176 * After non-volatile devices, environment and cpu code are setup, have
177 * another round to deal with any initialization that might require
178 * full access to the environment or loading of some image (firmware)
179 * from a non-volatile device.
180 *
181 * It is called during the generic post-relocation init sequence.
182 *
183 * Return: 0 if OK
184 */
185int cpu_secondary_init_r(void);
186
c343e8c0
OP
187/**
188 * pci_ep_init() - Initialize pci endpoint devices
189 *
190 * It is called during the generic post-relocation init sequence.
191 *
192 * Return: 0 if OK
193 */
194int pci_ep_init(void);
195
b9f6d0f7
OP
196/**
197 * pci_init() - Enumerate pci devices
198 *
199 * It is called during the generic post-relocation init sequence to enumerate
200 * pci buses. This is needed, for instance, in the case of DM PCI-based
201 * Ethernet devices, which will not be detected without having the enumeration
202 * performed earlier.
203 *
204 * Return: 0 if OK
205 */
206int pci_init(void);
207
b8aa55cb
PD
208/**
209 * init_cache_f_r() - Turn on the cache in preparation for relocation
210 *
dc145a7b 211 * Return: 0 if OK, -ve on error
b8aa55cb
PD
212 */
213int init_cache_f_r(void);
214
5d6c61ac
MS
215#if !CONFIG_IS_ENABLED(CPU)
216/**
217 * print_cpuinfo() - Display information about the CPU
218 *
219 * Return: 0 if OK, -ve on error
220 */
d6f87712 221int print_cpuinfo(void);
5d6c61ac 222#endif
d6f87712 223int timer_init(void);
dc145a7b 224
d6f87712
PD
225#if defined(CONFIG_DTB_RESELECT)
226int embedded_dtb_select(void);
227#endif
228
11f86cba
PD
229/* common/init/board_init.c */
230extern ulong monitor_flash_len;
231
232/**
233 * ulong board_init_f_alloc_reserve - allocate reserved area
dc145a7b 234 * @top: top of the reserve area, growing down.
11f86cba
PD
235 *
236 * This function is called by each architecture very early in the start-up
237 * code to allow the C runtime to reserve space on the stack for writable
238 * 'globals' such as GD and the malloc arena.
239 *
dc145a7b 240 * Return: bottom of reserved area
11f86cba
PD
241 */
242ulong board_init_f_alloc_reserve(ulong top);
243
244/**
245 * board_init_f_init_reserve - initialize the reserved area(s)
dc145a7b 246 * @base: top from which reservation was done
11f86cba
PD
247 *
248 * This function is called once the C runtime has allocated the reserved
249 * area on the stack. It must initialize the GD at the base of that area.
11f86cba
PD
250 */
251void board_init_f_init_reserve(ulong base);
252
67c4e9f8
SG
253struct global_data;
254
11f86cba
PD
255/**
256 * arch_setup_gd() - Set up the global_data pointer
dc145a7b 257 * @gd_ptr: Pointer to global data
11f86cba
PD
258 *
259 * This pointer is special in some architectures and cannot easily be assigned
260 * to. For example on x86 it is implemented by adding a specific record to its
261 * Global Descriptor Table! So we we provide a function to carry out this task.
262 * For most architectures this can simply be:
263 *
264 * gd = gd_ptr;
11f86cba 265 */
67c4e9f8 266void arch_setup_gd(struct global_data *gd_ptr);
11f86cba 267
dafa84d2 268/* common/board_r.c */
67c4e9f8
SG
269void board_init_r(struct global_data *id, ulong dest_addr)
270 __attribute__ ((noreturn));
e2c219cd
PD
271
272int cpu_init_r(void);
e2c219cd 273int mac_read_from_eeprom(void);
cd3dbb56
AR
274
275/**
276 * serial_read_from_eeprom - read the serial number from EEPROM
277 *
278 * This function reads the serial number from the EEPROM and sets the
279 * appropriate environment variable.
280 *
281 * The environment variable is only set if it has not been set
282 * already. This ensures that any user-saved variables are never
283 * overwritten.
284 *
285 * This function must be called after relocation.
286 */
287int serial_read_from_eeprom(int devnum);
e2c219cd
PD
288int set_cpu_clk_info(void);
289int update_flash_size(int flash_size);
290int arch_early_init_r(void);
e2c219cd 291int misc_init_r(void);
e2c219cd 292
fc22ee21
PD
293/* common/board_info.c */
294int checkboard(void);
ef211ab2
SG
295
296/**
297 * show_board_info() - Show board information
298 *
299 * Check sysinfo for board information. Failing that if the root node of the DTB
300 * has a "model" property, show it.
301 *
302 * Then call checkboard().
303 *
304 * Return 0 if OK, -ve on error
305 */
fc22ee21 306int show_board_info(void);
dafa84d2 307
67c4e9f8 308/**
289bd72e 309 * board_get_usable_ram_top() - get uppermost address for U-Boot relocation
67c4e9f8 310 *
289bd72e
HS
311 * Some systems have reserved memory areas in high memory. By implementing this
312 * function boards can indicate the highest address value to be used when
313 * relocating U-Boot. The returned address is exclusive (i.e. 1 byte above the
314 * last usable address).
67c4e9f8 315 *
289bd72e
HS
316 * Due to overflow on systems with 32bit phys_addr_t a value 0 is used instead
317 * of 4GiB.
318 *
319 * @total_size: monitor length in bytes (size of U-Boot code)
320 * Return: uppermost address for U-Boot relocation
67c4e9f8 321 */
d768dd88 322phys_addr_t board_get_usable_ram_top(phys_size_t total_size);
67c4e9f8 323
5255932f
SG
324int board_early_init_f(void);
325
326/* manipulate the U-Boot fdt before its relocation */
327int board_fix_fdt(void *rw_fdt_blob);
328int board_late_init(void);
329int board_postclk_init(void); /* after clocks/timebase, before env/serial */
330int board_early_init_r(void);
331
130845ba
OP
332/**
333 * arch_initr_trap() - Init traps
334 *
335 * Arch specific routine for initializing traps. It is called during the
336 * generic board init sequence, after relocation.
337 *
338 * Return: 0 if OK
339 */
340int arch_initr_trap(void);
d67bdaa7 341
2fd81be1
OP
342/**
343 * init_addr_map()
344 *
345 * Initialize non-identity virtual-physical memory mappings for 32bit CPUs.
346 * It is called during the generic board init sequence, after relocation.
347 *
348 * Return: 0 if OK
349 */
350int init_addr_map(void);
351
6b8d3cea
SG
352/**
353 * main_loop() - Enter the main loop of U-Boot
354 *
355 * This normally runs the command line.
356 */
357void main_loop(void);
358
94133872
SG
359#if defined(CONFIG_ARM)
360void relocate_code(ulong addr_moni);
361#else
362void relocate_code(ulong start_addr_sp, struct global_data *new_gd,
363 ulong relocaddr)
364 __attribute__ ((noreturn));
365#endif
366
655f17ff 367/* Print a numeric value (for use in arch_print_bdinfo()) */
98592c75
BM
368void bdinfo_print_num_l(const char *name, ulong value);
369void bdinfo_print_num_ll(const char *name, unsigned long long value);
655f17ff 370
40b8afe6
SG
371/* Print a string value (for use in arch_print_bdinfo()) */
372void bdinfo_print_str(const char *name, const char *str);
373
655f17ff
SG
374/* Print a clock speed in MHz */
375void bdinfo_print_mhz(const char *name, unsigned long hz);
376
ae90d16a
OP
377/**
378 * bdinfo_print_size - print size variables in bdinfo format
379 * @name: string to print before the size
380 * @size: size to print
381 *
382 * Helper function for displaying size variables as properly formatted bdinfo
383 * entries. The size is printed as "xxx Bytes", "xxx KiB", "xxx MiB",
384 * "xxx GiB", etc. as needed;
385 *
386 * For use in arch_print_bdinfo().
387 */
388void bdinfo_print_size(const char *name, uint64_t size);
389
59b0d7d8
SG
390/* Show arch-specific information for the 'bd' command */
391void arch_print_bdinfo(void);
392
4b32531b
AS
393int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
394
dafa84d2
PD
395#endif /* __ASSEMBLY__ */
396/* Put only stuff here that the assembler can digest */
397
398#endif /* __INIT_H_ */