blob: 970a39a6a08f949616d81ec34a07ba5caee75e71 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Patrick Delaunaydafa84d2018-03-09 18:28:12 +01002/*
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
Patrick Delaunaydafa84d2018-03-09 18:28:12 +01008 */
9
10#ifndef __INIT_H_
11#define __INIT_H_ 1
12
Simon Glass67c4e9f2019-11-14 12:57:45 -070013#include <linux/types.h>
14
Patrick Delaunaydafa84d2018-03-09 18:28:12 +010015#ifndef __ASSEMBLY__ /* put C only stuff in this section */
16
17/*
18 * Function Prototypes
19 */
20
21/* common/board_f.c */
Patrick Delaunayd6f87712018-03-13 13:57:00 +010022void board_init_f(ulong dummy);
Patrick Delaunaydafa84d2018-03-09 18:28:12 +010023
24/**
25 * arch_cpu_init() - basic cpu-dependent setup for an architecture
26 *
27 * This is called after early malloc is available. It should handle any
28 * CPU- or SoC- specific init needed to continue the init sequence. See
29 * board_f.c for where it is called. If this is not provided, a default
30 * version (which does nothing) will be used.
31 *
Mario Sixdc145a72018-08-06 10:23:40 +020032 * Return: 0 on success, otherwise error
Patrick Delaunaydafa84d2018-03-09 18:28:12 +010033 */
34int arch_cpu_init(void);
35
36/**
Patrick Delaunayd6f87712018-03-13 13:57:00 +010037 * arch_cpu_init_dm() - init CPU after driver model is available
38 *
39 * This is called immediately after driver model is available before
40 * relocation. This is similar to arch_cpu_init() but is able to reference
41 * devices
42 *
Mario Sixdc145a72018-08-06 10:23:40 +020043 * Return: 0 if OK, -ve on error
Patrick Delaunayd6f87712018-03-13 13:57:00 +010044 */
45int arch_cpu_init_dm(void);
46
47/**
Patrick Delaunaydafa84d2018-03-09 18:28:12 +010048 * mach_cpu_init() - SoC/machine dependent CPU setup
49 *
50 * This is called after arch_cpu_init(). It should handle any
51 * SoC or machine specific init needed to continue the init sequence. See
52 * board_f.c for where it is called. If this is not provided, a default
53 * version (which does nothing) will be used.
54 *
Mario Sixdc145a72018-08-06 10:23:40 +020055 * Return: 0 on success, otherwise error
Patrick Delaunaydafa84d2018-03-09 18:28:12 +010056 */
57int mach_cpu_init(void);
58
Patrick Delaunayd6f87712018-03-13 13:57:00 +010059/**
60 * arch_fsp_init() - perform firmware support package init
61 *
62 * Where U-Boot relies on binary blobs to handle part of the system init, this
63 * function can be used to set up the blobs. This is used on some Intel
64 * platforms.
Mario Sixdc145a72018-08-06 10:23:40 +020065 *
66 * Return: 0
Patrick Delaunayd6f87712018-03-13 13:57:00 +010067 */
68int arch_fsp_init(void);
69
Simon Glassfe08d392019-12-06 21:42:20 -070070/**
71 * arch_fsp_init() - perform post-relocation firmware support package init
72 *
73 * Where U-Boot relies on binary blobs to handle part of the system init, this
74 * function can be used to set up the blobs. This is used on some Intel
75 * platforms.
76 *
77 * Return: 0
78 */
79int arch_fsp_init_r(void);
80
Patrick Delaunayd6f87712018-03-13 13:57:00 +010081int dram_init(void);
82
83/**
84 * dram_init_banksize() - Set up DRAM bank sizes
85 *
86 * This can be implemented by boards to set up the DRAM bank information in
87 * gd->bd->bi_dram(). It is called just before relocation, after dram_init()
88 * is called.
89 *
90 * If this is not provided, a default implementation will try to set up a
91 * single bank. It will do this if CONFIG_NR_DRAM_BANKS and
92 * CONFIG_SYS_SDRAM_BASE are set. The bank will have a start address of
93 * CONFIG_SYS_SDRAM_BASE and the size will be determined by a call to
94 * get_effective_memsize().
95 *
Mario Sixdc145a72018-08-06 10:23:40 +020096 * Return: 0 if OK, -ve on error
Patrick Delaunayd6f87712018-03-13 13:57:00 +010097 */
98int dram_init_banksize(void);
99
100/**
Mario Sixdc145a72018-08-06 10:23:40 +0200101 * arch_reserve_stacks() - Reserve all necessary stacks
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100102 *
103 * This is used in generic board init sequence in common/board_f.c. Each
104 * architecture could provide this function to tailor the required stacks.
105 *
106 * On entry gd->start_addr_sp is pointing to the suggested top of the stack.
107 * The callee ensures gd->start_add_sp is 16-byte aligned, so architectures
108 * require only this can leave it untouched.
109 *
110 * On exit gd->start_addr_sp and gd->irq_sp should be set to the respective
111 * positions of the stack. The stack pointer(s) will be set to this later.
112 * gd->irq_sp is only required, if the architecture needs it.
113 *
Mario Sixdc145a72018-08-06 10:23:40 +0200114 * Return: 0 if no error
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100115 */
116int arch_reserve_stacks(void);
117
Patrick Delaunayb8aa55c2018-03-13 13:57:04 +0100118/**
119 * init_cache_f_r() - Turn on the cache in preparation for relocation
120 *
Mario Sixdc145a72018-08-06 10:23:40 +0200121 * Return: 0 if OK, -ve on error
Patrick Delaunayb8aa55c2018-03-13 13:57:04 +0100122 */
123int init_cache_f_r(void);
124
Mario Six5d6c61a2018-08-06 10:23:41 +0200125#if !CONFIG_IS_ENABLED(CPU)
126/**
127 * print_cpuinfo() - Display information about the CPU
128 *
129 * Return: 0 if OK, -ve on error
130 */
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100131int print_cpuinfo(void);
Mario Six5d6c61a2018-08-06 10:23:41 +0200132#endif
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100133int timer_init(void);
134int reserve_mmu(void);
135int misc_init_f(void);
Mario Sixdc145a72018-08-06 10:23:40 +0200136
Patrick Delaunayd6f87712018-03-13 13:57:00 +0100137#if defined(CONFIG_DTB_RESELECT)
138int embedded_dtb_select(void);
139#endif
140
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100141/* common/init/board_init.c */
142extern ulong monitor_flash_len;
143
144/**
145 * ulong board_init_f_alloc_reserve - allocate reserved area
Mario Sixdc145a72018-08-06 10:23:40 +0200146 * @top: top of the reserve area, growing down.
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100147 *
148 * This function is called by each architecture very early in the start-up
149 * code to allow the C runtime to reserve space on the stack for writable
150 * 'globals' such as GD and the malloc arena.
151 *
Mario Sixdc145a72018-08-06 10:23:40 +0200152 * Return: bottom of reserved area
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100153 */
154ulong board_init_f_alloc_reserve(ulong top);
155
156/**
157 * board_init_f_init_reserve - initialize the reserved area(s)
Mario Sixdc145a72018-08-06 10:23:40 +0200158 * @base: top from which reservation was done
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100159 *
160 * This function is called once the C runtime has allocated the reserved
161 * area on the stack. It must initialize the GD at the base of that area.
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100162 */
163void board_init_f_init_reserve(ulong base);
164
Simon Glass67c4e9f2019-11-14 12:57:45 -0700165struct global_data;
166
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100167/**
168 * arch_setup_gd() - Set up the global_data pointer
Mario Sixdc145a72018-08-06 10:23:40 +0200169 * @gd_ptr: Pointer to global data
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100170 *
171 * This pointer is special in some architectures and cannot easily be assigned
172 * to. For example on x86 it is implemented by adding a specific record to its
173 * Global Descriptor Table! So we we provide a function to carry out this task.
174 * For most architectures this can simply be:
175 *
176 * gd = gd_ptr;
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100177 */
Simon Glass67c4e9f2019-11-14 12:57:45 -0700178void arch_setup_gd(struct global_data *gd_ptr);
Patrick Delaunay11f86cb2018-03-13 13:57:01 +0100179
Patrick Delaunaydafa84d2018-03-09 18:28:12 +0100180/* common/board_r.c */
Simon Glass67c4e9f2019-11-14 12:57:45 -0700181void board_init_r(struct global_data *id, ulong dest_addr)
182 __attribute__ ((noreturn));
Patrick Delaunaye2c219c2018-03-13 13:57:02 +0100183
184int cpu_init_r(void);
185int last_stage_init(void);
186int mac_read_from_eeprom(void);
187int set_cpu_clk_info(void);
188int update_flash_size(int flash_size);
189int arch_early_init_r(void);
190void pci_init(void);
191int misc_init_r(void);
192#if defined(CONFIG_VID)
193int init_func_vid(void);
194#endif
195
Patrick Delaunayfc22ee22018-03-13 13:57:03 +0100196/* common/board_info.c */
197int checkboard(void);
198int show_board_info(void);
Patrick Delaunaydafa84d2018-03-09 18:28:12 +0100199
Simon Glass67c4e9f2019-11-14 12:57:45 -0700200/**
201 * Get the uppermost pointer that is valid to access
202 *
203 * Some systems may not map all of their address space. This function allows
204 * boards to indicate what their highest support pointer value is for DRAM
205 * access.
206 *
207 * @param total_size Size of U-Boot (unused?)
208 */
209ulong board_get_usable_ram_top(ulong total_size);
210
Simon Glass52559322019-11-14 12:57:46 -0700211int board_early_init_f(void);
212
213/* manipulate the U-Boot fdt before its relocation */
214int board_fix_fdt(void *rw_fdt_blob);
215int board_late_init(void);
216int board_postclk_init(void); /* after clocks/timebase, before env/serial */
217int board_early_init_r(void);
218
Simon Glass2cf431c2019-11-14 12:57:47 -0700219/* TODO(sjg@chromium.org): Drop this when DM_PCI migration is completed */
220void pci_init_board(void);
221
Simon Glassd67bdaa2019-11-14 12:57:48 -0700222void trap_init(unsigned long reloc_addr);
223
Patrick Delaunaydafa84d2018-03-09 18:28:12 +0100224#endif /* __ASSEMBLY__ */
225/* Put only stuff here that the assembler can digest */
226
227#endif /* __INIT_H_ */