1e2211743Swdenk /* 23b74e7ecSWolfgang Denk * (C) Copyright 2000-2009 3e2211743Swdenk * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4e2211743Swdenk * 51a459660SWolfgang Denk * SPDX-License-Identifier: GPL-2.0+ 6e2211743Swdenk */ 7e2211743Swdenk 8e2211743Swdenk #ifndef __COMMON_H_ 9d0b8feefSWolfgang Denk #define __COMMON_H_ 1 10e2211743Swdenk 11fcd3c87eSWolfgang Denk #ifndef __ASSEMBLY__ /* put C only stuff in this section */ 12fcd3c87eSWolfgang Denk 13e2211743Swdenk typedef unsigned char uchar; 14e2211743Swdenk typedef volatile unsigned long vu_long; 15e2211743Swdenk typedef volatile unsigned short vu_short; 16e2211743Swdenk typedef volatile unsigned char vu_char; 17e2211743Swdenk 182a6713b0SAndre Przywara /* Allow sharing constants with type modifiers between C and assembly. */ 192a6713b0SAndre Przywara #define _AC(X, Y) (X##Y) 202a6713b0SAndre Przywara 21e2211743Swdenk #include <config.h> 222307ea40SJoe Hershberger #include <errno.h> 23a7b81769SMasahiro Yamada #include <time.h> 2425ddd1fbSWolfgang Denk #include <asm-offsets.h> 25e2211743Swdenk #include <linux/bitops.h> 265bc516edSMasahiro Yamada #include <linux/delay.h> 27e2211743Swdenk #include <linux/types.h> 28e2211743Swdenk #include <linux/string.h> 299aed5080SMarek Vasut #include <linux/stringify.h> 30e2211743Swdenk #include <asm/ptrace.h> 31e2211743Swdenk #include <stdarg.h> 32*50f8c1b1SMasahiro Yamada #include <stdio.h> 33cba1da49SMasahiro Yamada #include <linux/kernel.h> 3485043159SSimon Glass 35e2211743Swdenk #include <part.h> 36e2211743Swdenk #include <flash.h> 37e2211743Swdenk #include <image.h> 38e2211743Swdenk 394166ecb2SGabe Black /* Bring in printf format macros if inttypes.h is included */ 404166ecb2SGabe Black #define __STDC_FORMAT_MACROS 414166ecb2SGabe Black 424d1fd7f1SYork Sun #ifdef __LP64__ 434d1fd7f1SYork Sun #define CONFIG_SYS_SUPPORT_64BIT_DATA 444d1fd7f1SYork Sun #endif 454d1fd7f1SYork Sun 46e2211743Swdenk #ifdef DEBUG 4721726a7aSSimon Glass #define _DEBUG 1 4821726a7aSSimon Glass #else 4921726a7aSSimon Glass #define _DEBUG 0 5021726a7aSSimon Glass #endif 5121726a7aSSimon Glass 5298286826SSimon Glass #ifdef CONFIG_SPL_BUILD 5398286826SSimon Glass #define _SPL_BUILD 1 5498286826SSimon Glass #else 5598286826SSimon Glass #define _SPL_BUILD 0 5698286826SSimon Glass #endif 5798286826SSimon Glass 585e7f7433SSimon Glass /* Define this at the top of a file to add a prefix to debug messages */ 59be25d875SThierry Reding #ifndef pr_fmt 60be25d875SThierry Reding #define pr_fmt(fmt) fmt 61be25d875SThierry Reding #endif 62be25d875SThierry Reding 6321726a7aSSimon Glass /* 6488a85fb9SMarek Vasut * Output a debug text when condition "cond" is met. The "cond" should be 6588a85fb9SMarek Vasut * computed by a preprocessor in the best case, allowing for the best 6688a85fb9SMarek Vasut * optimization. 6788a85fb9SMarek Vasut */ 6888a85fb9SMarek Vasut #define debug_cond(cond, fmt, args...) \ 6988a85fb9SMarek Vasut do { \ 7088a85fb9SMarek Vasut if (cond) \ 71be25d875SThierry Reding printf(pr_fmt(fmt), ##args); \ 7288a85fb9SMarek Vasut } while (0) 7388a85fb9SMarek Vasut 745e7f7433SSimon Glass /* Show a message if DEBUG is defined in a file */ 7588a85fb9SMarek Vasut #define debug(fmt, args...) \ 7688a85fb9SMarek Vasut debug_cond(_DEBUG, fmt, ##args) 7788a85fb9SMarek Vasut 7898286826SSimon Glass /* Show a message if not in SPL */ 7998286826SSimon Glass #define warn_non_spl(fmt, args...) \ 8098286826SSimon Glass debug_cond(!_SPL_BUILD, fmt, ##args) 8198286826SSimon Glass 8288a85fb9SMarek Vasut /* 8321726a7aSSimon Glass * An assertion is run-time check done in debug mode only. If DEBUG is not 8421726a7aSSimon Glass * defined then it is skipped. If DEBUG is defined and the assertion fails, 8521726a7aSSimon Glass * then it calls panic*( which may or may not reset/halt U-Boot (see 8621726a7aSSimon Glass * CONFIG_PANIC_HANG), It is hoped that all failing assertions are found 8721726a7aSSimon Glass * before release, and after release it is hoped that they don't matter. But 8821726a7aSSimon Glass * in any case these failing assertions cannot be fixed with a reset (which 8921726a7aSSimon Glass * may just do the same assertion again). 9021726a7aSSimon Glass */ 9121726a7aSSimon Glass void __assert_fail(const char *assertion, const char *file, unsigned line, 9221726a7aSSimon Glass const char *function); 9321726a7aSSimon Glass #define assert(x) \ 9421726a7aSSimon Glass ({ if (!(x) && _DEBUG) \ 9521726a7aSSimon Glass __assert_fail(#x, __FILE__, __LINE__, __func__); }) 9621726a7aSSimon Glass 97594d57d0SMatthias Kaehlcke #define error(fmt, args...) do { \ 98be25d875SThierry Reding printf("ERROR: " pr_fmt(fmt) "\nat %s:%d/%s()\n", \ 99594d57d0SMatthias Kaehlcke ##args, __FILE__, __LINE__, __func__); \ 100594d57d0SMatthias Kaehlcke } while (0) 101594d57d0SMatthias Kaehlcke 10203204b06SKever Yang #if (__STDC_VERSION__ >= 201112L) || defined(__cplusplus) 10303204b06SKever Yang # undef static_assert 10403204b06SKever Yang # define static_assert _Static_assert 10503204b06SKever Yang #endif 10603204b06SKever Yang 107cfa460adSWilliam Juul #ifndef BUG 10843835aacSDetlev Zundel #define BUG() do { \ 10943835aacSDetlev Zundel printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \ 11043835aacSDetlev Zundel panic("BUG!"); \ 11143835aacSDetlev Zundel } while (0) 11243835aacSDetlev Zundel #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0) 113cfa460adSWilliam Juul #endif /* BUG */ 11443835aacSDetlev Zundel 11542865eb5SJoseph Chen #ifndef CONFIG_IRQ 116e2211743Swdenk typedef void (interrupt_handler_t)(void *); 11742865eb5SJoseph Chen #else 11842865eb5SJoseph Chen typedef void (interrupt_handler_t)(int, void *); 11942865eb5SJoseph Chen #endif 120e2211743Swdenk 121e2211743Swdenk #include <asm/u-boot.h> /* boot information for Linux kernel */ 122e2211743Swdenk #include <asm/global_data.h> /* global data used for startup functions */ 123e2211743Swdenk 1243fbeeea6SHeiko Schocher #if defined(CONFIG_ENV_IS_EMBEDDED) 1253fbeeea6SHeiko Schocher #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN 1263fbeeea6SHeiko Schocher #elif ( ((CONFIG_ENV_ADDR+CONFIG_ENV_SIZE) < CONFIG_SYS_MONITOR_BASE) || \ 1273fbeeea6SHeiko Schocher (CONFIG_ENV_ADDR >= (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)) ) || \ 1283fbeeea6SHeiko Schocher defined(CONFIG_ENV_IS_IN_NVRAM) 1293fbeeea6SHeiko Schocher #define TOTAL_MALLOC_LEN (CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE) 1303fbeeea6SHeiko Schocher #else 1313fbeeea6SHeiko Schocher #define TOTAL_MALLOC_LEN CONFIG_SYS_MALLOC_LEN 1323fbeeea6SHeiko Schocher #endif 133c7de829cSwdenk 134c7de829cSwdenk /* 135e2211743Swdenk * Function Prototypes 136e2211743Swdenk */ 1370267ba5dSMichal Simek int dram_init(void); 138e2211743Swdenk 1395e924a13SSimon Glass /** 1405e924a13SSimon Glass * dram_init_banksize() - Set up DRAM bank sizes 1415e924a13SSimon Glass * 1425e924a13SSimon Glass * This can be implemented by boards to set up the DRAM bank information in 1435e924a13SSimon Glass * gd->bd->bi_dram(). It is called just before relocation, after dram_init() 1445e924a13SSimon Glass * is called. 1455e924a13SSimon Glass * 1465e924a13SSimon Glass * If this is not provided, a default implementation will try to set up a 1475e924a13SSimon Glass * single bank. It will do this if CONFIG_NR_DRAM_BANKS and 1485e924a13SSimon Glass * CONFIG_SYS_SDRAM_BASE are set. The bank will have a start address of 1495e924a13SSimon Glass * CONFIG_SYS_SDRAM_BASE and the size will be determined by a call to 1505e924a13SSimon Glass * get_effective_memsize(). 1515e924a13SSimon Glass * 1525e924a13SSimon Glass * @return 0 if OK, -ve on error 1535e924a13SSimon Glass */ 1545e924a13SSimon Glass int dram_init_banksize(void); 1555e924a13SSimon Glass 156e2211743Swdenk void hang (void) __attribute__ ((noreturn)); 157e2211743Swdenk 158f6c019c4SWolfgang Denk int timer_init(void); 159f6c019c4SWolfgang Denk int cpu_init(void); 160f6c019c4SWolfgang Denk 1612ea09c83SSimon Glass #include <display_options.h> 162e2211743Swdenk 163e2211743Swdenk /* common/main.c */ 164e2211743Swdenk void main_loop (void); 165009dde19SSimon Glass int run_command(const char *cmd, int flag); 1661d43bfd2SThomas Betker int run_command_repeatable(const char *cmd, int flag); 167d51004a8SSimon Glass 168d51004a8SSimon Glass /** 169d51004a8SSimon Glass * Run a list of commands separated by ; or even \0 170d51004a8SSimon Glass * 171d51004a8SSimon Glass * Note that if 'len' is not -1, then the command does not need to be nul 172d51004a8SSimon Glass * terminated, Memory will be allocated for the command in that case. 173d51004a8SSimon Glass * 174d51004a8SSimon Glass * @param cmd List of commands to run, each separated bu semicolon 175d51004a8SSimon Glass * @param len Length of commands excluding terminator if known (-1 if not) 176d51004a8SSimon Glass * @param flag Execution flags (CMD_FLAG_...) 177d51004a8SSimon Glass * @return 0 on success, or != 0 on error. 178d51004a8SSimon Glass */ 179d51004a8SSimon Glass int run_command_list(const char *cmd, int len, int flag); 180e2211743Swdenk 181ea0364f1SPeter Tyser /* arch/$(ARCH)/lib/board.c */ 182e05e5de7SAlbert ARIBAUD void board_init_f(ulong); 1836d1b6f9fSMike Frysinger void board_init_r(gd_t *, ulong) __attribute__ ((noreturn)); 1841fed87dbSSimon Glass 1851fed87dbSSimon Glass /** 186ecc30663SAlbert ARIBAUD * ulong board_init_f_alloc_reserve - allocate reserved area 1871fed87dbSSimon Glass * 1881fed87dbSSimon Glass * This function is called by each architecture very early in the start-up 189ecc30663SAlbert ARIBAUD * code to allow the C runtime to reserve space on the stack for writable 190ecc30663SAlbert ARIBAUD * 'globals' such as GD and the malloc arena. 1911fed87dbSSimon Glass * 192ecc30663SAlbert ARIBAUD * @top: top of the reserve area, growing down. 193ecc30663SAlbert ARIBAUD * @return: bottom of reserved area 1941fed87dbSSimon Glass */ 195ecc30663SAlbert ARIBAUD ulong board_init_f_alloc_reserve(ulong top); 196ecc30663SAlbert ARIBAUD 197ecc30663SAlbert ARIBAUD /** 198ecc30663SAlbert ARIBAUD * board_init_f_init_reserve - initialize the reserved area(s) 199ecc30663SAlbert ARIBAUD * 200ecc30663SAlbert ARIBAUD * This function is called once the C runtime has allocated the reserved 201ecc30663SAlbert ARIBAUD * area on the stack. It must initialize the GD at the base of that area. 202ecc30663SAlbert ARIBAUD * 203ecc30663SAlbert ARIBAUD * @base: top from which reservation was done 204ecc30663SAlbert ARIBAUD */ 205ecc30663SAlbert ARIBAUD void board_init_f_init_reserve(ulong base); 2061fed87dbSSimon Glass 2071fed87dbSSimon Glass /** 2081fed87dbSSimon Glass * arch_setup_gd() - Set up the global_data pointer 2091fed87dbSSimon Glass * 2101fed87dbSSimon Glass * This pointer is special in some architectures and cannot easily be assigned 2111fed87dbSSimon Glass * to. For example on x86 it is implemented by adding a specific record to its 2121fed87dbSSimon Glass * Global Descriptor Table! So we we provide a function to carry out this task. 2131fed87dbSSimon Glass * For most architectures this can simply be: 2141fed87dbSSimon Glass * 2151fed87dbSSimon Glass * gd = gd_ptr; 2161fed87dbSSimon Glass * 2171fed87dbSSimon Glass * @gd_ptr: Pointer to global data 2181fed87dbSSimon Glass */ 2191fed87dbSSimon Glass void arch_setup_gd(gd_t *gd_ptr); 2201fed87dbSSimon Glass 221e2211743Swdenk int checkboard(void); 2220365ffccSMasahiro Yamada int show_board_info(void); 223e2211743Swdenk int checkflash(void); 224e2211743Swdenk int checkdram(void); 225e2211743Swdenk int last_stage_init(void); 2263b57fe0aSwdenk extern ulong monitor_flash_len; 227bea3f28dSHaiying Wang int mac_read_from_eeprom(void); 2286ab6b2afSMasahiro Yamada extern u8 __dtb_dt_begin[]; /* embedded device tree blob */ 2298f5d4687SHadli, Manjunath int set_cpu_clk_info(void); 2309272a9b4SSimon Glass int mdm_init(void); 2311938f4a5SSimon Glass int print_cpuinfo(void); 232c2240d4dSSimon Glass int update_flash_size(int flash_size); 2332c072c95SSimon Glass int arch_early_init_r(void); 234e2211743Swdenk 235e5fb573fSSimon Glass /* 236e5fb573fSSimon Glass * setup_board_extra() - Fill in extra details in the bd_t structure 237e5fb573fSSimon Glass * 238e5fb573fSSimon Glass * @return 0 if OK, -ve on error 239e5fb573fSSimon Glass */ 240e5fb573fSSimon Glass int setup_board_extra(void); 241e5fb573fSSimon Glass 24215a33e49SSimon Glass /** 243671549e5SSimon Glass * arch_fsp_init() - perform firmware support package init 244671549e5SSimon Glass * 245671549e5SSimon Glass * Where U-Boot relies on binary blobs to handle part of the system init, this 246671549e5SSimon Glass * function can be used to set up the blobs. This is used on some Intel 247671549e5SSimon Glass * platforms. 248671549e5SSimon Glass */ 249671549e5SSimon Glass int arch_fsp_init(void); 250671549e5SSimon Glass 251671549e5SSimon Glass /** 252d4c671ccSSimon Glass * arch_cpu_init_dm() - init CPU after driver model is available 253d4c671ccSSimon Glass * 254d4c671ccSSimon Glass * This is called immediately after driver model is available before 255d4c671ccSSimon Glass * relocation. This is similar to arch_cpu_init() but is able to reference 256d4c671ccSSimon Glass * devices 257d4c671ccSSimon Glass * 258d4c671ccSSimon Glass * @return 0 if OK, -ve on error 259d4c671ccSSimon Glass */ 260d4c671ccSSimon Glass int arch_cpu_init_dm(void); 261d4c671ccSSimon Glass 262d4c671ccSSimon Glass /** 26368145d4cSAndreas Bießmann * Reserve all necessary stacks 26468145d4cSAndreas Bießmann * 26568145d4cSAndreas Bießmann * This is used in generic board init sequence in common/board_f.c. Each 26668145d4cSAndreas Bießmann * architecture could provide this function to tailor the required stacks. 26768145d4cSAndreas Bießmann * 26868145d4cSAndreas Bießmann * On entry gd->start_addr_sp is pointing to the suggested top of the stack. 26968145d4cSAndreas Bießmann * The callee ensures gd->start_add_sp is 16-byte aligned, so architectures 27068145d4cSAndreas Bießmann * require only this can leave it untouched. 27168145d4cSAndreas Bießmann * 27268145d4cSAndreas Bießmann * On exit gd->start_addr_sp and gd->irq_sp should be set to the respective 27368145d4cSAndreas Bießmann * positions of the stack. The stack pointer(s) will be set to this later. 27468145d4cSAndreas Bießmann * gd->irq_sp is only required, if the architecture needs it. 27568145d4cSAndreas Bießmann * 27668145d4cSAndreas Bießmann * @return 0 if no error 27768145d4cSAndreas Bießmann */ 27868145d4cSAndreas Bießmann __weak int arch_reserve_stacks(void); 27968145d4cSAndreas Bießmann 28068145d4cSAndreas Bießmann /** 28115a33e49SSimon Glass * Show the DRAM size in a board-specific way 28215a33e49SSimon Glass * 28315a33e49SSimon Glass * This is used by boards to display DRAM information in their own way. 28415a33e49SSimon Glass * 28515a33e49SSimon Glass * @param size Size of DRAM (which should be displayed along with other info) 28615a33e49SSimon Glass */ 287ea11b401SAndrew Bradford void board_show_dram(phys_size_t size); 28815a33e49SSimon Glass 28913d06981SSimon Glass /** 290e29607edSMa Haijun * arch_fixup_fdt() - Write arch-specific information to fdt 29113d06981SSimon Glass * 292e29607edSMa Haijun * Defined in arch/$(ARCH)/lib/bootm-fdt.c 29313d06981SSimon Glass * 29413d06981SSimon Glass * @blob: FDT blob to write to 29513d06981SSimon Glass * @return 0 if ok, or -ve FDT_ERR_... on failure 29613d06981SSimon Glass */ 297e29607edSMa Haijun int arch_fixup_fdt(void *blob); 29813d06981SSimon Glass 29960873f73SSiva Durga Prasad Paladugu int reserve_mmu(void); 300e2211743Swdenk /* common/flash.c */ 301e2211743Swdenk void flash_perror (int); 302e2211743Swdenk 30374de7aefSWolfgang Denk /* common/cmd_source.c */ 30474de7aefSWolfgang Denk int source (ulong addr, const char *fit_uname); 305e2211743Swdenk 306e2211743Swdenk extern ulong load_addr; /* Default Load Address */ 3071aec244aSSimon Glass extern ulong save_addr; /* Default Save Address */ 3081aec244aSSimon Glass extern ulong save_size; /* Default Save Size */ 309e2211743Swdenk 31006283a64SJason Hobbs /* common/cmd_net.c */ 31106283a64SJason Hobbs int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 31206283a64SJason Hobbs 313669df7e4SRob Herring /* common/cmd_fat.c */ 314669df7e4SRob Herring int do_fat_fsload(cmd_tbl_t *, int, int, char * const []); 315669df7e4SRob Herring 316669df7e4SRob Herring /* common/cmd_ext2.c */ 317669df7e4SRob Herring int do_ext2load(cmd_tbl_t *, int, int, char * const []); 318669df7e4SRob Herring 319e2211743Swdenk /* common/cmd_nvedit.c */ 320e2211743Swdenk int env_init (void); 321e2211743Swdenk void env_relocate (void); 32226a41790SRafal Jaworowski int envmatch (uchar *, int); 32320f86a0aSSimon Glass 32400caae6dSSimon Glass /** 32500caae6dSSimon Glass * env_get() - Look up the value of an environment variable 32600caae6dSSimon Glass * 32700caae6dSSimon Glass * In U-Boot proper this can be called before relocation (which is when the 32800caae6dSSimon Glass * environment is loaded from storage, i.e. GD_FLG_ENV_READY is 0). In that 32900caae6dSSimon Glass * case this function calls env_get_f(). 33000caae6dSSimon Glass * 33100caae6dSSimon Glass * @varname: Variable to look up 33200caae6dSSimon Glass * @return value of variable, or NULL if not found 33300caae6dSSimon Glass */ 33400caae6dSSimon Glass char *env_get(const char *varname); 33500caae6dSSimon Glass 33600caae6dSSimon Glass /** 33700caae6dSSimon Glass * env_get_f() - Look up the value of an environment variable (early) 33800caae6dSSimon Glass * 33900caae6dSSimon Glass * This function is called from env_get() if the environment has not been 34000caae6dSSimon Glass * loaded yet (GD_FLG_ENV_READY flag is 0). Some environment locations will 34100caae6dSSimon Glass * support reading the value (slowly) and some will not. 34200caae6dSSimon Glass * 34300caae6dSSimon Glass * @varname: Variable to look up 34400caae6dSSimon Glass * @return value of variable, or NULL if not found 34500caae6dSSimon Glass */ 34600caae6dSSimon Glass int env_get_f(const char *name, char *buf, unsigned len); 34700caae6dSSimon Glass 348bfebc8c9SSimon Glass /** 349bfebc8c9SSimon Glass * env_get_ulong() - Return an environment variable as an integer value 350bfebc8c9SSimon Glass * 351bfebc8c9SSimon Glass * Most U-Boot environment variables store hex values. For those which store 352bfebc8c9SSimon Glass * (e.g.) base-10 integers, this function can be used to read the value. 353bfebc8c9SSimon Glass * 354bfebc8c9SSimon Glass * @name: Variable to look up 355bfebc8c9SSimon Glass * @base: Base to use (e.g. 10 for base 10, 2 for binary) 356bfebc8c9SSimon Glass * @default_val: Default value to return if no value is found 357bfebc8c9SSimon Glass * @return the value found, or @default_val if none 358bfebc8c9SSimon Glass */ 359bfebc8c9SSimon Glass ulong env_get_ulong(const char *name, int base, ulong default_val); 36076b8f79cSSimon Glass 36176b8f79cSSimon Glass /** 362bfebc8c9SSimon Glass * env_get_hex() - Return an environment variable as a hex value 36376b8f79cSSimon Glass * 36476b8f79cSSimon Glass * Decode an environment as a hex number (it may or may not have a 0x 36576b8f79cSSimon Glass * prefix). If the environment variable cannot be found, or does not start 36676b8f79cSSimon Glass * with hex digits, the default value is returned. 36776b8f79cSSimon Glass * 36876b8f79cSSimon Glass * @varname: Variable to decode 36976b8f79cSSimon Glass * @default_val: Value to return on error 37076b8f79cSSimon Glass */ 371bfebc8c9SSimon Glass ulong env_get_hex(const char *varname, ulong default_val); 37276b8f79cSSimon Glass 373ec8a252cSJoe Hershberger /* 374ec8a252cSJoe Hershberger * Read an environment variable as a boolean 375ec8a252cSJoe Hershberger * Return -1 if variable does not exist (default to true) 376ec8a252cSJoe Hershberger */ 377bfebc8c9SSimon Glass int env_get_yesno(const char *var); 378382bee57SSimon Glass 379382bee57SSimon Glass /** 380382bee57SSimon Glass * env_set() - set an environment variable 381382bee57SSimon Glass * 382382bee57SSimon Glass * This sets or deletes the value of an environment variable. For setting the 383382bee57SSimon Glass * value the variable is created if it does not already exist. 384382bee57SSimon Glass * 385382bee57SSimon Glass * @varname: Variable to adjust 386382bee57SSimon Glass * @value: Value to set for the variable, or NULL or "" to delete the variable 387382bee57SSimon Glass * @return 0 if OK, 1 on error 388382bee57SSimon Glass */ 389382bee57SSimon Glass int env_set(const char *varname, const char *value); 390382bee57SSimon Glass 391bfc59966SSimon Glass /** 39264c74e0bSJoseph Chen * env_update() - update sub value of an environment variable 39364c74e0bSJoseph Chen * 39464c74e0bSJoseph Chen * This add/append/replace the sub value of an environment variable. 39564c74e0bSJoseph Chen * 39664c74e0bSJoseph Chen * @varname: Variable to adjust 39764c74e0bSJoseph Chen * @valude: Value to append/replace 39864c74e0bSJoseph Chen * @return 0 if OK, 1 on error 39964c74e0bSJoseph Chen */ 400533c9f30SJoseph Chen int env_update(const char *varname, const char *varvalue); 40164c74e0bSJoseph Chen 40264c74e0bSJoseph Chen /** 403018f5303SSimon Glass * env_set_ulong() - set an environment variable to an integer 404018f5303SSimon Glass * 405018f5303SSimon Glass * @varname: Variable to adjust 406018f5303SSimon Glass * @value: Value to set for the variable (will be converted to a string) 407018f5303SSimon Glass * @return 0 if OK, 1 on error 408018f5303SSimon Glass */ 409018f5303SSimon Glass int env_set_ulong(const char *varname, ulong value); 410018f5303SSimon Glass 411018f5303SSimon Glass /** 412018f5303SSimon Glass * env_set_hex() - set an environment variable to a hex value 413018f5303SSimon Glass * 414018f5303SSimon Glass * @varname: Variable to adjust 415018f5303SSimon Glass * @value: Value to set for the variable (will be converted to a hex string) 416018f5303SSimon Glass * @return 0 if OK, 1 on error 417018f5303SSimon Glass */ 418018f5303SSimon Glass int env_set_hex(const char *varname, ulong value); 419018f5303SSimon Glass 420018f5303SSimon Glass /** 421018f5303SSimon Glass * env_set_addr - Set an environment variable to an address in hex 422bfc59966SSimon Glass * 4231bce2aebSRobert P. J. Day * @varname: Environment variable to set 424bfc59966SSimon Glass * @addr: Value to set it to 425bfc59966SSimon Glass * @return 0 if ok, 1 on error 426bfc59966SSimon Glass */ 427018f5303SSimon Glass static inline int env_set_addr(const char *varname, const void *addr) 428bfc59966SSimon Glass { 429018f5303SSimon Glass return env_set_hex(varname, (ulong)addr); 430bfc59966SSimon Glass } 431bfc59966SSimon Glass 43204a85b3bSwdenk #ifdef CONFIG_AUTO_COMPLETE 43304a85b3bSwdenk int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf); 43404a85b3bSwdenk #endif 4352f70c49eSHeiko Schocher int get_env_id (void); 43604a85b3bSwdenk 437e2211743Swdenk void pci_init (void); 438ad10dd9aSstroese void pci_init_board(void); 439e2211743Swdenk 440af9e6ad4SCooper Jr., Franklin #if defined(CONFIG_DTB_RESELECT) 441af9e6ad4SCooper Jr., Franklin int embedded_dtb_select(void); 442af9e6ad4SCooper Jr., Franklin #endif 443af9e6ad4SCooper Jr., Franklin 444e2211743Swdenk int misc_init_f (void); 445e2211743Swdenk int misc_init_r (void); 446e2211743Swdenk 44727b207fdSwdenk /* common/exports.c */ 44827b207fdSwdenk void jumptable_init(void); 44927b207fdSwdenk 450ecb1dc89SMike Frysinger /* common/kallsysm.c */ 451ecb1dc89SMike Frysinger const char *symbol_lookup(unsigned long addr, unsigned long *caddr); 452ecb1dc89SMike Frysinger 453c83bf6a2Swdenk /* common/memsize.c */ 454a55d23ccSAlbert ARIBAUD long get_ram_size (long *, long); 455e3866163SYork Sun phys_size_t get_effective_memsize(void); 456c83bf6a2Swdenk 457e2211743Swdenk /* $(BOARD)/$(BOARD).c */ 458e2211743Swdenk void reset_phy (void); 4597f6c2cbcSwdenk void fdc_hw_init (void); 460e2211743Swdenk 461e2211743Swdenk /* $(BOARD)/eeprom.c */ 462eb5ba3aeSSimon Glass #ifdef CONFIG_CMD_EEPROM 463354e3ed7SMarek Vasut void eeprom_init (int bus); 464e2211743Swdenk int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); 465e2211743Swdenk int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); 466eb5ba3aeSSimon Glass #else 467eb5ba3aeSSimon Glass /* 468eb5ba3aeSSimon Glass * Some EEPROM code is depecated because it used the legacy I2C interface. Add 469eb5ba3aeSSimon Glass * some macros here so we don't have to touch every one of those uses 470eb5ba3aeSSimon Glass */ 471eb5ba3aeSSimon Glass #define eeprom_init(bus) 472eb5ba3aeSSimon Glass #define eeprom_read(dev_addr, offset, buffer, cnt) ((void)-ENOSYS) 473eb5ba3aeSSimon Glass #define eeprom_write(dev_addr, offset, buffer, cnt) ((void)-ENOSYS) 474eb5ba3aeSSimon Glass #endif 475e2211743Swdenk 476e2211743Swdenk /* 477e2211743Swdenk * Set this up regardless of board 478e2211743Swdenk * type, to prevent errors. 479e2211743Swdenk */ 4806d0f6bcfSJean-Christophe PLAGNIOL-VILLARD #if defined(CONFIG_SPI) || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) 4816d0f6bcfSJean-Christophe PLAGNIOL-VILLARD # define CONFIG_SYS_DEF_EEPROM_ADDR 0 482e2211743Swdenk #else 483548738b4SHeiko Schocher #if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C) 4846d0f6bcfSJean-Christophe PLAGNIOL-VILLARD # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR 485548738b4SHeiko Schocher #endif 4866d0f6bcfSJean-Christophe PLAGNIOL-VILLARD #endif /* CONFIG_SPI || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) */ 487e2211743Swdenk 488bdccc4feSwdenk #if defined(CONFIG_SPI) 489e2211743Swdenk extern void spi_init_f (void); 490e2211743Swdenk extern void spi_init_r (void); 491e2211743Swdenk extern ssize_t spi_read (uchar *, int, uchar *, int); 492e2211743Swdenk extern ssize_t spi_write (uchar *, int, uchar *, int); 493e2211743Swdenk #endif 494e2211743Swdenk 495e2211743Swdenk /* $(BOARD)/$(BOARD).c */ 496c837dcb1Swdenk int board_early_init_f (void); 4972a792753Smario.six@gdsys.cc int board_fix_fdt (void *rw_fdt_blob); /* manipulate the U-Boot fdt before its relocation */ 498c837dcb1Swdenk int board_late_init (void); 499e2211743Swdenk int board_postclk_init (void); /* after clocks/timebase, before env/serial */ 500c837dcb1Swdenk int board_early_init_r (void); 501e2211743Swdenk void board_poweroff (void); 502e2211743Swdenk 5036d0f6bcfSJean-Christophe PLAGNIOL-VILLARD #if defined(CONFIG_SYS_DRAM_TEST) 504e2211743Swdenk int testdram(void); 5056d0f6bcfSJean-Christophe PLAGNIOL-VILLARD #endif /* CONFIG_SYS_DRAM_TEST */ 506e2211743Swdenk 507e2211743Swdenk /* $(CPU)/start.S */ 508e2211743Swdenk int icache_status (void); 509e2211743Swdenk void icache_enable (void); 510e2211743Swdenk void icache_disable(void); 511e2211743Swdenk int dcache_status (void); 512e2211743Swdenk void dcache_enable (void); 513e2211743Swdenk void dcache_disable(void); 5142c451f78SAneesh V void mmu_disable(void); 5155c6db120SBenoît Thébaudeau #if defined(CONFIG_ARM) 5165c6db120SBenoît Thébaudeau void relocate_code(ulong); 5175c6db120SBenoît Thébaudeau #else 5185c6db120SBenoît Thébaudeau void relocate_code(ulong, gd_t *, ulong) __attribute__ ((noreturn)); 519959eaa74SBenoît Thébaudeau #endif 520e2211743Swdenk ulong get_endaddr (void); 521e2211743Swdenk void trap_init (ulong); 5226e2941d7SSimon Glass 523e2211743Swdenk /* $(CPU)/cpu.c */ 524fbb9ecf7STimur Tabi static inline int cpumask_next(int cpu, unsigned int mask) 525fbb9ecf7STimur Tabi { 526fbb9ecf7STimur Tabi for (cpu++; !((1 << cpu) & mask); cpu++) 527fbb9ecf7STimur Tabi ; 528fbb9ecf7STimur Tabi 529fbb9ecf7STimur Tabi return cpu; 530fbb9ecf7STimur Tabi } 531fbb9ecf7STimur Tabi 532fbb9ecf7STimur Tabi #define for_each_cpu(iter, cpu, num_cpus, mask) \ 533fbb9ecf7STimur Tabi for (iter = 0, cpu = cpumask_next(-1, mask); \ 534fbb9ecf7STimur Tabi iter < num_cpus; \ 535fbb9ecf7STimur Tabi iter++, cpu = cpumask_next(cpu, mask)) \ 536fbb9ecf7STimur Tabi 5370e870980SPoonam Aggrwal int cpu_numcores (void); 538b8bf0adcSShaveta Leekha int cpu_num_dspcores(void); 539fbb9ecf7STimur Tabi u32 cpu_mask (void); 540b8bf0adcSShaveta Leekha u32 cpu_dsp_mask(void); 541fbb9ecf7STimur Tabi int is_core_valid (unsigned int); 542cbcbf71bSSimon Glass 543cbcbf71bSSimon Glass /** 544cbcbf71bSSimon Glass * arch_cpu_init() - basic cpu-dependent setup for an architecture 545cbcbf71bSSimon Glass * 546cbcbf71bSSimon Glass * This is called after early malloc is available. It should handle any 547cbcbf71bSSimon Glass * CPU- or SoC- specific init needed to continue the init sequence. See 548cbcbf71bSSimon Glass * board_f.c for where it is called. If this is not provided, a default 549cbcbf71bSSimon Glass * version (which does nothing) will be used. 550cbcbf71bSSimon Glass */ 551cbcbf71bSSimon Glass int arch_cpu_init(void); 552cbcbf71bSSimon Glass 553e2211743Swdenk int checkcpu (void); 554e2211743Swdenk int checkicache (void); 555e2211743Swdenk int checkdcache (void); 556e2211743Swdenk void upmconfig (unsigned int, unsigned int *, unsigned int); 557e2211743Swdenk ulong get_tbclk (void); 5581fb4dab2SPrzemyslaw Marczak void reset_misc (void); 5593ec924a3Swdenk void reset_cpu (ulong addr); 5606a16e0dfSKim Phillips void ft_cpu_setup(void *blob, bd_t *bd); 5616a16e0dfSKim Phillips void ft_pci_setup(void *blob, bd_t *bd); 5626a16e0dfSKim Phillips 563ba6a1698SAndre Przywara void smp_set_core_boot_addr(unsigned long addr, int corenr); 564ba6a1698SAndre Przywara void smp_kick_all_cpus(void); 565e2211743Swdenk 566e2211743Swdenk /* $(CPU)/serial.c */ 567e2211743Swdenk int serial_init (void); 568e2211743Swdenk void serial_setbrg (void); 569e2211743Swdenk void serial_putc (const char); 570756f586aSwdenk void serial_putc_raw(const char); 571e2211743Swdenk void serial_puts (const char *); 572e2211743Swdenk int serial_getc (void); 573e2211743Swdenk int serial_tstc (void); 574e2211743Swdenk 575e2211743Swdenk /* $(CPU)/speed.c */ 576e2211743Swdenk int get_clocks (void); 577e2211743Swdenk ulong get_bus_freq (ulong); 578550650ddSStefan Roese int get_serial_clock(void); 579e2211743Swdenk 580e2211743Swdenk int cpu_init_r (void); 581e2211743Swdenk 582e2211743Swdenk /* $(CPU)/interrupts.c */ 583e2211743Swdenk int interrupt_init (void); 584e2211743Swdenk void timer_interrupt (struct pt_regs *); 585e2211743Swdenk void external_interrupt (struct pt_regs *); 586e2211743Swdenk void irq_install_handler(int, interrupt_handler_t *, void *); 587e2211743Swdenk void irq_free_handler (int); 588e2211743Swdenk void reset_timer (void); 589b2e16a85SSimon Glass 590b2e16a85SSimon Glass /* Return value of monotonic microsecond timer */ 591b2e16a85SSimon Glass unsigned long timer_get_us(void); 592b2e16a85SSimon Glass 593e2211743Swdenk void enable_interrupts (void); 594e2211743Swdenk int disable_interrupts (void); 595e2211743Swdenk 596e2211743Swdenk /* $(CPU)/.../commproc.c */ 597e2211743Swdenk int dpram_init (void); 598e2211743Swdenk uint dpram_base(void); 599e2211743Swdenk uint dpram_base_align(uint align); 600e2211743Swdenk uint dpram_alloc(uint size); 601e2211743Swdenk uint dpram_alloc_align(uint size,uint align); 602bdccc4feSwdenk void bootcount_store (ulong); 603bdccc4feSwdenk ulong bootcount_load (void); 604bdccc4feSwdenk #define BOOTCOUNT_MAGIC 0xB001C041 605e2211743Swdenk 606e2211743Swdenk /* $(CPU)/.../<eth> */ 607c5bded3cSWolfgang Denk void mii_init (void); 608e2211743Swdenk 609e2211743Swdenk /* $(CPU)/.../lcd.c */ 610e2211743Swdenk ulong lcd_setmem (ulong); 611e2211743Swdenk 612e2211743Swdenk /* $(CPU)/.../video.c */ 613e2211743Swdenk ulong video_setmem (ulong); 614e2211743Swdenk 615ea0364f1SPeter Tyser /* arch/$(ARCH)/lib/cache.c */ 616cba4b180SAneesh V void enable_caches(void); 617e2211743Swdenk void flush_cache (unsigned long, unsigned long); 6182c451f78SAneesh V void flush_dcache_all(void); 61903d3bfb0SStefan Roese void flush_dcache_range(unsigned long start, unsigned long stop); 62003d3bfb0SStefan Roese void invalidate_dcache_range(unsigned long start, unsigned long stop); 6212c451f78SAneesh V void invalidate_dcache_all(void); 6222c451f78SAneesh V void invalidate_icache_all(void); 6230db5bca8Swdenk 6244d24a11eSSimon Glass enum { 6254d24a11eSSimon Glass /* Disable caches (else flush caches but leave them active) */ 6264d24a11eSSimon Glass CBL_DISABLE_CACHES = 1 << 0, 6274d24a11eSSimon Glass CBL_SHOW_BOOTSTAGE_REPORT = 1 << 1, 6284d24a11eSSimon Glass 6294d24a11eSSimon Glass CBL_ALL = 3, 6304d24a11eSSimon Glass }; 6314d24a11eSSimon Glass 6324d24a11eSSimon Glass /** 6334d24a11eSSimon Glass * Clean up ready for linux 6344d24a11eSSimon Glass * 6354d24a11eSSimon Glass * @param flags Flags to control what is done 6364d24a11eSSimon Glass */ 6374d24a11eSSimon Glass int cleanup_before_linux_select(int flags); 6384d24a11eSSimon Glass 639ea0364f1SPeter Tyser /* arch/$(ARCH)/lib/ticks.S */ 64019ea4678SSimon Glass uint64_t get_ticks(void); 641e2211743Swdenk void wait_ticks (unsigned long); 642e2211743Swdenk 643ea0364f1SPeter Tyser /* arch/$(ARCH)/lib/time.c */ 644e2211743Swdenk ulong usec2ticks (unsigned long usec); 645e2211743Swdenk ulong ticks2usec (unsigned long ticks); 646e2211743Swdenk 64778acc472SPeter Tyser /* lib/gunzip.c */ 64887d93a1bSWolfgang Wegner int gunzip(void *, int, unsigned char *, unsigned long *); 64987d93a1bSWolfgang Wegner int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp, 65087d93a1bSWolfgang Wegner int stoponerr, int offset); 65187d93a1bSWolfgang Wegner 652918e9ebbSEric Nelson /** 653918e9ebbSEric Nelson * gzwrite progress indicators: defined weak to allow board-specific 654918e9ebbSEric Nelson * overrides: 655918e9ebbSEric Nelson * 656918e9ebbSEric Nelson * gzwrite_progress_init called on startup 657918e9ebbSEric Nelson * gzwrite_progress called during decompress/write loop 658918e9ebbSEric Nelson * gzwrite_progress_finish called at end of loop to 659918e9ebbSEric Nelson * indicate success (retcode=0) or failure 660918e9ebbSEric Nelson */ 661918e9ebbSEric Nelson void gzwrite_progress_init(u64 expected_size); 662918e9ebbSEric Nelson 663918e9ebbSEric Nelson void gzwrite_progress(int iteration, 664918e9ebbSEric Nelson u64 bytes_written, 665918e9ebbSEric Nelson u64 total_bytes); 666918e9ebbSEric Nelson 667918e9ebbSEric Nelson void gzwrite_progress_finish(int retcode, 668918e9ebbSEric Nelson u64 totalwritten, 669918e9ebbSEric Nelson u64 totalsize, 670918e9ebbSEric Nelson u32 expected_crc, 671918e9ebbSEric Nelson u32 calculated_crc); 672918e9ebbSEric Nelson 673918e9ebbSEric Nelson /** 674918e9ebbSEric Nelson * decompress and write gzipped image from memory to block device 675918e9ebbSEric Nelson * 676918e9ebbSEric Nelson * @param src compressed image address 677918e9ebbSEric Nelson * @param len compressed image length in bytes 678918e9ebbSEric Nelson * @param dev block device descriptor 679918e9ebbSEric Nelson * @param szwritebuf bytes per write (pad to erase size) 680918e9ebbSEric Nelson * @param startoffs offset in bytes of first write 681918e9ebbSEric Nelson * @param szexpected expected uncompressed length 682918e9ebbSEric Nelson * may be zero to use gzip trailer 683918e9ebbSEric Nelson * for files under 4GiB 684918e9ebbSEric Nelson */ 685918e9ebbSEric Nelson int gzwrite(unsigned char *src, int len, 6864101f687SSimon Glass struct blk_desc *dev, 687918e9ebbSEric Nelson unsigned long szwritebuf, 688918e9ebbSEric Nelson u64 startoffs, 689918e9ebbSEric Nelson u64 szexpected); 690918e9ebbSEric Nelson 691027b728dSJulius Werner /* lib/lz4_wrapper.c */ 692027b728dSJulius Werner int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn); 693027b728dSJulius Werner 69454c6977eSWolfgang Denk /* lib/qsort.c */ 69554c6977eSWolfgang Denk void qsort(void *base, size_t nmemb, size_t size, 69654c6977eSWolfgang Denk int(*compar)(const void *, const void *)); 697560d424bSMike Frysinger int strcmp_compar(const void *, const void *); 69854c6977eSWolfgang Denk 699e11938eaSJason Hobbs /* lib/uuid.c */ 700d718ded0SPrzemyslaw Marczak #include <uuid.h> 701e11938eaSJason Hobbs 70278acc472SPeter Tyser /* lib/vsprintf.c */ 7039785c905SSimon Glass #include <vsprintf.h> 704e2211743Swdenk 70578acc472SPeter Tyser /* lib/strmhz.c */ 70655f7934dSEd Swarthout char * strmhz(char *buf, unsigned long hz); 7070768b7a8SHaavard Skinnemoen 70878acc472SPeter Tyser /* lib/crc32.c */ 709449609f5SPrafulla Wadaskar #include <u-boot/crc.h> 710e2211743Swdenk 7119acf1ca5SMichael Walle /* lib/rand.c */ 7129acf1ca5SMichael Walle #define RAND_MAX -1U 7139acf1ca5SMichael Walle void srand(unsigned int seed); 7149acf1ca5SMichael Walle unsigned int rand(void); 7159acf1ca5SMichael Walle unsigned int rand_r(unsigned int *seedp); 7169acf1ca5SMichael Walle 717e2211743Swdenk /* 718e2211743Swdenk * STDIO based functions (can always be used) 719e2211743Swdenk */ 720e2211743Swdenk /* serial stuff */ 721d9c27253SWolfgang Denk int serial_printf (const char *fmt, ...) 722dc4b0b38SAndrew Klossner __attribute__ ((format (__printf__, 1, 2))); 723e2211743Swdenk 72488d52c6aSLei Wen /* lib/gzip.c */ 72588d52c6aSLei Wen int gzip(void *dst, unsigned long *lenp, 72688d52c6aSLei Wen unsigned char *src, unsigned long srclen); 72788d52c6aSLei Wen int zzip(void *dst, unsigned long *lenp, unsigned char *src, 72888d52c6aSLei Wen unsigned long srclen, int stoponerr, 72988d52c6aSLei Wen int (*func)(unsigned long, unsigned long)); 73088d52c6aSLei Wen 7314ef8d53cSJoe Hershberger /* lib/net_utils.c */ 7324ef8d53cSJoe Hershberger #include <net.h> 733723806ccSSimon Glass static inline struct in_addr env_get_ip(char *var) 7344ef8d53cSJoe Hershberger { 73500caae6dSSimon Glass return string_to_ip(env_get(var)); 7364ef8d53cSJoe Hershberger } 7374ef8d53cSJoe Hershberger 738e2211743Swdenk int pcmcia_init (void); 739e2211743Swdenk 7402d8d190cSUri Mashiach #ifdef CONFIG_LED_STATUS 741fb364becSWolfgang Denk # include <status_led.h> 742fb364becSWolfgang Denk #endif 743097e1783SSimon Glass 744097e1783SSimon Glass #include <bootstage.h> 745e2211743Swdenk 74648522bb5SJoe Hershberger #ifdef CONFIG_SHOW_ACTIVITY 74748522bb5SJoe Hershberger void show_activity(int arg); 74848522bb5SJoe Hershberger #endif 74948522bb5SJoe Hershberger 750fcd3c87eSWolfgang Denk /* Multicore arch functions */ 751fcd3c87eSWolfgang Denk #ifdef CONFIG_MP 752fcd3c87eSWolfgang Denk int cpu_status(int nr); 753fcd3c87eSWolfgang Denk int cpu_reset(int nr); 7544194b366SKumar Gala int cpu_disable(int nr); 75554841ab5SWolfgang Denk int cpu_release(int nr, int argc, char * const argv[]); 756fcd3c87eSWolfgang Denk #endif 757fcd3c87eSWolfgang Denk 7582a6713b0SAndre Przywara #else /* __ASSEMBLY__ */ 7592a6713b0SAndre Przywara 7602a6713b0SAndre Przywara /* Drop a C type modifier (like in 3UL) for constants used in assembly. */ 7612a6713b0SAndre Przywara #define _AC(X, Y) X 7622a6713b0SAndre Przywara 763fcd3c87eSWolfgang Denk #endif /* __ASSEMBLY__ */ 764fcd3c87eSWolfgang Denk 765fcd3c87eSWolfgang Denk /* Put only stuff here that the assembler can digest */ 766fcd3c87eSWolfgang Denk 7672a6713b0SAndre Przywara /* Declare an unsigned long constant digestable both by C and an assembler. */ 7682a6713b0SAndre Przywara #define UL(x) _AC(x, UL) 7692a6713b0SAndre Przywara 770fcd3c87eSWolfgang Denk #ifdef CONFIG_POST 771fcd3c87eSWolfgang Denk #define CONFIG_HAS_POST 772800eb096SMichael Zaidman #ifndef CONFIG_POST_ALT_LIST 773800eb096SMichael Zaidman #define CONFIG_POST_STD_LIST 774800eb096SMichael Zaidman #endif 775fcd3c87eSWolfgang Denk #endif 776fcd3c87eSWolfgang Denk 7778aa1a2d1Swdenk #ifdef CONFIG_INIT_CRITICAL 7782f6fa46dSWolfgang Denk #error CONFIG_INIT_CRITICAL is deprecated! 7798aa1a2d1Swdenk #error Read section CONFIG_SKIP_LOWLEVEL_INIT in README. 7808aa1a2d1Swdenk #endif 7818aa1a2d1Swdenk 782155cfb5eSAnton Staaf #define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1)) 7834b03ac8bSAndy Fleming 7841e41f5adSAnton Staaf /* 785c9689ca3SSimon Glass * check_member() - Check the offset of a structure member 786c9689ca3SSimon Glass * 787c9689ca3SSimon Glass * @structure: Name of structure (e.g. global_data) 788c9689ca3SSimon Glass * @member: Name of member (e.g. baudrate) 789c9689ca3SSimon Glass * @offset: Expected offset in bytes 790c9689ca3SSimon Glass */ 791c9689ca3SSimon Glass #define check_member(structure, member, offset) _Static_assert( \ 792c9689ca3SSimon Glass offsetof(struct structure, member) == offset, \ 793c9689ca3SSimon Glass "`struct " #structure "` offset for `" #member "` is not " #offset) 794c9689ca3SSimon Glass 795476476e7SSimon Glass /* Avoid using CONFIG_EFI_STUB directly as we may boot from other loaders */ 796476476e7SSimon Glass #ifdef CONFIG_EFI_STUB 797476476e7SSimon Glass #define ll_boot_init() false 798476476e7SSimon Glass #else 799476476e7SSimon Glass #define ll_boot_init() true 800476476e7SSimon Glass #endif 801476476e7SSimon Glass 802c3eb3fe4SMike Frysinger /* Pull in stuff for the build system */ 803c3eb3fe4SMike Frysinger #ifdef DO_DEPS_ONLY 804c3eb3fe4SMike Frysinger # include <environment.h> 805c3eb3fe4SMike Frysinger #endif 806c3eb3fe4SMike Frysinger 807e2211743Swdenk #endif /* __COMMON_H_ */ 808