blob: 9ff11adf26f07b1411483178aa443ba7081116a2 [file] [log] [blame]
wdenke2211742002-11-02 23:30:20 +00001/*
Wolfgang Denkf342f862009-05-16 10:47:45 +02002 * (C) Copyright 2000-2009
wdenke2211742002-11-02 23:30:20 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenke2211742002-11-02 23:30:20 +00006 */
7
8#ifndef __COMMON_H_
Wolfgang Denkbcbd5212012-01-06 07:36:44 +01009#define __COMMON_H_ 1
wdenke2211742002-11-02 23:30:20 +000010
Wolfgang Denk66e8d442009-07-24 00:17:48 +020011#ifndef __ASSEMBLY__ /* put C only stuff in this section */
12
wdenke2211742002-11-02 23:30:20 +000013typedef unsigned char uchar;
14typedef volatile unsigned long vu_long;
wdenkad276f22004-01-04 16:28:35 +000015typedef volatile unsigned short vu_short;
wdenke2211742002-11-02 23:30:20 +000016typedef volatile unsigned char vu_char;
17
Andre Przywara9fcee532017-01-02 11:48:30 +000018/* Allow sharing constants with type modifiers between C and assembly. */
19#define _AC(X, Y) (X##Y)
20
wdenke2211742002-11-02 23:30:20 +000021#include <config.h>
Joe Hershbergercbf1a932016-04-04 04:07:33 -050022#include <errno.h>
Masahiro Yamadaa4f0b8e2016-12-28 00:36:00 +090023#include <time.h>
Wolfgang Denk0191e472010-10-26 14:34:52 +020024#include <asm-offsets.h>
wdenke2211742002-11-02 23:30:20 +000025#include <linux/bitops.h>
Masahiro Yamada958f0f02017-09-16 14:10:45 +090026#include <linux/bug.h>
Masahiro Yamada29d2a622016-12-28 00:35:59 +090027#include <linux/delay.h>
wdenke2211742002-11-02 23:30:20 +000028#include <linux/types.h>
Masahiro Yamadabf9c2932017-09-16 14:10:40 +090029#include <linux/printk.h>
wdenke2211742002-11-02 23:30:20 +000030#include <linux/string.h>
Marek Vasuta3f16342012-09-27 17:08:15 +020031#include <linux/stringify.h>
wdenke2211742002-11-02 23:30:20 +000032#include <asm/ptrace.h>
33#include <stdarg.h>
Masahiro Yamada5e882e92017-09-16 14:10:39 +090034#include <stdio.h>
Masahiro Yamadabd426622014-11-07 03:03:28 +090035#include <linux/kernel.h>
Simon Glass76135792017-05-17 08:23:05 -060036
wdenke2211742002-11-02 23:30:20 +000037#include <part.h>
38#include <flash.h>
39#include <image.h>
40
Gabe Black690fb812014-10-15 04:38:31 -060041/* Bring in printf format macros if inttypes.h is included */
42#define __STDC_FORMAT_MACROS
43
York Sun6c480012014-02-26 17:03:19 -080044#ifdef __LP64__
45#define CONFIG_SYS_SUPPORT_64BIT_DATA
46#endif
47
Simon Glass9054a022017-12-04 13:48:20 -070048#include <log.h>
Simon Glass02aa9e62011-06-29 09:49:34 +000049
wdenk87249ba2004-01-06 22:38:14 +000050typedef void (interrupt_handler_t)(void *);
wdenke2211742002-11-02 23:30:20 +000051
wdenk87249ba2004-01-06 22:38:14 +000052#include <asm/u-boot.h> /* boot information for Linux kernel */
wdenke2211742002-11-02 23:30:20 +000053#include <asm/global_data.h> /* global data used for startup functions */
54
Heiko Schochereeedb862010-09-17 13:10:34 +020055#if defined(CONFIG_ENV_IS_EMBEDDED)
56#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
57#elif ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \
58 (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \
59 defined(CONFIG_ENV_IS_IN_NVRAM)
60#define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE)
61#else
62#define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN
63#endif
wdenk452cfd62002-11-19 11:04:11 +000064
Patrick Delaunayc6bfcd52018-03-09 18:28:12 +010065/* startup functions */
66#include <init.h>
67
wdenk452cfd62002-11-19 11:04:11 +000068/*
wdenke2211742002-11-02 23:30:20 +000069 * Function Prototypes
70 */
Michal Simekef932b02015-01-30 10:51:46 +010071int dram_init(void);
wdenke2211742002-11-02 23:30:20 +000072
Simon Glass4096e3a2017-03-31 08:40:33 -060073/**
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
82 * CONFIG_SYS_SDRAM_BASE are set. The bank will have a start address of
83 * CONFIG_SYS_SDRAM_BASE and the size will be determined by a call to
84 * get_effective_memsize().
85 *
86 * @return 0 if OK, -ve on error
87 */
88int dram_init_banksize(void);
89
wdenk87249ba2004-01-06 22:38:14 +000090void hang (void) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +000091
Wolfgang Denk75fc4342011-07-30 12:32:45 +000092int timer_init(void);
93int cpu_init(void);
94
Simon Glass7da617c2015-04-28 20:25:07 -060095#include <display_options.h>
wdenke2211742002-11-02 23:30:20 +000096
97/* common/main.c */
98void main_loop (void);
Simon Glass8161d042012-02-14 19:59:20 +000099int run_command(const char *cmd, int flag);
Thomas Betkerbe6346b2014-06-05 20:07:57 +0200100int run_command_repeatable(const char *cmd, int flag);
Simon Glassa6642e02012-03-30 21:30:55 +0000101
102/**
103 * Run a list of commands separated by ; or even \0
104 *
105 * Note that if 'len' is not -1, then the command does not need to be nul
106 * terminated, Memory will be allocated for the command in that case.
107 *
108 * @param cmd List of commands to run, each separated bu semicolon
109 * @param len Length of commands excluding terminator if known (-1 if not)
110 * @param flag Execution flags (CMD_FLAG_...)
111 * @return 0 on success, or != 0 on error.
112 */
113int run_command_list(const char *cmd, int len, int flag);
wdenke2211742002-11-02 23:30:20 +0000114
Peter Tysercede5d82010-04-12 22:28:04 -0500115/* arch/$(ARCH)/lib/board.c */
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900116void board_init_f(ulong);
117void board_init_r(gd_t *, ulong) __attribute__ ((noreturn));
Simon Glass08ef3052015-08-10 20:44:30 -0600118
119/**
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100120 * ulong board_init_f_alloc_reserve - allocate reserved area
Simon Glass08ef3052015-08-10 20:44:30 -0600121 *
122 * This function is called by each architecture very early in the start-up
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100123 * code to allow the C runtime to reserve space on the stack for writable
124 * 'globals' such as GD and the malloc arena.
Simon Glass08ef3052015-08-10 20:44:30 -0600125 *
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100126 * @top: top of the reserve area, growing down.
127 * @return: bottom of reserved area
128 */
129ulong board_init_f_alloc_reserve(ulong top);
130
131/**
132 * board_init_f_init_reserve - initialize the reserved area(s)
Simon Glass08ef3052015-08-10 20:44:30 -0600133 *
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100134 * This function is called once the C runtime has allocated the reserved
135 * area on the stack. It must initialize the GD at the base of that area.
Simon Glass08ef3052015-08-10 20:44:30 -0600136 *
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100137 * @base: top from which reservation was done
Simon Glass08ef3052015-08-10 20:44:30 -0600138 */
Albert ARIBAUD6cb4c462015-11-25 17:56:32 +0100139void board_init_f_init_reserve(ulong base);
Simon Glass08ef3052015-08-10 20:44:30 -0600140
141/**
142 * arch_setup_gd() - Set up the global_data pointer
143 *
144 * This pointer is special in some architectures and cannot easily be assigned
145 * to. For example on x86 it is implemented by adding a specific record to its
146 * Global Descriptor Table! So we we provide a function to carry out this task.
147 * For most architectures this can simply be:
148 *
149 * gd = gd_ptr;
150 *
151 * @gd_ptr: Pointer to global data
152 */
153void arch_setup_gd(gd_t *gd_ptr);
154
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900155int checkboard(void);
156int show_board_info(void);
Masahiro Yamada9607f7a2015-01-14 17:07:05 +0900157int last_stage_init(void);
wdenkb9a83a92003-05-30 12:48:29 +0000158extern ulong monitor_flash_len;
Haiying Wang34c68782006-07-12 10:48:05 -0400159int mac_read_from_eeprom(void);
Masahiro Yamada43c08932014-02-05 11:28:25 +0900160extern u8 __dtb_dt_begin[]; /* embedded device tree blob */
Goldschmidt Simon5e7a1c22017-11-21 12:29:56 +0000161extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
Hadli, Manjunath0dfccbe2012-02-06 00:30:44 +0000162int set_cpu_clk_info(void);
Simon Glassc45e3592013-03-11 06:49:53 +0000163int print_cpuinfo(void);
Simon Glass5af29bd2013-03-14 07:20:12 +0000164int update_flash_size(int flash_size);
Simon Glass84640e82014-02-27 13:26:25 -0700165int arch_early_init_r(void);
wdenke2211742002-11-02 23:30:20 +0000166
Simon Glasseacd14f2012-11-30 13:01:20 +0000167/**
Simon Glass295c4232017-03-28 10:27:18 -0600168 * arch_fsp_init() - perform firmware support package init
169 *
170 * Where U-Boot relies on binary blobs to handle part of the system init, this
171 * function can be used to set up the blobs. This is used on some Intel
172 * platforms.
173 */
174int arch_fsp_init(void);
175
176/**
Simon Glass7af8d052015-03-05 12:25:16 -0700177 * arch_cpu_init_dm() - init CPU after driver model is available
178 *
179 * This is called immediately after driver model is available before
180 * relocation. This is similar to arch_cpu_init() but is able to reference
181 * devices
182 *
183 * @return 0 if OK, -ve on error
184 */
185int arch_cpu_init_dm(void);
186
187/**
Andreas Bießmann25429862015-02-06 23:06:45 +0100188 * Reserve all necessary stacks
189 *
190 * This is used in generic board init sequence in common/board_f.c. Each
191 * architecture could provide this function to tailor the required stacks.
192 *
193 * On entry gd->start_addr_sp is pointing to the suggested top of the stack.
194 * The callee ensures gd->start_add_sp is 16-byte aligned, so architectures
195 * require only this can leave it untouched.
196 *
197 * On exit gd->start_addr_sp and gd->irq_sp should be set to the respective
198 * positions of the stack. The stack pointer(s) will be set to this later.
199 * gd->irq_sp is only required, if the architecture needs it.
200 *
201 * @return 0 if no error
202 */
203__weak int arch_reserve_stacks(void);
204
205/**
Simon Glasseacd14f2012-11-30 13:01:20 +0000206 * Show the DRAM size in a board-specific way
207 *
208 * This is used by boards to display DRAM information in their own way.
209 *
210 * @param size Size of DRAM (which should be displayed along with other info)
211 */
Andrew Bradfordec9dbc92015-05-22 08:30:14 -0400212void board_show_dram(phys_size_t size);
Simon Glasseacd14f2012-11-30 13:01:20 +0000213
Simon Glass9ca37422013-05-08 08:06:01 +0000214/**
Ma Haijun62358242014-07-12 14:24:06 +0100215 * arch_fixup_fdt() - Write arch-specific information to fdt
Simon Glass9ca37422013-05-08 08:06:01 +0000216 *
Ma Haijun62358242014-07-12 14:24:06 +0100217 * Defined in arch/$(ARCH)/lib/bootm-fdt.c
Simon Glass9ca37422013-05-08 08:06:01 +0000218 *
219 * @blob: FDT blob to write to
220 * @return 0 if ok, or -ve FDT_ERR_... on failure
221 */
Ma Haijun62358242014-07-12 14:24:06 +0100222int arch_fixup_fdt(void *blob);
Simon Glass9ca37422013-05-08 08:06:01 +0000223
Siva Durga Prasad Paladugu05223532017-07-13 19:01:08 +0530224int reserve_mmu(void);
wdenke2211742002-11-02 23:30:20 +0000225/* common/flash.c */
226void flash_perror (int);
227
Wolfgang Denk85c25df2009-04-01 23:34:12 +0200228/* common/cmd_source.c */
229int source (ulong addr, const char *fit_uname);
wdenke2211742002-11-02 23:30:20 +0000230
wdenk87249ba2004-01-06 22:38:14 +0000231extern ulong load_addr; /* Default Load Address */
Simon Glass34f52292011-10-21 18:51:38 +0000232extern ulong save_addr; /* Default Save Address */
233extern ulong save_size; /* Default Save Size */
wdenke2211742002-11-02 23:30:20 +0000234
Jason Hobbs0e3a5932011-08-31 10:37:30 -0500235/* common/cmd_net.c */
236int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
237
Rob Herringeee675f2012-05-25 10:47:39 +0000238/* common/cmd_fat.c */
239int do_fat_fsload(cmd_tbl_t *, int, int, char * const []);
240
241/* common/cmd_ext2.c */
242int do_ext2load(cmd_tbl_t *, int, int, char * const []);
243
wdenke2211742002-11-02 23:30:20 +0000244/* common/cmd_nvedit.c */
245int env_init (void);
246void env_relocate (void);
Rafal Jaworowski75b54422008-01-09 18:05:27 +0100247int envmatch (uchar *, int);
Simon Glasse128a4e2014-02-27 13:26:21 -0700248
Simon Glass64b723f2017-08-03 12:22:12 -0600249/**
250 * env_get() - Look up the value of an environment variable
251 *
252 * In U-Boot proper this can be called before relocation (which is when the
253 * environment is loaded from storage, i.e. GD_FLG_ENV_READY is 0). In that
254 * case this function calls env_get_f().
255 *
256 * @varname: Variable to look up
257 * @return value of variable, or NULL if not found
258 */
259char *env_get(const char *varname);
260
261/**
262 * env_get_f() - Look up the value of an environment variable (early)
263 *
264 * This function is called from env_get() if the environment has not been
265 * loaded yet (GD_FLG_ENV_READY flag is 0). Some environment locations will
266 * support reading the value (slowly) and some will not.
267 *
268 * @varname: Variable to look up
269 * @return value of variable, or NULL if not found
270 */
271int env_get_f(const char *name, char *buf, unsigned len);
272
Simon Glass22c34c22017-08-03 12:22:13 -0600273/**
274 * env_get_ulong() - Return an environment variable as an integer value
275 *
276 * Most U-Boot environment variables store hex values. For those which store
277 * (e.g.) base-10 integers, this function can be used to read the value.
278 *
279 * @name: Variable to look up
280 * @base: Base to use (e.g. 10 for base 10, 2 for binary)
281 * @default_val: Default value to return if no value is found
282 * @return the value found, or @default_val if none
283 */
284ulong env_get_ulong(const char *name, int base, ulong default_val);
Simon Glassabbd5122013-04-20 08:42:43 +0000285
286/**
Simon Glass22c34c22017-08-03 12:22:13 -0600287 * env_get_hex() - Return an environment variable as a hex value
Simon Glassabbd5122013-04-20 08:42:43 +0000288 *
289 * Decode an environment as a hex number (it may or may not have a 0x
290 * prefix). If the environment variable cannot be found, or does not start
291 * with hex digits, the default value is returned.
292 *
293 * @varname: Variable to decode
294 * @default_val: Value to return on error
295 */
Simon Glass22c34c22017-08-03 12:22:13 -0600296ulong env_get_hex(const char *varname, ulong default_val);
Simon Glassabbd5122013-04-20 08:42:43 +0000297
Joe Hershberger864ec562012-12-11 22:16:22 -0600298/*
299 * Read an environment variable as a boolean
300 * Return -1 if variable does not exist (default to true)
301 */
Simon Glass22c34c22017-08-03 12:22:13 -0600302int env_get_yesno(const char *var);
Simon Glass6a38e412017-08-03 12:22:09 -0600303
304/**
305 * env_set() - set an environment variable
306 *
307 * This sets or deletes the value of an environment variable. For setting the
308 * value the variable is created if it does not already exist.
309 *
310 * @varname: Variable to adjust
311 * @value: Value to set for the variable, or NULL or "" to delete the variable
312 * @return 0 if OK, 1 on error
313 */
314int env_set(const char *varname, const char *value);
315
Simon Glass044dc9e2013-02-24 17:33:21 +0000316/**
Simon Glass4d949a22017-08-03 12:22:10 -0600317 * env_set_ulong() - set an environment variable to an integer
318 *
319 * @varname: Variable to adjust
320 * @value: Value to set for the variable (will be converted to a string)
321 * @return 0 if OK, 1 on error
322 */
323int env_set_ulong(const char *varname, ulong value);
324
325/**
326 * env_set_hex() - set an environment variable to a hex value
327 *
328 * @varname: Variable to adjust
329 * @value: Value to set for the variable (will be converted to a hex string)
330 * @return 0 if OK, 1 on error
331 */
332int env_set_hex(const char *varname, ulong value);
333
334/**
335 * env_set_addr - Set an environment variable to an address in hex
Simon Glass044dc9e2013-02-24 17:33:21 +0000336 *
Robert P. J. Day832d36e2013-09-16 07:15:45 -0400337 * @varname: Environment variable to set
Simon Glass044dc9e2013-02-24 17:33:21 +0000338 * @addr: Value to set it to
339 * @return 0 if ok, 1 on error
340 */
Simon Glass4d949a22017-08-03 12:22:10 -0600341static inline int env_set_addr(const char *varname, const void *addr)
Simon Glass044dc9e2013-02-24 17:33:21 +0000342{
Simon Glass4d949a22017-08-03 12:22:10 -0600343 return env_set_hex(varname, (ulong)addr);
Simon Glass044dc9e2013-02-24 17:33:21 +0000344}
345
wdenk3902d702004-04-15 18:22:41 +0000346#ifdef CONFIG_AUTO_COMPLETE
347int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
348#endif
Heiko Schocher0c303fa2009-02-10 09:38:52 +0100349int get_env_id (void);
wdenk3902d702004-04-15 18:22:41 +0000350
wdenk87249ba2004-01-06 22:38:14 +0000351void pci_init (void);
352void pci_init_board(void);
wdenke2211742002-11-02 23:30:20 +0000353
Cooper Jr., Franklind8b354a2017-06-16 17:25:12 -0500354#if defined(CONFIG_DTB_RESELECT)
355int embedded_dtb_select(void);
356#endif
357
wdenke2211742002-11-02 23:30:20 +0000358int misc_init_f (void);
359int misc_init_r (void);
Rajesh Bhagatf7716782018-01-17 16:13:08 +0530360#if defined(CONFIG_VID)
361int init_func_vid(void);
362#endif
wdenke2211742002-11-02 23:30:20 +0000363
wdenk874ac262003-07-24 23:38:38 +0000364/* common/exports.c */
365void jumptable_init(void);
366
Mike Frysingera46fbba2009-05-20 04:35:14 -0400367/* common/kallsysm.c */
368const char *symbol_lookup(unsigned long addr, unsigned long *caddr);
369
wdenk87249ba2004-01-06 22:38:14 +0000370/* common/memsize.c */
Albert ARIBAUDa9606732011-07-03 05:55:33 +0000371long get_ram_size (long *, long);
York Sun863e8d82014-02-11 11:57:26 -0800372phys_size_t get_effective_memsize(void);
wdenk87249ba2004-01-06 22:38:14 +0000373
wdenke2211742002-11-02 23:30:20 +0000374/* $(BOARD)/$(BOARD).c */
375void reset_phy (void);
wdenk87249ba2004-01-06 22:38:14 +0000376void fdc_hw_init (void);
wdenke2211742002-11-02 23:30:20 +0000377
378/* $(BOARD)/eeprom.c */
Simon Glass7c5ad8b2017-05-12 21:09:49 -0600379#ifdef CONFIG_CMD_EEPROM
Marek Vasutf422ae72015-11-10 20:53:31 +0100380void eeprom_init (int bus);
wdenke2211742002-11-02 23:30:20 +0000381int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
382int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
Simon Glass7c5ad8b2017-05-12 21:09:49 -0600383#else
384/*
385 * Some EEPROM code is depecated because it used the legacy I2C interface. Add
386 * some macros here so we don't have to touch every one of those uses
387 */
388#define eeprom_init(bus)
389#define eeprom_read(dev_addr, offset, buffer, cnt) ((void)-ENOSYS)
390#define eeprom_write(dev_addr, offset, buffer, cnt) ((void)-ENOSYS)
391#endif
wdenke2211742002-11-02 23:30:20 +0000392
393/*
394 * Set this up regardless of board
395 * type, to prevent errors.
396 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200397#if defined(CONFIG_SPI) || !defined(CONFIG_SYS_I2C_EEPROM_ADDR)
398# define CONFIG_SYS_DEF_EEPROM_ADDR 0
wdenke2211742002-11-02 23:30:20 +0000399#else
Heiko Schocher9bb0dd52010-01-07 08:55:40 +0100400#if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200401# define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR
Heiko Schocher9bb0dd52010-01-07 08:55:40 +0100402#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200403#endif /* CONFIG_SPI || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) */
wdenke2211742002-11-02 23:30:20 +0000404
wdenk0a658552003-08-05 17:43:17 +0000405#if defined(CONFIG_SPI)
wdenke2211742002-11-02 23:30:20 +0000406extern void spi_init_f (void);
407extern void spi_init_r (void);
wdenk87249ba2004-01-06 22:38:14 +0000408extern ssize_t spi_read (uchar *, int, uchar *, int);
wdenke2211742002-11-02 23:30:20 +0000409extern ssize_t spi_write (uchar *, int, uchar *, int);
410#endif
411
wdenke2211742002-11-02 23:30:20 +0000412/* $(BOARD)/$(BOARD).c */
wdenkda55c6e2004-01-20 23:12:12 +0000413int board_early_init_f (void);
mario.six@gdsys.cc7e9b9d62017-02-22 16:07:22 +0100414int board_fix_fdt (void *rw_fdt_blob); /* manipulate the U-Boot fdt before its relocation */
wdenkda55c6e2004-01-20 23:12:12 +0000415int board_late_init (void);
wdenke2211742002-11-02 23:30:20 +0000416int board_postclk_init (void); /* after clocks/timebase, before env/serial */
wdenkda55c6e2004-01-20 23:12:12 +0000417int board_early_init_r (void);
wdenke2211742002-11-02 23:30:20 +0000418
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200419#if defined(CONFIG_SYS_DRAM_TEST)
wdenke2211742002-11-02 23:30:20 +0000420int testdram(void);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200421#endif /* CONFIG_SYS_DRAM_TEST */
wdenke2211742002-11-02 23:30:20 +0000422
423/* $(CPU)/start.S */
wdenke2211742002-11-02 23:30:20 +0000424int icache_status (void);
425void icache_enable (void);
426void icache_disable(void);
427int dcache_status (void);
428void dcache_enable (void);
429void dcache_disable(void);
Aneesh V960f5c02011-06-16 23:30:47 +0000430void mmu_disable(void);
Benoît Thébaudeaua0436612013-04-11 09:35:53 +0000431#if defined(CONFIG_ARM)
432void relocate_code(ulong);
433#else
434void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn));
Benoît Thébaudeau9039c102013-04-11 09:35:43 +0000435#endif
wdenke2211742002-11-02 23:30:20 +0000436ulong get_endaddr (void);
437void trap_init (ulong);
Simon Glass243182c2017-05-17 08:23:06 -0600438
wdenke2211742002-11-02 23:30:20 +0000439/* $(CPU)/cpu.c */
Timur Tabi47289422011-08-05 16:15:24 -0500440static inline int cpumask_next(int cpu, unsigned int mask)
441{
442 for (cpu++; !((1 << cpu) & mask); cpu++)
443 ;
444
445 return cpu;
446}
447
448#define for_each_cpu(iter, cpu, num_cpus, mask) \
449 for (iter = 0, cpu = cpumask_next(-1, mask); \
450 iter < num_cpus; \
451 iter++, cpu = cpumask_next(cpu, mask)) \
452
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530453int cpu_numcores (void);
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530454int cpu_num_dspcores(void);
Timur Tabi47289422011-08-05 16:15:24 -0500455u32 cpu_mask (void);
Shaveta Leekhadbf0bc82015-01-19 12:46:54 +0530456u32 cpu_dsp_mask(void);
Timur Tabi47289422011-08-05 16:15:24 -0500457int is_core_valid (unsigned int);
Simon Glass302445a2017-01-23 13:31:22 -0700458
Diego Dorta206d5802017-10-05 09:13:38 -0300459void s_init(void);
460
wdenke2211742002-11-02 23:30:20 +0000461int checkcpu (void);
462int checkicache (void);
463int checkdcache (void);
464void upmconfig (unsigned int, unsigned int *, unsigned int);
465ulong get_tbclk (void);
Przemyslaw Marczakec1c1222014-09-01 13:50:48 +0200466void reset_misc (void);
wdenk1e8d0c52005-04-03 17:23:39 +0000467void reset_cpu (ulong addr);
Kim Phillipsdc0b59d2007-08-15 22:30:26 -0500468void ft_cpu_setup(void *blob, bd_t *bd);
Kim Phillipsdc0b59d2007-08-15 22:30:26 -0500469void ft_pci_setup(void *blob, bd_t *bd);
Kim Phillipsdc0b59d2007-08-15 22:30:26 -0500470
Andre Przywaradbbe1962013-09-19 18:06:44 +0200471void smp_set_core_boot_addr(unsigned long addr, int corenr);
472void smp_kick_all_cpus(void);
wdenke2211742002-11-02 23:30:20 +0000473
474/* $(CPU)/serial.c */
475int serial_init (void);
476void serial_setbrg (void);
477void serial_putc (const char);
wdenke0c812a2005-04-03 15:51:42 +0000478void serial_putc_raw(const char);
wdenke2211742002-11-02 23:30:20 +0000479void serial_puts (const char *);
wdenke2211742002-11-02 23:30:20 +0000480int serial_getc (void);
481int serial_tstc (void);
482
483/* $(CPU)/speed.c */
484int get_clocks (void);
wdenke2211742002-11-02 23:30:20 +0000485ulong get_bus_freq (ulong);
Stefan Roese3ddce572010-09-20 16:05:31 +0200486int get_serial_clock(void);
wdenke2211742002-11-02 23:30:20 +0000487
wdenke2211742002-11-02 23:30:20 +0000488int cpu_init_r (void);
wdenke2211742002-11-02 23:30:20 +0000489
490/* $(CPU)/interrupts.c */
wdenk87249ba2004-01-06 22:38:14 +0000491int interrupt_init (void);
492void timer_interrupt (struct pt_regs *);
wdenke2211742002-11-02 23:30:20 +0000493void external_interrupt (struct pt_regs *);
494void irq_install_handler(int, interrupt_handler_t *, void *);
495void irq_free_handler (int);
496void reset_timer (void);
Simon Glassc44b8002013-06-11 11:14:39 -0700497
498/* Return value of monotonic microsecond timer */
499unsigned long timer_get_us(void);
500
wdenke2211742002-11-02 23:30:20 +0000501void enable_interrupts (void);
502int disable_interrupts (void);
503
504/* $(CPU)/.../commproc.c */
505int dpram_init (void);
506uint dpram_base(void);
507uint dpram_base_align(uint align);
508uint dpram_alloc(uint size);
509uint dpram_alloc_align(uint size,uint align);
wdenk0a658552003-08-05 17:43:17 +0000510void bootcount_store (ulong);
511ulong bootcount_load (void);
512#define BOOTCOUNT_MAGIC 0xB001C041
wdenke2211742002-11-02 23:30:20 +0000513
514/* $(CPU)/.../<eth> */
Wolfgang Denk0769f192007-08-29 14:05:30 +0200515void mii_init (void);
wdenke2211742002-11-02 23:30:20 +0000516
517/* $(CPU)/.../lcd.c */
518ulong lcd_setmem (ulong);
519
wdenke2211742002-11-02 23:30:20 +0000520/* $(CPU)/.../video.c */
521ulong video_setmem (ulong);
522
Peter Tysercede5d82010-04-12 22:28:04 -0500523/* arch/$(ARCH)/lib/cache.c */
Aneesh Vfffbb972011-08-16 04:33:05 +0000524void enable_caches(void);
wdenke2211742002-11-02 23:30:20 +0000525void flush_cache (unsigned long, unsigned long);
Aneesh V960f5c02011-06-16 23:30:47 +0000526void flush_dcache_all(void);
Stefan Roese9bf63bf2009-01-21 17:20:20 +0100527void flush_dcache_range(unsigned long start, unsigned long stop);
528void invalidate_dcache_range(unsigned long start, unsigned long stop);
Aneesh V960f5c02011-06-16 23:30:47 +0000529void invalidate_dcache_all(void);
530void invalidate_icache_all(void);
wdenk359733b2003-03-31 17:27:09 +0000531
Simon Glass442e5d72015-05-13 07:02:25 -0600532enum {
533 /* Disable caches (else flush caches but leave them active) */
534 CBL_DISABLE_CACHES = 1 << 0,
535 CBL_SHOW_BOOTSTAGE_REPORT = 1 << 1,
536
537 CBL_ALL = 3,
538};
539
540/**
541 * Clean up ready for linux
542 *
543 * @param flags Flags to control what is done
544 */
545int cleanup_before_linux_select(int flags);
546
Peter Tysercede5d82010-04-12 22:28:04 -0500547/* arch/$(ARCH)/lib/ticks.S */
Simon Glass0e103162014-10-15 04:38:33 -0600548uint64_t get_ticks(void);
wdenke2211742002-11-02 23:30:20 +0000549void wait_ticks (unsigned long);
550
Peter Tysercede5d82010-04-12 22:28:04 -0500551/* arch/$(ARCH)/lib/time.c */
wdenke2211742002-11-02 23:30:20 +0000552ulong usec2ticks (unsigned long usec);
553ulong ticks2usec (unsigned long ticks);
wdenke2211742002-11-02 23:30:20 +0000554
Peter Tyser685b7f52010-04-12 22:28:05 -0500555/* lib/gunzip.c */
Jean-Jacques Hiblot0d3aa342017-09-15 12:57:29 +0200556int gzip_parse_header(const unsigned char *src, unsigned long len);
Wolfgang Wegner32d15b92009-12-09 15:16:47 +0100557int gunzip(void *, int, unsigned char *, unsigned long *);
558int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,
559 int stoponerr, int offset);
560
Eric Nelson5441b042015-02-17 11:30:30 -0700561/**
562 * gzwrite progress indicators: defined weak to allow board-specific
563 * overrides:
564 *
565 * gzwrite_progress_init called on startup
566 * gzwrite_progress called during decompress/write loop
567 * gzwrite_progress_finish called at end of loop to
568 * indicate success (retcode=0) or failure
569 */
570void gzwrite_progress_init(u64 expected_size);
571
572void gzwrite_progress(int iteration,
573 u64 bytes_written,
574 u64 total_bytes);
575
576void gzwrite_progress_finish(int retcode,
577 u64 totalwritten,
578 u64 totalsize,
579 u32 expected_crc,
580 u32 calculated_crc);
581
582/**
583 * decompress and write gzipped image from memory to block device
584 *
585 * @param src compressed image address
586 * @param len compressed image length in bytes
587 * @param dev block device descriptor
588 * @param szwritebuf bytes per write (pad to erase size)
589 * @param startoffs offset in bytes of first write
590 * @param szexpected expected uncompressed length
591 * may be zero to use gzip trailer
592 * for files under 4GiB
593 */
594int gzwrite(unsigned char *src, int len,
Simon Glasse3394752016-02-29 15:25:34 -0700595 struct blk_desc *dev,
Eric Nelson5441b042015-02-17 11:30:30 -0700596 unsigned long szwritebuf,
597 u64 startoffs,
598 u64 szexpected);
599
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700600/* lib/lz4_wrapper.c */
601int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn);
602
Wolfgang Denk90699222010-06-13 01:45:10 +0200603/* lib/qsort.c */
604void qsort(void *base, size_t nmemb, size_t size,
605 int(*compar)(const void *, const void *));
Mike Frysinger8d882322010-12-17 16:51:59 -0500606int strcmp_compar(const void *, const void *);
Wolfgang Denk90699222010-06-13 01:45:10 +0200607
Jason Hobbs6e39cce2011-08-23 11:06:56 +0000608/* lib/uuid.c */
Przemyslaw Marczak0c813362014-04-02 10:20:03 +0200609#include <uuid.h>
Jason Hobbs6e39cce2011-08-23 11:06:56 +0000610
Peter Tyser685b7f52010-04-12 22:28:05 -0500611/* lib/vsprintf.c */
Simon Glassf7ae68062011-11-02 09:52:07 +0000612#include <vsprintf.h>
wdenke2211742002-11-02 23:30:20 +0000613
Peter Tyser685b7f52010-04-12 22:28:05 -0500614/* lib/strmhz.c */
Ed Swarthoutd065acb2011-03-05 10:28:17 -0600615char * strmhz(char *buf, unsigned long hz);
Haavard Skinnemoenb644d6b2008-08-18 13:41:27 +0200616
Peter Tyser685b7f52010-04-12 22:28:05 -0500617/* lib/crc32.c */
Prafulla Wadaskar4d4d67d2009-08-16 05:28:19 +0530618#include <u-boot/crc.h>
wdenke2211742002-11-02 23:30:20 +0000619
Michael Walled96bd012012-06-05 11:33:14 +0000620/* lib/rand.c */
Michael Walled96bd012012-06-05 11:33:14 +0000621#define RAND_MAX -1U
622void srand(unsigned int seed);
623unsigned int rand(void);
624unsigned int rand_r(unsigned int *seedp);
Michael Walled96bd012012-06-05 11:33:14 +0000625
wdenke2211742002-11-02 23:30:20 +0000626/*
627 * STDIO based functions (can always be used)
628 */
wdenke2211742002-11-02 23:30:20 +0000629/* serial stuff */
Wolfgang Denk318ef5c2010-06-20 17:14:14 +0200630int serial_printf (const char *fmt, ...)
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700631 __attribute__ ((format (__printf__, 1, 2)));
wdenke2211742002-11-02 23:30:20 +0000632
Lei Wen7592d1b2012-09-28 04:26:46 +0000633/* lib/gzip.c */
634int gzip(void *dst, unsigned long *lenp,
635 unsigned char *src, unsigned long srclen);
636int zzip(void *dst, unsigned long *lenp, unsigned char *src,
637 unsigned long srclen, int stoponerr,
638 int (*func)(unsigned long, unsigned long));
639
Joe Hershberger05a377b2012-05-23 08:01:04 +0000640/* lib/net_utils.c */
641#include <net.h>
Simon Glassda1a1342017-08-03 12:22:15 -0600642static inline struct in_addr env_get_ip(char *var)
Joe Hershberger05a377b2012-05-23 08:01:04 +0000643{
Simon Glass64b723f2017-08-03 12:22:12 -0600644 return string_to_ip(env_get(var));
Joe Hershberger05a377b2012-05-23 08:01:04 +0000645}
646
wdenke2211742002-11-02 23:30:20 +0000647int pcmcia_init (void);
648
Uri Mashiach4892d392017-01-19 10:51:45 +0200649#ifdef CONFIG_LED_STATUS
Wolfgang Denkdf8e2142009-07-27 09:58:14 +0200650# include <status_led.h>
651#endif
Simon Glass8445d002012-01-14 15:24:44 +0000652
653#include <bootstage.h>
wdenke2211742002-11-02 23:30:20 +0000654
Joe Hershberger77001b432012-05-15 08:59:08 +0000655#ifdef CONFIG_SHOW_ACTIVITY
656void show_activity(int arg);
657#endif
658
Wolfgang Denk66e8d442009-07-24 00:17:48 +0200659/* Multicore arch functions */
660#ifdef CONFIG_MP
661int cpu_status(int nr);
662int cpu_reset(int nr);
Kumar Gala006e2c82010-01-12 11:42:43 -0600663int cpu_disable(int nr);
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200664int cpu_release(int nr, int argc, char * const argv[]);
Wolfgang Denk66e8d442009-07-24 00:17:48 +0200665#endif
666
Andre Przywara9fcee532017-01-02 11:48:30 +0000667#else /* __ASSEMBLY__ */
668
669/* Drop a C type modifier (like in 3UL) for constants used in assembly. */
670#define _AC(X, Y) X
671
672#endif /* __ASSEMBLY__ */
Wolfgang Denk66e8d442009-07-24 00:17:48 +0200673
674/* Put only stuff here that the assembler can digest */
675
Andre Przywara9fcee532017-01-02 11:48:30 +0000676/* Declare an unsigned long constant digestable both by C and an assembler. */
677#define UL(x) _AC(x, UL)
678
Wolfgang Denk66e8d442009-07-24 00:17:48 +0200679#ifdef CONFIG_POST
680#define CONFIG_HAS_POST
Michael Zaidmanf969a682010-09-20 08:51:53 +0200681#ifndef CONFIG_POST_ALT_LIST
682#define CONFIG_POST_STD_LIST
683#endif
Wolfgang Denk66e8d442009-07-24 00:17:48 +0200684#endif
685
wdenk3d3d99f2005-04-04 12:44:11 +0000686#ifdef CONFIG_INIT_CRITICAL
Wolfgang Denk5e3a8732006-08-14 23:17:47 +0200687#error CONFIG_INIT_CRITICAL is deprecated!
wdenk3d3d99f2005-04-04 12:44:11 +0000688#error Read section CONFIG_SKIP_LOWLEVEL_INIT in README.
689#endif
690
Anton Staaf07a036a2011-09-02 13:45:28 +0000691#define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))
Andy Fleming2ef5ed02008-06-16 13:58:53 -0500692
Anton Staafcda2e482011-10-17 16:46:13 -0700693/*
Simon Glassd61718b2015-06-23 15:38:31 -0600694 * check_member() - Check the offset of a structure member
695 *
696 * @structure: Name of structure (e.g. global_data)
697 * @member: Name of member (e.g. baudrate)
698 * @offset: Expected offset in bytes
699 */
700#define check_member(structure, member, offset) _Static_assert( \
701 offsetof(struct structure, member) == offset, \
702 "`struct " #structure "` offset for `" #member "` is not " #offset)
703
Simon Glass63f581f2015-08-04 12:33:52 -0600704/* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */
705#ifdef CONFIG_EFI_STUB
706#define ll_boot_init() false
707#else
708#define ll_boot_init() true
709#endif
710
Mike Frysinger63b8f122011-07-08 10:44:25 +0000711/* Pull in stuff for the build system */
712#ifdef DO_DEPS_ONLY
713# include <environment.h>
714#endif
715
wdenke2211742002-11-02 23:30:20 +0000716#endif /* __COMMON_H_ */