wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 1 | /* |
Wolfgang Denk | 3b74e7e | 2009-05-16 10:47:45 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2009 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __COMMON_H_ |
Wolfgang Denk | d0b8fee | 2012-01-06 07:36:44 +0100 | [diff] [blame] | 9 | #define __COMMON_H_ 1 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 10 | |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 11 | #ifndef __ASSEMBLY__ /* put C only stuff in this section */ |
| 12 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 13 | typedef unsigned char uchar; |
| 14 | typedef volatile unsigned long vu_long; |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 15 | typedef volatile unsigned short vu_short; |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 16 | typedef volatile unsigned char vu_char; |
| 17 | |
Andre Przywara | 2a6713b | 2017-01-02 11:48:30 +0000 | [diff] [blame] | 18 | /* Allow sharing constants with type modifiers between C and assembly. */ |
| 19 | #define _AC(X, Y) (X##Y) |
| 20 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 21 | #include <config.h> |
Joe Hershberger | 2307ea4 | 2016-04-04 04:07:33 -0500 | [diff] [blame] | 22 | #include <errno.h> |
Masahiro Yamada | a7b8176 | 2016-12-28 00:36:00 +0900 | [diff] [blame] | 23 | #include <time.h> |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 24 | #include <asm-offsets.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 25 | #include <linux/bitops.h> |
Masahiro Yamada | 0a70fb4 | 2017-09-16 14:10:45 +0900 | [diff] [blame] | 26 | #include <linux/bug.h> |
Masahiro Yamada | 5bc516e | 2016-12-28 00:35:59 +0900 | [diff] [blame] | 27 | #include <linux/delay.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 28 | #include <linux/types.h> |
Masahiro Yamada | b44b302 | 2017-09-16 14:10:40 +0900 | [diff] [blame] | 29 | #include <linux/printk.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 30 | #include <linux/string.h> |
Marek Vasut | 9aed508 | 2012-09-27 17:08:15 +0200 | [diff] [blame] | 31 | #include <linux/stringify.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 32 | #include <asm/ptrace.h> |
| 33 | #include <stdarg.h> |
Masahiro Yamada | 7fea7b1 | 2017-09-16 14:10:39 +0900 | [diff] [blame] | 34 | #include <stdio.h> |
Masahiro Yamada | cba1da4 | 2014-11-07 03:03:28 +0900 | [diff] [blame] | 35 | #include <linux/kernel.h> |
Simon Glass | 8504315 | 2017-05-17 08:23:05 -0600 | [diff] [blame] | 36 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 37 | #include <part.h> |
| 38 | #include <flash.h> |
| 39 | #include <image.h> |
| 40 | |
Gabe Black | 4166ecb | 2014-10-15 04:38:31 -0600 | [diff] [blame] | 41 | /* Bring in printf format macros if inttypes.h is included */ |
| 42 | #define __STDC_FORMAT_MACROS |
| 43 | |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 44 | #ifdef __LP64__ |
| 45 | #define CONFIG_SYS_SUPPORT_64BIT_DATA |
| 46 | #endif |
| 47 | |
Simon Glass | 0e98b0a | 2017-12-04 13:48:20 -0700 | [diff] [blame] | 48 | #include <log.h> |
Simon Glass | 21726a7 | 2011-06-29 09:49:34 +0000 | [diff] [blame] | 49 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 50 | typedef void (interrupt_handler_t)(void *); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 51 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 52 | #include <asm/u-boot.h> /* boot information for Linux kernel */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 53 | #include <asm/global_data.h> /* global data used for startup functions */ |
| 54 | |
Heiko Schocher | 3fbeeea | 2010-09-17 13:10:34 +0200 | [diff] [blame] | 55 | #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 |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 64 | |
| 65 | /* |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 66 | * Function Prototypes |
| 67 | */ |
Michal Simek | 0267ba5 | 2015-01-30 10:51:46 +0100 | [diff] [blame] | 68 | int dram_init(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 69 | |
Simon Glass | 5e924a1 | 2017-03-31 08:40:33 -0600 | [diff] [blame] | 70 | /** |
| 71 | * dram_init_banksize() - Set up DRAM bank sizes |
| 72 | * |
| 73 | * This can be implemented by boards to set up the DRAM bank information in |
| 74 | * gd->bd->bi_dram(). It is called just before relocation, after dram_init() |
| 75 | * is called. |
| 76 | * |
| 77 | * If this is not provided, a default implementation will try to set up a |
| 78 | * single bank. It will do this if CONFIG_NR_DRAM_BANKS and |
| 79 | * CONFIG_SYS_SDRAM_BASE are set. The bank will have a start address of |
| 80 | * CONFIG_SYS_SDRAM_BASE and the size will be determined by a call to |
| 81 | * get_effective_memsize(). |
| 82 | * |
| 83 | * @return 0 if OK, -ve on error |
| 84 | */ |
| 85 | int dram_init_banksize(void); |
| 86 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 87 | void hang (void) __attribute__ ((noreturn)); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 88 | |
Wolfgang Denk | f6c019c | 2011-07-30 12:32:45 +0000 | [diff] [blame] | 89 | int timer_init(void); |
| 90 | int cpu_init(void); |
| 91 | |
Simon Glass | 2ea09c8 | 2015-04-28 20:25:07 -0600 | [diff] [blame] | 92 | #include <display_options.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 93 | |
| 94 | /* common/main.c */ |
| 95 | void main_loop (void); |
Simon Glass | 009dde1 | 2012-02-14 19:59:20 +0000 | [diff] [blame] | 96 | int run_command(const char *cmd, int flag); |
Thomas Betker | 1d43bfd | 2014-06-05 20:07:57 +0200 | [diff] [blame] | 97 | int run_command_repeatable(const char *cmd, int flag); |
Simon Glass | d51004a | 2012-03-30 21:30:55 +0000 | [diff] [blame] | 98 | |
| 99 | /** |
| 100 | * Run a list of commands separated by ; or even \0 |
| 101 | * |
| 102 | * Note that if 'len' is not -1, then the command does not need to be nul |
| 103 | * terminated, Memory will be allocated for the command in that case. |
| 104 | * |
| 105 | * @param cmd List of commands to run, each separated bu semicolon |
| 106 | * @param len Length of commands excluding terminator if known (-1 if not) |
| 107 | * @param flag Execution flags (CMD_FLAG_...) |
| 108 | * @return 0 on success, or != 0 on error. |
| 109 | */ |
| 110 | int run_command_list(const char *cmd, int len, int flag); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 111 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 112 | /* arch/$(ARCH)/lib/board.c */ |
Masahiro Yamada | 0365ffc | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 113 | void board_init_f(ulong); |
| 114 | void board_init_r(gd_t *, ulong) __attribute__ ((noreturn)); |
Simon Glass | 1fed87d | 2015-08-10 20:44:30 -0600 | [diff] [blame] | 115 | |
| 116 | /** |
Albert ARIBAUD | ecc3066 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 117 | * ulong board_init_f_alloc_reserve - allocate reserved area |
Simon Glass | 1fed87d | 2015-08-10 20:44:30 -0600 | [diff] [blame] | 118 | * |
| 119 | * This function is called by each architecture very early in the start-up |
Albert ARIBAUD | ecc3066 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 120 | * code to allow the C runtime to reserve space on the stack for writable |
| 121 | * 'globals' such as GD and the malloc arena. |
Simon Glass | 1fed87d | 2015-08-10 20:44:30 -0600 | [diff] [blame] | 122 | * |
Albert ARIBAUD | ecc3066 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 123 | * @top: top of the reserve area, growing down. |
| 124 | * @return: bottom of reserved area |
Simon Glass | 1fed87d | 2015-08-10 20:44:30 -0600 | [diff] [blame] | 125 | */ |
Albert ARIBAUD | ecc3066 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 126 | ulong board_init_f_alloc_reserve(ulong top); |
| 127 | |
| 128 | /** |
| 129 | * board_init_f_init_reserve - initialize the reserved area(s) |
| 130 | * |
| 131 | * This function is called once the C runtime has allocated the reserved |
| 132 | * area on the stack. It must initialize the GD at the base of that area. |
| 133 | * |
| 134 | * @base: top from which reservation was done |
| 135 | */ |
| 136 | void board_init_f_init_reserve(ulong base); |
Simon Glass | 1fed87d | 2015-08-10 20:44:30 -0600 | [diff] [blame] | 137 | |
| 138 | /** |
| 139 | * arch_setup_gd() - Set up the global_data pointer |
| 140 | * |
| 141 | * This pointer is special in some architectures and cannot easily be assigned |
| 142 | * to. For example on x86 it is implemented by adding a specific record to its |
| 143 | * Global Descriptor Table! So we we provide a function to carry out this task. |
| 144 | * For most architectures this can simply be: |
| 145 | * |
| 146 | * gd = gd_ptr; |
| 147 | * |
| 148 | * @gd_ptr: Pointer to global data |
| 149 | */ |
| 150 | void arch_setup_gd(gd_t *gd_ptr); |
| 151 | |
Masahiro Yamada | 0365ffc | 2015-01-14 17:07:05 +0900 | [diff] [blame] | 152 | int checkboard(void); |
| 153 | int show_board_info(void); |
| 154 | int checkflash(void); |
| 155 | int checkdram(void); |
| 156 | int last_stage_init(void); |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 157 | extern ulong monitor_flash_len; |
Haiying Wang | bea3f28 | 2006-07-12 10:48:05 -0400 | [diff] [blame] | 158 | int mac_read_from_eeprom(void); |
Masahiro Yamada | 6ab6b2a | 2014-02-05 11:28:25 +0900 | [diff] [blame] | 159 | extern u8 __dtb_dt_begin[]; /* embedded device tree blob */ |
Goldschmidt Simon | 9bd76b8 | 2017-11-21 12:29:56 +0000 | [diff] [blame] | 160 | extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */ |
Hadli, Manjunath | 8f5d468 | 2012-02-06 00:30:44 +0000 | [diff] [blame] | 161 | int set_cpu_clk_info(void); |
Simon Glass | 9272a9b | 2014-04-10 20:01:32 -0600 | [diff] [blame] | 162 | int mdm_init(void); |
Simon Glass | 1938f4a | 2013-03-11 06:49:53 +0000 | [diff] [blame] | 163 | int print_cpuinfo(void); |
Simon Glass | c2240d4 | 2013-03-14 07:20:12 +0000 | [diff] [blame] | 164 | int update_flash_size(int flash_size); |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 165 | int arch_early_init_r(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 166 | |
Simon Glass | e5fb573 | 2017-03-31 08:40:36 -0600 | [diff] [blame] | 167 | /* |
| 168 | * setup_board_extra() - Fill in extra details in the bd_t structure |
| 169 | * |
| 170 | * @return 0 if OK, -ve on error |
| 171 | */ |
| 172 | int setup_board_extra(void); |
| 173 | |
Simon Glass | 15a33e4 | 2012-11-30 13:01:20 +0000 | [diff] [blame] | 174 | /** |
Simon Glass | 671549e | 2017-03-28 10:27:18 -0600 | [diff] [blame] | 175 | * arch_fsp_init() - perform firmware support package init |
| 176 | * |
| 177 | * Where U-Boot relies on binary blobs to handle part of the system init, this |
| 178 | * function can be used to set up the blobs. This is used on some Intel |
| 179 | * platforms. |
| 180 | */ |
| 181 | int arch_fsp_init(void); |
| 182 | |
| 183 | /** |
Simon Glass | d4c671c | 2015-03-05 12:25:16 -0700 | [diff] [blame] | 184 | * arch_cpu_init_dm() - init CPU after driver model is available |
| 185 | * |
| 186 | * This is called immediately after driver model is available before |
| 187 | * relocation. This is similar to arch_cpu_init() but is able to reference |
| 188 | * devices |
| 189 | * |
| 190 | * @return 0 if OK, -ve on error |
| 191 | */ |
| 192 | int arch_cpu_init_dm(void); |
| 193 | |
| 194 | /** |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 195 | * Reserve all necessary stacks |
| 196 | * |
| 197 | * This is used in generic board init sequence in common/board_f.c. Each |
| 198 | * architecture could provide this function to tailor the required stacks. |
| 199 | * |
| 200 | * On entry gd->start_addr_sp is pointing to the suggested top of the stack. |
| 201 | * The callee ensures gd->start_add_sp is 16-byte aligned, so architectures |
| 202 | * require only this can leave it untouched. |
| 203 | * |
| 204 | * On exit gd->start_addr_sp and gd->irq_sp should be set to the respective |
| 205 | * positions of the stack. The stack pointer(s) will be set to this later. |
| 206 | * gd->irq_sp is only required, if the architecture needs it. |
| 207 | * |
| 208 | * @return 0 if no error |
| 209 | */ |
| 210 | __weak int arch_reserve_stacks(void); |
| 211 | |
| 212 | /** |
Simon Glass | 15a33e4 | 2012-11-30 13:01:20 +0000 | [diff] [blame] | 213 | * Show the DRAM size in a board-specific way |
| 214 | * |
| 215 | * This is used by boards to display DRAM information in their own way. |
| 216 | * |
| 217 | * @param size Size of DRAM (which should be displayed along with other info) |
| 218 | */ |
Andrew Bradford | ea11b40 | 2015-05-22 08:30:14 -0400 | [diff] [blame] | 219 | void board_show_dram(phys_size_t size); |
Simon Glass | 15a33e4 | 2012-11-30 13:01:20 +0000 | [diff] [blame] | 220 | |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 221 | /** |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 222 | * arch_fixup_fdt() - Write arch-specific information to fdt |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 223 | * |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 224 | * Defined in arch/$(ARCH)/lib/bootm-fdt.c |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 225 | * |
| 226 | * @blob: FDT blob to write to |
| 227 | * @return 0 if ok, or -ve FDT_ERR_... on failure |
| 228 | */ |
Ma Haijun | e29607e | 2014-07-12 14:24:06 +0100 | [diff] [blame] | 229 | int arch_fixup_fdt(void *blob); |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 230 | |
Siva Durga Prasad Paladugu | 60873f7 | 2017-07-13 19:01:08 +0530 | [diff] [blame] | 231 | int reserve_mmu(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 232 | /* common/flash.c */ |
| 233 | void flash_perror (int); |
| 234 | |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 235 | /* common/cmd_source.c */ |
| 236 | int source (ulong addr, const char *fit_uname); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 237 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 238 | extern ulong load_addr; /* Default Load Address */ |
Simon Glass | 1aec244 | 2011-10-21 18:51:38 +0000 | [diff] [blame] | 239 | extern ulong save_addr; /* Default Save Address */ |
| 240 | extern ulong save_size; /* Default Save Size */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 241 | |
Jason Hobbs | 06283a6 | 2011-08-31 10:37:30 -0500 | [diff] [blame] | 242 | /* common/cmd_net.c */ |
| 243 | int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
| 244 | |
Rob Herring | 669df7e | 2012-05-25 10:47:39 +0000 | [diff] [blame] | 245 | /* common/cmd_fat.c */ |
| 246 | int do_fat_fsload(cmd_tbl_t *, int, int, char * const []); |
| 247 | |
| 248 | /* common/cmd_ext2.c */ |
| 249 | int do_ext2load(cmd_tbl_t *, int, int, char * const []); |
| 250 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 251 | /* common/cmd_nvedit.c */ |
| 252 | int env_init (void); |
| 253 | void env_relocate (void); |
Rafal Jaworowski | 26a4179 | 2008-01-09 18:05:27 +0100 | [diff] [blame] | 254 | int envmatch (uchar *, int); |
Simon Glass | 20f86a0 | 2014-02-27 13:26:21 -0700 | [diff] [blame] | 255 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 256 | /** |
| 257 | * env_get() - Look up the value of an environment variable |
| 258 | * |
| 259 | * In U-Boot proper this can be called before relocation (which is when the |
| 260 | * environment is loaded from storage, i.e. GD_FLG_ENV_READY is 0). In that |
| 261 | * case this function calls env_get_f(). |
| 262 | * |
| 263 | * @varname: Variable to look up |
| 264 | * @return value of variable, or NULL if not found |
| 265 | */ |
| 266 | char *env_get(const char *varname); |
| 267 | |
| 268 | /** |
| 269 | * env_get_f() - Look up the value of an environment variable (early) |
| 270 | * |
| 271 | * This function is called from env_get() if the environment has not been |
| 272 | * loaded yet (GD_FLG_ENV_READY flag is 0). Some environment locations will |
| 273 | * support reading the value (slowly) and some will not. |
| 274 | * |
| 275 | * @varname: Variable to look up |
| 276 | * @return value of variable, or NULL if not found |
| 277 | */ |
| 278 | int env_get_f(const char *name, char *buf, unsigned len); |
| 279 | |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 280 | /** |
| 281 | * env_get_ulong() - Return an environment variable as an integer value |
| 282 | * |
| 283 | * Most U-Boot environment variables store hex values. For those which store |
| 284 | * (e.g.) base-10 integers, this function can be used to read the value. |
| 285 | * |
| 286 | * @name: Variable to look up |
| 287 | * @base: Base to use (e.g. 10 for base 10, 2 for binary) |
| 288 | * @default_val: Default value to return if no value is found |
| 289 | * @return the value found, or @default_val if none |
| 290 | */ |
| 291 | ulong env_get_ulong(const char *name, int base, ulong default_val); |
Simon Glass | 76b8f79 | 2013-04-20 08:42:43 +0000 | [diff] [blame] | 292 | |
| 293 | /** |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 294 | * env_get_hex() - Return an environment variable as a hex value |
Simon Glass | 76b8f79 | 2013-04-20 08:42:43 +0000 | [diff] [blame] | 295 | * |
| 296 | * Decode an environment as a hex number (it may or may not have a 0x |
| 297 | * prefix). If the environment variable cannot be found, or does not start |
| 298 | * with hex digits, the default value is returned. |
| 299 | * |
| 300 | * @varname: Variable to decode |
| 301 | * @default_val: Value to return on error |
| 302 | */ |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 303 | ulong env_get_hex(const char *varname, ulong default_val); |
Simon Glass | 76b8f79 | 2013-04-20 08:42:43 +0000 | [diff] [blame] | 304 | |
Joe Hershberger | ec8a252 | 2012-12-11 22:16:22 -0600 | [diff] [blame] | 305 | /* |
| 306 | * Read an environment variable as a boolean |
| 307 | * Return -1 if variable does not exist (default to true) |
| 308 | */ |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 309 | int env_get_yesno(const char *var); |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 310 | |
| 311 | /** |
| 312 | * env_set() - set an environment variable |
| 313 | * |
| 314 | * This sets or deletes the value of an environment variable. For setting the |
| 315 | * value the variable is created if it does not already exist. |
| 316 | * |
| 317 | * @varname: Variable to adjust |
| 318 | * @value: Value to set for the variable, or NULL or "" to delete the variable |
| 319 | * @return 0 if OK, 1 on error |
| 320 | */ |
| 321 | int env_set(const char *varname, const char *value); |
| 322 | |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 323 | /** |
Simon Glass | 018f530 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 324 | * env_set_ulong() - set an environment variable to an integer |
| 325 | * |
| 326 | * @varname: Variable to adjust |
| 327 | * @value: Value to set for the variable (will be converted to a string) |
| 328 | * @return 0 if OK, 1 on error |
| 329 | */ |
| 330 | int env_set_ulong(const char *varname, ulong value); |
| 331 | |
| 332 | /** |
| 333 | * env_set_hex() - set an environment variable to a hex value |
| 334 | * |
| 335 | * @varname: Variable to adjust |
| 336 | * @value: Value to set for the variable (will be converted to a hex string) |
| 337 | * @return 0 if OK, 1 on error |
| 338 | */ |
| 339 | int env_set_hex(const char *varname, ulong value); |
| 340 | |
| 341 | /** |
| 342 | * env_set_addr - Set an environment variable to an address in hex |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 343 | * |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 344 | * @varname: Environment variable to set |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 345 | * @addr: Value to set it to |
| 346 | * @return 0 if ok, 1 on error |
| 347 | */ |
Simon Glass | 018f530 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 348 | static inline int env_set_addr(const char *varname, const void *addr) |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 349 | { |
Simon Glass | 018f530 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 350 | return env_set_hex(varname, (ulong)addr); |
Simon Glass | bfc5996 | 2013-02-24 17:33:21 +0000 | [diff] [blame] | 351 | } |
| 352 | |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 353 | #ifdef CONFIG_AUTO_COMPLETE |
| 354 | int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf); |
| 355 | #endif |
Heiko Schocher | 2f70c49 | 2009-02-10 09:38:52 +0100 | [diff] [blame] | 356 | int get_env_id (void); |
wdenk | 04a85b3 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 357 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 358 | void pci_init (void); |
| 359 | void pci_init_board(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 360 | |
Cooper Jr., Franklin | af9e6ad | 2017-06-16 17:25:12 -0500 | [diff] [blame] | 361 | #if defined(CONFIG_DTB_RESELECT) |
| 362 | int embedded_dtb_select(void); |
| 363 | #endif |
| 364 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 365 | int misc_init_f (void); |
| 366 | int misc_init_r (void); |
| 367 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 368 | /* common/exports.c */ |
| 369 | void jumptable_init(void); |
| 370 | |
Mike Frysinger | ecb1dc8 | 2009-05-20 04:35:14 -0400 | [diff] [blame] | 371 | /* common/kallsysm.c */ |
| 372 | const char *symbol_lookup(unsigned long addr, unsigned long *caddr); |
| 373 | |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 374 | /* common/memsize.c */ |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 375 | long get_ram_size (long *, long); |
York Sun | e386616 | 2014-02-11 11:57:26 -0800 | [diff] [blame] | 376 | phys_size_t get_effective_memsize(void); |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 377 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 378 | /* $(BOARD)/$(BOARD).c */ |
| 379 | void reset_phy (void); |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 380 | void fdc_hw_init (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 381 | |
| 382 | /* $(BOARD)/eeprom.c */ |
Simon Glass | eb5ba3a | 2017-05-12 21:09:49 -0600 | [diff] [blame] | 383 | #ifdef CONFIG_CMD_EEPROM |
Marek Vasut | 354e3ed | 2015-11-10 20:53:31 +0100 | [diff] [blame] | 384 | void eeprom_init (int bus); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 385 | int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); |
| 386 | int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); |
Simon Glass | eb5ba3a | 2017-05-12 21:09:49 -0600 | [diff] [blame] | 387 | #else |
| 388 | /* |
| 389 | * Some EEPROM code is depecated because it used the legacy I2C interface. Add |
| 390 | * some macros here so we don't have to touch every one of those uses |
| 391 | */ |
| 392 | #define eeprom_init(bus) |
| 393 | #define eeprom_read(dev_addr, offset, buffer, cnt) ((void)-ENOSYS) |
| 394 | #define eeprom_write(dev_addr, offset, buffer, cnt) ((void)-ENOSYS) |
| 395 | #endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 396 | |
| 397 | /* |
| 398 | * Set this up regardless of board |
| 399 | * type, to prevent errors. |
| 400 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 401 | #if defined(CONFIG_SPI) || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) |
| 402 | # define CONFIG_SYS_DEF_EEPROM_ADDR 0 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 403 | #else |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 404 | #if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 405 | # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR |
Heiko Schocher | 548738b | 2010-01-07 08:55:40 +0100 | [diff] [blame] | 406 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 407 | #endif /* CONFIG_SPI || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 408 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 409 | #if defined(CONFIG_SPI) |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 410 | extern void spi_init_f (void); |
| 411 | extern void spi_init_r (void); |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 412 | extern ssize_t spi_read (uchar *, int, uchar *, int); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 413 | extern ssize_t spi_write (uchar *, int, uchar *, int); |
| 414 | #endif |
| 415 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 416 | /* $(BOARD)/$(BOARD).c */ |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 417 | int board_early_init_f (void); |
mario.six@gdsys.cc | 2a79275 | 2017-02-22 16:07:22 +0100 | [diff] [blame] | 418 | int board_fix_fdt (void *rw_fdt_blob); /* manipulate the U-Boot fdt before its relocation */ |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 419 | int board_late_init (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 420 | int board_postclk_init (void); /* after clocks/timebase, before env/serial */ |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 421 | int board_early_init_r (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 422 | void board_poweroff (void); |
| 423 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 424 | #if defined(CONFIG_SYS_DRAM_TEST) |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 425 | int testdram(void); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 426 | #endif /* CONFIG_SYS_DRAM_TEST */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 427 | |
| 428 | /* $(CPU)/start.S */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 429 | int icache_status (void); |
| 430 | void icache_enable (void); |
| 431 | void icache_disable(void); |
| 432 | int dcache_status (void); |
| 433 | void dcache_enable (void); |
| 434 | void dcache_disable(void); |
Aneesh V | 2c451f7 | 2011-06-16 23:30:47 +0000 | [diff] [blame] | 435 | void mmu_disable(void); |
Benoît Thébaudeau | 5c6db12 | 2013-04-11 09:35:53 +0000 | [diff] [blame] | 436 | #if defined(CONFIG_ARM) |
| 437 | void relocate_code(ulong); |
| 438 | #else |
| 439 | void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn)); |
Benoît Thébaudeau | 959eaa7 | 2013-04-11 09:35:43 +0000 | [diff] [blame] | 440 | #endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 441 | ulong get_endaddr (void); |
| 442 | void trap_init (ulong); |
Simon Glass | 6e2941d | 2017-05-17 08:23:06 -0600 | [diff] [blame] | 443 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 444 | /* $(CPU)/cpu.c */ |
Timur Tabi | fbb9ecf | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 445 | static inline int cpumask_next(int cpu, unsigned int mask) |
| 446 | { |
| 447 | for (cpu++; !((1 << cpu) & mask); cpu++) |
| 448 | ; |
| 449 | |
| 450 | return cpu; |
| 451 | } |
| 452 | |
| 453 | #define for_each_cpu(iter, cpu, num_cpus, mask) \ |
| 454 | for (iter = 0, cpu = cpumask_next(-1, mask); \ |
| 455 | iter < num_cpus; \ |
| 456 | iter++, cpu = cpumask_next(cpu, mask)) \ |
| 457 | |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 458 | int cpu_numcores (void); |
Shaveta Leekha | b8bf0ad | 2015-01-19 12:46:54 +0530 | [diff] [blame] | 459 | int cpu_num_dspcores(void); |
Timur Tabi | fbb9ecf | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 460 | u32 cpu_mask (void); |
Shaveta Leekha | b8bf0ad | 2015-01-19 12:46:54 +0530 | [diff] [blame] | 461 | u32 cpu_dsp_mask(void); |
Timur Tabi | fbb9ecf | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 462 | int is_core_valid (unsigned int); |
Simon Glass | cbcbf71 | 2017-01-23 13:31:22 -0700 | [diff] [blame] | 463 | |
| 464 | /** |
| 465 | * arch_cpu_init() - basic cpu-dependent setup for an architecture |
| 466 | * |
| 467 | * This is called after early malloc is available. It should handle any |
| 468 | * CPU- or SoC- specific init needed to continue the init sequence. See |
| 469 | * board_f.c for where it is called. If this is not provided, a default |
| 470 | * version (which does nothing) will be used. |
| 471 | */ |
| 472 | int arch_cpu_init(void); |
| 473 | |
Diego Dorta | 026d795 | 2017-10-05 09:13:38 -0300 | [diff] [blame] | 474 | void s_init(void); |
| 475 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 476 | int checkcpu (void); |
| 477 | int checkicache (void); |
| 478 | int checkdcache (void); |
| 479 | void upmconfig (unsigned int, unsigned int *, unsigned int); |
| 480 | ulong get_tbclk (void); |
Przemyslaw Marczak | 1fb4dab | 2014-09-01 13:50:48 +0200 | [diff] [blame] | 481 | void reset_misc (void); |
wdenk | 3ec924a | 2005-04-03 17:23:39 +0000 | [diff] [blame] | 482 | void reset_cpu (ulong addr); |
Kim Phillips | 6a16e0d | 2007-08-15 22:30:26 -0500 | [diff] [blame] | 483 | void ft_cpu_setup(void *blob, bd_t *bd); |
Kim Phillips | 6a16e0d | 2007-08-15 22:30:26 -0500 | [diff] [blame] | 484 | void ft_pci_setup(void *blob, bd_t *bd); |
Kim Phillips | 6a16e0d | 2007-08-15 22:30:26 -0500 | [diff] [blame] | 485 | |
Andre Przywara | ba6a169 | 2013-09-19 18:06:44 +0200 | [diff] [blame] | 486 | void smp_set_core_boot_addr(unsigned long addr, int corenr); |
| 487 | void smp_kick_all_cpus(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 488 | |
| 489 | /* $(CPU)/serial.c */ |
| 490 | int serial_init (void); |
| 491 | void serial_setbrg (void); |
| 492 | void serial_putc (const char); |
wdenk | 756f586 | 2005-04-03 15:51:42 +0000 | [diff] [blame] | 493 | void serial_putc_raw(const char); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 494 | void serial_puts (const char *); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 495 | int serial_getc (void); |
| 496 | int serial_tstc (void); |
| 497 | |
| 498 | /* $(CPU)/speed.c */ |
| 499 | int get_clocks (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 500 | ulong get_bus_freq (ulong); |
Stefan Roese | 550650d | 2010-09-20 16:05:31 +0200 | [diff] [blame] | 501 | int get_serial_clock(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 502 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 503 | int cpu_init_r (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 504 | |
| 505 | /* $(CPU)/interrupts.c */ |
wdenk | c83bf6a | 2004-01-06 22:38:14 +0000 | [diff] [blame] | 506 | int interrupt_init (void); |
| 507 | void timer_interrupt (struct pt_regs *); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 508 | void external_interrupt (struct pt_regs *); |
| 509 | void irq_install_handler(int, interrupt_handler_t *, void *); |
| 510 | void irq_free_handler (int); |
| 511 | void reset_timer (void); |
Simon Glass | b2e16a8 | 2013-06-11 11:14:39 -0700 | [diff] [blame] | 512 | |
| 513 | /* Return value of monotonic microsecond timer */ |
| 514 | unsigned long timer_get_us(void); |
| 515 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 516 | void enable_interrupts (void); |
| 517 | int disable_interrupts (void); |
| 518 | |
| 519 | /* $(CPU)/.../commproc.c */ |
| 520 | int dpram_init (void); |
| 521 | uint dpram_base(void); |
| 522 | uint dpram_base_align(uint align); |
| 523 | uint dpram_alloc(uint size); |
| 524 | uint dpram_alloc_align(uint size,uint align); |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 525 | void bootcount_store (ulong); |
| 526 | ulong bootcount_load (void); |
| 527 | #define BOOTCOUNT_MAGIC 0xB001C041 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 528 | |
| 529 | /* $(CPU)/.../<eth> */ |
Wolfgang Denk | c5bded3 | 2007-08-29 14:05:30 +0200 | [diff] [blame] | 530 | void mii_init (void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 531 | |
| 532 | /* $(CPU)/.../lcd.c */ |
| 533 | ulong lcd_setmem (ulong); |
| 534 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 535 | /* $(CPU)/.../video.c */ |
| 536 | ulong video_setmem (ulong); |
| 537 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 538 | /* arch/$(ARCH)/lib/cache.c */ |
Aneesh V | cba4b18 | 2011-08-16 04:33:05 +0000 | [diff] [blame] | 539 | void enable_caches(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 540 | void flush_cache (unsigned long, unsigned long); |
Aneesh V | 2c451f7 | 2011-06-16 23:30:47 +0000 | [diff] [blame] | 541 | void flush_dcache_all(void); |
Stefan Roese | 03d3bfb | 2009-01-21 17:20:20 +0100 | [diff] [blame] | 542 | void flush_dcache_range(unsigned long start, unsigned long stop); |
| 543 | void invalidate_dcache_range(unsigned long start, unsigned long stop); |
Aneesh V | 2c451f7 | 2011-06-16 23:30:47 +0000 | [diff] [blame] | 544 | void invalidate_dcache_all(void); |
| 545 | void invalidate_icache_all(void); |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 546 | |
Simon Glass | 4d24a11 | 2015-05-13 07:02:25 -0600 | [diff] [blame] | 547 | enum { |
| 548 | /* Disable caches (else flush caches but leave them active) */ |
| 549 | CBL_DISABLE_CACHES = 1 << 0, |
| 550 | CBL_SHOW_BOOTSTAGE_REPORT = 1 << 1, |
| 551 | |
| 552 | CBL_ALL = 3, |
| 553 | }; |
| 554 | |
| 555 | /** |
| 556 | * Clean up ready for linux |
| 557 | * |
| 558 | * @param flags Flags to control what is done |
| 559 | */ |
| 560 | int cleanup_before_linux_select(int flags); |
| 561 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 562 | /* arch/$(ARCH)/lib/ticks.S */ |
Simon Glass | 19ea467 | 2014-10-15 04:38:33 -0600 | [diff] [blame] | 563 | uint64_t get_ticks(void); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 564 | void wait_ticks (unsigned long); |
| 565 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 566 | /* arch/$(ARCH)/lib/time.c */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 567 | ulong usec2ticks (unsigned long usec); |
| 568 | ulong ticks2usec (unsigned long ticks); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 569 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 570 | /* lib/gunzip.c */ |
Jean-Jacques Hiblot | 376ddf9 | 2017-09-15 12:57:29 +0200 | [diff] [blame] | 571 | int gzip_parse_header(const unsigned char *src, unsigned long len); |
Wolfgang Wegner | 87d93a1 | 2009-12-09 15:16:47 +0100 | [diff] [blame] | 572 | int gunzip(void *, int, unsigned char *, unsigned long *); |
| 573 | int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp, |
| 574 | int stoponerr, int offset); |
| 575 | |
Eric Nelson | 918e9eb | 2015-02-17 11:30:30 -0700 | [diff] [blame] | 576 | /** |
| 577 | * gzwrite progress indicators: defined weak to allow board-specific |
| 578 | * overrides: |
| 579 | * |
| 580 | * gzwrite_progress_init called on startup |
| 581 | * gzwrite_progress called during decompress/write loop |
| 582 | * gzwrite_progress_finish called at end of loop to |
| 583 | * indicate success (retcode=0) or failure |
| 584 | */ |
| 585 | void gzwrite_progress_init(u64 expected_size); |
| 586 | |
| 587 | void gzwrite_progress(int iteration, |
| 588 | u64 bytes_written, |
| 589 | u64 total_bytes); |
| 590 | |
| 591 | void gzwrite_progress_finish(int retcode, |
| 592 | u64 totalwritten, |
| 593 | u64 totalsize, |
| 594 | u32 expected_crc, |
| 595 | u32 calculated_crc); |
| 596 | |
| 597 | /** |
| 598 | * decompress and write gzipped image from memory to block device |
| 599 | * |
| 600 | * @param src compressed image address |
| 601 | * @param len compressed image length in bytes |
| 602 | * @param dev block device descriptor |
| 603 | * @param szwritebuf bytes per write (pad to erase size) |
| 604 | * @param startoffs offset in bytes of first write |
| 605 | * @param szexpected expected uncompressed length |
| 606 | * may be zero to use gzip trailer |
| 607 | * for files under 4GiB |
| 608 | */ |
| 609 | int gzwrite(unsigned char *src, int len, |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 610 | struct blk_desc *dev, |
Eric Nelson | 918e9eb | 2015-02-17 11:30:30 -0700 | [diff] [blame] | 611 | unsigned long szwritebuf, |
| 612 | u64 startoffs, |
| 613 | u64 szexpected); |
| 614 | |
Julius Werner | 027b728 | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 615 | /* lib/lz4_wrapper.c */ |
| 616 | int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn); |
| 617 | |
Wolfgang Denk | 54c6977 | 2010-06-13 01:45:10 +0200 | [diff] [blame] | 618 | /* lib/qsort.c */ |
| 619 | void qsort(void *base, size_t nmemb, size_t size, |
| 620 | int(*compar)(const void *, const void *)); |
Mike Frysinger | 560d424 | 2010-12-17 16:51:59 -0500 | [diff] [blame] | 621 | int strcmp_compar(const void *, const void *); |
Wolfgang Denk | 54c6977 | 2010-06-13 01:45:10 +0200 | [diff] [blame] | 622 | |
Jason Hobbs | e11938e | 2011-08-23 11:06:56 +0000 | [diff] [blame] | 623 | /* lib/uuid.c */ |
Przemyslaw Marczak | d718ded | 2014-04-02 10:20:03 +0200 | [diff] [blame] | 624 | #include <uuid.h> |
Jason Hobbs | e11938e | 2011-08-23 11:06:56 +0000 | [diff] [blame] | 625 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 626 | /* lib/vsprintf.c */ |
Simon Glass | 9785c90 | 2011-11-02 09:52:07 +0000 | [diff] [blame] | 627 | #include <vsprintf.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 628 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 629 | /* lib/strmhz.c */ |
Ed Swarthout | 55f7934 | 2011-03-05 10:28:17 -0600 | [diff] [blame] | 630 | char * strmhz(char *buf, unsigned long hz); |
Haavard Skinnemoen | 0768b7a | 2008-08-18 13:41:27 +0200 | [diff] [blame] | 631 | |
Peter Tyser | 78acc47 | 2010-04-12 22:28:05 -0500 | [diff] [blame] | 632 | /* lib/crc32.c */ |
Prafulla Wadaskar | 449609f | 2009-08-16 05:28:19 +0530 | [diff] [blame] | 633 | #include <u-boot/crc.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 634 | |
Michael Walle | 9acf1ca | 2012-06-05 11:33:14 +0000 | [diff] [blame] | 635 | /* lib/rand.c */ |
Michael Walle | 9acf1ca | 2012-06-05 11:33:14 +0000 | [diff] [blame] | 636 | #define RAND_MAX -1U |
| 637 | void srand(unsigned int seed); |
| 638 | unsigned int rand(void); |
| 639 | unsigned int rand_r(unsigned int *seedp); |
Michael Walle | 9acf1ca | 2012-06-05 11:33:14 +0000 | [diff] [blame] | 640 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 641 | /* |
| 642 | * STDIO based functions (can always be used) |
| 643 | */ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 644 | /* serial stuff */ |
Wolfgang Denk | d9c2725 | 2010-06-20 17:14:14 +0200 | [diff] [blame] | 645 | int serial_printf (const char *fmt, ...) |
Andrew Klossner | dc4b0b3 | 2008-07-07 06:41:14 -0700 | [diff] [blame] | 646 | __attribute__ ((format (__printf__, 1, 2))); |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 647 | |
Lei Wen | 88d52c6 | 2012-09-28 04:26:46 +0000 | [diff] [blame] | 648 | /* lib/gzip.c */ |
| 649 | int gzip(void *dst, unsigned long *lenp, |
| 650 | unsigned char *src, unsigned long srclen); |
| 651 | int zzip(void *dst, unsigned long *lenp, unsigned char *src, |
| 652 | unsigned long srclen, int stoponerr, |
| 653 | int (*func)(unsigned long, unsigned long)); |
| 654 | |
Joe Hershberger | 4ef8d53 | 2012-05-23 08:01:04 +0000 | [diff] [blame] | 655 | /* lib/net_utils.c */ |
| 656 | #include <net.h> |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 657 | static inline struct in_addr env_get_ip(char *var) |
Joe Hershberger | 4ef8d53 | 2012-05-23 08:01:04 +0000 | [diff] [blame] | 658 | { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 659 | return string_to_ip(env_get(var)); |
Joe Hershberger | 4ef8d53 | 2012-05-23 08:01:04 +0000 | [diff] [blame] | 660 | } |
| 661 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 662 | int pcmcia_init (void); |
| 663 | |
Uri Mashiach | 2d8d190 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 664 | #ifdef CONFIG_LED_STATUS |
Wolfgang Denk | fb364be | 2009-07-27 09:58:14 +0200 | [diff] [blame] | 665 | # include <status_led.h> |
| 666 | #endif |
Simon Glass | 097e178 | 2012-01-14 15:24:44 +0000 | [diff] [blame] | 667 | |
| 668 | #include <bootstage.h> |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 669 | |
Joe Hershberger | 48522bb | 2012-05-15 08:59:08 +0000 | [diff] [blame] | 670 | #ifdef CONFIG_SHOW_ACTIVITY |
| 671 | void show_activity(int arg); |
| 672 | #endif |
| 673 | |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 674 | /* Multicore arch functions */ |
| 675 | #ifdef CONFIG_MP |
| 676 | int cpu_status(int nr); |
| 677 | int cpu_reset(int nr); |
Kumar Gala | 4194b36 | 2010-01-12 11:42:43 -0600 | [diff] [blame] | 678 | int cpu_disable(int nr); |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 679 | int cpu_release(int nr, int argc, char * const argv[]); |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 680 | #endif |
| 681 | |
Andre Przywara | 2a6713b | 2017-01-02 11:48:30 +0000 | [diff] [blame] | 682 | #else /* __ASSEMBLY__ */ |
| 683 | |
| 684 | /* Drop a C type modifier (like in 3UL) for constants used in assembly. */ |
| 685 | #define _AC(X, Y) X |
| 686 | |
| 687 | #endif /* __ASSEMBLY__ */ |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 688 | |
| 689 | /* Put only stuff here that the assembler can digest */ |
| 690 | |
Andre Przywara | 2a6713b | 2017-01-02 11:48:30 +0000 | [diff] [blame] | 691 | /* Declare an unsigned long constant digestable both by C and an assembler. */ |
| 692 | #define UL(x) _AC(x, UL) |
| 693 | |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 694 | #ifdef CONFIG_POST |
| 695 | #define CONFIG_HAS_POST |
Michael Zaidman | 800eb09 | 2010-09-20 08:51:53 +0200 | [diff] [blame] | 696 | #ifndef CONFIG_POST_ALT_LIST |
| 697 | #define CONFIG_POST_STD_LIST |
| 698 | #endif |
Wolfgang Denk | fcd3c87 | 2009-07-24 00:17:48 +0200 | [diff] [blame] | 699 | #endif |
| 700 | |
wdenk | 8aa1a2d | 2005-04-04 12:44:11 +0000 | [diff] [blame] | 701 | #ifdef CONFIG_INIT_CRITICAL |
Wolfgang Denk | 2f6fa46 | 2006-08-14 23:17:47 +0200 | [diff] [blame] | 702 | #error CONFIG_INIT_CRITICAL is deprecated! |
wdenk | 8aa1a2d | 2005-04-04 12:44:11 +0000 | [diff] [blame] | 703 | #error Read section CONFIG_SKIP_LOWLEVEL_INIT in README. |
| 704 | #endif |
| 705 | |
Anton Staaf | 155cfb5 | 2011-09-02 13:45:28 +0000 | [diff] [blame] | 706 | #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1)) |
Andy Fleming | 4b03ac8 | 2008-06-16 13:58:53 -0500 | [diff] [blame] | 707 | |
Anton Staaf | 1e41f5a | 2011-10-17 16:46:13 -0700 | [diff] [blame] | 708 | /* |
Simon Glass | c9689ca | 2015-06-23 15:38:31 -0600 | [diff] [blame] | 709 | * check_member() - Check the offset of a structure member |
| 710 | * |
| 711 | * @structure: Name of structure (e.g. global_data) |
| 712 | * @member: Name of member (e.g. baudrate) |
| 713 | * @offset: Expected offset in bytes |
| 714 | */ |
| 715 | #define check_member(structure, member, offset) _Static_assert( \ |
| 716 | offsetof(struct structure, member) == offset, \ |
| 717 | "`struct " #structure "` offset for `" #member "` is not " #offset) |
| 718 | |
Simon Glass | 476476e | 2015-08-04 12:33:52 -0600 | [diff] [blame] | 719 | /* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */ |
| 720 | #ifdef CONFIG_EFI_STUB |
| 721 | #define ll_boot_init() false |
| 722 | #else |
| 723 | #define ll_boot_init() true |
| 724 | #endif |
| 725 | |
Mike Frysinger | c3eb3fe | 2011-07-08 10:44:25 +0000 | [diff] [blame] | 726 | /* Pull in stuff for the build system */ |
| 727 | #ifdef DO_DEPS_ONLY |
| 728 | # include <environment.h> |
| 729 | #endif |
| 730 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 731 | #endif /* __COMMON_H_ */ |